19cdae44ac6325604667290b09a6e1df56fc3f21
[external/binutils.git] / gdb / ChangeLog
1 2012-12-14  Tom Tromey  <tromey@redhat.com>
2
3         PR c++/8888:
4         * symtab.c (lookup_symbol_aux): If constructor is found, consider
5         returning the type instead.
6         * c-exp.y (classify_name): Check STRUCT_DOMAIN if a constructor is
7         found.
8
9 2012-12-14  Tom Tromey  <tromey@redhat.com>
10
11         Partial fix for PR c++/14160:
12         * c-typeprint.c (c_type_print_base): Use TYPE_FN_FIELD_CONSTRUCTOR.
13         * dwarf2read.c (dwarf2_is_constructor): New function.
14         (dwarf2_add_member_fn): Use it.
15         * gnu-v3-abi.c (gnuv3_pass_by_reference): Use
16         TYPE_FN_FIELD_CONSTRUCTOR.
17         * jv-typeprint.c (java_type_print_base): Use
18         TYPE_FN_FIELD_CONSTRUCTOR.
19         * gdbtypes.h (struct fn_field) <is_constructor>: New field.
20         <dummy>: Shrink.
21         (TYPE_FN_FIELD_CONSTRUCTOR): New macro.
22
23 2012-12-14  Tom Tromey  <tromey@redhat.com>
24
25         * c-exp.y (block, variable, name_not_typename, lex_one_token,
26         classify_name): Update.
27         * c-valprint.c (c_val_print): Update.
28         * f-exp.y (yylex): Update.
29         * go-exp.y (package_name_p, classify_packaged_name)
30         (classify_name): Update.
31         * jv-exp.y (push_variable): Update.
32         * m2-exp.y (variable): Update.
33         * mi/mi-cmd-stack.c (list_args_or_locals): Update.
34         * p-exp.y (block, variable, yylex): Update.
35         * p-valprint.c (pascal_val_print): Update.
36         * parse.c (write_dollar_variable): Update.
37         * printcmd.c (address_info): Update.
38         * python/py-symbol.c (gdbpy_lookup_symbol): Update.
39         * symtab.c (lookup_symbol_aux, lookup_symbol_in_language)
40         (lookup_symbol): Change type of 'is_a_field_of_this'.
41         (check_field): Add 'is_a_field_of_this' argument.
42         * symtab.h (struct field_of_this_result): New.
43         (lookup_symbol, lookup_symbol_in_language): Update.
44
45 2012-12-14  Tom Tromey  <tromey@redhat.com>
46
47         * symtab.c (check_field): Now static.  Move from...
48         * valops.c (check_field): ... here.  Remove.
49         * value.h (check_field): Don't declare.
50
51 2012-12-14  Tom Tromey  <tromey@redhat.com>
52
53         * NEWS: Mention "info proc" and core files.
54         * corelow.c (core_info_proc): New function.
55         (init_core_ops): Set to_info_proc.
56         * gdbarch.c, gdbarch.h: Rebuild.
57         * gdbarch.sh (core_info_proc): New method.
58         * infcmd.c (info_proc_cmd_1): Invoke target_info_proc first.
59         * linux-tdep.c (linux_core_info_proc_mappings)
60         (linux_core_info_proc): New functions.
61         (linux_find_memory_region_ftype): New typedef.
62         (linux_find_memory_regions_full): New function, from
63         linux_find_memory_regions.
64         (struct linux_find_memory_regions_data): New.
65         (linux_find_memory_regions_thunk): New function.
66         (linux_find_memory_regions): Rewrite.
67         (struct linux_make_mappings_data): New.
68         (linux_make_mappings_callback)
69         (linux_make_mappings_corefile_notes): New functions.
70         (linux_make_corefile_notes): Call linux_make_mappings_corefile_notes.
71         (linux_init_abi): Call set_gdbarch_core_info_proc.
72         * target.c (target_info_proc): Return 'int'.
73         * target.h (target_info_proc): Update.
74
75 2012-12-14  Pierre Muller  <muller@sourceware.org>
76
77         * windows-nat.c (windows_xfer_shared_libraries): Avoid
78         memory leak when OFFSET >= LEN_AVAIL.
79
80 2012-12-13  Tom Tromey  <tromey@redhat.com>
81
82         * solib-svr4.c (enable_break): Use SECT_OFF_TEXT.
83
84 2012-12-13  Tom Tromey  <tromey@redhat.com>
85
86         * acinclude.m4 (CY_AC_C_WORKS): Remove.
87
88 2012-12-13  Pierre Muller  <muller@sourceware.org>
89
90         * coff-pe-read.c (pe_text_section_offset): Increase size of sname
91         local variable and zero terminate it to avoid possible problems
92         in strcmp.
93
94 2012-12-13  Pedro Alves  <palves@redhat.com>
95
96         * coff-pe-read.c: Include coff/internal.h.
97         (read_pe_exported_syms): Use SCNNMLEN instead of hardcoded 8.
98         Null terminate buffer explicitly instead of memset the whole
99         buffer.
100
101 2012-12-13  Pierre Muller  <muller@sourceware.org>
102
103         * coff-pe-read.c (IMAGE_SCN_CNT_TEXT, IMAGE_SCN_CNT_INITIALIZED_DATA)
104         (IMAGE_SCN_CNT_UNINITIALIZED_DATA): Remove useless checks
105         for already defined macros.
106
107 2012-12-13  Pierre Muller  <muller@sourceware.org>
108
109         * coff-pe-read.h (pe_text_section_offset): Declare new function.
110         * coff-pe-read.c (debug_coff_pe_read): New static variable.
111         (struct read_pe_section_data): Add section_name field.
112         (IMAGE_SCN_CNT_CODE): New macro, if not already defined.
113         (IMAGE_SCN_CNT_INITIALIZED_DATA): Ditto.
114         (IMAGE_SCN_CNT_UNINITIALIZED_DATA): Ditto.
115         (get_pe_section_index): New function.
116         (struct pe_sections_info): New type.
117         (get_section_vmas): Use new struct pe_sections_info.
118         (add_pe_exported_sym): Handle unnamed exported function.
119         (add_pe_forwarded_sym): New function.
120         (read_pe_truncate_name): Truncate at last dot.
121         (pe_as16): New function.
122         (read_pe_exported_syms): Use ordinal of function to
123         retrieve correct RVA address of function and handle
124         forwarded symbol.
125         (pe_text_section_offset): New function.
126         (show_debug_coff_pe_read): New function.
127         (_initialize_coff_pe_read): New function adding
128         'set/show debug coff_pe_read' commands.
129
130         * windows-tdep.c (windows_xfer_shared_library): Use
131         pe_text_section_offset function instead of possibly wrong
132         0x1000 constant for .text sextion offset.
133
134 2012-12-13  Pedro Alves  <palves@redhat.com>
135
136         * gdbarch.sh (do_read): Set IFS to blank.
137
138 2012-12-12  Mircea Gherzan  <mircea.gherzan@intel.com>
139
140         * NEWS: Mention the -catch-load/-catch-unload MI commands.
141
142 2012-12-12  Mircea Gherzan  <mircea.gherzan@intel.com>
143
144         * Makefile.in (SUBDIR_MI_OBS): Add mi-cmd-catch.o.
145         (SUBDIR_MI_SRCS): Add mi/mi-cmd-catch.c.
146         * breakpoint.c (add_solib_catchpoint): New function that
147         can be used by both CLI and MI, factored out from
148         catch_load_or_unload.
149         (catch_load_or_unload): Strip it down and make it use the
150         new add_solib_catchpoint.
151         * breakpoint.h (add_solib_catchpoint): Declare it.
152         * mi/mi-cmd-break.h: New file.
153         * mi/mi-cmd-break.c: Include mi-cmd-break.h.
154         (setup_breakpoint_reporting): New function used for both
155         catchpoints and breakpoints.
156         (mi_cmd_break_insert): Use setup_breakpoint_reporting.
157         * mi/mi-cmd-catch.c: New file.
158         * mi/mi-cmds.c (mi_cmds): Add the handlers for -catch-load
159         and -catch-unload.
160         * mi/mi-cmds.h: Declare the handlers for -catch-load and
161         -catch-unload.
162
163 2012-11-28  Tom Tromey  <tromey@redhat.com>
164
165         * dbxread.c (read_dbx_symtab): Update.
166         (end_psymtab, dbx_psymtab_to_symtab_1, dbx_psymtab_to_symtab)
167         (read_ofile_symtab): Add 'objfile' argument.
168         * dwarf2read.c (process_psymtab_comp_unit_reader)
169         (build_type_psymtabs_reader): Update.
170         (dwarf2_psymtab_to_symtab): Add 'objfile' argument.
171         * mdebugread.c (mdebug_psymtab_to_symtab): Add 'objfile'
172         argument.
173         (parse_procedure, parse_partial_symbols): Update.
174         (psymtab_to_symtab_1): Add 'objfile' argument.
175         * psympriv.h (struct partial_symtab) <objfile>: Remove.
176         <read_symtab>: Add 'objfile' argument.
177         (sort_pst_symbols, discard_psymtab): Update.
178         * psymtab.c (partial_map_expand_apply): Update.
179         (find_pc_sect_psymtab_closer): Add 'objfile' argument.
180         (find_pc_sect_psymtab, find_pc_sect_symtab_from_partial): Update.
181         (find_pc_sect_psymbol): Add 'objfile' argument.
182         (lookup_symbol_aux_psymtabs): Update.
183         (match_partial_symbol, lookup_partial_symbol, psymtab_to_symtab):
184         Add 'objfile' argument.
185         (find_last_source_symtab_from_partial, dump_psymtab)
186         (dump_psymtabs_for_objfile, read_symtabs_for_function)
187         (expand_partial_symbol_tables, read_psymtabs_with_filename)
188         (find_symbol_file_from_partial, map_matching_symbols_psymtab)
189         (expand_symtabs_matching_via_partial): Update.
190         (sort_pst_symbols): Add 'objfile' argument.
191         (allocate_psymtab): Update.
192         (discard_psymtab): Add 'objfile' argument.
193         (maintenance_info_psymtabs, maintenance_check_symtabs): Update.
194         * stabsread.h (end_psymtab): Update.
195         * xcoffread.c (this_symtab_objfile): New global.
196         (process_linenos, enter_line_range, xcoff_next_symbol_text):
197         Update.
198         (read_xcoff_symtab): Add 'objfile' argument.
199         (read_symbol, read_symbol_lineno): Update.
200         (xcoff_psymtab_to_symtab_1, xcoff_psymtab_to_symtab)
201         (xcoff_end_psymtab): Add 'objfile' argument.
202         (scan_xcoff_symtab): Update.
203
204 2012-12-12  Paul Koning  <paul_koning@dell.com>
205
206         Add support for Python 3.
207         * NEWS: Mention Python 3 support.
208         * varobj.c (value_get_print_value): Use
209         python_string_to_target_string.
210         * python/py-block.c: Use PyVarObject_HEAD_INIT in initialization
211         of type objects.
212         * python/py-breakpoint.c: Ditto.
213         * python/py-cmd.c:  Ditto.
214         * python/py-event.c: Ditto.
215         * python/py-event.h: Ditto.
216         * python/py-evtregistry.c: Ditto.
217         * python/py-finishbreakpoint.c: Ditto.
218         * python/py-frame.c: Ditto.
219         * python/py-function.c: Ditto.
220         * python/py-infthread.c: Ditto.
221         * python/py-lazy-string.c: Ditto.
222         * python/py-progspace.c: Ditto.
223         * /python/py-symbol.c: Ditto.
224         * python/py-evts.c:  (gdbpy_initialize_py_events): Add module
225         initialization for Python 3.
226         * python/py-inferior.c: Use PyVarObject_HEAD_INIT in initialization
227         of type objects.
228         (infpy_read_memory): Return memoryview object if Python 3.
229         (infpy_write_memory): Use "s*" operand parsing code for Python 3.
230         (infpy_search_memory): Ditto.
231         (get_buffer): New function for Python 3.
232         * python/py-objfile.c: Use PyVarObject_HEAD_INIT in initialization
233         of type objects.
234         (objfpy_dealloc): Use Py_TYPE to call tp_free.
235         * python/py-param.c: Use PyVarObject_HEAD_INIT in initialization
236         of type objects.
237         (get_attr): Use PyUnicode_CompareWithASCIIString if Python 3.
238         (set_attr): Ditto.
239         * python/py-prettyprint.c (print_string_repr): use PyBytes methods
240         instead of PyString methods if Python 3.
241         (print_children): Skip push_dummy_python_frame call if Python 3.
242         * python/py-symtab.c: Use PyVarObject_HEAD_INIT in initialization
243         of type objects.
244         (salpy_dealloc): Use Py_TYPE to call tp_free.
245         * python/py-type.c: Use PyVarObject_HEAD_INIT in initialization
246         of type objects.
247         (field_dealloc): Use Py_TYPE to call tp_free.
248         (typy_dealloc): Ditto.
249         (type_object_as_number): Adjust struct initializations for
250         differences in layout for Python 2 vs. Python 3.
251         * python/py-utils.c (python_string_to_unicode): Omit non-Unicode
252         string case for Python 3.
253         (unicode_to_encoded_python_string): Shorten code (no functional
254         change).
255         (python_string_to_target_python_string): Comment that in Python 3
256         returned value is a Python "bytes" type.
257         (gdbpy_is_string): Omit non-Unicode string check in Python 3.
258         (gdb_py_object_from_longest): Omit non-long integer case in Python
259         3.
260         (gdb_py_object_from_ulongest): Ditto.
261         * python/py-value.c: Use PyVarObject_HEAD_INIT in initialization
262         of type objects.
263         (valpy_dealloc): Use Py_TYPE to call tp_free.
264         (valpy_int): Omit function if Python 3.
265         (convert_value_from_python): Use "%S" format (Python object as a
266         string) if Python 3.
267         (value_object_as_number): Adjust struct initializations for
268         differences in layout for Python 2 vs. Python 3.
269         * python/python-config.py: Adjust syntax for Python 3
270         compatibility.
271         Include "sys.abiflags" string as part of python library name, if
272         that attribute exists (Python 3).
273         * python/python-internal.h (IS_PY3): Define if Python 3.
274         (Py_TPFLAGS_HAVE_ITER, Py_TPFLAGS_CHECKTYPES): Define with
275         placeholder value if Python 3.
276         (PyInt_Check, PyInt_FromLong, PyInt_AsLong, PyString_FromString,
277         PyString_Decode, PyString_FromFormat, PyString_Check): Define as
278         analogous Python 3 API function if Python 3.
279         (PyVarObject_HEAD_INIT): Define if not already defined.
280         (Py_TYPE): Ditto.
281         * python/python.c (eval_python_command): Omit Py_FlushLine call if
282         Python 3.
283         Check return values of all Python API calls for error.
284         Supply dummy "python" and "python-interactive" commands if Python
285         initialization failed.
286         (_initialize_python): Convert argc to wchar_t** if Python 3.
287         Add module initialization for Python 3.
288         (finish_python_initialization): Pass wchar_t * argument to
289         PySys_SetPath if Python 3.
290         * python/lib/gdb/__init__.py: Define "reload" if Python 3.
291         (_GdbFile): New class for common output file behavior.
292         (GdbOutFile): Subclass from _GdbFile.
293         (GdbOutputErrorFile): Ditto.
294         (auto_load_packages): Adjust syntax for Python 3 compatibility.
295         * python/lib/gdb/printing.py: Define basestr and int if Python 3.
296         * python/lib/gdb/prompt.py: Use sorted() function rather than
297         sort() method.
298         * python/lib/gdb/command/explore.py: Define raw_input if Python 3.
299         Adjust syntax for Python 3 compatibility.
300         * python/lib/gdb/command/pretty_printers.py: Use sorted() function
301         rather than sort() method.
302         Adjust syntax for Python 3 compatibility.
303         * python/lib/gdb/command/type_printers.py: Ditto.
304         * doc/gdb.texinfo (Inferior.read_memory): Mention that the return
305         value is a memoryview object if Python 3.
306
307 2012-12-12  Tom Tromey  <tromey@redhat.com>
308
309         * coffread.c (coff_objfile_data_key): New global.
310         (coff_symfile_init): Use set_objfile_data.
311         (coff_symfile_read): Use objfile_data.
312         (coff_symfile_finish): Don't free deprecated_sym_private.
313         (coff_free_info): New function.
314         (_initialize_coffread): Initialize coff_objfile_data_key.
315         * mdebugread.c (pending_list): Update comment.
316         * objfiles.h (struct objfile) <deprecated_sym_private>: Remove.
317         * symfile.c (reread_symbols): Don't mention
318         deprecated_sym_private.
319         * xcoffread.c (xcoff_objfile_data_key): New global.
320         (XCOFF_DATA): New macro.
321         (process_linenos, enter_line_range, xcoff_next_symbol_text)
322         (read_xcoff_symtab, coff_getfilename, read_symbol_lineno): Use
323         XCOFF_DATA.
324         (xcoff_new_init) Use set_objfile_data.
325         (xcoff_symfile_finish): Don't free deprecated_sym_private.
326         (init_stringtab, swap_sym, scan_xcoff_symtab)
327         (xcoff_get_toc_offset, xcoff_initial_scan): Use XCOFF_DATA.
328         (xcoff_free_info): New function.
329         (_initialize_xcoffread): Initialize xcoff_objfile_data_key.
330
331 2012-12-12  Mircea Gherzan  <mircea.gherzan@intel.com>
332
333         * MAINTAINERS (Write After Approval): Add "Mircea Gherzan".
334
335 2012-12-12  Tom Tromey  <tromey@redhat.com>
336
337         * coffread.c (coff_symfile_init): Use set_objfile_data.
338         (coff_symfile_read): Use DBX_SYMFILE_INFO.
339         * dbxread.c (dbx_objfile_data_key): New global.
340         (dbx_symfile_init): Use set_objfile_data.
341         (dbx_symfile_finish): Don't free deprecated_sym_stab_info.
342         (dbx_free_symfile_info): New function.
343         (coffstab_build_psymtabs, elfstab_build_psymtabs): Use
344         DBX_SYMFILE_INFO.
345         (stabsect_build_psymtabs): Use set_objfile_data.
346         (_initialize_dbxreadb): Initialize dbx_objfile_data_key.
347         * elfread.c (elf_symtab_read): Use DBX_SYMFILE_INFO,
348         set_objfile_data.
349         (free_elfinfo): Use DBX_SYMFILE_INFO.
350         (elf_symfile_finish): Don't free deprecated_sym_stab_info.
351         (elfstab_offset_sections): Use DBX_SYMFILE_INFO.
352         * gdb-stabs.h (dbx_objfile_data_key): Declare.
353         (DBX_SYMFILE_INFO): Rewrite to use objfile_data.
354         * objfiles.h (struct objfile) <deprecated_sym_stab_info>: Remove.
355         * somread.c (som_symfile_finish): Don't free
356         deprecated_sym_stab_info.
357
358 2012-12-12  Joel Brobecker  <brobecker@adacore.com>
359
360         * gdbarch.sh (software_single_step): Remove trailing space in
361         comment (gdbarch.h is already correct).
362
363 2012-12-11  Tom Tromey  <tromey@redhat.com>
364
365         * dwarf2read.c (dwarf2_get_dwz_file): Set 'dwz_file'.
366
367 2012-12-11  Tom Tromey  <tromey@redhat.com>
368
369         * dsrec.c (report_transfer_performance): Don't declare.
370         (load_srec): Use gettimeofday, print_transfer_performance.
371         * symfile.c (report_transfer_performance): Remove.
372
373 2012-12-11  Pedro Alves  <pedro@codesourcery.com>
374             Pedro Alves  <palves@redhat.com>
375
376         * procfs.c (procfs_make_note_section) [NEW_PROC_API]: Output a
377         NT_PSTATUS note.
378         * sol2-tdep.c (sol2_core_pid_to_str): Print process IDs
379         differently from LWP IDs.
380
381 2012-12-11  Pedro Alves  <palves@redhat.com>
382
383         * configure.ac (detect type of /proc): Remove Unixware handling.
384         * configure: Regenerate.
385         * proc-api.c (ioctl_table) [PIOCLSTATUS]: Don't mention Unixware.
386         (ioctl_table) [PCRESET]: Remove entry.
387         * proc-events.c (SYS_lwp_create, SYS_lwp_exit, SYS_lwp_wait)
388         (SYS_lwp_self, SYS_lwp_info, SYS_lwp_private, SYS_lwp_kill)
389         (SYS_lwp_suspend, SYS_lwp_continue): Don't define.
390         * proc-why.c (pr_why_table) [PR_SUSPENDED]: Don't mention Unixware.
391         * procfs.c: Remove all UNIXWARE guarded code, and all traces of
392         Unixware in comments throughout.
393         * i386-tdep.c (i386_svr4_sigtramp_p): Don't match _sigacthandler,
394         and remove mention of Unixware.
395
396 2012-12-10  Doug Evans  <dje@google.com>
397
398         * dwarf2read.c (dwarf2_cu): Enhance comment.
399         (dwarf2_get_pc_bounds): Only add ranges_base for DIEs that live in
400         the DWO file.
401         (dwarf2_record_block_ranges): Ditto.
402
403         * dwarf2read.c (create_dwo_in_dwp): Tweak comment.
404
405         * symtab.c (find_pc_sect_symtab): Add comment.
406
407 2012-12-10  Tom Tromey  <tromey@redhat.com>
408
409         * defs.h: Don't check for definition of LONGEST.
410         (min, max): Remove duplicates.
411
412 2012-12-10  Tom Tromey  <tromey@redhat.com>
413
414         * dwarf2read.c (dwarf2_fetch_die_loc_sect_off): New function.
415         (dwarf2_fetch_die_loc_cu_off): Rename from
416         dwarf2_fetch_die_location_block.  Rewrite to use
417         dwarf2_fetch_die_loc_sect_off.
418         * dwarf2loc.h (dwarf2_fetch_die_loc_sect_off): Declare.
419         (dwarf2_fetch_die_loc_cu_off): Rename.
420         * dwarf2loc.c (indirect_pieced_value): Use
421         dwarf2_fetch_die_loc_sect_off.
422         * dwarf2expr.h (struct dwarf_expr_context) <len, data>: Update
423         comment.
424         (struct dwarf_expr_piece) <v.ptr.die>: Now a sect_offset.
425         * dwarf2expr.c (add_piece): Update.
426         (execute_stack_op) <DW_OP_GNU_implicit_pointer>: Update comment.
427
428 2012-12-10  Tom Tromey  <tromey@redhat.com>
429
430         * buildsym.c (struct pending_block): Move from buildsym.h.
431         (pending_blocks): Likewise; now static.
432         (pending_block_obstack): New global.
433         (free_pending_blocks): Free blocks.
434         (record_pending_block): Use pending_block_obstack.
435         * buildsym.h (struct pending_block): Move definition to
436         buildsym.c.
437         (pending_blocks): Don't declare.
438
439 2012-12-10  Pedro Alves  <palves@redhat.com>
440
441         * solib-svr4.c (svr4_solib_create_inferior_hook) [_SCO_DS]: Remove
442         dead SCO code, and adjust function description comment.
443
444 2012-12-09  Jan Kratochvil  <jan.kratochvil@redhat.com>
445
446         * configure.ac (CC_HAS_LONG_LONG): Replace by AC_MSG_ERROR.
447         * defs.h (LONGEST, ULONGEST): Remove conditionalization for
448         CC_HAS_LONG_LONG.
449         * dwarf2-frame.c (DW64_CIE_ID): Likewise.
450         * dwarf2read.c (extract_cu_value): Remove the function.
451         (create_cus_from_index_list): Make the return type void, inline the
452         extract_cu_value caller, include new gdb_static_assert.
453         (create_cus_from_index): Make the return type void, update the function
454         comment, update the create_cus_from_index_list caller.
455         (create_signatured_type_table_from_index): Make the return type void,
456         inline the extract_cu_value caller, include new gdb_static_assert.
457         (dwarf2_read_index): Update the create_cus_from_index and
458         create_signatured_type_table_from_index caller.
459         * printcmd.c (ui_printf): Remove conditionalizations for
460         CC_HAS_LONG_LONG.
461         * config.in: Regenerate.
462         * configure: Regenerate.
463
464 2012-12-09  Jan Kratochvil  <jan.kratochvil@redhat.com>
465
466         * dwarf2read.c (struct dwarf2_cu): New field producer_is_gcc_lt_4_3.
467         Update the comment for checked_producer.
468         (check_producer): New forward declaration.
469         (producer_is_gcc_lt_4_3): New function.
470         (find_file_and_directory): Simulate *COMP_DIR only for gcc < 4.3.
471         (check_producer): Initialize also PRODUCER_IS_GCC_LT_4_3.
472
473 2012-12-07  Tom Tromey  <tromey@redhat.com>
474
475         * ada-lang.c (ada_make_symbol_completion_list): Add 'code'
476         argument, assertion.
477         * c-exp.y (typebase): Add completion productions.
478         * completer.c (expression_completer): Handle tag completion.
479         * expression.h (parse_expression_for_completion): Add argument.
480         * f-lang.c (f_make_symbol_completion_list): Add 'code'
481         argument.
482         * language.h (struct language_defn)
483         <la_make_symbol_completion_list>: Add 'code' argument.
484         * parse.c (expout_tag_completion_type, expout_completion_name):
485         New globals.
486         (mark_struct_expression): Add assertion.
487         (mark_completion_tag): New function.
488         (parse_exp_in_context): Initialize new globals.
489         (parse_expression_for_completion): Add 'code' argument.  Handle
490         tag completion.
491         * parser-defs.h (mark_completion_tag): Declare.
492         * symtab.c (default_make_symbol_completion_list_break_on): Add
493         'code' argument.  Update.
494         (default_make_symbol_completion_list): Add 'code' argument.
495         (make_symbol_completion_list): Update.
496         (make_symbol_completion_type): New function.
497         * symtab.h (default_make_symbol_completion_list_break_on)
498         (default_make_symbol_completion_list): Update.
499         (make_symbol_completion_type): Declare.
500
501 2012-12-07  Tom Tromey  <tromey@redhat.com>
502
503         * expression.h (parse_expression_for_completion): Rename
504         from parse_field_expression.
505         (parse_completion): Rename from in_parse_field.
506         * c-exp.y (lex_one_token): Update.
507         * completer.c (expression_completer): Update.
508         * go-exp.y (lex_one_token): Update.
509         * p-exp.y (yylex): Update.
510         * parse.c (parse_completion): Rename from in_parse_field.
511         (parse_exp_in_context): Update.
512         (parse_expression_for_completion): Rename from
513         parse_field_expression.  Update.
514
515 2012-12-07  Tom Tromey  <tromey@redhat.com>
516
517         * typeprint.c (_initialize_typeprint): Set completer
518         for "whatis" and "ptype".
519
520 2012-12-07  Joel Brobecker  <brobecker@adacore.com>
521
522         * copyright.py (NOT_FSF_LIST): Remove duplicate entry
523         "sim/common/cgen-fpu.h".  Remove invalid entries
524         "sim/common/sim-fpu.c" and "sim/mn10300/sim-main.h",
525         which actually have an FSF copyright header.
526
527 2012-12-07  Joel Brobecker  <brobecker@adacore.com>
528
529         * osf-share/AT386/cma_thread_io.h: Delete.
530         * osf-share/HP800/cma_thread_io.h: Delete.
531         * osf-share/README: Delete.
532         * osf-share/RIOS/cma_thread_io.h: Delete.
533         * osf-share/cma_attr.h: Delete.
534         * osf-share/cma_deb_core.h: Delete.
535         * osf-share/cma_debug_client.h: Delete.
536         * osf-share/cma_errors.h: Delete.
537         * osf-share/cma_handle.h: Delete.
538         * osf-share/cma_init.h: Delete.
539         * osf-share/cma_list.h: Delete.
540         * osf-share/cma_mutex.h: Delete.
541         * osf-share/cma_sched.h: Delete.
542         * osf-share/cma_semaphore_defs.h: Delete.
543         * osf-share/cma_sequence.h: Delete.
544         * osf-share/cma_stack.h: Delete.
545         * osf-share/cma_stack_int.h: Delete.
546         * osf-share/cma_tcb_defs.h: Delete.
547         * osf-share/cma_util.h: Delete.
548         * Makefile.in (HFILES_NO_SRCDIR): Remove entries for the files
549         in osf-share.
550         * config/djgpp/fnchange.lst: Remove osf-share/cma_stack_int.h entry.
551         * contrib/ari/gdb_find.sh: Remove handling of osf-share.
552         * copyright.sh (NOT_FSF_LIST): Remove "gdb/osf-share" entry.
553
554 2012-12-06  Pedro Alves  <palves@redhat.com>
555             Tom Tromey  <tromey@redhat.com>
556
557         * valops.c (value_cast): Move TYPE_CODE_VOID case earlier.
558
559 2012-12-06  Jens Elmenthaler <jens.elmenthaler@advantest.com>
560
561         PR mi/14741:
562         * mi/mi-cmd-var.c (varobj_update_one): Take value of
563         attribute "dynamic" and "displayhint" from printed child,
564         not the root variable.
565
566 2012-12-06  Joel Brobecker  <brobecker@adacore.com>
567
568         * aix-thread.c (getthrds): Fix type of 4th parameter.
569         (get_signaled_thread): Change type of variable ktid to tid_t.
570
571 2012-12-06  Hui Zhu  <hui_zhu@mentor.com>
572
573         * dwarf2loc.c (dwarf_expr_frame_base): Add check for the return
574         value of get_frame_block.
575
576 2012-12-05  Pierre Muller  <muller@sourceware.org>
577
578         Avoid memory leaks on struct cmd_list_element.doc field.
579         * cli/cli-decode.c (add_alias_cmd): Make a copy of doc field
580         if flags contains DOC_ALLOCATED.
581         (add_setshow_cmd_full): Add DOC_ALLOCATED to set and show
582         flags.
583         (delete_cmd): Handle DOC_ALLOCATED flag.
584         * cli/cli-decode.h (DOC_ALLOCATED): New macro for use
585         in flags filed of struct cmd_list_element.
586         (struct cmd_list_element): Document new flag item.
587
588 2012-12-04  Doug Evans  <dje@google.com>
589
590         * symmisc.c: Whitespace fixes.
591
592 2012-12-04  Karthik Bhat  <kv.bhat@samsung.com>
593
594         * i386-tdep.c (i386_skip_prologue): Using symbol table
595         to find the end of prologue for clang compiled binaries.
596         * amd64-tdep.c (amd64_skip_prologue): Using symbol table
597         to find the end of prologue for clang compiled binaries.
598
599 2012-12-03  Doug Evans  <dje@google.com>
600
601         * dwarf2read.c (struct dwarf2_per_objfile): Clarify comment.
602         (dw2_find_symbol_file): Delete unused local file_data.
603
604 2012-12-03  Tom Tromey  <tromey@redhat.com>
605
606         * ada-exp.y (write_object_renaming, write_var_or_type)
607         (write_ambiguous_var, write_var_from_sym): Make blocks const.
608         * ada-lang.c (replace_operator_with_call)
609         (find_old_style_renaming_symbol): Make blocks const.
610         * ada-lang.h (ada_find_renaming_symbol): Update.
611         (struct ada_symbol_info) <block>: Now const.
612         * breakpoint.c (watch_command_1): Update.
613         * breakpoint.h (struct watchpoint) <exp_valid_block,
614         cond_exp_valid_block>: Now const.
615         * c-exp.y (classify_inner_name, classify_name): Make block
616         argument const.
617         * expprint.c (print_subexp_standard) <OP_VAR_VALUE>: Make 'b'
618         const.
619         * expression.h (innermost_block, parse_exp_1): Update.
620         (union exp_element) <block>: Now const.
621         * gdbtypes.c (lookup_template_type, lookup_enum, lookup_union)
622         (lookup_struct): Make block argument const.
623         * gdbtypes.h (lookup_template_type): Update.
624         * go-exp.y (classify_name, classify_packaged_name)
625         (package_name_p): Make block argument const.
626         * objc-lang.c (lookup_struct_typedef): Make block argument const.
627         * objc-lang.h (lookup_struct_typedef): Update.
628         * parse.c (parse_exp_in_context, parse_exp_1)
629         (write_exp_elt_block): Make block arguments const.
630         (expression_context_block, innermost_block): Now const.
631         * parser-defs.h (write_exp_elt_block): Update.
632         (expression_context_block, innermost_block, block_found): Now
633         const.
634         * printcmd.c (struct display) <block>: Now const.
635         * symtab.h (lookup_struct, lookup_union, lookup_enum): Update.
636         * valops.c (address_of_variable): Make block argument const.
637         * value.h (value_of_variable): Update.
638         * varobj.c (struct varobj_root) <valid_block>: Now const.
639
640 2012-11-30  Yao Qi  <yao@codesourcery.com>
641
642         * breakpoint.c (print_one_breakpoint_location): Indent code.
643
644 2012-11-30  Yao Qi  <yao@codesourcery.com>
645
646         * breakpoint.c (print_one_breakpoint_location): Combine two
647         blocks handling 'hit count' together.
648
649 2012-11-30  Yao Qi  <yao@codesourcery.com>
650
651         * infrun.c (error_is_running, ensure_not_running): Move them
652         to ...
653         * infcmd.c (error_is_running, ensure_not_running): ... here.
654         Make them 'static'.
655         * inferior.h: Remove declarations of error_is_running and
656         ensure_not_running.
657
658 2012-11-30  Yao Qi  <yao@codesourcery.com>
659
660         * tic6x-linux-tdep.c (tic6x_register_sigcontext_offset): Don't
661         check REGNUM >= 0.
662
663 2012-11-30  Yao Qi  <yao@codesourcery.com>
664
665         * infrun.c: Make the declaration of 'init_infwait_state'
666         static.
667         (init_infwait_state): Make it 'static'.
668
669 2012-11-29  Ulrich Weigand  <uweigand@de.ibm.com>
670
671         * python/python.c (finalize_python): Cast unused PyGILState_Ensure
672         return value to void to avoid compiler warning.
673
674 2012-11-29  Ulrich Weigand  <uweigand@de.ibm.com>
675
676         * opencl-lang.c (opencl_print_type): New function.
677         (opencl_language_arch_info): Install it.
678
679 2012-11-29  Tom Tromey  <tromey@redhat.com>
680
681         * contrib/ari/gdb_ari.sh: Remove rules for xasprintf and
682         xvasprintf.
683         * common/common-utils.c (xasprintf, xvasprintf): Remove.
684         * common/common-utils.h (xasprintf, xvasprintf): Remove.
685
686 2012-11-29  Jerome Guitton  <guitton@adacore.com>
687
688         * ada-lang.c (ada_is_interface_tag): New function.
689         (ada_is_ignored_field): Add interface tags to the list
690         of ignored fields.
691
692 2012-11-29  Jerome Guitton  <guitton@adacore.com>
693
694         * ada-lang.h (ada_tag_value_at_base_address): New function
695         declaration.
696         * ada-lang.c (is_ada95_tag, ada_tag_value_at_base_address):
697         New functions.
698         (ada_to_fixed_type_1, ada_evaluate_subexp): Let ada_tag_base_address
699         relocate the class-wide value if need be.
700         (ada_value_struct_elt, ada_value_ind, ada_coerce_ref):
701         Let ada_tag_value_at_base_address relocate the class-wide access/ref
702         before dereferencing it.
703         * ada-valprint.c (ada_val_print_1): Relocate to base address
704         before displaying the content of an interface-wide ref.
705
706 2012-11-29  Jerome Guitton  <guitton@adacore.com>
707
708         * ada-lang.c (ada_evaluate_subexp): Unwrap only in EVAL_NORMAL.
709
710 2012-11-29  Joel Brobecker  <brobecker@adacore.com>
711
712         GDB 7.5.1 released.
713
714 2012-11-29  Yao Qi  <yao@codesourcery.com>
715             Tom Tromey  <tromey@redhat.com>
716
717         * eval.c (evaluate_subexp_standard): Get the correct pointer
718         type for TYPE_CODE_MEMBERPTR.
719
720 2012-11-28  Edjunior Machado  <emachado@linux.vnet.ibm.com>
721
722         * rs6000-tdep.c (gdb_print_insn_powerpc): Remove info->mach checking,
723         since now it is being done by binutils' powerpc_init_dialect().
724
725 2012-11-28  Tom Tromey  <tromey@redhat.com>
726
727         PR gdb/14290:
728         * solib-darwin.c (gdb_bfd_mach_o_fat_extract): New function.
729         (darwin_solib_get_all_image_info_addr_at_init, darwin_bfd_open):
730         Use it.
731         * gdb_bfd.h (gdb_bfd_mark_parent): Declare.
732         * gdb_bfd.c (gdb_bfd_mark_parent): New function.
733         (gdb_bfd_openr_next_archived_file): Use it.
734
735 2012-11-28  Markus Metzger <markus.t.metzger@intel.com>
736
737         * configure.ac: Check for linux/perf_event.h.
738         * config.in: Regenerated.
739         * configure: Regenerated.
740
741 2012-11-28  Yao Qi  <yao@codesourcery.com>
742
743         * breakpoint.c (_initialize_breakpoint): Call add_alias_cmd to
744         abbreviate 'delete tracepoints' to 'delete tr'.
745         * corefile.c (_initialize_core): Call add_alias_cmd to
746         abbreviate 'set gnutarget' to 'set g'.
747         * value.c (_initialize_values): Call add_alias_cmd to abbreviate
748         'show convenience' to 'show conv'.
749
750 2012-11-27  Joel Brobecker  <brobecker@adacore.com>
751
752         * sparc-sol2-nat.c (supply_gregset): Fix first parameter in
753         call to sparc_supply_fpregset.
754         (fill_fpregset): Fix first parameter in call to
755         sparc_collect_fpregset.
756
757 2012-11-27  Daniel Jacobowitz  <dan@codesourcery.com>
758             Kazu Hirata  <kazu@codesourcery.com>
759             Yao Qi  <yao@codesourcery.com>
760
761         * objfiles.c (init_entry_point_info): Call
762         gdbarch_convert_from_func_ptr_addr and
763         gdbarch_addr_bits_remove here ...
764         (entry_point_address_query): ... instead of here.
765         * solib-svr4.c (exec_entry_point): Call
766         gdbarch_addr_bits_remove.
767         * symfile.c (generic_load): Call gdbarch_addr_bits_remove on
768         the entry address.
769
770 2012-11-27  Daniel Jacobowitz  <dan@codesourcery.com>
771             Yao Qi  <yao@codesourcery.com>
772
773         * eval.c (evaluate_subexp_standard): Add handling of
774         TYPE_CODE_MEMBERPTR when calling functions.  Correct the
775         result of ptype for calling a TYPE_CODE_METHODPTR.
776
777 2012-11-27  Yao Qi  <yao@codesourcery.com>
778
779         * symtab.c (symtab_symbol_info): Fix a -Wformat-extra-args
780         warning.
781         Add i18n markup.
782
783 2012-11-26  Alexander Larsson  <alexl@redhat.com>
784             Jan Kratochvil  <jan.kratochvil@redhat.com>
785             Tom Tromey  <tromey@redhat.com>
786
787         * NEWS: Mention mini debuginfo feature.
788         * minidebug.c: New file.
789         * configure.ac: Check for lzma.
790         * configure, config.in: Rebuild.
791         * Makefile.in (LIBLZMA): New variable.
792         (CLIBS): Include LIBLZMA.
793         (SFILES): Mention minidebug.c.
794         (COMMON_OBS): Mention minidebug.o.
795         * symfile.c (read_symbols): New function.
796         (syms_from_objfile, reread_symbols): Call it.
797         * symfile.h (find_separate_debug_file_in_section): Declare.
798
799 2012-11-26  Keith Seitz  <keiths@redhat.com>
800
801         * exec.c (exec_file_attach): Move cleanup after verifying that
802         memory has in fact been allocated.
803
804 2012-11-26  Tom Tromey  <tromey@redhat.com>
805
806         * ada-lang.c (user_select_syms): Use SYMBOL_SYMTAB.
807         * dwarf2read.c (dw2_find_symbol_file, fixup_go_packaging): Use
808         SYMBOL_SYMTAB.
809         * skip.c (skip_info): Use SYMBOL_SYMTAB.
810
811 2012-11-26  Maxime Villard  <rustyBSD@gmx.fr>
812             Pedro Alves  <palves@redhat.com>
813
814         * common/linux-osdata.c (linux_xfer_osdata_fds): Decrease buffer
815         size parameter passed to readlink by one byte.
816         * fbsd-nat.c (fbsd_pid_to_exec_file): Ditto.
817         * linux-nat.c (linux_child_pid_to_exec_file): Ditto.
818         * nbsd-nat.c (nbsd_pid_to_exec_file): Ditto.
819         * inf-child.c (inf_child_fileio_readlink): Decrease local buffer's
820         size by one byte.
821
822 2012-11-26  Yao Qi  <yao@codesourcery.com>
823
824         * f-valprint.c (f77_create_arrayprint_offset_tbl): Remove
825         extraneous parentheses.
826
827 2012-11-26  Yao Qi  <yao@codesourcery.com>
828
829         * remote.c (remote_start_remote): Typo fix.
830
831 2012-11-23  David S. Miller  <davem@davemloft.net>
832
833         * sparc-tdep.h (struct sparc_fpregset): New data structure.
834         (sparc32_sunos4_fpregset, sparc32_bsd_fpregset,
835         sparc32_sol2_fpregset): Declare new globals.
836         (sparc32_supply_fpregset, sparc32_collect_fpregset): Add new
837         'fpregset' argument.
838         * sparc64-tdep.h (sparc64_supply_fpregset,
839         sparc64_collect_fpregset): Likewise.
840         (sparc64_sol2_fpregset, sparc64_bsd_fpregset): Declare new
841         globals.
842         * sparc-nat.h (struct sparc_fpregset): Add forward declaration.
843         (sparc_fpregset): Declare new global.
844         (sparc_supply_fpregset, sparc_collect_fpregset): Add new
845         'fpregset' argument.
846         * sparc-linux-nat.c (supply_fpregset): Pass sparc_fpregset down
847         into handler.
848         (fill_fpregset): Likewise.
849         (_initialize_sparc_linux_nat): Set sparc_fpregset to
850         sparc32_bsd_fpregset.
851         * sparc-linux-tdep.c (sparc32_linux_supply_core_fpregset): Pass
852         sparc32_bsd_fpregset down into handler.
853         (sparc32_linux_collect_core_fpregset): Likewise.
854         * sparc-nat.c (sparc_fpregset): Define.
855         (sparc_supply_fpregset): Add 'fpregset' argument.
856         (sparc_collect_fpregset): Likewise.
857         (sparc_fetch_inferior_registers): Pass sparc_fpregset down
858         into fpregset handler.
859         (sparc_store_inferior_registers): Likewise.
860         (_initialize_sparc_nat): Set sparc_fpregset to
861         sparc32_sunos4_fpregset if NULL.
862         * sparc-sol2-nat.c (supply_gregset): Pass sparc_sol2_fpregset
863         down into handler.
864         (fill_fpregset): Likewise.
865         * sparc-sol2-tdep.c (sparc32_sol2_fpregset): Define.
866         * sparc-tdep.c (sparc32_supply_fpregset): Add fpregset arg and
867         use it to compute offsets.
868         (sparc32_collect_fpregset): Likewise.
869         (sparc32_sunos4_fpregset, sparc32_bsd_fpregset): Define.
870         * sparc64-linux-nat.c (supply_fpregset): Pass sparc64_bsd_fpregset
871         down into handler.
872         (fill_fpregset): Likewise.
873         * sparc64-linux-tdep.c (sparc64_linux_supply_core_fpregset):
874         Likewise.
875         (sparc64_linux_collect_core_fpregset): Likewise.
876         * sparc64-sol2-tdep.c (sparc64_sol2_fpregset): Define.
877         * sparc64-tdep.c (sparc64_supply_fpregset): Add fpregset arg and
878         use it to compute offsets.
879         (sparc64_collect_fpregset): Likewise.
880         (sparc64_bsd_fpregset): Define.
881         * sparc64fbsd-tdep.c (sparc64fbsd_supply_fpregset): Padd
882         sparc64_bsd_fpregset down into handler.
883         (sparc64fbsd_collect_fpregset): Likewise.
884         * sparc64nbsd-nat.c (sparc64nbsd_supply_fpregset): Add fpregset arg
885         and pass sparc{32,64}_bsd_fpregset down into handler.
886         (sparc64nbsd_collect_fpregset): Likewise.
887         * sparc64nbsd-tdep.c (sparc64nbsd_supply_fpregset): Pass
888         sparc64_bsd_fpregset down into handler.
889         * sparc64obsd-tdep.c (sparc64obsd_supply_gregset): Likewise.
890         * sparcnbsd-nat.c (_initialize_sparcnbsd_nat): Set sparc_fpregset
891         to sparc32_bsd_fpregset.
892         * sparcnbsd-tdep.c (sparc32nbsd_supply_gregset): Pass
893         sparc32_bsd_fpregset down into sparc32_supply_fpregset.
894         (sparc32nbsd_supply_fpregset): Likewise.
895
896 2012-11-21  Tom Tromey  <tromey@redhat.com>
897
898         * gdbtypes.h (struct cplus_struct_type) <localtype_ptr>: Remove
899         field.
900         (TYPE_LOCALTYPE_PTR, TYPE_LOCALTYPE_FILE, TYPE_LOCALTYPE_LINE):
901         Remove.
902         * c-typeprint.c (c_type_print_base): Update.
903
904 2012-11-21  Yao Qi  <yao@codesourcery.com>
905
906         PR tdep/7438
907         * gdbarch.sh (smash_text_address): Remove.
908         * gdbarch.c, gdbarch.h: Regenerate.
909         * arm-tdep.c (arm_smash_text_address): Remove.
910         (arm_gdbarch_init): Don't call set_gdbarch_smash_text_address.
911         * hppa-tdep.c (hppa_smash_text_address): Remove.
912         (hppa_addr_bits_remove): Rename from hppa_smash_text_address.
913         (hppa_gdbarch_init): Don't call set_gdbarch_smash_text_address.
914         Caller update.
915         * coffread.c (coff_symtab_read): Caller update.
916         * dbxread.c (process_one_symbol): Likewise.
917         * elfread.c (record_minimal_symbol): Likewise.
918         * somread.c (som_symtab_read): Likewise.
919
920 2012-11-20  Pierre Muller  <muller@sourceware.org>
921
922         ARI fixes: sprintf rule.
923         Replace sprintf function calls for char arrays by
924         calls to xsnprintf calls.
925         * arm-tdep.c (arm_push_dummy_call): Replace sprintf by xsnprintf.
926         (arm_dwarf_reg_to_regnum, arm_return_value): Ditto.
927         (arm_neon_quad_read, arm_pseudo_read): Ditto.
928         (arm_neon_quad_write, arm_pseudo_write): Ditto.
929         * breakpoint.c (condition_completer): Ditto.
930         (create_tracepoint_from_upload): Ditto.
931         * dwarf2read.c (file_full_name): Ditto.
932         * gcore.c (gcore_command): Ditto.
933         * gnu-nat.c (proc_string, gnu_pid_to_str): Ditto.
934         * go32-nat.c (go32_sysinfo): Ditto.
935         * interps.c (interp_set): Ditto.
936         * m32c-tdep.c (make_types): Ditto.
937         * ppc-linux-nat.c (fetch_register, store_register): Ditto.
938         * remote-m32r-sdi.c (m32r_open): Ditto.
939         * sol-thread.c (td_err_string): Ditto.
940         (td_state_string, solaris_pid_to_str): Ditto.
941         * symtab.c (gdb_mangle_name): Ditto.
942         * cli/cli-script.c (execute_control_command): Ditto.
943         (define_command, document_command): Ditto.
944         * tui/tui-io.c (tui_rl_display_match_list): Ditto.
945         * tui/tui-stack.c (tui_make_status_line): Ditto.
946         * tui/tui-win.c (tui_update_gdb_sizes): Ditto.
947
948 2012-11-20  Mike Frysinger  <vapier@gentoo.org>
949
950         * cli/cli-decode.c (complete_on_cmdlist): Add a fourth arg and check
951         it when looking at ptr->func.
952         * command.h (complete_on_cmdlist): Add a fourth arg.
953         * completer.c (complete_line_internal): Add local ignore_help_classes,
954         and set it to 1 when reason is not handle_help.  Pass this down to
955         lookup_cmd_1 and complete_on_cmdlist.
956
957 2012-11-20  Tom Tromey  <tromey@redhat.com>
958
959         * completer.c (count_struct_fields): Remove.
960         (expression_completer): Don't call count_struct_fields.
961
962 2012-11-20  Pedro Alves  <palves@redhat.com>
963
964         * annotate.c (breakpoints_changed): Rename to ...
965         (annotate_breakpoints_changed): ... this.
966         (annotate_stopped, breakpoint_changed): Adjust caller.
967         * annotate.h (breakpoints_changed): Rename to ...
968         (annotate_breakpoints_changed): ... this.
969         * breakpoint.c (set_breakpoint_condition, breakpoint_set_commands)
970         (do_map_commands_command, init_raw_breakpoint, clear_command)
971         (set_ignore_count, enable_breakpoint_disp): Adjust callers.
972
973 2012-11-20  David S. Miller  <davem@davemloft.net>
974
975         * common/linux-osdata.c (get_number_of_cpu_cores): Delete.
976         (linux_xfer_osdata_processes): Fetch _SC_NPROCESSORS_ONLN via
977         sysconf.
978         (get_cores_used_by_process): Update comment.
979
980 2012-11-20  Yao Qi  <yao@codesourcery.com>
981
982         * objfiles.c (init_entry_point_info): Remove trailing spaces.
983
984 2012-11-20  Yao Qi  <yao@codesourcery.com>
985
986         * infrun.c (handle_inferior_event): Pass 'saved_singlestep_ptid'
987         to deprecated_context_hook.
988
989 2012-11-19  Yao Qi  <yao@codesourcery.com>
990
991         * infrun.c (infwait_state): Add static.
992
993 2012-11-16  Keith Seitz  <keiths@redhat.com>
994
995         PR c++/13615
996         * cp-namespace.c (cp_lookup_symbol_in_namespace): Add SEARCH
997         parameter and pass it to lookup_symbol_file.
998         (cp_lookup_symbol_imports): Tell cp_lookup_symbol_in_namespace
999         to search base classes.
1000         (cp_lookup_symbol_namespace): Likewise.
1001         (lookup_namespace_scope): Likewise.
1002         (lookup_symbol_file): Add SEARCH parameter.
1003         If SEARCH is non-zero and no symbol is found, lookup the class
1004         and call cp_lookup_nested_symbol.
1005         (find_symbol_in_baseclass): New function.
1006         (cp_lookup_nested_symbol): Do not let
1007         cp_lookup_symbol_in_namespace search through base classes.
1008         Do that later when there is no global symbol match.
1009
1010 2012-11-16  Doug Evans  <dje@google.com>
1011
1012         * main.c (gdb_datadir_provided): New static global.
1013         (get_init_files): If --data-directory is provided,
1014         and SYSTEM_GDBINIT lives in data-directory, look for it there.
1015         * NEWS: Mention it.
1016
1017 2012-11-15  Pierre Muller  <muller@sourceware.org>
1018
1019         ARI fixes: move gdb_wait and gdb_stat headers to common subdirectory.
1020         * gdb_stat.h: Delete. Moved to common directory.
1021         * common/gdb_stat.h: New file.
1022         * gdb_wait.h: Delete. Moved to common directory.
1023         * common/gdb_wait.h: New file.
1024         * Makefile.in (H_FILES_NO_SRC): Adapt to new header
1025         location.
1026         * contrib/ari/gdb_ari.sh (wait.h rule): Adapt to new gdb_wait.h
1027         location.
1028         (stat.h rule): Adapt to new gdb_stat.h location.
1029         * common/linux-osdata.c: Include "gdb_stat.h" header instead of
1030         <sys/stat.h> header.
1031         * common/linux-ptrace.c: Include "gdb_wait.h" header instead of
1032         <sys/wait.h> header.
1033
1034 2012-11-15  Pierre Muller  <muller@sourceware.org>
1035
1036         * configure.ac (AC_HEADER_STAT): Remove.
1037         * gdb_stat.h (STAT_MACROS_BROKEN): Remove macro use
1038         and corresponding code.
1039         * configure: Regenerate.
1040         * config.in: Regenerate.
1041
1042 2012-11-15  Pierre Muller  <muller@sourceware.org>
1043
1044         ARI xasprintf rule fixes.
1045         * dwarf2read.c (create_dwo_in_dwp): Use xstrprintf function
1046         instead of xasprintf.
1047         (open_and_init_dwp_file): Ditto.
1048
1049 2012-11-14  Luis Machado  <lgustavo@codesourcery.com>
1050
1051         * value.c (value_actual_type): Check for TYPE_CODE_STRUCT
1052         target types.
1053
1054 2012-11-14  Tom Tromey  <tromey@redhat.com>
1055
1056         * configure, config.in: Rebuild.
1057         * configure.ac: Don't check for ctype.h, time.h.
1058         * expprint.c: Don't use HAVE_CTYPE_H.
1059
1060 2012-11-13  Tom Tromey  <tromey@redhat.com>
1061
1062         * gdbarch.h, gdbarch.c: Rebuild.
1063         * gdbarch.sh (set_target_gdbarch): Rename from
1064         deprecated_target_gdbarch_select_hack.
1065         * arch-utils.c (gdbarch_update_p): Update.
1066         (set_gdbarch_from_file): Update.
1067
1068 2012-11-14  Pierre Muller  <muller@sourceware.org>
1069
1070         * MAINTAINERS (Responsible Maintainers/misc): Add myself
1071         as responsible of contrib/ari directory.
1072
1073 2012-11-14  Daniel Jacobowitz  <dan@codesourcery.com>
1074             Yao Qi  <yao@codesourcery.com>
1075
1076         * arm-tdep.c (arm_addr_bits_remove): Do not adjust the low
1077         bit of EXC_RETURN.
1078         (arm_m_exception_cache, arm_m_exception_this_id)
1079         (arm_m_exception_prev_register, arm_m_exception_unwind_sniffer)
1080         (arm_m_exception_unwind): New.
1081         (arm_gdbarch_init): Register arm_m_exception_unwind.
1082
1083 2012-11-13  Giuseppe Montalto  <giuseppe.montalto@st.com>
1084
1085         * mi/mi-main.c (mi_cmd_data_write_memory): Handle additional
1086         parameter COUNT, for pattern filling of memory regions.
1087         * NEWS: Mention it.
1088
1089 2012-11-13 Markus Metzger <markus.t.metzger@intel.com>
1090
1091         * disasm.h (DISASSEMBLY_FILENAME): New macro.
1092         * disasm.c (do_mixed_source_and_assembly): Pass filename flag on
1093         to print_source_lines ().
1094         * symtab.h (PRINT_SOURCE_LINES_FILENAME): New print source lines
1095         flag.
1096         * source.c (print_source_lines_base): Prefix source line with
1097         filename if PRINT_SOURCE_LINES_FILENAME flag is set.
1098
1099 2012-11-13 Markus Metzger <markus.t.metzger@intel.com>
1100
1101         * symtab.h (print_source_lines_flags): New enum.
1102         * source.c (print_source_lines_base): Change noerror to flags.
1103         (print_source_lines): Change noerror to flags.
1104
1105 2012-11-13  Pierre Muller  <muller@sourceware.org>
1106
1107         ARI fixes: Avoid sprintf function use rule.
1108         * charset.c (convert_between_encodings): Use xsnprintf.
1109         * cli-out.c (cli_field_int): Likewise.
1110         * cp-namespace.c (cp_lookup_nested_symbol): Likewise.
1111         * expprint.c (op_name_standard): Likewise.
1112         * frv-tdep.c (set_variant_num_gprs): Likewise.
1113         (set_variant_num_fprs): Likewise.
1114         * m68hc11-tdep.c (m68hc11_initialize_register_info): Likewise.
1115         * nto-tdep.c (nto_find_and_open_solib): Likewise.
1116         (nto_init_solib_absolute_prefix): Likewise.
1117         * source.c (init_source_path): Likewise.
1118         (print_source_lines_base): Likewise.
1119         * valprint.c (print_wchar): Likewise.
1120         * mi/mi-out.c (mi_field_int): Likewise.
1121         windows-nat.c (windows_pid_to_exec_file): Likewise.
1122         (windows_create_inferior): Likewise.
1123         (_initialize_check_for_gdb_ini): Likewise.
1124
1125 2012-11-12  Joel Brobecker  <brobecker@adacore.com>
1126
1127         * frame.h (deprecated_frame_register_read): Renames
1128         frame_register_read.
1129         * frame.c (deprecated_frame_register_read): Renames
1130         frame_register_read.  Update all callers.
1131         * i386-tdep.c: Update all callers of frame_register_read.
1132         * infcmd.c: Likewise.
1133         * jit.c: Likewise.
1134         * mips-tdep.c: Likewise.
1135         * mt-tdep.c: Likewise.
1136         * sh64-tdep.c: Likewise.
1137
1138 2012-11-12  Joel Brobecker  <brobecker@adacore.com>
1139
1140         * frame.h (frame_register_read): Remove FIXME comment.
1141         * frame.c (frame_register_read): Add suggestion explaining
1142         which function to use in place of this one.
1143
1144 2012-11-12  Tom Tromey  <tromey@redhat.com>
1145
1146         * python/python.c (start_type_printers): Initialize 'result_obj'.
1147
1148 2012-11-12  Tom Tromey  <tromey@redhat.com>
1149
1150         * NEWS: Update.
1151         * data-directory/Makefile.in (PYTHON_FILES): Add
1152         type_printers.py.
1153         * python/lib/gdb/command/type_printers.py: New file.
1154         * python/lib/gdb/command/types.py (TypePrinter): New class.
1155         (_get_some_type_recognizers, get_type_recognizers,
1156         apply_type_recognizers, register_type_printer): New
1157         functions.
1158         * python/py-objfile.c (objfile_object) <type_printers>: New
1159         field.
1160         (objfpy_dealloc): Decref new field.
1161         (objfpy_new): Set new field.
1162         (objfpy_get_type_printers, objfpy_set_type_printers): New
1163         functions.
1164         (objfile_to_objfile_object): Set new field.
1165         (objfile_getset): Add "type_printers".
1166         * python/py-progspace.c (pspace_object) <type_printers>: New
1167         field.
1168         (pspy_dealloc): Decref new field.
1169         (pspy_new): Set new field.
1170         (pspy_get_type_printers, pspy_set_type_printers): New functions.
1171         (pspace_to_pspace_object): Set new field.
1172         (pspace_getset): Add "type_printers".
1173         * python/python.c (start_type_printers, apply_type_printers,
1174         free_type_printers): New functions.
1175         (_initialize_python): Set gdb.type_printers.
1176         * python/python.h (start_type_printers, apply_type_printers,
1177         free_type_printers): Declare.
1178         * typeprint.c (type_print_raw_options, default_ptype_flags):
1179         Update for new fields.
1180         (do_free_global_table, create_global_typedef_table,
1181         find_global_typedef): New functions.
1182         (find_typedef_in_hash): Use find_global_typedef.
1183         (whatis_exp): Use create_global_typedef_table.  Change cleanup
1184         handling.
1185         * typeprint.h (struct type_print_options) <global_typedefs,
1186         global_printers>: New fields.
1187
1188 2012-11-12  Tom Tromey  <tromey@redhat.com>
1189
1190         * c-typeprint.c (find_typedef_for_canonicalize,
1191         print_name_maybe_canonical): New functions.
1192         (c_print_type): Look up type name.
1193         (cp_type_print_derivation_info): Add flags argument.  Use
1194         print_name_maybe_canonical.
1195         (cp_type_print_method_args): Add wrapping.
1196         (c_type_print_varspec_prefix): Use print_name_maybe_canonical.
1197         (c_type_print_template_args): New function.
1198         (c_type_print_base): Change wrapping.  Use
1199         print_name_maybe_canonical.
1200         <TYPE_CODE_STRUCT>: Possibly create a typedef hash, and do
1201         type name lookups.
1202         * gdbtypes.c (types_equal): No longer static.
1203         * gdbtypes.h (types_equal): Declare.
1204         * typeprint.c (type_print_raw_options, default_ptype_flags):
1205         Update.
1206         (struct typedef_hash_table): New.
1207         (hash_typedef_field, eq_typedef_field,
1208         recursively_update_typedef_hash, add_template_parameters,
1209         create_typedef_hash, free_typedef_hash, do_free_typedef_hash,
1210         make_cleanup_free_typedef_hash, copy_typedef_hash_element,
1211         copy_typedef_hash, find_typedef_in_hash): New functions.
1212         * typeprint.h (struct type_print_options) <local_typedefs>:
1213         New field.
1214         (recursively_update_typedef_hash, add_template_parameters,
1215         create_typedef_hash, free_typedef_hash,
1216         make_cleanup_free_typedef_hash, copy_typedef_hash,
1217         find_typedef_in_hash): Declare.
1218
1219 2012-11-12  Tom Tromey  <tromey@redhat.com>
1220
1221         * cp-support.c (inspect_type,
1222         replace_typedefs_qualified_name, replace_typedefs): Add
1223         finder, data arguments.  Call as needed.
1224         (cp_canonicalize_string_full): New function.
1225         (cp_canonicalize_string_no_typedefs): Rewrite.
1226         * cp-support.h (canonicalization_ftype): New typedef.
1227         (cp_canonicalize_string_full): Declare.
1228
1229 2012-11-12  Tom Tromey  <tromey@redhat.com>
1230
1231         * NEWS: Update.
1232         * c-typeprint.c (c_type_print_base): Handle print_method and
1233         print_typedefs flags.
1234         * gdbcmd.h (setprinttypelist, showprinttypelist): Declare.
1235         * python/py-type.c (typy_str): Use LA_PRINT_TYPE and raw
1236         options.
1237         * typeprint.c (type_print_raw_options, default_ptype_flags):
1238         Update for new field.s
1239         (whatis_exp): Parse flags.  Use LA_PRINT_TYPE.
1240         (setprinttypelist, showprinttypelist, print_methods,
1241         print_typedefs): New globals.
1242         (set_print_type, show_print_type, set_print_type_methods,
1243         show_print_type_methods, set_print_type_typedefs,
1244         show_print_type_typedefs): New functions.
1245         (_initialize_typeprint): Update documentation.  Add "print
1246         type methods" and "print type typedefs" parameters.
1247         * typeprint.h (struct type_print_options) <print_methods,
1248         print_typedefs>: New fields.
1249
1250 2012-11-12  Tom Tromey  <tromey@redhat.com>
1251
1252         * c-typeprint.c (cp_type_print_method_args): Add flags
1253         argument.  Call c_print_type, not type_print.
1254         (c_type_print_base): Call c_print_type, not type_print.
1255         Update.
1256
1257 2012-11-12  Tom Tromey  <tromey@redhat.com>
1258
1259         * ada-lang.c (user_select_syms, ada_print_subexp): Pass flags
1260         to type-printing functions.
1261         * ada-lang.h (ada_print_type): Add argument.
1262         * ada-typeprint.c (print_array_type, print_variant_clauses,
1263         print_variant_part, print_selected_record_field_types,
1264         print_record_field_types, print_unchecked_union_type,
1265         print_func_type, ada_print_type): Add flags argument.
1266         (ada_print_typedef): Update.
1267         * c-exp.y (OPERATOR conversion_type_id): Update.
1268         * c-lang.h (c_print_type, c_type_print_base): Update.
1269         * c-typeprint.c (c_print_type, c_type_print_varspec_prefix,
1270         c_type_print_modifier, c_type_print_args,
1271         c_type_print_varspec_suffix, c_type_print_base): Add flags
1272         argument.
1273         * cp-valprint.c (cp_print_class_member): Update.
1274         * dwarf2read.c (dwarf2_compute_name): Update.
1275         * f-lang.h (f_print_type): Add argument.
1276         * f-typeprint.c (f_print_type): Add flags argument.
1277         * gnu-v3-abi.c (gnuv3_print_method_ptr): Update.
1278         * go-lang.h (go_print_type): Add argument.
1279         * go-typeprint.c (go_print_type): Add flags argument.
1280         * jv-lang.h (java_print_type): Add argument.
1281         * jv-typeprint.c (java_type_print_base, java_print_type): Add
1282         flags argument.
1283         * language.c (unk_lang_print_type): Add flags argument.
1284         * language.h (struct language_defn) <la_print_type>: Add flags
1285         argument.
1286         (LA_PRINT_TYPE): Likewise.
1287         * m2-lang.h (m2_print_type): Add argument.
1288         * m2-typeprint.c (m2_print_type, m2_range, m2_typedef,
1289         m2_array, m2_pointer, m2_ref, m2_procedure, m2_long_set,
1290         m2_unbounded_array, m2_record_fields): Add flags argument.
1291         * p-lang.h (pascal_print_type, pascal_type_print_base,
1292         pascal_type_print_varspec_prefix): Add argument.
1293         * p-typeprint.c (pascal_print_type,
1294         pascal_type_print_varspec_prefix, pascal_print_func_args,
1295         pascal_type_print_varspec_suffix, pascal_type_print_base): Add
1296         flags argument.
1297         * symmisc.c (print_symbol): Update.
1298         * typeprint.c (type_print_raw_options, default_ptype_flags):
1299         New globals.
1300         (type_print): Update.
1301         * typeprint.h (struct type_print_options): New.
1302         (type_print_raw_options): Declare.
1303         (c_type_print_varspec_suffix, c_type_print_args): Add argument.
1304
1305 2012-11-10  Keith Seitz  <keiths@redhat.com>
1306
1307         * breakpoint.c (clear_command): Add cleanup for
1308         sals.sals if an argument is given.
1309
1310         * linespec.c (parse_linespec): Do cleanups after
1311         parsing a convenience variable.
1312
1313 2012-11-10  Keith Seitz  <keiths@redhat.com>
1314
1315         PR gdb/14288
1316         * c-valprint.c (c_val_print): For character arrays
1317         with "print null" option on, print ellipses if
1318         the output is truncated and the next character is not \000.
1319         * valprint.c (MAX_WCHARS): Define.
1320         (WCHAR_BUFLEN): Likewise.
1321         (WCHAR_BUFLEN_MAX): Likewise.
1322         (struct converted_character): New structure.
1323         (count_next_character): New function.
1324         (print_converted_chars_to_obstack): New function.
1325         (generic_printstr): Rewrite using count_next_character
1326         and print_converted_chars_to_obstack.
1327
1328 2012-11-10  Stephane Carrez  <Stephane.Carrez@gmail.com>
1329
1330         * tui/tui.c (tui_rl_command_key): Switch to TUI_ONE_COMMAND_MODE
1331         while executing the gdb command.
1332         (tui_rl_startup_hook): Do not switch back to TUI_SINGLE_KEY_MODE if we
1333         are called from prompt_for_continue.
1334         * tui/tui-io.c (tui_redisplay_readline): Likewise.
1335
1336 2012-11-10  Stephane Carrez  <Stephane.Carrez@gmail.com>
1337
1338         PR tui/9584
1339
1340         * tui/tui.c (tui_rl_command_key): Do not call execute_command
1341         but insert the command to execute in readline's buffer.
1342
1343 2012-11-09  Tom Tromey  <tromey@redhat.com>
1344
1345         * gdbarch.sh (target_gdbarch): Remove macro.
1346         (get_target_gdbarch): Rename to target_gdbarch.
1347         * gdbarch.c, gdbarch.h: Rebuild.
1348         * ada-tasks.c, aix-thread.c, amd64-linux-nat.c, arch-utils.c,
1349         arm-tdep.c, auxv.c, breakpoint.c, bsd-uthread.c, corefile.c,
1350         darwin-nat-info.c, dcache.c, dsrec.c, exec.c, fbsd-nat.c,
1351         filesystem.c, gcore.c, gnu-nat.c, i386-darwin-nat.c, i386-nat.c,
1352         ia64-vms-tdep.c, inf-ptrace.c, infcmd.c, jit.c, linux-nat.c,
1353         linux-tdep.c, linux-thread-db.c, m32r-rom.c, memattr.c,
1354         mep-tdep.c, microblaze-tdep.c, mips-linux-nat.c,
1355         mips-linux-tdep.c, mips-tdep.c, monitor.c, moxie-tdep.c,
1356         nto-procfs.c, nto-tdep.c, ppc-linux-nat.c, proc-service.c,
1357         procfs.c, progspace.c, ravenscar-thread.c, record.c,
1358         remote-m32r-sdi.c, remote-mips.c, remote-sim.c, remote.c,
1359         rl78-tdep.c, rs6000-nat.c, rx-tdep.c, s390-nat.c, sol-thread.c,
1360         solib-darwin.c, solib-dsbt.c, solib-frv.c, solib-ia64-hpux.c,
1361         solib-irix.c, solib-pa64.c, solib-som.c, solib-spu.c,
1362         solib-sunos.c, solib-svr4.c, solib.c, spu-linux-nat.c,
1363         spu-multiarch.c, spu-tdep.c, symfile-mem.c, symfile.c, symtab.c,
1364         target-descriptions.c, target.c, target.h, tracepoint.c,
1365         windows-nat.c, windows-tdep.c, xcoffsolib.c, cli/cli-dump.c,
1366         common/agent.c, mi/mi-interp.c, python/py-finishbreakpoint.c,
1367         python/py-inferior.c, python/python.c: Update.
1368
1369 2012-11-09  Andrew Burgess  <aburgess@broadcom.com>
1370
1371         * source.c (print_source_lines_base): Add fullname field giving
1372         full path to file in mi output.
1373         * NEWS: Mention the new fullname field.
1374
1375 2012-11-09  Yao Qi  <yao@codesourcery.com>
1376
1377         * NEWS: Mention the fix to the ambiguity of 'fo' command.
1378
1379 2012-11-09  Pedro Alves  <palves@redhat.com>
1380
1381         PR gdb/14306
1382
1383         * infrun.c: Include target-descriptions.h.
1384         (follow_exec): Fetch new target description.
1385
1386 2012-11-09  Yao Qi  <yao@codesourcery.com>
1387
1388         * i386-tdep.c (i386_analyze_frame_setup): Handle opcode
1389         0x8d (lea).
1390
1391 2012-11-09  Yao Qi  <yao@codesourcery.com>
1392
1393         * breakpoint.c: Declare set_tracepoint_count.
1394         (install_breakpoint): Call set_tracepoint_count if B is a
1395         tracepoint.
1396         (trace_command): Don't call set_tracepoint_count.  Re-indent.
1397         (strace_command, ftrace_command):
1398         (create_tracepoint_from_upload): Likewise.
1399
1400 2012-11-09  Pedro Alves  <palves@redhat.com>
1401
1402         * gdbarch.sh (target_gdbarch) <gdbarch.h>: Reimplement as macro.
1403         (get_target_gdbarch) <gdbarch.h>: New function.
1404         (startup_gdbarch) <gdbarch.h>: Declare.
1405         <gdbarch.c> (target_gdbarch): Delete.
1406         <gdbarch.c> (deprecated_target_gdbarch_select_hack): Set the
1407         current inferior's gdbarch.
1408         <gdbarch.c> (get_target_gdbarch): New function.
1409         * inferior.c: Include target-descriptions.h.
1410         (free_inferior): Free target description info.
1411         (add_inferior_with_spaces): Set the inferior's initial
1412         architecture.
1413         (clone_inferior_command): Copy the original inferior's target
1414         description if it was user specified.
1415         (initialize_inferiors): Add comment.
1416         * inferior.h (struct target_desc_info): Forward declare.
1417         (struct inferior) <gdbarch>: New field.
1418         * linux-nat.c: Include target-descriptions.h.
1419         (linux_child_follow_fork): Copy the parent's architecture and
1420         target description to the child.
1421         * target-descriptions.c: Include inferior.h.
1422         (struct target_desc_info): New structure, holding the equivalents
1423         of ...
1424         (target_desc_fetched, current_target_desc)
1425         (target_description_filename): ... these removed globals.
1426         (get_tdesc_info, target_desc_info_from_user_p)
1427         (copy_inferior_target_desc_info, target_desc_info_free): New.
1428         (target_desc_fetched, current_target_desc)
1429         (target_description_filename): Reimplemented as convenience
1430         macros.
1431         (tdesc_filename_cmd_string): New global.
1432         (set_tdesc_filename_cmd): Copy the string manipulated by the "set
1433         tdescs filename ..." commands to the per-inferior equivalent.
1434         (show_tdesc_filename_cmd): Get the value to show from the
1435         per-inferior description filename.
1436         (_initilize_target_descriptions): Change the "set/show tdesc
1437         filename" commands' variable.
1438         * target-descriptions.h (struct target_desc, struct target_desc_info)
1439         (struct inferior): Forward declare.
1440         (target_find_description, target_clear_description)
1441         (target_current_description): Adjust comments.
1442         (copy_inferior_target_desc_info, target_desc_info_free)
1443         (target_desc_info_from_user_p). Declare.
1444
1445 2012-11-08  Stephane Carrez  <Stephane.Carrez@gmail.com>
1446
1447         * tui/tui-hooks.c (tui_about_to_proceed): New function.
1448         (tui_target_wait_hook): Remove.
1449         (tui_install_hooks): Install the about_to_proceed observer.
1450         (tui_remove_hooks): And remove it here.
1451
1452 2012-11-08  Tom Tromey  <tromey@redhat.com>
1453
1454         * linux-tdep.c (linux_make_siginfo_note): New function.
1455         (linux_make_corefile_notes): Use it.
1456         * corelow.c (get_core_siginfo): New function.
1457         (core_xfer_partial) <TARGET_OBJECT_SIGNAL_INFO>: New case.
1458
1459 2012-11-08  Tom Tromey  <tromey@redhat.com>
1460
1461         PR gdb/14704:
1462         * gdb_bfd.c (gdb_bfd_ref): Set BFD_DECOMPRESS.
1463         (zlib_decompress_section): Remove.
1464         (gdb_bfd_map_section): Only check for compressed section
1465         in mmap case.  Use bfd_get_full_section_contents.
1466         * osabi.c (check_note): Add 'sectsize' argument.  Read
1467         section data.
1468         (generic_elf_osabi_sniff_abi_tag_sections): Don't read
1469         section data.  Update for check_note change.
1470         * xcoffread.c (xcoff_initial_scan): Use
1471         bfd_get_full_section_contents.
1472         * py-auto-load.c (auto_load_section_scripts): Use
1473         bfd_get_full_section_contents.
1474         * contrib/cc-with-tweaks.sh: Add -Z option.
1475
1476 2012-11-08  Tom Tromey  <tromey@redhat.com>
1477
1478         * python/py-bpevent.c: Include defs.h.
1479         * python/py-continueevent.c: Include defs.h.
1480         * python/py-event.c: Include defs.h.
1481         * python/py-event.h: Don't include defs.h.
1482         * python/py-events.h: Don't include defs.h.
1483         * python/py-evts.c: Include defs.h.
1484         * python/py-exitedevent.c: Include defs.h.
1485         * python/py-newobjfileevent.c: Include defs.h.
1486         * python/py-signalevent.c: Include defs.h.
1487         * python/py-stopevent.c: Include defs.h.
1488         * python/py-threadevent.c: Include defs.h.
1489
1490 2012-11-08  Pierre Muller  <muller@sourceware.org>
1491
1492         * update-web-ari.sh (print_heading): Add number of files
1493         checked.
1494         (nb_files): New variable counting the number of sources
1495         files found by gdb_find.sh script.
1496         (debug_awk): New variable to allow extra debug output.
1497         (indexes): Add more information if DEBUG_AWK is set.
1498
1499 2012-11-08  Edjunior Machado  <emachado@linux.vnet.ibm.com>
1500
1501         * ppc-linux-tdep.c (ppc64_standard_linkage1, ppc64_standard_linkage2,
1502         ppc64_standard_linkage3): Mark ld r11 instructions as optional,
1503         following the change in PLT call stubs on linker.
1504
1505 2012-11-08  Pierre Muller  <muller@sourceware.org>
1506
1507         * contrib/ari/gdb_ari.sh (LANG, LC_ALL): Use 'C' instead of 'c'
1508         as default language.
1509         (AWK): Use = instead of == for sh test to avoid warning.
1510         (Linux rule): Correct [:digit] into [[:digit:]].
1511         (__func__ rule): Adapt to "gdb_assert.h" move to common subdirectory.
1512         (vasprintf rule): Adapt to common subdirectory moves.
1513         (xasprintf rule): Idem.
1514         (xvasprintf rule): Idem.
1515         (var_boolean rule): Accept occurence in == or != test.
1516
1517         * contrib/ari/gdb_find.sh: Also prune gdbtk directory.
1518
1519 2012-11-08  Stephane Carrez  <Stephane.Carrez@gmail.com>
1520
1521         * tui/tui-hooks.c (tui_inferior_exit): New function.
1522         (tui_detach_hook): Remove.
1523         (tui_install_hooks): Install the inferior exit observer.
1524         (tui_remove_hooks): Remove it.
1525
1526 2012-11-08  Yao Qi  <yao@codesourcery.com>
1527
1528         PR gdb/14777.
1529         * source.c (_initialize_source): Call add_com_alias to abbreviate
1530         'forward-search' as 'fo'.
1531
1532 2012-11-07  Pedro Alves  <palves@redhat.com>
1533
1534         * arm-tdep.c: Make defs.h be the first include.
1535         * coff-pe-read.c: Ditto.
1536         * gnu-nat.c: Ditto.
1537         * go32-nat.c: Ditto.
1538         * i386-nat.c: Ditto.
1539         * ppcnbsd-nat.c: Ditto.
1540         * ada-varobj.h: Don't include defs.h.
1541         * i386-darwin-tdep.h: Ditto.
1542         * i386-nat.h: Ditto.
1543
1544 2012-11-07  Pedro Alves  <palves@redhat.com>
1545
1546         * MAINTAINERS: New FSF-appointed maintainers replace the Steering
1547         Committee.
1548
1549 2012-11-07  Pierre Muller  <muller@sourceware.org>
1550
1551         * common/linux-osdata.c (dirent.h): ARI fix: Remove.
1552         File already uses "gdb_dirent.h" header.
1553
1554 2012-11-07  Yao Qi  <yao@codesourcery.com>
1555
1556         * breakpoint.c (get_tracepoint_by_number): Remove 'extern int
1557         tracepoint_count'.
1558
1559 2012-11-06  Tom Tromey  <tromey@redhat.com>
1560
1561         * target.h (inferior_has_forked, inferior_has_vforked)
1562         (inferior_has_execd, inferior_has_called_syscall): Remove
1563         declarations.
1564
1565 2012-11-06  Pierre Muller  <muller@sourceware.org>
1566
1567         * remote.c (remote_insert_hw_breakpoint): ARI fix,
1568         add missing internalization markup.
1569
1570 2012-11-06  Pedro Alves  <palves@redhat.com>
1571
1572         PR gdb/14810
1573
1574         * breakpoint.c (bpstat_stop_status): Skip disabled locations.
1575
1576 2012-11-06  Pierre Muller  <muller@sourceware.org>
1577
1578         * contrib/ari/create-web-ari-in-src.sh: Avoid problem if script
1579         is not executable.
1580
1581 2012-11-05  Joel Brobecker  <brobecker@adacore.com>
1582
1583         * gnulib/update-gnulib.sh: New script.
1584
1585 2012-11-05  Stephane Carrez  <Stephane.Carrez@gmail.com>
1586
1587         * MAINTAINERS: Update my email address.
1588
1589 2012-11-05  Tom Tromey  <tromey@redhat.com>
1590
1591         * frame.c (put_frame_register): Don't use temporary buffer.
1592
1593 2012-11-05  Pedro Alves  <palves@redhat.com>
1594
1595         * inferior.c (exit_inferior_1): Clear 'vfork_parent' in the vfork
1596         child.  Clear 'pending_detach'.
1597         * infrun.c (handle_vfork_child_exec_or_exit): Clear
1598         'pending_detach' in the vfork parent.
1599
1600 2012-11-05  Doug Evans  <dje@google.com>
1601
1602         Add support for DWP files.  http://gcc.gnu.org/wiki/DebugFissionDWP
1603         * contrib/cc-with-tweaks.sh: Add -p parameter to invoke dwp.
1604         * dwarf2read.c: #include "elf-bfd.h".
1605         (struct dwarf2_per_objfile): New members dwp_checked, dwp_file.
1606         (dwop_section_names): Renamed from dwo_section names.  All uses
1607         updated.  Add entries for .debug_cu_index, .debug_tu_index.
1608         (struct dwo_file): Rename dwo_name to name, dwo_bfd to dbfd.
1609         All uses updated.
1610         (struct dwp_sections): New type.
1611         (struct virtual_dwo_sections): New type.
1612         (struct dwp_hash_table): New type.
1613         (struct dwp_file): New type.
1614         (init_cutu_and_read_dies): Ensure DWO info/types section has been
1615         read in.  Handle DWOs coming from DWP files.
1616         (lookup_dwo_file_slot): New function.
1617         (dwarf2_locate_dwo_sections): Move definition closer to use.
1618         (create_dwo_debug_info_hash_table_reader): Renamed from
1619         create_debug_info_hash_table_reader.  All callers updated.
1620         (create_dwo_debug_info_hash_table): Renamed from
1621         create_debug_info_hash_table.  All callers updated.
1622         (create_dwp_hash_table): New function.
1623         (locate_virtual_dwo_sections, create_dwo_in_dwp): New functions.
1624         (lookup_dwo_in_dwp): New function.
1625         (try_open_dwop_file): Renamed from try_open_dwo_file.  New parameter
1626         is_dwp.  All callers updated.
1627         (open_dwop_file): Renamed from open_dwo_file.  All callers updated.
1628         (open_and_init_dwo_file): Renamed from init_dwo_file.
1629         All callers updated.
1630         (lookup_dwo_file): Delete.
1631         (dwarf2_locate_dwp_sections): New function.
1632         (hash_dwp_loaded_cutus, eq_dwp_loaded_cutus): New functions.
1633         (allocate_dwp_loaded_cutus_table): New function.
1634         (open_and_init_dwp_file): New function.
1635         (lookup_dwo_cutu): New function.
1636         (lookup_dwo_comp_unit, lookup_dwo_type_unit): Call it.
1637
1638 2012-11-03  Yao Qi  <yao@codesourcery.com>
1639
1640         Fix PR gdb/14617.
1641         * breakpoint.c (trace_pass_set_count): Call
1642         observer_notify_breakpoint_modified instead of
1643         observer_notify_tracepoint_modified.
1644         * mi/mi-cmd-break.c (mi_cmd_break_passcount): Likewise.
1645
1646 2012-11-02  Tom Tromey  <tromey@redhat.com>
1647
1648         * breakpoint.c (catch_syscall_completer): Pass 'word' as second
1649         argument to complete_on_enum.
1650
1651 2012-11-02  Tom Tromey  <tromey@redhat.com>
1652
1653         * configure: Rebuild.
1654         * configure.ac (build_warnings): Add -Wempty-body.
1655         * m68k-tdep.c (m68k_gdbarch_init): Remove empty 'if'.
1656         * remote.c (handle_notification): Use braces for empty 'else' body.
1657         * s390-tdep.c (s390_analyze_prologue): Use braces for empty
1658         'else' body.
1659         * sh64-tdep.c (sh64_push_dummy_call): Use braces for empty
1660         'else' body.
1661         * solib-som.c (som_relocate_section_addresses): Use braces
1662         for empty 'else' body.
1663         * ui-file.c (stdio_file_write): Use braces for empty 'if' body.
1664         (stdio_file_write_async_safe, stdio_file_fputs): Likewise.
1665
1666 2012-11-02  Pedro Alves  <palves@redhat.com>
1667
1668         PR gdb/14766
1669
1670         * infrun.c (handle_inferior_event)
1671         <TARGET_WAITKIND_EXITED/TARGET_WAITKIND_SIGNALLED>: Switch to
1672         null_ptid before handling a vfork child exec or exit.  Switch to
1673         the event ptid afterwards.
1674
1675 2012-11-02  Yao Qi  <yao@codesourcery.com>
1676
1677         * std-operator.def: Remove OP_LABELED.
1678         * eval.c: Remove the declaration of 'get_label'.
1679         (get_label): Remove.
1680         (evaluate_struct_tuple): Remove code handling OP_LABELED.
1681         Update comment.
1682         Remove local variable 'variantno' and related code.
1683         Replace 'substruct_type' with 'struct_type'.  Replace 'subfieldno'
1684         with 'fieldno'.
1685         * expprint.c (print_subexp_standard): Likewise.
1686         (dump_subexp_body_standard): Likewise.
1687         * parse.c (operator_length_standard): Likewise.
1688
1689 2012-11-01  Pierre Muller  <muller@ics.u-strasbg.fr>
1690
1691         Incorporate ARI web page generator into GDB sources.
1692         * contrib/ari/create-web-ari-in-src.sh: New file.
1693         * contrib/ari/gdb_ari.sh: New file.
1694         * contrib/ari/gdb_find.sh: New file.
1695         * contrib/ari/update-web-ari.sh: New file.
1696
1697 2012-10-31  Tom Tromey  <tromey@redhat.com>
1698
1699         * gdbarch.c: Rebuild.
1700         * gdbarch.sh: Remove references to gdbarch_swap.
1701         * corelow.c (core_open): Remove obsolete comment.
1702
1703 2012-10-31  Andrew Burgess  <aburgess@broadcom.com>
1704
1705         PR cli/14772
1706         * c-typeprint.c (c_print_type): Don't print a space for vector
1707         types, this is handled within the suffix.
1708         (c_type_print_varspec_suffix): Add a space to vector suffix.
1709
1710 2012-10-26  Pedro Alves  <palves@redhat.com>
1711
1712         * amd64-tdep.c (amd64_relocate_instruction): Use
1713         store_unsigned_integer instead of memcpy.
1714         * i386-tdep.c (i386_relocate_instruction): Ditto.
1715
1716 2012-10-26  Pedro Alves  <palves@redhat.com>
1717
1718         * infrun.c (handle_inferior_event): Merge handling of
1719         TARGET_WAITKIND_EXITED and TARGET_WAITKIND_SIGNALLED into a single
1720         switch case.
1721
1722 2012-10-26  Pedro Alves  <palves@redhat.com>
1723
1724         * infrun.c (handle_inferior_event) <TARGET_WAITKIND_SIGNALLED>:
1725         Remove comment.
1726
1727 2012-10-26  Pedro Alves  <palves@redhat.com>
1728
1729         * target.c (target_waitstatus_to_string): Handle
1730         TARGET_WAITKIND_VFORK_DONE.
1731
1732 2012-10-26  Pedro Alves  <palves@redhat.com>
1733
1734         * infrun.c (handle_inferior_event): Print TARGET_WAITKIND_VFORKED
1735         as "TARGET_WAITKIND_VFORKED", not "TARGET_WAITKIND_FORKED".
1736
1737 2012-10-24  Tristan Gingold  <gingold@adacore.com>
1738
1739         * ravenscar-sparc-thread.c (ravenscar_sparc_fetch_registers):
1740         Add comments.
1741
1742 2012-10-24  Joel Brobecker  <brobecker@adacore.com>
1743
1744         * ravenscar-thread.c (ravenscar_wait): Only update the list
1745         of threads and inferior_ptid if the inferior is still alive.
1746
1747 2012-10-24  Joel Brobecker  <brobecker@adacore.com>
1748
1749         * ada-lang.c (is_known_support_routine): Use lbasename when
1750         matching the symtab's filename against
1751         known_runtime_file_name_patterns.
1752
1753 2012-10-24  Joel Brobecker  <brobecker@adacore.com>
1754
1755         * ada-lang.c (ada_same_array_size_p): New function.
1756         (ada_promote_array_of_integrals): New function.
1757         (coerce_for_assign): Add handling of arrays where the elements
1758         are integrals of a smaller size than the size of the target
1759         array element type.
1760
1761 2012-10-24  Joel Brobecker  <brobecker@adacore.com>
1762
1763         * doublest.c (convert_doublest_to_floatformat): Fix comparison
1764         against maximum exponent value.
1765
1766 2012-10-24  Joel Brobecker  <brobecker@adacore.com>
1767
1768         * ada-lang.h (ADA_KNOWN_RUNTIME_FILE_NAME_PATTERNS): Add entry for
1769         "unwind-seh.c".
1770
1771 2012-10-24  Joel Brobecker  <brobecker@adacore.com>
1772
1773         * ada-lang.c (ada_template_to_fixed_record_type_1): Do not
1774         strip typedef layer when computing the fixed type's field type,
1775         only when computing its size.
1776
1777 2012-10-24  Mark Kettenis  <kettenis@gnu.org>
1778
1779         PR gdb/12783
1780         * i386-tdep.c (i386_return_value): Handle complex double and long
1781         double.
1782
1783 2012-10-24  Joel Brobecker  <brobecker@adacore.com>
1784
1785         * windows-nat.c (windows_create_inferior) [!__CYGWIN__]:
1786         New local variable args_len.
1787         Quote the name of the executable when computing the command line.
1788
1789 2012-10-23  Mark Kettenis  <kettenis@gnu.org>
1790
1791         PR gdb/12796
1792         PR gdb/12798
1793         PR gdb/12800
1794         * amd64-tdep.h (enum amd64_regnum): Add AMD64_ST1_REGNUM and
1795         AMD64_FTAG_REGNUM.
1796         * amd64-tdep.c (amd64_classify): Classify complex types.
1797         (amd64_return_value): Handle the COMPLEX_X87 class.
1798
1799 2012-10-23  Joel Brobecker  <brobecker@adacore.com>
1800
1801         * rs6000-aix-tdep.c (rs6000_aix_auto_wide_charset): New function.
1802         (rs6000_aix_init_osabi): Set auto_wide_charset gdbarch method.
1803
1804 2012-10-23  Joel Brobecker  <brobecker@adacore.com>
1805
1806         * amd64-windows-tdep.c (amd64_windows_auto_wide_charset): New
1807         function.
1808         (amd64_windows_init_abi): Set auto_wide_charset gdbarch method
1809         to amd64_windows_auto_wide_charset.
1810
1811 2012-10-23  Yao Qi  <yao@codesourcery.com>
1812
1813         * event-top.c (mark_async_signal_handler_wrapper): Remove.
1814         * event-top.h: Remove its declaration.
1815         (async_request_quit): Call mark_async_signal_handler instead of
1816         mark_async_signal_handler_wrapper.
1817         (async_do_nothing, async_disconnect): Likewise.
1818         (async_stop_sig): Likewise.
1819         * remote.c (handle_remote_sigint): Likewise.
1820         (handle_remote_sigint_twice): Likewise.
1821
1822 2012-10-23  Yao Qi  <yao@codesourcery.com>
1823
1824         * event-top.c (sigint_token, sighup_token): Replace 'void *'
1825         with 'static struct async_signal_handler *'.
1826         (sighup_token, sigquit_token, sigstp_token): Likewise.
1827
1828 2012-10-22  Ali Anwar  <ali_anwar@codesourcery.com>
1829
1830         * gdbarch.sh (function_list): Use 'pstring' when printing
1831         a variable which could return NULL.
1832         * gdbarch.c: Regenerate.
1833
1834 2012-10-10  Joel Brobecker  <brobecker@adacore.com>
1835             Tom Tromey  <tromey@redhat.com>
1836
1837         * rs6000-aix-tdep.c (rs6000_aix_osabi_sniffer): Replace
1838         inneffective if condition by gdb assertion.  Add function
1839         description comment.
1840
1841 2012-10-19  Joel Brobecker  <brobecker@adacore.com>
1842
1843         * parser-defs.h (struct exp_descriptor): Document constraint
1844         on return value for "op_name" callbacks.
1845
1846 2012-10-18  Tom Tromey  <tromey@redhat.com>
1847
1848         * tracepoint.c (print_one_static_tracepoint_marker): Constify.
1849         * symtab.c (iterate_over_some_symtabs): Constify.
1850         * source.h (symtab_to_fullname): Return 'const char *'.
1851         * source.c (symtab_to_fullname): Return 'const char *'.
1852         * python/py-symtab.c (stpy_fullname): Constify.
1853         * cli/cli-cmds.c (edit_command): Constify.
1854         * breakpoint.c (print_breakpoint_location)
1855         (update_static_tracepoint): Constify.
1856
1857 2012-10-18  Tom Tromey  <tromey@redhat.com>
1858
1859         * breakpoint.c (compare_breakpoints): Fix comparison.
1860
1861 2012-10-18  Tom Tromey  <tromey@redhat.com>
1862
1863         * valprint.c (generic_emit_char, generic_printstr): Pass size of
1864         gdb_wchar_t to convert_between_encodings.
1865
1866 2012-10-17  Yao Qi  <yao@codesourcery.com>
1867
1868         * breakpoint.c (invalidate_bp_value_on_memory_change): Add one
1869         more parameter 'inferior'.
1870         * corefile.c (write_memory_with_notification): Caller update.
1871
1872         * mi/mi-cmd-var.c: Include "mi-main.h".
1873         (mi_cmd_var_assign): Set mi_suppress_notification.data_write_memory
1874         to 1 and restore it later.
1875         * mi/mi-cmds.c (mi_cmd mi_cmds): Update for "data-write-memory"
1876         and "data-write-memory-bytes.
1877         * mi/mi-interp.c: Include objfiles.h.
1878         (mi_interpreter_init): Call observer_attach_memory_changed.
1879         (mi_memory_changed): New.
1880         * mi/mi-main.h (struct mi_suppress_notification) <memory>:
1881         New field.
1882
1883         * NEWS: Mention new MI notification "memory-changed".
1884
1885 2012-10-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
1886
1887         * dwarf2loc.c (dwarf_expr_reg_to_entry_parameter): Remove comment.
1888
1889 2012-10-15  Doug Evans  <dje@google.com>
1890
1891         New option -nh: inhibit loading of ~/.gdbinit.
1892         * NEWS: Mention -nh.
1893         * main.c (captured_main): Recognize and process -nh.
1894         (print_gdb_help): Mention -nh.
1895         * gdb.1: Mention -nh.  Remove erroneous docs on -nx behavior.
1896
1897 2012-10-15  H.J. Lu  <hongjiu.lu@intel.com>
1898
1899         PR backtrace/14646
1900         PR gdb/14647
1901         * i386-tdep.h (gdbarch_tdep): Remove sp_regnum_from_eax and
1902         pc_regnum_from_eax.
1903         * i386-tdep.c (i386_gdbarch_init): Don't use sp_regnum_from_eax
1904         nor pc_regnum_from_eax.
1905         * amd64-tdep.c (amd64_x32_init_abi): Don't set sp_regnum_from_eax
1906         nor pc_regnum_from_eax.
1907
1908 2012-10-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
1909
1910         Fix entry values resolving in inlined frames.
1911         * dwarf2loc.c (dwarf_expr_reg_to_entry_parameter): Move func_addr,
1912         gdbarch and caller_frame initialization later.  Skip INLINE_FRAME
1913         entries of FRAME.
1914
1915 2012-10-15  Joel Brobecker  <brobecker@adacore.com>
1916
1917         * configure.ac: Build with -DMS_WIN64 if building with Python
1918         enabled using GCC on amd64-windows.
1919         * configure: Regenerate.
1920
1921 2012-10-15  Tom Tromey  <tromey@redhat.com>
1922
1923         PR python/14635:
1924         * python/py-symtab.c (del_objfile_sal): Set 'symtab' field
1925         to Py_None.
1926
1927 2012-10-15  Tom Tromey  <tromey@redhat.com>
1928
1929         PR python/14634:
1930         * python/py-symbol.c (sympy_dealloc): Check for NULL symbol.
1931
1932 2012-10-11  Andrew Burgess  <aburgess@broadcom.com>
1933
1934         * remote-sim.c (gdbsim_create_inferior): Call init_thread_list to
1935         reset thread numbering back to 1.
1936
1937 2012-10-11  Doug Evans  <dje@google.com>
1938
1939         PR breakpoints/14643.
1940         * linespec.c (struct ls_parser): New member keyword_ok.
1941         (linespec_lexer_lex_string): Add comment.
1942         (linespec_lexer_lex_one): Ignore keywords if it's the wrong place
1943         for one.
1944         (parse_linespec): Set keyword_ok.
1945
1946 2012-10-10  Doug Evans  <dje@google.com>
1947
1948         * dwarf2read.c (process_psymtab_comp_unit_reader): Remove duplicate
1949         "0x" prefix on address in log message.
1950
1951         * dwarf2read.c (read_1_byte): Add const to buf parameter.
1952         (read_1_signed_byte, read_2_bytes, read_2_signed_bytes): Ditto.
1953         (read_4_bytes, read_4_signed_bytes, read_8_bytes): Ditto.
1954         (lookup_dwo_file): Add const to dwo_name parameter.
1955         (lookup_dwo_comp_unit, lookup_dwo_type_unit): Ditto.
1956
1957 2012-10-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
1958
1959         Fix crash during stepping on ppc32.
1960         * ppc-linux-tdep.c (powerpc_linux_in_dynsym_resolve_code): Test NULL
1961         SYM.
1962
1963 2012-10-03  Doug Evans  <dje@google.com>
1964
1965         PR symtab/14601
1966         * buildsym.c (buildsym_init): Reset using_directives to NULL.
1967
1968 2012-10-02  Andrew Burgess  <aburgess@broadcom.com>
1969
1970         * remote-sim.c (dump_mem): Always dump buffer contents, zero fill
1971         output and use uint32_t not long to ensure 4 byte size.
1972
1973 2012-10-02  Joel Brobecker  <brobecker@adacore.com>
1974
1975         * rs6000-nat.c (add_vmap): Set "last" to "next" after having
1976         unref'ed it.
1977
1978 2012-10-01  Andrew Burgess  <aburgess@broadcom.com>
1979
1980         * target.c (simple_search_memory): Include access length in
1981         warning message.
1982
1983 2012-09-28  Nathan Miller  <nathanm2@us.ibm.com>
1984             Edjunior Machado  <emachado@linux.vnet.ibm.com>
1985
1986         PR gdb/13989
1987         * solib.c (solib_find): Prevent GDB from loading native libraries when
1988         debugging a cross-target corefile.
1989
1990 2012-09-28  selven  <pcthegreat@gmail.com>
1991
1992         Make definition match declaration.
1993
1994         * regcache.c (regcache_register_status): Change return type to
1995         enum register_status.
1996
1997 2012-09-28  Yao Qi  <yao@codesourcery.com>
1998
1999         * mi/mi-main.c (mi_cmd_data_write_memory): Call
2000         write_memory_with_notification instead of write_memory.
2001         (mi_cmd_data_write_memory_bytes): Call write_memory_with_notification
2002         instead of target_write_memory.
2003
2004 2012-09-28  Yao Qi  <yao@codesourcery.com>
2005
2006         * mi/mi-main.c (mi_cmd_data_write_memory_bytes): Emit error
2007         when the length of content is not an even number.
2008
2009 2012-09-27  Tom Tromey  <tromey@redhat.com>
2010
2011         Fix https://bugzilla.redhat.com/show_bug.cgi?id=849357
2012         * cp-valprint.c (cp_print_value_fields): Use get_vptr_fieldno.
2013
2014 2012-09-27  Joel Brobecker  <brobecker@adacore.com>
2015
2016         * sol-thread.c (sol_thread_fetch_registers)
2017         (sol_thread_store_registers): Delete commented out code.
2018
2019 2012-09-27  Joel Brobecker  <brobecker@adacore.com>
2020
2021         * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
2022         Move these functions to sparc-sol-thread.c.
2023         * sparc-sol-thread.c: New file.
2024         * configure.ac: Add sparc-sol-thread.o to CONFIG_OBS and
2025         sparc-sol-thread.c to CONFIG_SRCS for sparc-solaris native
2026         configurations.
2027         * configure: Regenerate.
2028
2029 2012-09-27  Joel Brobecker  <brobecker@adacore.com>
2030
2031         * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
2032         Remove commented-out code.
2033
2034 2012-09-27  Joel Brobecker  <brobecker@adacore.com>
2035
2036         * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
2037         Enable this code for sparc hosts only.
2038
2039 2012-09-27  Joel Brobecker  <brobecker@adacore.com>
2040
2041         * procfs.h (procfs_find_LDT_entry): Add declaration.
2042         * sol-thread.c (ps_lgetLDT): Delete local declaration of
2043         function procfs_find_LDT_entry.
2044
2045 2012-09-27  Joel Brobecker  <brobecker@adacore.com>
2046
2047         * procfs.c (proc_get_LDT_entry): Make static.
2048
2049 2012-09-27  Joel Brobecker  <brobecker@adacore.com>
2050
2051         * procfs.c (proc_find_memory_regions): Fix declaration.
2052
2053 2012-09-27  Siddhesh Poyarekar  <siddhesh@redhat.com>
2054
2055         * amd64-tdep.c (amd64_return_value): Revert previous change
2056         that used TYPE_LENGTH directly.
2057         * bfin-tdep.c (bfin_extract_return_value): Likewise.
2058         (bfin_store_return_value): Likewise.
2059         * cris-tdep.c (cris_store_return_value): Likewise.
2060         (cris_extract_return_value): Likewise.
2061         * h8300-tdep.c (h8300_extract_return_value): Likewise.
2062         * hppa-tdep.c (hppa64_return_value): Likewise.
2063         * lm32-tdep.c (lm32_store_return_value): Likewise.
2064         * microblaze-tdep.c (microblaze_store_return_value): Likewise.
2065         * spu-tdep.c (spu_value_from_register): Likewise.
2066         * vax-tdep.c (vax_return_value): Likewise.
2067
2068 2012-09-27  Siddhesh Poyarekar  <siddhesh@redhat.com>
2069
2070         * gdbtypes.c (lookup_array_range_type): Expand parameters
2071         LOW_BOUND and HIGH_BOUND to LONGEST.
2072         (lookup_string_range_type): Likewise.
2073         * gdbtypes.h (lookup_array_range_type): Likewise.
2074         (lookup_string_range_type): Likewise.
2075         * valops.c (value_cstring): Expand parameter LEN to ssize_t.
2076         Expand HIGHBOUND to ssize_t.
2077         (value_string): Likewise.
2078         * value.h (value_cstring): Expand parameter LEN to ssize_t.
2079         (value_string): Likewise.
2080
2081 2012-09-27  Yao Qi  <yao@codesourcery.com>
2082
2083         PR breakpoints/13898
2084         * breakpoint.h (tracepoint_breakpoint_ops): Forward declaration.
2085         * mi/mi-cmd-break.c (mi_cmd_break_insert): Set breakpoint_ops
2086         per breakpoint type.
2087
2088 2012-09-26  Pierre Muller  <muller@ics.u-strasbg.fr>
2089
2090         * procfs.c: Add gdb_bfd header.
2091         * rs6000-nat.c: Likewise.
2092         * solib-pa64.c: Likewise.
2093         * spu-linux-nat.c: Likewise.
2094         * windows-nat.c: Likewise.
2095
2096 2012-09-26  Tom Tromey  <tromey@redhat.com>
2097
2098         * f-lang.h (BLANK_COMMON_NAME_LOCAL): Remove.
2099
2100 2012-09-26  Tom Tromey  <tromey@redhat.com>
2101
2102         * dwarf2read.c (mark_common_block_symbol_computed): New function.
2103         (read_common_block): Handle child DIEs with
2104         DW_AT_data_member_location.
2105         (new_symbol_full): Add special case for common blocks.
2106
2107 2012-09-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
2108             Tom Tromey  <tromey@redhat.com>
2109
2110         * dwarf2read.c (read_common_block): Rewrite.
2111         (new_symbol_full): Handle DW_TAG_common_block.
2112         * f-lang.c (head_common_list, find_common_for_function):
2113         Remove.
2114         * f-lang.h (struct common_entry, struct saved_f77_common,
2115         SAVED_F77_COMMON, SAVED_F77_COMMON_PTR, COMMON_ENTRY,
2116         COMMON_ENTRY_PTR, head_common_list, find_common_for_function,
2117         BLANK_COMMON_NAME_LOCAL): Remove.
2118         (struct common_block): New.
2119         * f-valprint.c (list_all_visible_commons): Remove.
2120         (info_common_command_for_block): New function.
2121         (info_common_command): Use it.
2122         * stack.c (iterate_over_block_locals): Special case for
2123         COMMON_BLOCK_DOMAIN.
2124         * symtab.h (enum domain_enum_tag) <COMMON_BLOCK_DOMAIN>: New
2125         constant.
2126         (struct general_symbol_info) <value.common_block>: New field.
2127         (SYMBOL_VALUE_COMMON_BLOCK): New define.
2128
2129 2012-09-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
2130             Tom Tromey  <tromey@redhat.com>
2131
2132         * f-lang.c (allocate_saved_bf_node,
2133         allocate_saved_function_node, allocate_saved_f77_common_node,
2134         allocate_common_entry_node, tail_common_list, current_common,
2135         saved_bf_list, saved_bf_list_end, current_head_bf_list,
2136         tmp_bf_ptr, add_common_block, add_common_entry,
2137         find_first_common_named, patch_common_entries,
2138         patch_all_commons_by_name, ADD_BF_SYMNUM, clear_bf_list,
2139         global_remote_debug, get_bf_for_fcn, saved_function_list,
2140         saved_function_list_end, clear_function_list, struct saved_fcn,
2141         struct saved_bf_symnum, SAVED_FUNCTION, SAVED_FUNCTION_PTR,
2142         SAVED_BF, SAVED_BF_PTR): Remove.
2143         * f-lang.h (tail_common_list, current_common,
2144         UNINITIALIZED_SECNUM, COMMON_NEEDS_PATCHING,
2145         BLANK_COMMON_NAME_ORIGINAL, BLANK_COMMON_NAME_MF77,
2146         DEFAULT_UPPER_BOUND, DEFAULT_LOWER_BOUND, real_main_name,
2147         real_main_c_value): Remove.
2148         * f-valprint.c (there_is_a_visible_common_named): Remove.
2149
2150 2012-09-26  Andrew Burgess  <aburgess@broadcom.com>
2151
2152         * breakpoint.c (update_global_location_list): Ignore previous
2153         duplicate status of a breakpoint when starting a new scan for
2154         duplicate breakpoints.
2155
2156 2012-09-26  Karthik Bhat  <kv.bhat@samsung.com>
2157         PR breakpoints/14419
2158         * arm-tdep.c (arm_skip_prologue): Extending producer check to
2159         support LLVM compiler.
2160
2161 2012-09-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
2162
2163         * amd64-tdep.c (amd64_return_value): Use TYPE_LENGTH directly.
2164         * bfin-tdep.c (bfin_extract_return_value): Likewise.
2165         (bfin_store_return_value): Likewise.
2166         * cris-tdep.c (cris_store_return_value): Likewise.
2167         (cris_extract_return_value): Likewise.
2168         * h8300-tdep.c (h8300_extract_return_value): Likewise.
2169         * hppa-tdep.c (hppa64_return_value): Likewise.
2170         * lm32-tdep.c (lm32_store_return_value): Likewise.
2171         * microblaze-tdep.c (microblaze_store_return_value): Likewise.
2172         * spu-tdep.c (spu_value_from_register): Likewise.
2173         * vax-tdep.c (vax_return_value): Likewise.
2174
2175 2012-09-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
2176
2177         * breakpoint.c (invalidate_bp_value_on_memory_change): Expand
2178         parameter LEN to ssize_t.
2179
2180 2012-09-25  Siddhesh Poyarekar  <siddhesh@redhat.com>
2181
2182         * ada-valprint.c (ada_val_print_1): Eliminate single-use
2183         variable LEN.
2184         * alpha-tdep.c (alpha_extract_return_value): Use TYPE_LENGTH
2185         directly.
2186         (alpha_store_return_value): Likewise.
2187         * amd64-tdep.c (amd64_classify_aggregate): Likewise.
2188         (amd64_push_arguments): Likewise.
2189         * ax-gdb.c (gen_trace_static_fields): Likewise.
2190         (gen_traced_pop): Likewise.
2191         * bfin-tdep.c (bfin_push_dummy_call): Likewise.
2192         * breakpoint.c (update_watchpoint): Likewise.
2193         * findcmd.c (parse_find_args): Use local variable for type
2194         instead of length.
2195         * findvar.c (default_read_var_value): Use TYPE_LENGTH directly.
2196         * h8300-tdep.c (h8300h_extract_return_value): Likewise.
2197         (h8300_store_return_value): Likewise.
2198         * i386-darwin-tdep.c (i386_darwin_push_dummy_call): Likewise.
2199         Use i386_darwin_arg_type_alignment directly.
2200         * infcall.c (call_function_by_hand): Use TYPE_LENGTH directly.
2201         * lm32-tdep.c (lm32_push_dummy_call): Likewise.
2202         * m68hc11-tdep.c (m68hc11_push_dummy_call): Likewise.
2203         (m68hc11_extract_return_value): Likewise.
2204         * mep-tdep.c (mep_push_dummy_call): Likewise.
2205         * printcmd.c (float_type_from_length): Likewise.
2206         * s390-tdep.c (s390_value_from_register): Likewise.
2207         * stack.c (read_frame_arg): Likewise.
2208         * tracepoint.c (encode_actions_1): Likewise.
2209         * valops.c (value_fetch_lazy): Use local variable for type
2210         instead of length.  Use TYPE_LENGTH directly.
2211         * value.c (value_contents_equal): Use TYPE_LENGTH directly.
2212
2213 2012-09-25  Joel Brobecker  <brobecker@adacore.com>
2214
2215         * symtab.c (skip_prologue_sal): Fix typo in comment.
2216
2217 2012-09-25  Joel Brobecker  <brobecker@adacore.com>
2218
2219         * linespec.c (create_sals_line_offset): Fix typo in comment.
2220
2221 2012-09-25  Siddhesh Poyarekar  <siddhesh@redhat.com>
2222
2223         * c-typeprint.c (c_type_print_varspec_suffix): Remove cast and
2224         use plongest to print the array size.
2225
2226 2012-09-24  Siddhesh Poyarekar  <siddhesh@redhat.com>
2227
2228         * m2-typeprint.c (m2_enum): Expand LASTVAL to LONGEST.
2229         * p-valprint.c (pascal_type_print_base): Likewise.
2230
2231 2012-09-22  Yao Qi  <yao@codesourcery.com>
2232
2233         * remote.c (remote_get_trace_status): Remove setting default
2234         values of fields of 'ts'.
2235
2236 2012-09-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
2237
2238         Fix internal error on canonicalization of clang types.
2239         * cp-name-parser.y (operator): New comment at make_operator call for
2240         new, delete, new[] and delete[].
2241         (exp): Use "sizeof ".  Add new comment at make_operator call.
2242
2243 2012-09-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
2244
2245         Fix disassemble without parameters in tailcall frame.
2246         * cli/cli-cmds.c (disassemble_current_function): Use
2247         get_frame_address_in_block.
2248
2249 2012-09-21  Tom Tromey  <tromey@redhat.com>
2250
2251         * c-typeprint.c (c_type_print_base) <TYPE_CODE_STRUCT,
2252         TYPE_CODE_UNION>: Unify, removing a goto.
2253
2254 2012-09-21  Tom Tromey  <tromey@redhat.com>
2255
2256         * c-typeprint.c (cp_type_print_derivation_info): Fix comment.
2257
2258 2012-09-21  Andrew Burgess  <aburgess@broadcom.com>
2259
2260         * findvar.c (read_frame_register_value): Mark the result value as
2261         optimized out if any of the input registers have been optimized out.
2262
2263 2012-09-21  Andreas Schwab  <schwab@linux-m68k.org>
2264
2265         * python/python.c (finalize_python): Only define if HAVE_PYTHON.
2266
2267 2012-09-21  Siddhesh Poyarekar  <siddhesh@redhat.com>
2268
2269         * eval.c (evaluate_subexp_standard): Eliminate single-use
2270         variable LOWER.
2271
2272 2012-09-21  Yao Qi  <yao@codesourcery.com>
2273
2274         * mi/mi-interp.c: Declare mi_record_changed.
2275         (mi_interpreter_init): Call observer_attach_record_changed.
2276         (mi_record_changed): New.
2277         * record.c (record_open): Call observer_notify_record_changed.
2278         (cmd_record_stop): Call observer_notify_record_changed.
2279         * NEWS: Mention it.
2280
2281 2012-09-20  Tom Tromey  <tromey@redhat.com>
2282
2283         * NEWS: Update.
2284         * python/python.c (finalize_python): New function.
2285         (_initialize_python): Make a final cleanup.
2286
2287 2012-09-19  Doug Evans  <dje@google.com>
2288
2289         * buildsym.h (param_symbols): Delete, unused.
2290         (context_stack): Delete member "params", unused.
2291         * buildsym.c (push_context): Update.
2292         * dwarf2read.c (read_func_scope): Update.
2293
2294 2012-09-19  Thomas Schwinge  <thomas@codesourcery.com>
2295
2296         * sh-tdep.c (sh_register_convert_to_virtual)
2297         (sh_register_convert_to_raw): Add a gdbarch parameter.  Update
2298         all callers.  Just do a memcpy if not the little-endian case.
2299
2300         * h8300-tdep.c (h8300_gdbarch_init): Invoke
2301         set_gdbarch_double_format and set_gdbarch_long_double_format.
2302         * m68hc11-tdep.c (m68hc11_gdbarch_init): Invoke
2303         set_gdbarch_double_format.
2304         * sh-tdep.c (sh_gdbarch_init): Likewise.
2305
2306         * NEWS: Document the removal of SH's 'regs' command.
2307         * sh-tdep.c (_initialize_sh_tdep): Remove the deprecated 'regs'
2308         command.
2309
2310 2012-09-18  Sergio Durigan Junior  <sergiodj@redhat.com>
2311
2312         * infcmd.c (_initialize_infcmd): Register `j' as an alias for
2313         `jump'.
2314
2315 2012-09-18  Joel Brobecker  <brobecker@adacore.com>
2316
2317         * linespec.c (iterate_over_all_matching_symtabs): Use the correct
2318         language when iterating over symbols.
2319
2320 2012-09-18  Yao Qi  <yao@codesourcery.com>
2321
2322         * mi/mi-interp.c: Declare mi_tsv_created and mi_tsv_deleted.
2323         (mi_interpreter_init): Call observer_attach_tsv_created and
2324         observer_attach_tsv_deleted.
2325         (mi_tsv_created, mi_tsv_deleted): New.
2326         * tracepoint.c (delete_trace_state_variable): Call
2327         observer_notify_tsv_deleted.
2328         (trace_variable_command): Call observer_notify_tsv_created.
2329         (delete_trace_variable_command): Call
2330         observer_notify_tsv_deleted.
2331         (create_tsv_from_upload): Call observer_notify_tsv_created.
2332         * NEWS: Mention it.
2333
2334 2012-09-18  Yao Qi  <yao@codesourcery.com>
2335
2336         * tracepoint.c (tfind_1): Call observer_notify_traceframe_changed
2337         if traceframe changed.
2338         * mi/mi-cmds.c (mi_cmd mi_cmds): Adjust for command
2339         "trace-find".
2340         * mi/mi-interp.c: Declare 'mi_traceframe_changed'.
2341         (mi_interpreter_init): Hook mi_traceframe_changed to observer
2342         'traceframe_changed'.
2343         (mi_traceframe_changed): New.
2344         * mi/mi-main.h (struct mi_suppress_notification) <traceframe>:
2345         New field.
2346         * NEWS: Mention the new MI notification.
2347
2348 2012-09-17  Mike Wrighton  <wrighton@codesourcery.com>
2349
2350         * MAINTAINERS (Write After Approval): Add "Mike Wrighton".
2351
2352 2012-09-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
2353
2354         * common/linux-ptrace.c: Change __i386__ to __i386__ || __x86_64__.
2355         (linux_ptrace_test_ret_to_nx): Extend comment for x86_64.  Change
2356         __i386__ to __i386__ || __x86_64__. Extend code also for __x86_64__.
2357         Extend code also for PaX support.  Convert all gdb_assert to warning
2358         calls.
2359
2360 2012-09-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
2361
2362         Implement auto-load user conveniences suggested by Doug Evans.
2363         * auto-load.c: Include top.h.
2364         (file_is_auto_load_safe): New variable advice_printed.  Print advice.
2365         (_initialize_auto_load): New variable scripts_directory_help.  Mention
2366         GDBPY_AUTO_FILE_NAME and GDB_AUTO_FILE_NAME for set auto-load
2367         scripts-directory.  Document in online help one can use also files for
2368         set auto-load safe-path.
2369         * python/py-auto-load.c: (GDBPY_AUTO_FILE_NAME): Move it from here ...
2370         * python/python.h (GDBPY_AUTO_FILE_NAME): ... to here.
2371
2372 2012-09-17  Siddhesh Poyarekar  <siddhesh@redhat.com>
2373
2374         * tic6x-tdep.c (tic6x_push_dummy_call): Remove unused definition
2375         of LEN.
2376
2377 2012-09-17  Siddhesh Poyarekar  <siddhesh@redhat.com>
2378
2379         * m2-valprint.c (m2_print_array_contents): Eliminate variable
2380         ELTLEN and use TYPE_LENGTH directly.
2381         (m2_val_print): Likewise.
2382         * m68k-tdep.c (m68k_svr4_extract_return_value): Eliminate
2383         variable LEN and use TYPE_LENGTH directly.
2384         (m68k_svr4_store_return_value): Likewise.
2385         * mips-tdep.c (mips_o32_push_dummy_call): Eliminate variable
2386         ARGLEN and use TYPE_LENGTH directly.
2387         (mips_o64_push_dummy_call): Likewise.
2388         * s390-tdep (s390_function_arg_pass_by_reference): Eliminate
2389         variable LENGTH and use TYPE_LENGTH directly.
2390         (s390_function_arg_float): Likewise.
2391         (s390_function_arg_integer): Likewise.
2392         (s390_push_dummy_call): Likewise.
2393         (s390_return_value_convention): Likewise.
2394         * spu-tdep.c (spu_push_dummy_call): Eliminate LEN and use
2395         TYPE_LENGTH directly.
2396
2397 2012-09-17  Yao Qi  <yao@codesourcery.com>
2398
2399         * cli/cli-decode.c (add_setshow_zuinteger_unlimited_cmd): New.
2400         Update comment to add_setshow_integer_cmd.
2401         * cli/cli-setshow.c (do_set_command): Handle case
2402         'var_zuinteger_unlimited'.
2403         (do_show_command): Likewise.
2404         * cli/cli-cmds.c (init_cmds): Call add_setshow_zuinteger_unlimited_cmd
2405         for command 'remotetimeout'.
2406         * command.h (enum var_types): New zuinteger_unlimited.  Update comment
2407         to var_integer.
2408         * source.c (_initialize_source): Call
2409         add_setshow_zuinteger_unlimited_cmd for command 'set listsize'.
2410
2411 2012-09-17  Siddhesh Poyarekar  <siddhesh@redhat.com>
2412
2413         * infrun.c (restore_infcall_suspend_state): Eliminate single-use
2414         variable LEN.
2415
2416 2012-09-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
2417
2418         PR 14119
2419         * frame.c (skip_inlined_frames): Skip also TAILCALL_FRAME frames.
2420         (frame_pop): Drop also TAILCALL_FRAME frames.
2421         * infcmd.c (finish_command): Ignore also TAILCALL_FRAME frames.
2422
2423 2012-09-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
2424             Pedro Alves  <palves@redhat.com>
2425
2426         PR 14548
2427         * infrun.c (handle_inferior_event): Do not reverse-continue back to the
2428         function start if we are already at function start.  Both for
2429         reverse-next and for reverse-step into function without line number
2430         info.
2431
2432 2012-09-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
2433
2434         Code cleanup - rename 'inline' depth to 'artificial' depth.
2435         * breakpoint.c (set_momentary_breakpoint): Rename at a caller to
2436         frame_id_artificial_p, extend the comment.
2437         * dwarf2-frame-tailcall.c (tailcall_frame_this_id): Rename at a user.
2438         * frame.c (fprint_frame_id): Rename at a user, change debug output
2439         text to "artificial=".
2440         (skip_inlined_frames): Rename to ...
2441         (skip_artificial_frames): ... here.  Extend the comment.
2442         (get_stack_frame_id, frame_unwind_caller_id): Rename at a caller.
2443         (frame_id_inlined_p): Rename to ...
2444         (frame_id_artificial_p): ... here.  Rename at a user.
2445         (frame_id_eq, frame_id_inner, frame_unwind_caller_pc)
2446         (frame_unwind_caller_pc_if_available, frame_unwind_caller_arch): Rename
2447         at a user.
2448         * frame.h (struct frame_id): Rename inline_depth to artificial_depth.
2449         Extend the comment.
2450         (frame_id_inlined_p): Rename to ...
2451         (frame_id_artificial_p): ... here.
2452         * inline-frame.c (inline_frame_this_id): Rename at a user.
2453
2454 2012-09-14  Andrew Burgess  <aburgess@broadcom.com>
2455
2456         * c-typeprint.c (c_type_print_varspec_suffix): Display the size of
2457         vector variables using vector_size syntax rather than array
2458         syntax.
2459
2460 2012-09-14  Siddhesh Poyarekar  <siddhesh@redhat.com>
2461
2462         * valarith.c (value_concat): Replace unsafe ALLOCA with
2463         XMALLOC/XFREE.
2464
2465 2012-09-14  Pedro Alves  <palves@redhat.com>
2466
2467         * gdb.1 (SEE ALSO): Expand pointer to GDB's Texinfo manual.
2468
2469 2012-09-14  Khoo Yit Phang  <khooyp@cs.umd.edu>
2470
2471         Point contrib/cc-with-tweaks.sh to the build-local data-directory.
2472         * contrib/cc-with-tweaks.sh (GDB): Add -data-directory
2473         data-directory as appropriate.
2474
2475 2012-09-14  Siddhesh Poyarekar  <siddhesh@redhat.com>
2476
2477         * printcmd.c (ui_printf): Eliminate single-use variable
2478         PARAM_LEN.
2479
2480 2012-09-14  Yao Qi  <yao@codesourcery.com>
2481             Pedro Alves  <palves@redhat.com>
2482
2483         * valops.c (value_assign): Move observer_notify_target_changed
2484         below to replace reinit_frame_cache.
2485
2486 2012-09-13  Khoo Yit Phang  <khooyp@cs.umd.edu>
2487
2488         Refactor Python "gdb" module into a proper Python package, by
2489         introducing a new "_gdb" module for code implemented in C, and
2490         using reload/__import__ instead of exec.
2491         * python/lib/gdb/__init__.py: Import * from _gdb.
2492         (GdbOutputFile, sys.stdout, GdbOutputErrorFile, sys.stderr,
2493         prompt_hook, sys.argv): Moved from finish_python_initialization.
2494         (pretty_printers, PYTHONDIR): Moved from _initialize_python.
2495         (packages, auto_load_packages): New list and function replacing
2496         module_dict and auto-loading code, using __file__ instead of
2497         gdb.PYTHONDIR and reload/__import__ instead of exec.
2498         (GdbSetPythonDirectory): Replacing function of the same name
2499         from finish_python_initialization, using reload/__import__ instead
2500         of exec, as well as call auto_load_packages.
2501         * python/py-prettyprint.c (find_pretty_printer_from_gdb): Check
2502         gdb_python_module and not gdb_module.
2503         * python/python-internal.h (gdb_python_module): Declare.
2504         * python/python.c (gdb_python_module): New global.
2505         (before_prompt_hook): Check gdb_python_module and not gdb_module.
2506         (_initialize_python): Rename gdb module to _gdb.
2507         Move gdb.PYTHONDIR and gdb.pretty_printer to lib/gdb/__init__.py.
2508         (finish_python_initialization): Move Python code to
2509         lib/gdb/__init__.py; instead, set up sys.path and import gdb into
2510         __main__.
2511
2512 2012-09-13  Pedro Alves  <palves@redhat.com>
2513
2514         * Makefile.in (COMMON_OBS): Add registry.o.
2515         * registry.c: New file.
2516         * registry.h (struct registry_container): Declare.
2517         (registry_data_callback): New typedef.
2518         (struct registry_data, struct registry_data_registration, struct
2519         registry_data_registry): New type.
2520         (register_data_with_cleanup, registry_alloc_data)
2521         (registry_callback_adaptor, registry_clear_data)
2522         (registry_container_free_data, registry_set_data, registry_data):
2523         Declare.
2524         (DEFINE_REGISTRY): Refactor structures and functions as shims over
2525         the new common structures and functions.
2526         (DECLARE_REGISTRY): Declare struct TAG ## _data.  Use the tagged
2527         callback typedefs.
2528
2529 2012-09-12  Mike Wrighton  <wrighton@codesourcery.com>
2530
2531         * remote.c (remote_insert_hw_breakpoint): Throw exception if
2532         there is an error inserting hardware breakpoints and use the
2533         error message from the target.
2534
2535         * breakpoint.c (insert_bp_location, insert_breakpoint_locations):
2536         Catch this exception and print the error message contained within.
2537         Do not print the default hardware error breakpoint message in this
2538         case.
2539
2540 2012-09-12  Doug Evans  <dje@google.com>
2541
2542         * dwarf2read.c (dwarf2_read_addr_index): Fix handling the case where
2543         cu == NULL.
2544
2545 2012-09-11  Doug Evans  <dje@google.com>
2546
2547         * dwarf2read.c (dw2_do_expand_symtabs_matching): Don't examine
2548         .gdb_index symbol attributes if there are none.
2549
2550 2012-09-11  Joel Brobecker  <brobecker@adacore.com>
2551
2552         * symtab.h (struct minimal_symbol) [has_size]: New field.
2553         (MSYMBOL_SIZE): Adjust to forbid macro from being used as lvalue.
2554         (SET_MSYMBOL_SIZE, MSYMBOL_HAS_SIZE): New macros.
2555         * printcmd.c (build_address_symbolic): Only filter out zero-sized
2556         minimal symbols if the symbol's size is actually known.
2557         * minsyms.c (prim_record_minimal_symbol_full): Adjust setting
2558         of msymbol's size field.  Add comment.
2559         * elfread.c (elf_symtab_read, elf_rel_plt_read): Use
2560         SET_MSYMBOL_SIZE to set the minimal symbol size.
2561
2562 2012-09-11  Joel Brobecker  <brobecker@adacore.com>
2563
2564         * minsyms.c (install_minimal_symbols): Use memset to fill entire
2565         minimal_symbol struct object, rather than setting some of its
2566         fields one by one.
2567
2568 2012-09-11  Andrew Burgess  <aburgess@broadcom.com>
2569
2570         * c-typeprint.c (c_type_print_varspec_prefix): Pass through the
2571         passed_a_ptr flag when displaying typedef types.
2572
2573 2012-09-10  Joel Brobecker  <brobecker@adacore.com>
2574
2575         * ada-lang.c (coerce_unspec_val_to_type): Make sure that
2576         the optimized_out flag is preserved.
2577
2578 2012-09-10  Anthony Green  <green@moxielogic.com>
2579
2580         * moxie-tdep.c (moxie_analyze_prologue): Update for function
2581         prologue changes in GCC.
2582
2583 2012-09-10  Keith Seitz  <keiths@redhat.com>
2584
2585         PR gdb/13483
2586         * gdbtypes.h (BOOL_PTR_CONVERSION_BADNESS): Rename to ...
2587         (BOOL_CONVERSION_BADNESS): ... this.
2588         * gdbtypes.c (BOOL_PTR_CONVERSION_BADNESS): Likewise.
2589         (rank_one_type): Allow all boolean conversions
2590         permitted by the standard.
2591
2592 2012-09-06  Tom Tromey  <tromey@redhat.com>
2593
2594         * python/py-newobjfileevent.c (create_new_objfile_event_object):
2595         Don't decref py_objfile.
2596
2597 2012-09-02  Khoo Yit Phang  <khooyp@cs.umd.edu>
2598
2599         Do not enable -lmcheck by default when Python is enabled with
2600         threading support.
2601         * configure.ac: (python_has_threads) New variable, by testing
2602         if WITH_THREAD is defined in Python.h.
2603         Move --enable-lmcheck after --with-python.
2604         Do not enable -lmcheck by default if python_has_threads=yes.
2605         Warn if --enable-lmcheck and python_has_threads=yes.
2606         * configure: Regenerate.
2607
2608 2012-08-31  Yao Qi  <yao@codesourcery.com>
2609
2610         * mi/mi-cmds.c (mi_cmds): New macros DEF_MI_CMD_CLI
2611         DEF_MI_CMD_MI DEF_MI_CMD_CLI_1 and DEF_MI_CMD_CLI_1.
2612         Update some commands.
2613         * mi/mi-cmds.h (struct mi_cmd) <suppress_notification>: New field.
2614         * mi/mi-main.c (mi_cmd_execute): Set
2615         '*parse->cmd->suppress_notification' to 1.
2616
2617 2012-08-31  Yao Qi  <yao@codesourcery.com>
2618
2619         * mi/mi-cmds.c (mi_cmds): Add 'static'.
2620
2621 2012-08-30  Khoo Yit Phang  <khooyp@cs.umd.edu>
2622
2623         * MAINTAINERS (Write After Approval): Add "Khoo Yit Phang".
2624
2625 2012-08-29  Doug Evans  <dje@google.com>
2626
2627         * main.c (print_gdb_help): Remove reference to
2628         --use-deprecated-index-sections.
2629
2630 2012-08-28  Yao Qi  <yao@codesourcery.com>
2631
2632         * cli/cli-cmds.c (max_user_call_depth): Add 'unsigned'.
2633         (init_cmds): Call add_setshow_uinteger_cmd for command
2634         'max-user-call-depth'.
2635         * cli/cli-script.c (execute_user_command): Add 'unsigned' to the
2636         declaration of 'max_user_call_depth'.
2637         * frame.c (backtrace_limit): Add 'unsigned'.
2638         (_initialize_frame): Call add_setshow_uinteger_cmd for command
2639         'limit'.
2640         * remote.c (remoteaddresssize): Add 'unsigned'.
2641         (remote_address_masked): Change local var 'address_size' to
2642         'unsigned'.
2643         (_initialize_remote): Call add_setshow_uinteger_cmd for
2644         'remoteaddresssize'.
2645         * top.c (history_size): Add 'unsigned'.
2646         (show_commands): Change local variables to 'unsigned'.
2647         (set_history_size_command): Don't check history_size is negative.
2648         Adjust the condition to call unstifle_history and set history_size
2649         to UNIT_MAX.
2650
2651 2012-08-28  Pedro Alves  <palves@redhat.com>
2652
2653         PR gdb/14428
2654
2655         * infcmd.c (default_print_one_register_info): New, factored out
2656         from default_print_registers_info.
2657         (default_print_registers_info): Use it.  Mark value unavailable if
2658         necessary.
2659         (registers_info): Print user registers with
2660         default_print_one_register_info.
2661
2662 2010-08-27  H.J. Lu  <hongjiu.lu@intel.com>
2663
2664         PR tui/14486
2665         * tui/tui-source.c (tui_source_is_displayed): Check if TUI_SRC_WIN
2666         is not NULL before referencing it.
2667
2668 2012-08-27  Jan Kratochvil  <jan.kratochvil@redhat.com>
2669
2670         * breakpoint.c (parse_breakpoint_sals) <(*address) == NULL>: New
2671         variable pc.  Call find_pc_line instead of find_pc_overlay, restore
2672         original PC for it.
2673
2674 2012-08-27  Eli Zaretskii  <eliz@gnu.org>
2675             Jan Kratochvil  <jan.kratochvil@redhat.com>
2676
2677         * auto-load.c (auto_load_objfile_script): Rename to ...
2678         (auto_load_objfile_script_1): ... here, change variable realname to
2679         parameter realname, document it, add return value, add variable retval.
2680         (auto_load_objfile_script): New function.
2681
2682 2012-08-27  Jan Kratochvil  <jan.kratochvil@redhat.com>
2683
2684         * cli/cli-decode.c (print_doc_line): Keep skipping '.' and ',' not
2685         followed by a whitespace.
2686
2687 2012-08-27  Jan Kratochvil  <jan.kratochvil@redhat.com>
2688
2689         PR gdb/14494.
2690         * dwarf2read.c (dwarf2_locate_sections): Move variable aflag here.
2691         Move the SEC_HAS_CONTENTS check here - for any NAMES use.
2692         (dwarf2_locate_sections) <eh_frame>: Move the variable and check from
2693         here.
2694
2695 2012-08-27  Wei-cheng Wang  <cole945@gmail.com>
2696
2697         * memattr.c (create_mem_region): Fix memory region overlapping
2698         checking.
2699
2700 2012-08-24  Siddhesh Poyarekar  <siddhesh@redhat.com>
2701
2702         * h8300-tdep.c (h8300_push_dummy_call): Replace unsafe alloca
2703         with xmalloc/cleanup.
2704         * mt-tdep.c (mt_push_dummy_call): Likewise.
2705         * tilegx-tdep.c (tilegx_push_dummy_call): Likewise.
2706         * xstormy16-tdep.c (xstormy16_push_dummy_call): Likewise.
2707
2708 2012-08-24  Yao Qi  <yao@codesourcery.com>
2709
2710         * jv-exp.y (push_expression_name): Add "." at the end of error
2711         message.
2712
2713 2012-08-23  Khoo Yit Phang <khooyp@cs.umd.edu>
2714
2715         Document how to return from "python-interactive" to GDB.
2716         * python/python.c (_initialize_python): Update documentation.
2717
2718 2012-08-23  Pedro Alves  <palves@redhat.com>
2719
2720         * infrun.c (_initialize_infrun) <handle command help text>:
2721         Mention that multiple signals are supported.
2722
2723 2012-08-23  Pedro Alves  <palves@redhat.com>
2724
2725         * infcmd.c (_initialize_infcmd) <signal command>: Fix typo in help
2726         string.
2727
2728 2012-08-23  Yao Qi  <yao@codesourcery.com>
2729
2730         * tracepoint.c (disconnect_tracing): Call set_tracepoint_num.
2731         (tfind_1): Don't call registers_changed, set_traceframe_num,
2732         and clear_traceframe_info.
2733         Call set_current_traceframe.
2734         (set_current_traceframe): call set_traceframe_num.
2735
2736 2012-08-22  Sergio Durigan Junior  <sergiodj@redhat.com>
2737
2738         * remote-sim.c (_initialize_remote_sim): Pass NULL argument to
2739         `register_inferior_data_with_cleanup', fixing regression on PowerPC64.
2740
2741 2012-08-22  Khoo Yit Phang <khooyp@cs.umd.edu>
2742
2743         Enable readline in Python in a GDB-specific way and block the
2744         standard Python readline module to prevent conflicts with GDB.
2745         * Makefile.in (SUBDIR_PYTHON_OBS): Add py-gdb-readline.o.
2746         (SUBDIR_PYTHON_SRCS): Add python/py-gdb-readline.c.
2747         (py-gdb-readline.o): Add rule to compile python/py-gdb-readline.c.
2748         * python/py-gdb-readline.c: New file.
2749         * python/python-internal.h (gdbpy_initialize_gdb_readline): New
2750         prototype.
2751         * python/python.c (_initialize_python): Call
2752         gdbpy_initialize_gdb_readline.
2753
2754 2012-08-22  Keith Seitz  <keiths@redhat.com>
2755
2756         * defs.h: Include build-gnulib/config.h
2757
2758 2012-08-22  Joseph Myers  <joseph@codesourcery.com>
2759
2760         * arm-tdep.c (thumb_get_next_pc_raw): Mask off low bits for bx pc
2761         and blx pc.
2762
2763 2012-08-22  Khoo Yit Phang <khooyp@cs.umd.edu>
2764
2765         Add a new "python-interactive" command that starts a standard
2766         Python interactive prompt with "pi" as alias, and add "py" as
2767         an alias to "python".
2768         * NEWS: Mention the new commands.
2769         * python/python.c (eval_python_command): New function.
2770         (python_interactive_command): For "python-interactive" with
2771         arguments, call eval_python_command.  For "python-interactive"
2772         without arguments, call PyRun_InteractiveLoop.
2773         (_initialize_python): Add "python-interactive" command with
2774         "pi" as alias, and add "py" as an alias to "python".
2775
2776 2012-08-22  Tom Tromey  <tromey@redhat.com>
2777
2778         * defs.h (quit_flag): Don't declare.
2779         (clear_quit_flag, check_quit_flag, set_quit_flag): Declare.
2780         (QUIT): Use new functions.
2781         * event-top.c (command_handler): Use clear_quit_flag.
2782         (handle_sigint): Use set_quit_flag.
2783         (async_request_quit): Use check_quit_flag.  Don't check
2784         immediate_quit.
2785         * exceptions.c (throw_exception): Use clear_quit_flag.
2786         * main.c (captured_main): Use clear_quit_flag.
2787         * python/python.c (clear_quit_flag, set_quit_flag)
2788         (check_quit_flag): New functions.
2789         * remote-sim.c (gdb_os_poll_quit): Use check_quit_flag,
2790         clear_quit_flag.
2791         * remote.c (remote_wait_as): Use check_quit_flag,
2792         clear_quit_flag.
2793         (remote_start_remote): Call QUIT.
2794         * symfile.c (load_progress): Use check_quit_flag.
2795         * top.c (command_loop): Use clear_quit_flag.
2796         (command_line_input): Call QUIT.
2797         * utils.c (quit_flag): Conditionally define.
2798         (clear_quit_flag, check_quit_flag, set_quit_flag): New
2799         functions.
2800         (prompt_for_continue): Call QUIT.  Use quit, not
2801         async_request_quit.
2802         * remote-mips.c (mips_expect_timeout): Call QUIT.
2803         * monitor.c (monitor_expect): Call QUIT.
2804
2805 2012-08-22  Tom Tromey  <tromey@redhat.com>
2806
2807         * event-top.c (sigwinch_token, handle_sigwinch): Remove.
2808         (async_init_signals): Update.
2809         * utils.c (init_page_info): Don't use SIGWINCH_HANDLER.
2810         (SIGWINCH_HANDLER_BODY): Remove.
2811
2812 2012-08-22  Tom Tromey  <tromey@redhat.com>
2813
2814         * jit.c (jit_object_close_impl): Don't malloc the objfile
2815         name.
2816         * objfiles.c (allocate_objfile): Don't malloc the objfile
2817         name.
2818         (free_objfile): Don't free the objfile name.
2819         * objfiles.h (struct objfile) <name>: Update comment.
2820         * symfile.c (reread_symbols): Fix reference counting.  Don't
2821         malloc objfile name.
2822
2823 2012-08-22  Tom Tromey  <tromey@redhat.com>
2824
2825         * windows-nat.c (windows_make_so): Use gdb_bfd_open.
2826         * symfile.c (bfd_open_maybe_remote): Use gdb_bfd_open.
2827         (symfile_bfd_open): Likewise.
2828         (generic_load): Likewise.
2829         * solib.c (solib_bfd_fopen): Use gdb_bfd_open.
2830         * solib-pa64.c (pa64_solib_create_inferior_hook): Use
2831         gdb_bfd_open.
2832         * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
2833         Use gdb_bfd_open.
2834         * rs6000-nat.c (add_vmap): Use gdb_bfd_open.
2835         * remote-mips.c (mips_load_srec): Use gdb_bfd_open.
2836         (pmon_load_fast): Likewise.
2837         * remote-m32r-sdi.c (m32r_load): Use gdb_bfd_open.
2838         * procfs.c (insert_dbx_link_bpt_in_file): Use gdb_bfd_open.
2839         * machoread.c (macho_symfile_read_all_oso): Use gdb_bfd_open.
2840         (macho_check_dsym): Likewise.
2841         * m32r-rom.c (m32r_load): Use gdb_bfd_open.
2842         (m32r_upload_command): Likewise.
2843         * gdb_bfd.h (gdb_bfd_cache): Declare.
2844         * gdb_bfd.c (struct gdb_bfd_data): New.
2845         (gdb_bfd_cache): New global.
2846         (struct gdb_bfd_cache_search): New.
2847         (hash_bfd): New function.
2848         (eq_bfd): Likewise.
2849         (gdb_bfd_open): Likewise.
2850         (gdb_bfd_ref): Allocate a gdb_bfd_data and attach to the BFD.
2851         (gdb_bfd_unref): Remove closed BFD from cache.  Update for
2852         gdb_bfd_data.
2853         * exec.c (exec_file_attach): Use gdb_bfd_open.
2854         * dsrec.c (load_srec): Use gdb_bfd_open.
2855
2856 2012-08-22  Tom Tromey  <tromey@redhat.com>
2857
2858         * dwarf2read.c (macro_start_file): Update.
2859         * objfiles.c (get_objfile_bfd_data): Initialize macro_cache.
2860         (free_objfile_per_bfd_storage): Destroy macro_cache.
2861         (allocate_objfile, free_objfile): Update.
2862         * objfiles.h (struct objfile_per_bfd_storage) <macro_cache>:
2863         New field.
2864         (struct objfile) <macro_cache>: Remove.
2865         * symfile.c (reread_symbols): Update.
2866         * symmisc.c (print_symbol_bcache_statistics): Update.
2867         (print_objfile_statistics): Update.
2868
2869 2012-08-22  Tom Tromey  <tromey@redhat.com>
2870
2871         * elfread.c (elf_symtab_read): Update.
2872         * objfiles.c (objfiles_bfd_data): New global.
2873         (get_objfile_bfd_data, free_objfile_per_bfd_storage)
2874         (objfile_bfd_data_free, set_objfile_per_bfd): New functions.
2875         (allocate_objfile, free_objfile): Update.
2876         (_initialize_objfiles): Initialize objfiles_bfd_data.
2877         * objfiles.h (struct objfile_per_bfd_storage): New.
2878         (struct objfile) <per_bfd>: New field.
2879         <filename_cache>: Remove.
2880         (set_objfile_per_bfd): Declare.
2881         * symfile.c (reread_symbols): Update.  Call
2882         set_objfile_per_bfd.
2883         (allocate_symtab): Update.
2884         * symmisc.c (print_symbol_bcache_statistics): Update.
2885         (print_objfile_statistics): Print the size of the BFD obstack.
2886
2887 2012-08-22  Tom Tromey  <tromey@redhat.com>
2888
2889         * gdb_bfd.h: Include registry.h.  Use DECLARE_REGISTRY.
2890         * gdb_bfd.c: Use DEFINE_REGISTRY.
2891         (struct gdb_bfd_data): Add REGISTRY_FIELDS.
2892         (gdb_bfd_ref): Call bfd_alloc_data.
2893         (gdb_bfd_unref): Call bfd_free_data.
2894
2895 2012-08-22  Tom Tromey  <tromey@redhat.com>
2896
2897         * registry.h (struct registry_fields): New.
2898         (REGISTRY_FIELDS): Redefine.
2899         (REGISTRY_ACCESS_FIELD): New macro.
2900         (DEFINE_REGISTRY): Add ACCESS argument.  Update defined
2901         functions.
2902
2903 2012-08-22  Tom Tromey  <tromey@redhat.com>
2904
2905         * auto-load.c (_initialize_auto_load): Update.
2906         * solib-svr4.c (_initialize_svr4_solib): Update
2907         * solib-dsbt.c (_initialize_dsbt_solib): Update.
2908         * solib-darwin.c (_initialize_darwin_solib): Update.
2909         * registry.h: New file.
2910         * python/py-progspace.c (gdbpy_initialize_pspace): Update.
2911         * python/py-inferior.c (gdbpy_initialize_inferior): Update.
2912         * progspace.h: Include registry.h.  Use DECLARE_REGISTRY.
2913         (register_program_space_data_with_cleanup)
2914         (register_program_space_data, program_space_alloc_data)
2915         (clear_program_space_data, set_program_space_data)
2916         (program_space_data): Don't declare.
2917         * progspace.c: Use DEFINE_REGISTRY.
2918         (struct program_space_data, struct
2919         program_space_data_registration, struct
2920         program_space_data_registry, program_space_data_registry)
2921         (register_program_space_data_with_cleanup)
2922         (register_program_space_data, program_space_alloc_data)
2923         (program_space_free_data, clear_program_space_data)
2924         (set_program_space_data, program_space_data): Remove.
2925         * objfiles.h: Include registry.h.  Use DECLARE_REGISTRY.
2926         (struct objfile) <data, num_data>: Replace with REGISTRY_FIELDS.
2927         (register_objfile_data_with_cleanup, register_objfile_data)
2928         (clear_objfile_data, set_objfile_data, objfile_data): Don't
2929         declare.
2930         * objfiles.c: Use DEFINE_REGISTRY.
2931         (struct objfile_data, struct objfile_data_registration, struct
2932         objfile_data_registry, objfile_data_registry)
2933         (register_objfile_data_with_cleanup, register_objfile_data)
2934         (objfile_alloc_data, objfile_free_data, clear_objfile_data)
2935         (set_objfile_data, objfile_data): Remove.
2936         (_initialize_objfiles): Update.
2937         * jit.c (_initialize_jit): Update.
2938         * inflow.c (_initialize_inflow): Update.
2939         * inferior.h: Include registry.h.  Use DECLARE_REGISTRY.
2940         (struct inferior) <data, num_data>: Replace with REGISTRY_FIELDS.
2941         (register_inferior_data_with_cleanup, register_inferior_data)
2942         (clear_inferior_data, set_inferior_data, inferior_data): Don't
2943         declare.
2944         * inferior.c: Use DEFINE_REGISTRY.
2945         (struct inferior_data, struct inferior_data_registration, struct
2946         inferior_data_registry, inferior_data_registry)
2947         (register_inferior_data_with_cleanup, register_inferior_data)
2948         (inferior_alloc_data, inferior_free_data  clear_inferior_data)
2949         (set_inferior_data, inferior_data): Remove.
2950         * auxv.c (_initialize_auxv): Update.
2951         * ada-lang.c (_initialize_ada_language): Update.
2952         * breakpoint.c (_initialize_breakpoint): Update.
2953         * i386-nat.c (i386_use_watchpoints): Update.
2954
2955 2012-08-22  Tom Tromey  <tromey@redhat.com>
2956
2957         * exec.c (exec_close, exec_file_attach): Update.
2958         (add_to_section_table): Initialize 'key' field.
2959         (add_target_sections, remove_target_sections): Add 'key' argument.
2960         * exec.h (add_target_sections, remove_target_sections): Add
2961         'key' argument.
2962         * solib.c (solib_map_sections, update_solib_list, clear_solib)
2963         (reload_shared_libraries_1): Update.
2964         * target.h (struct target_section) <key>: New field.
2965
2966 2012-08-22  Tom Tromey  <tromey@redhat.com>
2967
2968         * cli/cli-cmds.c (filter_sals): Handle nelts == 0 case.
2969
2970 2012-08-21  Pierre Muller  <muller@ics.u-strasbg.fr>
2971
2972         * symfile.c (allocate_symtab): Use host_address_to_string
2973         function instead of cast of pointer to long which is not
2974         compatible with x86_64-w64-mingw32 build.
2975
2976 2012-08-19  Andrew Pinski  <apinski@cavium.com>
2977
2978         * mips-tdep.c (is_octeon): New function.
2979         (is_octeon_bbit_op): New function.
2980         (mips32_next_pc): Handle Octeon's bbit instructions.
2981         (mips32_instruction_has_delay_slot): Likewise.
2982
2983 2012-08-19  Andrew Pinski  <apinski@cavium.com>
2984
2985         * mips-tdep.c (mips32_next_pc): Fix line spacing of the comment
2986         before the function.
2987
2988 2012-08-19  Andrew Pinski  <apinski@cavium.com>
2989
2990         * mips-tdep.c (mips32_next_pc): Consolidate calls to itype_op.
2991
2992 2012-08-19  Keith Seitz  <keiths@redhat.com>
2993
2994         PR c++/14365
2995         * c-typeprint.c (c_type_print_varspec_prefix): Pass
2996         -1 for SHOW to c_type_print_base for METHODPTR and MEMBERPTR.
2997
2998 2012-08-18  Eli Zaretskii  <eliz@gnu.org>
2999
3000         * Makefile.in (HFILES_NO_SRCDIR): Fix a typo: golang.h -> go-lang.h.
3001         The typo broke "make TAGS".
3002
3003 2012-08-17  Joel Brobecker  <brobecker@adacore.com>
3004
3005         GDB 7.5 released.
3006
3007 2012-08-17  Keith Seitz  <keiths@redhat.com>
3008
3009         PR c++/13356
3010         * gdbtypes.c (strict_type_checking): New variable.
3011         (show_strict_type_checking): New function.
3012         (rank_one_type): Return NS_POINTER_INTEGER_CONVERSION_BADNESS
3013         if strict type checking is disabled.
3014         (_initialize_gdbtypes): Add "check type" subcommand.
3015         * gdbtypes.h (NS_INTEGER_POINTER_CONVERSION_BADNESS): New struct.
3016
3017 2012-08-17  Keith Seitz  <keiths@redhat.com>
3018
3019         * language.h (type_mode): Remove.
3020         (type_check): Remove.
3021         (struct language_defn): Remove la_type_check.
3022         (STRICT_TYPE): Remove unused macro.
3023         (type_error): Remove.
3024         * language.c (set_type_range_case): Renamed to ...
3025         (set_range_case): ... this.  Update all callers.
3026         Remove type_mode/type_check.
3027         (type_mode): Remove.
3028         (type_check): Remove.
3029         (show_type_command): Remove.
3030         (set_type_command): Remove.
3031         (language_info): Remove type checking output.
3032         (type_error): Remove unused function.
3033         (range_error): Update comment.
3034         (unknown_language_defn): Remove la_type_check.
3035         (auto_language_defn): Likewise.
3036         (local_language_defn): Likewise.
3037         (_initialize_language): Remove "check type" subcommand.
3038         * ada-lang.c (ada_language_defn): Remove la_type_check.
3039         * c-lang.c (c_language_defn): Likewise.
3040         (cplus_language_defn): Likewise.
3041         (asm_language_defn): Likewise.
3042         (minimal_language_defn): Likewise.
3043         * d-lang.c (d_language_defn): Likewise.
3044         * f-lang.c (f_language_defn): Likewise.
3045         * go-lang.c (go_language_defn): Likewise.
3046         * jv-lang.c (java_language_defn): Likewise.
3047         * m2-lang.c (m2_language_defn): Likewise.
3048         * objc-lang.c (objc_language_defn): Likewise.
3049         * opencl-lang.c (opencl_language_defn): Likewise.
3050         * p-lang.c (pascal_language_defn): Likewise.
3051
3052 2012-08-16  Mike Frysinger  <vapier@gentoo.org>
3053
3054         * infcmd.c (_initialize_infcmd): Remove trailing ) in next help text.
3055
3056 2012-08-16  Joel Brobecker  <brobecker@adacore.com>
3057
3058         * ia64-hpux-nat.c (ia64_hpux_get_register_from_save_state_t):
3059         New function.
3060         (ia64_hpux_xfer_memory): Check if inferior_ptid is known before
3061         using the regache.  Use ia64_hpux_get_register_from_save_state_t
3062         to access the bsp and bspstore registers if not.
3063
3064 2012-08-16  Joel Brobecker  <brobecker@adacore.com>
3065
3066         * breakpoint.h (detach_breakpoints): pid parameter is now a ptid.
3067         * breakpoint.c (detach_breakpoints): Change pid parameter into
3068         a ptid.  Adjust code accordingly.
3069         * infrun.c (handle_inferior_event): Delete variable child_pid.
3070         Update call to detach_breakpoints to pass the child ptid for
3071         fork events.
3072         * linux-nat.c (linux_nat_iterate_watchpoint_lwps): Remove
3073         assert that inferior_ptid's lwp is zero.
3074         (linux_handle_extended_wait): Update call to detach_breakpoints.
3075         * inf-ttrace.c (inf_ttrace_follow_fork): Update call to
3076         detach_breakpoints.
3077
3078 2012-08-16  Joel Brobecker  <brobecker@adacore.com>
3079
3080         * inf-ttrace.c (inf_ttrace_follow_fork): When following the
3081         parent, only call detach_breakpoints if tts.tts_event ==
3082         TTEVT_VFORK.
3083
3084 2012-08-16  Joel Brobecker  <brobecker@adacore.com>
3085
3086         * dwarf2-frame.c (dwarf2_frame_cache): Use
3087         get_frame_address_in_block instead of get_frame_pc as
3088         the bound for executing the frame's FDE.
3089
3090 2012-08-16  Yao Qi  <yao@codesourcery.com>
3091
3092         * gdbtypes.h (enum type_code): Define TYPE_CODE_BITSTRING -1.
3093         * arm-tdep.c (arm_type_align): Remove code handling TYPE_CODE_BITSTRING.
3094         * c-typeprint.c (c_type_print_varspec_prefix): Likewise.
3095         (c_type_print_varspec_suffix): Likewise.
3096         * eval.c (evaluate_subexp_standard): Likewise.
3097         * f-typeprint.c (f_type_print_varspec_prefix): Likewise.
3098         (f_type_print_varspec_suffix): Likewise.
3099         * gdbtypes.c (is_scalar_type): Likewise.
3100         (recursive_dump_type): Likewise.
3101         * infcall.c (value_arg_coerce): Likewise.
3102         * m2-valprint.c (m2_val_print): Likewise.
3103         * p-typeprint.c (pascal_type_print_varspec_prefix): Likewise.
3104         (pascal_type_print_varspec_suffix): Likewise.
3105         (pascal_type_print_base): Likewise.
3106         * p-valprint.c (pascal_val_print): Likewise.
3107         (pascal_val_print): Likewise.
3108         * valops.c (value_slice): Likewise.
3109         * valprint.c (scalar_type_p): Likewise.
3110         * valarith.c (value_bitstring_subscript): Remove.
3111         (value_concat): Remove code handling TYPE_CODE_BITSTRING.
3112         Remove comment on TYPE_CODE_BITSTRING.
3113
3114         * stabsread.c (read_type): Don't set TYPE_CODE (type) to
3115         TYPE_CODE_BITSTRING.
3116
3117         * python/py-type.c (pyty_codes): Move ENTRY (TYPE_CODE_BITSTRING) to
3118         slot 0.
3119
3120 2012-08-16  Yao Qi  <yao@codesourcery.com>
3121
3122         * tracepoint.c (trace_find_none_command): Remove.
3123         (_initialize_tracepoint): Call add_alias_cmd for "tfind none".
3124
3125 2012-08-16  Yao Qi  <yao@codesourcery.com>
3126
3127         * remote.c (handle_notification): Remove parameter 'length'.
3128         (putpkt_binary, getpkt_or_notif_sane_1): Caller update.
3129
3130 2012-08-15  Keith Seitz  <keiths@redhat.com>
3131
3132         * gdbtypes.c (opaque_type_resolution): Make static.
3133         Add missing comment.
3134         (overload_debug): Add missing comment.
3135         (show_opaque_type_resolution): Likewise.
3136         (show_overload_debug): Likewise.
3137         (print_bit_vector): Remove unnecessary forward declaration.
3138         (print_arg_types): Likewise.
3139         (dump_fn_fieldlists): Likewise.
3140         (print_cplus_stuff): Likewise.
3141
3142 2012-08-15  Tom Tromey  <tromey@redhat.com>
3143
3144         * gdb_bfd.c (struct gdb_bfd_data) <archive_bfd>: New field.
3145         (gdb_bfd_ref): Initialize new field.
3146         (gdb_bfd_unref): Unref the archive BFD.
3147         (gdb_bfd_openr_next_archived_file): Acquire a reference to the
3148         parent archive.
3149
3150 2012-08-15  Tom Tromey  <tromey@redhat.com>
3151
3152         PR python/14387:
3153         * python/py-bpevent.c (create_breakpoint_event_object): Update
3154         comment.
3155         * python/py-event.c (evpy_add_attribute): Update comment.
3156         * python/py-exitedevent.c (create_exited_event_object): Fix
3157         reference counting and error handling.
3158         * python/py-newobjfileevent.c (create_new_objfile_event_object):
3159         Fix reference counting.
3160         * python/py-signalevent.c (create_signal_event_object): Fix
3161         reference counting and error handling.
3162         * python/py-stopevent.c (emit_stop_event): Fix reference
3163         counting.
3164         * python/py-threadevent.c (get_event_thread): Return a
3165         borrowed reference.
3166         * python/py-type.c (convert_field): Fix reference counting.
3167
3168 2012-08-15  Tom Tromey  <tromey@redhat.com>
3169
3170         * dwarf2read.c (dwarf_decode_macro_bytes)
3171         <DW_MACRO_GNU_transparent_include>: Use pointer to included data
3172         as hash key.
3173
3174 2012-08-14  Mike Frysinger  <vapier@gentoo.org>
3175
3176         * infcmd.c (_initialize_infcmd): Update help text for the signal,
3177         stepi, nexti, finish, next, step, jump, and continue commands.
3178         * infrun.c (_initialize_infrun): Update help text for the handle
3179         command.
3180
3181 2012-08-14  Doug Evans  <dje@google.com>
3182
3183         * gdbtypes.c (struct extra): Delete, unused.
3184
3185         * gdbtypes.c: Whitespace cleanup.
3186         (address_space_name_to_int): Remove "extern" from definition.
3187         (_initialize_gdbtypes): Declare with initialize_file_ftype.
3188
3189         * gdbtypes.c (make_pointer_type): Remove redundant setting of
3190         TYPE_POINTER_TYPE (type).
3191
3192 2012-08-14  Gary Benson  <gbenson@redhat.com>
3193
3194         * solib-svr4.c (svr4_free_library_list): Use free_so.
3195
3196 2012-08-13  Mike Frysinger  <vapier@gentoo.org>
3197
3198         * .gitignore: Add go-exp.c.
3199
3200 2012-08-13  Doug Evans  <dje@google.com>
3201
3202         * value.c (show_convenience): Tweak comment.
3203         (_initialize_values): Mention convenience functions in the help text
3204         for "show convenience".
3205
3206 2012-08-13  Yao Qi  <yao@codesourcery.com>
3207
3208         * std-operator.def: Remove TERNOP_SLICE_COUNT.
3209         * breakpoint.c (watchpoint_exp_is_const): Remove handling to
3210         TERNOP_SLICE_COUNT.
3211         * eval.c (evaluate_subexp_standard): Likewise.
3212         * expprint.c (print_subexp_standard): Likewise.
3213         (dump_subexp_body_standard): Likewise.
3214         * parse.c (operator_length_standard): Likewise.
3215
3216 2012-08-13  Yao Qi  <yao@codesourcery.com>
3217
3218         * std-operator.def: Remove OP_BITSTRING.
3219         * breakpoint.c (watchpoint_exp_is_const): Update.
3220         * eval.c (evaluate_subexp_standard): Remove handling to
3221         OP_BITSTRING.
3222         * expprint.c (print_subexp_standard): Likewise.
3223         (dump_subexp_body_standard): Likewise.
3224         * parse.c (operator_length_standard): Likewise.
3225         * valops.c (value_bitstring): Remove.
3226         * value.h: Remove the declaration of 'value_bitstring'.
3227
3228 2012-08-10  Sergio Durigan Junior  <sergiodj@redhat.com>
3229
3230         * linespec.c (find_methods): Remove unused variables `i1' and
3231         `name_len'.
3232         (decode_line_full): Likewise for `arg_start'.
3233
3234 2012-08-10  Sergio Durigan Junior  <sergiodj@redhat.com>
3235
3236         * gdb_bfd.c (gdb_bfd_unref): Remove unused variable `slot'.
3237         (zlib_decompress_section): Likewise for `section_data'.
3238         (gdb_bfd_map_section): Likewise for `buf' and `retbuf'.
3239
3240 2012-08-10  Doug Evans  <dje@google.com>
3241
3242         Add $_memeq, $_regex, $_streq, $_strlen convenience functions.
3243         * NEWS: Document them.
3244         * data-directory/Makefile.in (PYTHON_FILES): Add function/__init__.py,
3245         function/strfns.py.
3246         * python/py-type.c (typy_array_1): New function.
3247         (typy_array): Call it.
3248         (typy_vector): New function.
3249         (type_object_methods): Add "vector".
3250         * python/lib/gdb/function/__init__.py: New file.
3251         * python/lib/gdb/function/strfns.py: New file.
3252
3253 2012-08-10  Siddhesh Poyarekar  <siddhesh@redhat.com>
3254
3255         * python/py-type.c (convert_field): Use gdb_py_long_from_longest
3256         for TYPE_FIELD_BITPOS.
3257         (typy_get_sizeof): Likewise for TYPE_LENGTH.
3258
3259 2012-08-10  Mike Frysinger  <vapier@gentoo.org>
3260
3261         PR cli/10436:
3262         * common/vec.h (VEC_merge): Define.
3263         (DEF_VEC_ALLOC_FUNC_I): Add a merge helper.
3264         (DEF_VEC_ALLOC_FUNC_P): Likewise.
3265         (DEF_VEC_ALLOC_FUNC_O): Likewise.
3266         * completer.c: Include gdb_signals.h.
3267         (signal_completer): Define.
3268         * completer.h (signal_completer): Add prototype.
3269         * infcmd.c (_initialize_infcmd): Assign the command
3270         completer for "signal" to handle_completer.
3271         * infrun.c: Include completer.h.
3272         (handle_completer): Define.
3273         (_initialize_infrun): Declare a new local variable c.  Store the
3274         result of add_com("handle") to it.  Assign the command
3275         completer for "handle" to handle_completer.
3276
3277 2012-08-09  Yao Qi  <yao@codesourcery.com>
3278
3279         * cli/cli-decode.c (set_cmd_prefix): New.
3280         (lookup_cmd_for_prefixlist): New.
3281         (add_prefix_cmd): Call set_cmd_prefix and update field 'prefix'
3282         of each cmd_list_element in *prefixlist.
3283         (add_setshow_cmd_full): set_cmd_prefix.
3284         (add_alias_cmd): Likewise.
3285         * cli/cli-decode.h (struct cmd_list_element) <prefix>: New field.
3286         Declare 'auto_boolean_enums'.
3287         * cli/cli-setshow.c: Include "observer.h".
3288         (notify_command_param_changed_p): New.
3289         (add_setshow_auto_boolean_cmd): Move auto_boolean_enums out.
3290         Remove 'static'.
3291         (do_setshow_command): Split it to ...
3292         (do_set_command, do_show_command): ... them.  New.
3293         (do_set_command): Call observer_notify_command_param_changed if
3294         notify_command_param_changed_p returns true.
3295         (cmd_show_list): Caller update.
3296         * auto-load.c (set_auto_load_cmd): Likewise.
3297         * remote.c (show_remote_cmd): Likewise.
3298         * cli/cli-setshow.h: Update declarations.
3299         * top.c (execute_command): Call do_set_command and do_show_command.
3300
3301         * NEWS: Mention new MI notification.
3302         * mi/mi-interp.c: Declare mi_command_param_changed.
3303         (mi_interpreter_init): Attach mi_command_param_changed to
3304         observer command_param_changed.
3305         (mi_command_param_changed): New.
3306         Remove mi_suppress_breakpoint_notifications.
3307         Define global variable mi_suppress_notification.
3308         (mi_breakpoint_created): Update.
3309         (mi_breakpoint_deleted): Likewise.
3310         (mi_breakpoint_modified): Likewise.
3311         * mi/mi-main.c (mi_cmd_execute): Likewise.  Check command
3312         'gdb-set' and set mi_suppress_notification.
3313         * mi/mi-main.h: (mi_suppress_notification): New struct.
3314
3315 2012-08-09  Andreas Tobler  <andreast@fgznet.ch>
3316             Jan Kratochvil  <jan.kratochvil@redhat.com>
3317
3318         * fbsd-nat.h (fbsd_find_memory_regions): Use find_memory_region_ftype.
3319
3320 2012-08-09  Yao Qi  <yao@codesourcery.com>
3321
3322         * cli/cli-cmds.c (enablebreaklist): Move it to breakpoint.c.
3323         (skiplist): Move it to skip.c.
3324         (init_cmd_lists): Remove code setting enablebreaklist and
3325         skiplist to NULL.
3326         * breakpoint.c (enablebreaklist): Moved from cli/cli-cmds.c.
3327         * cli/cli-cmds.h: Remove declaration of enablebreaklist and
3328         skiplist.
3329         * gdbcmd.h: Likewise.
3330         * skip.c (_initialize_step_skip): Move 'skiplist' from
3331         cli/cli-cmds.c.
3332
3333 2012-08-09  Yao Qi  <yao@codesourcery.com>
3334
3335         * cli/cli-dump.c: Add 'static' to some cmd_list_element variables.
3336         * gnu-nat.c, symfile.c: Likewise.
3337
3338 2012-08-08  Aaron Gamble  <agamble@google.com>
3339
3340         * utils.c (prompt_for_continue_wait_time): New static global.
3341         (make_command_stats_cleanup): Initialize it.
3342         (report_command_stats): Subtract time waiting for user.
3343         (prompt_for_continue): Track time waiting for user.
3344         (defaulted_query): Track time waiting for user.
3345
3346 2012-08-08  Doug Evans  <dje@google.com>
3347
3348         * eval.c (evaluate_subexp_standard): Fix thinko in handling
3349         UNOP_MEMVAL_TYPE.
3350         * expprint.c (print_subexp_standard, case OP_TYPE): New.
3351         (print_subexp_standard, case UNOP_CAST_TYPE): Don't increment pos.
3352         (print_subexp_standard, case UNOP_DYNAMIC_CAST): Ditto.
3353         (print_subexp_standard, case UNOP_REINTERPRET_CAST): Ditto.
3354         (print_subexp_standard, case UNOP_MEMVAL_TYPE): Ditto.
3355         (dump_subexp_body_standard, case UNOP_DYNAMIC_CAST): Don't increment
3356         elt.
3357         (dump_subexp_body_standard, case UNOP_REINTERPRET_CAST): Ditto.
3358         (dump_subexp_body_standard, case UNOP_CAST_TYPE): Ditto.
3359         (dump_subexp_body_standard, case UNOP_MEMVAL_TYPE): Ditto.
3360         (dump_prefix_expression): Handle OP_TYPE.
3361
3362 2012-08-08  Keith Seitz  <keiths@redhat.com>
3363
3364         * breakpoint.c (parse_breakpoint_sals): Remove unused variable
3365         addr_start.
3366
3367 2012-08-08  Doug Evans  <dje@google.com>
3368
3369         * linux-thread-db.c: #include "gdb_vecs.h".
3370         (try_thread_db_load_from_pdir_1): New arg "subdir".  All callers
3371         updated.
3372         (try_thread_db_load_from_pdir): New arg "subdir".  All callers updated.
3373         (thread_db_load_search): Use a vector to iterate over path elements.
3374         Handle text appearing after "$pdir".
3375
3376         * gdb_string.h: Moved to ...
3377         * common/gdb_string.h: ... here.
3378         * common/vec.h: Remove #ifndef GDBSERVER conditional inclusion of
3379         gdb_string.h and gdb_assert.h.
3380
3381 2012-08-08  Yao Qi  <yao@codesourcery.com>
3382
3383         * tic6x-tdep.c (tic6x_register_to_value): Remove.
3384         (tic6x_value_to_register): Likewise.
3385         (tic6x_gdbarch_init): Don't call set_gdbarch_register_to_value
3386         and set_gdbarch_value_to_register.
3387
3388 2012-08-07  Jan Kratochvil  <jan.kratochvil@redhat.com>
3389             Jean-Marc Saffroy  <saffroy@gmail.com>
3390
3391         PR 11804
3392         * defs.h (find_memory_region_ftype): New comment.  New arg modified.
3393         * fbsd-nat.c (fbsd_find_memory_regions): Add the passed modified value.
3394         * gcore.c (gcore_create_callback): New function comment.  Add modified
3395         parameter.  Only write modified regions.  Set SEC_READONLY exactly
3396         according to MODIFIED.
3397         (objfile_find_memory_regions): Ignore separate debug info files.  Ass
3398         the passed modified value to FUNC.
3399         * gnu-nat.c (gnu_find_memory_regions): Add the passed modified value.
3400         * linux-tdep.c (linux_find_memory_regions): Try to reads smaps file
3401         first.  New variables modified and has_anonymous.  Parse the lines of
3402         smaps file.  Add the passed MODIFIED value to FUNC.
3403         * procfs.c (find_memory_regions_callback): Add the passed modified
3404         value.
3405
3406 2012-08-06  Tom Tromey  <tromey@redhat.com>
3407
3408         * dwarf2-frame.c (clear_pointer_cleanup): New function.
3409         (dwarf2_frame_cache): Use it.
3410         * frame-unwind.h (frame_sniffer_ftype): Document prologue
3411         cache initialization constraint.
3412
3413 2012-08-06  Tom Tromey  <tromey@redhat.com>
3414
3415         PR python/14386:
3416         * varobj.c (update_dynamic_varobj_children): Don't call
3417         PyIter_Check.
3418
3419 2012-08-06  Tom Tromey  <tromey@redhat.com>
3420
3421         PR cli/14392:
3422         * cli/cli-cmds.c (list_command): Filter 'sals_end'.
3423
3424 2012-08-06  Nathaniel Flath  <flat0103@gmail.com>
3425
3426         * NEWS: New entry for 'cd' default parameters.
3427         * cli/cli-cmds.c (cd_command): Replace error_no_arg by DIR assignment.
3428
3429 2012-08-03  Tom Tromey  <tromey@redhat.com>
3430
3431         * dwarf2-frame.c (dwarf2_frame_cache): Call do_cleanups before
3432         return.
3433
3434 2012-08-02  Ulrich Weigand  <ulrich.weigand@linaro.org>
3435
3436         * inf-child.c (inf_child_fileio_pwrite): If pwrite fails, fall back
3437         to attempting lseek/write.
3438         (inf_child_fileio_pread): Likewise for pread.
3439
3440 2012-08-02  Yao Qi  <yao@codesourcery.com>
3441
3442         * dwarf2loc.c (entry_values_debug): Add 'unsigned'.
3443         (_initialize_dwarf2loc): Call add_setshow_zuinteger_cmd instead of
3444         add_setshow_zinteger_cmd.
3445         * dwarf2loc.h: Update the declaration of 'entry_values_debug'.
3446         * dwarf2read.c (dwarf2_die_debug): Add 'unsigned'.
3447         (_initialize_dwarf2_read): Call add_setshow_zuinteger_cmd
3448         instead of add_setshow_zinteger_cmd.
3449         * darwin-nat.c (dwarwin_debug_flag): Add 'unsigned'.
3450         (_initialize_darwin_inferior): Call add_setshow_zuinteger_cmd
3451         instead of add_setshow_zinteger_cmd.
3452         * frame.c (frame_debug): Add 'unsigned'.
3453         (_intialize_frame): Call add_setshow_zuinteger_cmd instead of
3454         add_setshow_zinteger_cmd.
3455         * frame.h: Update the declaration of 'frame_debug'.
3456         * gdbtypes.c (overload_debug): Add 'unsigned'.
3457         (_initialize_gdbtypes): Call add_setshow_zuinteger_cmd instead of
3458         add_setshow_zinteger_cmd.
3459         * inferior.h: Update declaration of 'debug_infrun'.
3460         * infrun.c (debug_infrun): Add 'unsigned'.
3461         (_initialize_infrun): Call add_setshow_zuinteger_cmd instead of
3462         add_setshow_zinteger_cmd.
3463         * jit.c (jit_debug): Add 'unsigned'.
3464         (_initialize_jit): Call add_setshow_zuinteger_cmd instead of
3465         add_setshow_zinteger_cmd.
3466         * linux-nat.c (debug_linux_nat): Add 'unsigned'.
3467         (_initialize_linux_nat): Call add_setshow_zuinteger_cmd
3468         instead of add_setshow_zinteger_cmd.
3469         * linux-thread-db.c (libthread_db_debug): Add 'unsigned'.
3470         (_initialize_thread_db): Call add_setshow_zuinteger_cmd instead of
3471         add_setshow_zinteger_cmd.
3472         * machoread.c (mach_o_debug_level): Add 'unsigned'.
3473         (_initialize_machoread): Call add_setshow_zuinteger_cmd
3474         instead of add_setshow_zinteger_cmd.
3475         * mi/mi-cmd-var.c: Update the declaration of 'varobjdebug'.
3476         * microblaze-tdep.c (microblaze_debug_flag): Add 'unsigned'.
3477         (_initialize_microblaze_tdep): Call add_setshow_zuinteger_cmd
3478         intead of add_setshow_zinteger_cmd.
3479         * mips-tdep.c (mips_debug): Add 'unsigned'.
3480         (_initialize_mips_tdep): Call add_setshow_zuinteger_cmd
3481         instead of add_setshow_zinteger_cmd.
3482         * monitor.c (monitor_debug): Add 'unsigned'.
3483         (_initialize_remote_monitors): Call add_setshow_zuinteger_cmd instead of
3484         add_setshow_zinteger_cmd.
3485         * observer.c (observer_debug): Add 'unsigned'.
3486         (_initialize_observer): Call add_setshow_zuinteger_cmd instead of
3487         add_setshow_zinteger_cmd.
3488         * parse.c (expressiondebug): Add 'unsigned'.
3489         (_initialize_parse): Call add_setshow_zuinteger_cmd instead of
3490         add_setshow_zinteger_cmd.
3491         * record.c (record_debug): Add 'unsigned'.
3492         (_initialize_record): Call add_setshow_zuinteger_cmd instead of
3493         add_setshow_zinteger_cmd.
3494         * record.h: Update the declaration of 'record_debug'.
3495         * stap-probe.c (stap_expression_debug): Add 'unsigned'.
3496         (_initialize_stap_probe): Call add_setshow_zuinteger_cmd instead of
3497         add_setshow_zinteger_cmd.
3498         * serial.c (global_serial_debug_p): Add 'unsigned'.
3499         (_initialize_serial): Call add_setshow_zuinteger_cmd instead of
3500         add_setshow_zinteger_cmd.
3501         * solib-dsbt.c (solib_dsbt_debug): Add 'unsigned'.
3502         (_initialize_dsbt_solib): Call add_setshow_zuinteger_cmd instead of
3503         add_setshow_zinteger_cmd.
3504         * solib-frv.c (solib_frv_debug): Add 'unsigned'.
3505         (_initialize_frv_solib): Call add_setshow_zuinteger_cmd instead of
3506         add_setshow_zinteger_cmd.
3507         * target.c (targetdebug): Add 'unsigned'.
3508         (initialize_targets): Call add_setshow_zuinteger_cmd instead of
3509         add_setshow_zinteger_cmd.
3510         * valops.c (overload_debug): Add 'unsigned'.
3511         * varobj.c (varobjdebug): Add 'unsigned'.
3512         (_initialize_varobj): Call add_setshow_zuinteger_cmd instead of
3513         add_setshow_zinteger_cmd.
3514         * xtensa-tdep.c (xtensa_debug_level): Add 'unsigned'.
3515         (_initialize_xtensa_tdep): Call add_setshow_zuinteger_cmd
3516         instead of add_setshow_zinteger_cmd.
3517
3518         * arch-utils.h: Remove the declaration of 'gdbarch_debug'.
3519         * gdbarch.sh (gdbarch_debug): Add 'unsigned'.
3520         (extern void _initialize_gdbarch): Call add_setshow_zuinteger_cmd
3521         instead of add_setshow_zinteger_cmd.
3522         * gdbarch.c, gdbarch.h: Re-generated.
3523
3524 2012-08-02  Yao Qi  <yao@codesourcery.com>
3525
3526         * nto-tdep.c: Don't include cli/cli-decode.h and
3527         cli/cli-cmds.h.
3528         (_initialize_nto_tdep): Remove.
3529         * nto-tdep.h (struct nto_target_ops) <internal_debugging>:
3530         Remove field.
3531         Remove macro nto_internal_debugging.
3532
3533 2012-08-01  Richard Henderson  <rth@redhat.com>
3534
3535         * configure.tgt (m32c-*-*) [gdb_target_obs]: Remove prologue-value.o.
3536         (mep-*-*) [gdb_target_obs]: Likewise.
3537
3538 2012-07-31  Andreas Schwab  <schwab@linux-m68k.org>
3539
3540         * ppc-linux-tdep.c (ppc_linux_init_abi): Register
3541         linux_get_siginfo_type.
3542
3543 2012-07-31  Jan Kratochvil  <jan.kratochvil@redhat.com>
3544
3545         * infcall.c (call_function_by_hand): Move BP_ADDR comment to
3546         AT_ENTRY_POINT.
3547         (call_function_by_hand) <ON_STACK>: Call write_memory with
3548         gdbarch_breakpoint_from_pc, if possible.
3549         (call_function_by_hand) <AT_ENTRY_POINT>: The BP_ADDR comment is moved
3550         here.
3551
3552 2012-07-31  Yao Qi  <yao@codesourcery.com>
3553
3554         * tracepoint.c: Add 'static' for some variables.
3555
3556 2012-07-31  Yao Qi  <yao@codesourcery.com>
3557
3558         * go32-nat.c: Declare _initialize_go32_nat.
3559         * ser-go32.c: Declare _initialize_ser_dos.
3560         * top.c (do_chdir_cleanup): Add 'static'.
3561
3562 2012-07-30  Keith Seitz  <keiths@redhat.com>
3563
3564         * linespec.c (linespec_lex_number): A number followed
3565         by quotes is a valid number, too.
3566
3567 2012-07-30  Tom Tromey  <tromey@redhat.com>
3568
3569         * remote-sim.c (gdb_os_poll_quit): Don't check immediate_quit.
3570
3571 2012-07-30  Ulrich Weigand  <ulrich.weigand@linaro.org>
3572
3573         * arm-linux-nat.c (arm_linux_hw_breakpoint_initialize): Do not
3574         attempt to 4-byte-align HW breakpoint addresses for Thumb.
3575
3576 2012-07-30  Andrew Burgess  <aburgess@broadcom.com>
3577
3578         * varobj.c (varobj_invalidate_iter): All varobj must be marked as
3579         invalid or reevaluated to prevent prevent references to possibly
3580         delete'd type objects being left in the varobj.
3581
3582 2012-07-27  Tom Tromey  <tromey@redhat.com>
3583             Jan Kratochvil  <jan.kratochvil@redhat.com>
3584
3585         * copying.awk: Print buffer-read-only and vi ro markers.
3586         * copying.c: Rebuild.
3587         * gdbarch.sh (copyright): Print buffer-read-only and vi ro markers.
3588         * gdbarch.c, gdbarch.h: Rebuild.
3589         * target-descriptions.c (maint_print_c_tdesc_cmd): Print
3590         buffer-read-only and vi ro markers.
3591         * features/arm-with-iwmmxt.c: Rebuild.
3592         * features/arm-with-m-fpa-layout.c: Rebuild.
3593         * features/arm-with-m-vfp-d16.c: Rebuild.
3594         * features/arm-with-m.c: Rebuild.
3595         * features/arm-with-neon.c: Rebuild.
3596         * features/arm-with-vfpv2.c: Rebuild.
3597         * features/arm-with-vfpv3.c: Rebuild.
3598         * features/i386/amd64-avx-linux.c: Rebuild.
3599         * features/i386/amd64-avx.c: Rebuild.
3600         * features/i386/amd64-linux.c: Rebuild.
3601         * features/i386/amd64.c: Rebuild.
3602         * features/i386/i386-avx-linux.c: Rebuild.
3603         * features/i386/i386-avx.c: Rebuild.
3604         * features/i386/i386-linux.c: Rebuild.
3605         * features/i386/i386-mmx-linux.c: Rebuild.
3606         * features/i386/i386-mmx.c: Rebuild.
3607         * features/i386/i386.c: Rebuild.
3608         * features/i386/x32-avx-linux.c: Rebuild.
3609         * features/i386/x32-avx.c: Rebuild.
3610         * features/i386/x32-linux.c: Rebuild.
3611         * features/i386/x32.c: Rebuild.
3612         * features/mips-dsp-linux.c: Rebuild.
3613         * features/mips-linux.c: Rebuild.
3614         * features/mips64-dsp-linux.c: Rebuild.
3615         * features/mips64-linux.c: Rebuild.
3616         * features/rs6000/powerpc-32.c: Rebuild.
3617         * features/rs6000/powerpc-32l.c: Rebuild.
3618         * features/rs6000/powerpc-403.c: Rebuild.
3619         * features/rs6000/powerpc-403gc.c: Rebuild.
3620         * features/rs6000/powerpc-405.c: Rebuild.
3621         * features/rs6000/powerpc-505.c: Rebuild.
3622         * features/rs6000/powerpc-601.c: Rebuild.
3623         * features/rs6000/powerpc-602.c: Rebuild.
3624         * features/rs6000/powerpc-603.c: Rebuild.
3625         * features/rs6000/powerpc-604.c: Rebuild.
3626         * features/rs6000/powerpc-64.c: Rebuild.
3627         * features/rs6000/powerpc-64l.c: Rebuild.
3628         * features/rs6000/powerpc-7400.c: Rebuild.
3629         * features/rs6000/powerpc-750.c: Rebuild.
3630         * features/rs6000/powerpc-860.c: Rebuild.
3631         * features/rs6000/powerpc-altivec32.c: Rebuild.
3632         * features/rs6000/powerpc-altivec32l.c: Rebuild.
3633         * features/rs6000/powerpc-altivec64.c: Rebuild.
3634         * features/rs6000/powerpc-altivec64l.c: Rebuild.
3635         * features/rs6000/powerpc-cell32l.c: Rebuild.
3636         * features/rs6000/powerpc-cell64l.c: Rebuild.
3637         * features/rs6000/powerpc-e500.c: Rebuild.
3638         * features/rs6000/powerpc-e500l.c: Rebuild.
3639         * features/rs6000/powerpc-isa205-32l.c: Rebuild.
3640         * features/rs6000/powerpc-isa205-64l.c: Rebuild.
3641         * features/rs6000/powerpc-isa205-altivec32l.c: Rebuild.
3642         * features/rs6000/powerpc-isa205-altivec64l.c: Rebuild.
3643         * features/rs6000/powerpc-isa205-vsx32l.c: Rebuild.
3644         * features/rs6000/powerpc-isa205-vsx64l.c: Rebuild.
3645         * features/rs6000/powerpc-vsx32.c: Rebuild.
3646         * features/rs6000/powerpc-vsx32l.c: Rebuild.
3647         * features/rs6000/powerpc-vsx64.c: Rebuild.
3648         * features/rs6000/powerpc-vsx64l.c: Rebuild.
3649         * features/rs6000/rs6000.c: Rebuild.
3650         * features/s390-linux32.c: Rebuild.
3651         * features/s390-linux32v1.c: Rebuild.
3652         * features/s390-linux32v2.c: Rebuild.
3653         * features/s390-linux64.c: Rebuild.
3654         * features/s390-linux64v1.c: Rebuild.
3655         * features/s390-linux64v2.c: Rebuild.
3656         * features/s390x-linux64.c: Rebuild.
3657         * features/s390x-linux64v1.c: Rebuild.
3658         * features/s390x-linux64v2.c: Rebuild.
3659         * features/tic6x-c62x-linux.c: Rebuild.
3660         * features/tic6x-c62x.c: Rebuild.
3661         * features/tic6x-c64x-linux.c: Rebuild.
3662         * features/tic6x-c64x.c: Rebuild.
3663         * features/tic6x-c64xp-linux.c: Rebuild.
3664         * features/tic6x-c64xp.c: Rebuild.
3665
3666 2012-07-27  Tom Tromey  <tromey@redhat.com>
3667
3668         * c-exp.y (classify_name): Avoid assignment in condition.
3669
3670 2012-07-27  Roland Schwingel  <roland.schwingel@onevision.com>
3671
3672         * amd64-windows-tdep.c: Include "frame.h".
3673         (amd64_windows_skip_trampoline_code): New function.
3674         (amd64_windows_init_abi): Add trampoline registration.
3675
3676 2012-07-27  Yao Qi  <yao@codesourcery.com>
3677
3678         * tracepoint.c (cur_traceframe_number): Remove.
3679         (set_tfile_traceframe): Remove.
3680         (tfile_trace_find, tfile_fetch_registers): Update callers.
3681         (tfile_xfer_partial, tfile_get_trace_state_variable_value): Likewise.
3682         (tfile_open, tfile_trace_find): Likewise.
3683
3684 2012-07-27  Yao Qi  <yao@codesourcery.com>
3685
3686         * thread.c (switch_to_thread): Don't call registers_changed.
3687
3688 2012-07-26  Tom Tromey  <tromey@redhat.com>
3689
3690         * Makefile.in (SFILES): Remove objc-exp.y.
3691         (YYFILES): Remove objc-exp.c.
3692         (YYOBJ): Remove objc-exp.o.
3693         (local-maintainer-clean): Don't mention objc-exp.c.
3694         * c-exp.y: Include objc-lang.h.
3695         (%union) <class>: New field.
3696         (NSSTRING, SELECTOR, CLASSNAME, OBJC_LBRAC): New tokens.
3697         (exp): Clone subscript production for OBJC_LBRAC.  Add various
3698         Objective C productions.
3699         (msglist, msgarglist, msgarg): New productions.
3700         (array_mod, func_mod, operator): Clone productions for
3701         OBJC_LBRAC.
3702         (parse_string_or_char): Handle '@' strings.
3703         (lex_one_token): Return OBJC_LBRAC.  Recognize @selector.
3704         (classify_name): Check la_name_of_this.  Recognize ObjC class
3705         names.
3706         * objc-exp.y: Remove.
3707         * objc-lang.c (objc_language_defn): Use c_parse, c_error.
3708         * objc-lang.h (objc_parse, objc_error): Don't declare.
3709
3710 2012-07-26  Markus Metzger  <markus.t.metzger@intel.com>
3711
3712         * python/py-inferior.c (infpy_threads): Call update_thread_list ().
3713
3714 2012-07-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
3715
3716         * auto-load.c (auto_load_info_scripts): Remove immediate_quit increment
3717         and decrement.
3718
3719 2012-07-26  Tom Tromey  <tromey@redhat.com>
3720
3721         * copying.c: Rebuild.
3722         * copying.awk: Don't use immediate_quit.  Use 'no_set_class', not
3723         'no_class'.
3724
3725 2012-07-26  Tom Tromey  <tromey@redhat.com>
3726
3727         * symmisc.c (print_symbol_bcache_statistics): Use QUIT, not
3728         immediate_quit.
3729         (print_objfile_statistics): Likewise.
3730         (maintenance_print_symbols): Likewise.
3731         (maintenance_print_msymbols): Likewise.
3732         (maintenance_print_objfiles): Likewise.
3733         * psymtab.c (print_partial_symbols): Call QUIT.
3734         (maintenance_print_psymbols): Likewise.  Don't modify
3735         immediate_quit.
3736         * copying.c (show_copying_command): Don't modify immediate_quit.
3737         (show_warranty_command): Likewise.
3738         * cli/cli-cmds.c (show_version): Don't modify immediate_quit.
3739
3740 2012-07-26  Keith Seitz  <keiths@redhat.com>
3741
3742         * linespec.c (linespec_lexer_lex_number): The input
3743         is also a valid number if the next character is a comma
3744         or colon.
3745
3746 2012-07-26  Joel Brobecker  <brobecker@adacore.com>
3747
3748         * NEWS: Document new --enable-libmcheck/--disable-libmcheck
3749         configure options.
3750
3751 2012-07-26  Tristan Gingold  <gingold@adacore.com>
3752
3753         * machoread.c: Include gdb_bfd.h.
3754
3755 2012-07-26  Tristan Gingold  <gingold@adacore.com>
3756
3757         * dwarf2loc.c (locexpr_describe_location_piece): Use uint64_t for
3758         offset.
3759
3760 2012-07-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
3761
3762         * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Expand parameter
3763         SIZE to size_t.
3764         (dwarf2_evaluate_loc_desc): Likewise.
3765         (dwarf2_loc_desc_needs_frame): Likewise.
3766         (locexpr_describe_location_1): Likewise.
3767         * dwarf2loc.h (struct dwarf2_locexpr_baton): Make SIZE as
3768         size_t.
3769         (struct dwarf2_loclist_baton): Likewise.
3770         * dwarf2read.c (struct dwarf_block): Likewise.
3771         (dump_die_shallow): Use pulongest to print dwarf_block.size.
3772         (decode_locdesc): Expand SIZE and I to size_t.
3773
3774 2012-07-25  Jan Kratochvil  <jan.kratochvil@redhat.com>
3775
3776         * contrib/cc-with-tweaks.sh: Put into comment path gdb/contrib/.
3777
3778 2012-07-25  Joel Brobecker  <brobecker@adacore.com>
3779
3780         * doublest.c (convert_doublest_to_floatformat): If the exponent
3781         is too small, treat the value as zero.  If the exponent is too
3782         large, treat the value as infinity.
3783
3784 2012-07-25  Joel Brobecker  <brobecker@adacore.com>
3785
3786         * configure.ac: Add --enable-lmcheck configure option.
3787         * configure: Regenerate.
3788
3789 2012-07-25  Tom Tromey  <tromey@redhat.com>
3790
3791         * NEWS: Mention maint info bfds.
3792         * gdb_bfd.c (all_bfds): New global.
3793         (gdb_bfd_ref, gdb_bfd_unref): Update all_bfds.
3794         (print_one_bfd, maintenance_info_bfds, _initialize_gdb_bfd):
3795         New functions.
3796
3797 2012-07-25  Ralf Corsépius  <ralf.corsepius@rtems.org>
3798
3799         * configure.tgt: Add v850*-*-rtems*.
3800
3801 2012-07-25  Tom Tromey  <tromey@redhat.com>
3802
3803         * macrotab.c (macro_bcache_str): Remove cast.
3804
3805 2012-07-25  Hui Zhu  <hui_zhu@mentor.com>
3806
3807         * linespec.c (linespec_lexer_lex_number): Update comments,
3808         change the return and add check to make sure the input is
3809         the decimal numbers.
3810         (linespec_lexer_lex_one): If linespec_lexer_lex_number return
3811         false, call linespec_lexer_lex_string.
3812
3813 2012-07-24  Tom Tromey  <tromey@redhat.com>
3814
3815         * symfile.c (symbol_file_add): Don't open BFD twice.
3816
3817 2012-07-24  Marc Khouzam  <marc.khouzam@ericsson.com>
3818
3819         * breakpoint.c (create_breakpoint): Store condition for pending
3820         breakpoints.
3821
3822 2012-07-24  Andreas Schwab  <schwab@linux-m68k.org>
3823
3824         * m68k-tdep.c (m68k_reg_struct_return_p): Accept complex types.
3825         (m68k_return_value): Handle complex types like structures.
3826         (m68k_svr4_return_value): Likewise.
3827
3828 2012-07-24  Marcus Shawcroft  <marcus.shawcroft@arm.com>
3829
3830         * gdb_bfd.c (zlib_decompress_section) <!HAVE_ZLIB_H>: Adjust
3831         parameters to bfd_get_section_name.
3832
3833 2012-07-24  Yao Qi  <yao@codesourcery.com>
3834
3835         * cli/cli-setshow.c: Handle case 'var_uinteger'
3836         and 'var_zuninteger' together.  Handle case 'var_integer' and
3837         'var_zinteger' together.
3838
3839 2012-07-23  Keith Seitz  <keiths@redhat.com>
3840
3841         * linespec.c (convert_linespec_to_sal): Don't add
3842         any symbols to the result vector if symbol_to_sal
3843         returns zero.
3844
3845 2012-07-23  Keith Seitz  <keiths@redhat.com>
3846
3847         * linespec.c (decode_objc): Record the function name
3848         in the linespec.
3849
3850 2012-07-23  Tom Tromey  <tromey@redhat.com>
3851
3852         * rs6000-nat.c (add_vmap): Rewrite archive loop.  Fix reference
3853         counting.
3854         * exec.c (exec_close_1): Unconditionally release vmap's BFD.
3855         (map_vmap): Acquire a reference to the BFD.
3856
3857 2012-07-23  Siddhesh Poyarekar  <siddhesh@redhat.com>
3858
3859         * p-valprint.c (pascal_object_print_value): Replace potentially
3860         unsafe alloca with xmalloc/xfree.
3861         * valops.c (search_struct_method): Likewise.
3862
3863 2012-07-23  Tom Tromey  <tromey@redhat.com>
3864
3865         * solib-svr4.c (enable_break): Update.
3866         * bfd-target.h (target_bfd_reopen): Update documentation.
3867
3868 2012-07-23  Tom Tromey  <tromey@redhat.com>
3869
3870         * symfile.c (separate_debug_file_exists): Update.
3871         (gdb_bfd_open_maybe_remote): Rename from bfd_open_maybe_remote.
3872         (reread_symbols): Update.
3873         * elfread.c (build_id_verify): Update.
3874         * symfile.h (gdb_bfd_open_maybe_remote): Rename from
3875         bfd_open_maybe_remote.
3876
3877 2012-07-23  Tom Tromey  <tromey@redhat.com>
3878
3879         * gdb_bfd.c (gdb_bfd_ref, gdb_bfd_unref): Fix comment.
3880
3881 2012-07-23  Tom Tromey  <tromey@redhat.com>
3882
3883         * coffread.c (coff_symfile_read): Make a cleanup for 'debugfile'
3884         and 'abfd'.
3885         * elfread.c (elf_symfile_read): Make a cleanup for 'debugfile'
3886         and 'abfd'.
3887         * jit.c (jit_bfd_try_read_symtab): Make a cleanup for 'nbfd'.
3888         * machoread.c (macho_add_oso_symfile): Make a cleanup for
3889         'abfd'.
3890         (macho_symfile_read): Make a cleanup for 'dsym_bfd'.
3891         * objfiles.c (allocate_objfile): Acquire a new reference.
3892         * rs6000-nat.c (add_vmap): Don't acquire a BFD reference.
3893         * solib.c (solib_read_symbols): Don't acquire a BFD reference.
3894         * spu-linux-nat.c (spu_symbol_file_add_from_memory): Make
3895         a cleanup for 'nbfd'.
3896         * symfile-mem.c (symbol_file_add_from_memory): Make a cleanup
3897         for 'nbfd'.
3898         * symfile.c (symbol_file_add_with_addrs_or_offsets): Don't
3899         make a cleanup for 'abfd'.
3900         (symbol_file_add): Make a BFD cleanup.
3901
3902 2012-07-23  Tom Tromey  <tromey@redhat.com>
3903
3904         * cli/cli-dump.c (bfd_openr_with_cleanup): Use gdb_bfd_openr.
3905         (bfd_openw_with_cleanup): Use gdb_bfd_openw.
3906         * corelow.c (core_open): Use gdb_bfd_fopen.
3907         * dsrec.c (load_srec): Use gdb_bfd_openr.
3908         * exec.c (exec_file_attach): Use gdb_bfd_fopen.
3909         * gcore.c (gcore_memory_sections): Use gdb_bfd_openw.
3910         * gdb_bfd.c (gdb_bfd_fopen, gdb_bfd_openr, gdb_bfd_openw)
3911         (gdb_bfd_openr_iovec, gdb_bfd_openr_next_archived_file)
3912         (gdb_bfd_fdopenr): New functions.
3913         * gdb_bfd.h (gdb_bfd_fopen, gdb_bfd_openr, gdb_bfd_openw)
3914         (gdb_bfd_openr_iovec, gdb_bfd_openr_next_archived_file)
3915         (gdb_bfd_fdopenr): Declare.
3916         * jit.c (bfd_open_from_target_memory): Use gdb_bfd_openr_iovec.
3917         * m32-rom.c (m32r_load, m32r_upload_command): Use gdb_bfd_openr.
3918         * machoread.c (macho_symfile_read_all_oso): Use gdb_bfd_openr,
3919         gdb_bfd_openr_next_archived_file.
3920         (macho_check_dsym): Use gdb_bfd_openr.
3921         (macho_add_oso_symfile): Don't call gdb_bfd_stash_filename.
3922         * procfs.c (insert_dbx_link_bpt_in_file): Use gdb_bfd_fdopenr.
3923         * remote-m32r-sdi.c (m32r_load): Use gdb_bfd_openr.
3924         * remote-mips.c (mips_load_srec, pmon_load_fast): Use
3925         gdb_bfd_openr.
3926         * remote.c (remote_bfd_open): Use gdb_bfd_openr_iovec.
3927         * rs6000-nat.c (add_vmap): Use gdb_bfd_openr, gdb_bfd_fdopenr,
3928         gdb_bfd_openr_next_archived_file.
3929         * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
3930         Use gdb_bfd_openr.
3931         * solib-pa64.c (pa64_solib_create_inferior_hook): Use
3932         gdb_bfd_openr.
3933         * solib-spu.c (spu_bfd_fopen): Use gdb_bfd_openr_iovec.
3934         * solib.c (solib_bfd_fopen): Use gdb_bfd_fopen.
3935         * spu-linux-nat.c (spu_bfd_open): Use gdb_bfd_openr_iovec.
3936         * symfile.c (bfd_open_maybe_remote): Use gdb_bfd_openr.
3937         (symfile_bfd_open): Use gdb_bfd_fopen.
3938         (generic_load): Use gdb_bfd_openr.
3939         * windows-nat.c (windows_make_so): Use gdb_bfd_openr.
3940
3941 2012-07-23  Tom Tromey  <tromey@redhat.com>
3942
3943         * bfd-target.c (target_bfd_reopen): Update.
3944         * cli/cli-dump.c (bfd_openr_with_cleanup)
3945         (bfd_openw_with_cleanup): Update.
3946         * corelow.c (core_open): Update.
3947         * dsrec.c (load_srec): Update.
3948         * exec.c (exec_file_attach): Update.
3949         * gcore.c (create_gcore_bfd): Update.
3950         * gdb_bfd.c (gdb_bfd_ref): Return void.
3951         (gdb_bfd_open): Update.
3952         * gdb_bfd.h (gdb_bfd_ref): Return void.
3953         Update comments.
3954         * jit.c (jit_bfd_try_read_symtab): Update.
3955         * m32r-rom.c (m32r_load, m32r_upload_command): Update.
3956         * machoread.c (macho_symfile_read_all_oso): Update.
3957         (macho_check_dsym): Update.
3958         * procfs.c (insert_dbx_link_bpt_in_file): Update.
3959         * remote-m32r-sdi.c (m32r_load): Update.
3960         * remote-mips.c (mips_load_srec, pmon_load_fast): Update.
3961         * rs6000-nat.c (add_vmap): Update.
3962         * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
3963         Update.
3964         * solib-pa64.c (pa64_solib_create_inferior_hook): Update.
3965         * solib-spu.c (spu_bfd_open): Update.
3966         * solib.c (solib_bfd_fopen, solib_read_symbols): Update.
3967         * spu-linux-nat.c (spu_bfd_open): Update.
3968         * symfile.c (bfd_open_maybe_remote, symfile_bfd_open)
3969         (generic_load): Update.
3970         * windows-nat.c (windows_make_so): Update.
3971
3972 2012-07-22  Siddhesh Poyarekar  <siddhesh@redhat.com>
3973
3974         * sh-tdep.c (sh_treat_as_flt_p): Remove unused variable LEN.
3975
3976 2012-07-20  Jeff Kenton  <jkenton@tilera.com>
3977
3978         * tilegx-linux-tdep.c (tilegx_linux_sigframe_init): Fix
3979         SIGTRAMP_FRAME unwinding.
3980
3981 2012-07-20  Doug Evans  <dje@google.com>
3982
3983         * NEWS: Document new options "set/show use-deprecated-index-sections",
3984         and delete reference to --use-deprecated-index-sections.
3985         * symfile.h (use_deprecated_index_sections): Delete.
3986         * dwarf2read.c (use_deprecated_index_sections): Make static.
3987         (read_index_from_section): Update wording of how to load
3988         deprecated index sections.
3989         (_initialize_dwarf2_read): New options
3990         "set/show use-deprecated-index-sections".
3991         * main.c (captured_main): Delete --use-deprecated-index-sections.
3992
3993 2012-07-20  Pedro Alves  <palves@redhat.com>
3994
3995         PR threads/11692
3996         PR gdb/12203
3997
3998         * infrun.c (handle_inferior_event) <new thread>: Don't special
3999         case minus_one_ptid.
4000         <TARGET_WAITKIND_SPURIOUS>: Ditto.
4001         * linux-thread-db.c (thread_get_info_callback): Don't return early
4002         if the thread is zombie.
4003         (thread_from_lwp): Change return type to void.  Rewrite stale
4004         comment.
4005         (attach_thread): Don't return early if the thread is zombie,
4006         instead set its "dying" flag.
4007         (thread_db_wait): Don't return TARGET_WAITKIND_SPURIOUS anymore.
4008         (find_new_threads_callback): Don't return early if the thread is
4009         zombie.
4010
4011 2012-07-20  Pedro Alves  <palves@redhat.com>
4012
4013         * linux-nat.c (linux_nat_wait): Dump the passed in target options.
4014         * target.c (target_wait): Likewise.
4015         (str_comma_list_concat_elem, do_option, target_options_to_string):
4016         New functions.
4017         * target.h (target_options_to_string): Declare.
4018
4019 2012-07-20  Jan Kratochvil <jan.kratochvil@redhat.com>
4020             Tom Tromey  <tromey@redhat.com>
4021
4022         * dwarf2read.c (dwarf_decode_macros)
4023         <DW_MACRO_GNU_define_indirect_alt, DW_MACRO_GNU_undef_indirect_alt,
4024         DW_MACRO_GNU_transparent_include_alt>: New cases.
4025         (dwarf_decode_macro_bytes) <DW_MACRO_GNU_define_indirect,
4026         DW_MACRO_GNU_undef_indirect>: Examine 'section_is_dwz'.
4027
4028 2012-07-20  Tom Tromey  <tromey@redhat.com>
4029
4030         * dwarf2read.c (try_open_dwo_file): Don't call
4031         gdb_bfd_stash_filename.
4032
4033 2012-07-20  Pedro Alves  <palves@redhat.com>
4034
4035         * i386-tdep.c (i386_record_modrm, i386_record_lea_modrm_addr)
4036         (i386_record_lea_modrm, i386_record_push, i386_record_floats)
4037         (i386_process_record): Tweak description comments.
4038
4039 2012-07-20  Pedro Alves  <palves@redhat.com>
4040
4041         * i386-tdep.c (i386_record_modrm, i386_record_lea_modrm_addr)
4042         (i386_process_record): Use record_read_memory.
4043         * record.c (record_read_memory): New function.
4044         (record_arch_list_add_mem, record_exec_insn): Use
4045         record_read_memory.
4046         * record.h (record_read_memory): Declare.
4047
4048 2012-07-20  Yao Qi  <yao@codesourcery.com>
4049
4050         * cli/cli-setshow.c (do_setshow_command): Don't check pointer is
4051         NULL for xfree.
4052
4053 2012-07-19  Pedro Alves  <palves@redhat.com>
4054
4055         * record.c (record_resume): Ask the target beneath to report all
4056         signals.
4057
4058 2012-07-19  Doug Evans  <dje@google.com>
4059
4060         * dwarf2read.c (dwarf2_ranges_read): Ignore ranges starting at zero if
4061         there's no section at address zero.
4062         (dwarf2_record_block_ranges): Ditto.
4063
4064 2012-07-19  Yao Qi  <yao@codesourcery.com>
4065
4066         * command.h, remote.c: Fix a typo in comment.
4067
4068 2012-07-19  Tom Tromey  <tromey@redhat.com>
4069
4070         PR exp/13206:
4071         * ax-gdb.c (gen_expr) <OP_TYPEOF, OP_DECLTYPE>: New cases.
4072         * breakpoint.c (watchpoint_exp_is_const) <OP_TYPEOF,
4073         OP_DECLTYPE>: New cases.
4074         * c-exp.y (TYPEOF, DECLTYPE): New tokens.
4075         (type_exp): Add new productions.
4076         (ident_tokens): Add __typeof__, typeof, __typeof, __decltype,
4077         and decltype.
4078         * eval.c (evaluate_subexp_standard) <OP_TYPEOF, OP_DECLTYPE>:
4079         New case.
4080         * expprint.c (dump_subexp_body_standard) <OP_TYPEOF,
4081         OP_DECLTYPE>: New case.
4082         * parse.c (operator_length_standard) <OP_TYPEOF, OP_DECLTYPE>:
4083         New case.
4084         * std-operator.def (OP_TYPEOF, OP_DECLTYPE): New constants.
4085         * varobj.c (varobj_create): Handle OP_TYPEOF, OP_DECLTYPE.
4086
4087 2012-07-19  Tom Tromey  <tromey@redhat.com>
4088
4089         * c-exp.y (enum token_flags): New.
4090         (struct token) <cxx_only>: Remove.
4091         <flags>: New field.
4092         (tokentab3, tokentab2, ident_tokens): Update.
4093         (lex_one_token): Update.  Handle FLAG_SHADOW.
4094
4095 2012-07-19  Tom Tromey  <tromey@redhat.com>
4096
4097         * ax-gdb.c (gen_expr): Handle UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE.
4098         * breakpoint.c (watchpoint_exp_is_const): Handle UNOP_CAST_TYPE,
4099         UNOP_REINTERPRET_CAST, UNOP_DYNAMIC_CAST.
4100         * c-exp.y (exp): Emit UNOP_MEMVAL_TYPE, UNOP_CAST_TYPE.  Update
4101         for changes to UNOP_REINTERPRET_CAST, UNOP_DYNAMIC_CAST.  Use
4102         type_exp production where appropriate.
4103         * eval.c (evaluate_subexp_standard) <UNOP_CAST_TYPE>: New case.
4104         <UNOP_DYNAMIC_CAST, UNOP_REINTERPRET_CAST>: Update.
4105         <UNOP_MEMVAL_TYPE>: New case.
4106         (evaluate_subexp_for_address) <UNOP_MEMVAL_TYPE>: New case.
4107         (evaluate_subexp_for_sizeof) <UNOP_MEMVAL_TYPE>: New case.
4108         * expprint.c (print_subexp_standard) <UNOP_CAST_TYPE>: New case.
4109         <UNOP_MEMVAL_TYPE>: New case.
4110         (dump_subexp_body_standard) <UNOP_DYNAMIC_CAST,
4111         UNOP_REINTERPRET_CAST>: Update.
4112         <UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE>: New cases.
4113         * parse.c (operator_length_standard) <UNOP_DYNAMIC_CAST,
4114         UNOP_REINTERPRET_CAST>: Update.
4115         <UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE>: New cases.
4116         * stack.c (return_command): Also check for UNOP_CAST_TYPE.
4117         * std-operator.def (UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE): New
4118         constants.
4119
4120 2012-07-19  Yao Qi  <yao@codesourcery.com>
4121             Jan Kratochvil <jan.kratochvil@redhat.com>
4122
4123         * cli/cli-setshow.c (do_setshow_command): Handle case 'var_filename'
4124         and case 'var_optional_filename' together.
4125         * infcmd.c (_initialize_infcmd): Call add_setshow_string_noescape_cmd
4126         instead of add_setshow_optional_filename_cmd for setshow command
4127         'args'.  Set completer for 'set args'.
4128
4129 2012-07-18  Doug Evans  <dje@google.com>
4130
4131         * common/gdb_vecs.h: Moved here from ./gdb_vecs.h.
4132         * common/gdb_vecs.c: New file, contents from utils.c.
4133         * common/host-defs.h: New file, contents from defs.h.
4134         * utils.h: New file, contents from defs.h.
4135         * defs.h: Move all declarations of objects defined in utils.c
4136         to utils.h (except QUIT() and related).
4137         #include "utils.h", "host-defs.h".
4138         * probe.h (probe_p): Move here from gdb_vecs.h.
4139         * symfile.c: #include "probe.h" instead of "gdb_vecs.h".
4140         * utils.c (free_char_ptr_vec): Moved to common/gdb_vecs.c.
4141         (dirnames_to_char_ptr_vec_append, dirnames_to_char_ptr_vec): Ditto.
4142         * Makefile.in (SFILES): Add common/gdb_vecs.c.
4143         (HFILES_NO_SRCDIR): Add common/gdb_vecs.h, common/host-defs.h, utils.h.
4144         (COMMON_OBS): Add gdb_vecs.o.
4145         (gdb_vecs.o): New rule.
4146
4147 2012-07-18  Keith Seitz  <keiths@redhat.com>
4148
4149         * linespec.c (add_sal_to_sals): Add LITERAL_CANONICAL
4150         parameter.  If non-zero, use SYMNAME as the canonical name
4151         for the SaL.
4152         Update all callers.
4153         (convert_linespec_to_sals): Use add_sal_to_sals for
4154         expressions, too.
4155         (decode_line_full): No need to "fill in missing canonical names"
4156         anymore. Simply make cleanups for the allocated names.
4157
4158 2012-07-18  Keith Seitz  <keiths@redhat.com>
4159
4160         * linespec.c (struct linespec): Constify expression,
4161         source_filename, function_name, and label_name.
4162         (symbol_not_found_error): Make all parameters const.
4163         (linespec_parser_delete): No need to check for NULL
4164         when using xfree. Cast const char * to char * for xfree.
4165
4166 2012-07-18  Keith Seitz  <keiths@redhat.com>
4167
4168         * breakpoint.c (invalid_thread_id_error): New function.
4169         (find_condition_and_thread): Use invalid_thread_id_error.
4170         (watch_command_1): Likewise.
4171
4172 2012-07-18  Tom Tromey  <tromey@redhat.com>
4173
4174         * cc-with-index.sh, cc-with-dwz.sh: Remove.
4175         * contrib/cc-with-tweaks.sh: New file.
4176
4177 2012-07-18  Tom Tromey  <tromey@redhat.com>
4178
4179         * dwarf2read.c (struct dwz_file) <gdb_index>: New field.
4180         (locate_dwz_sections): Recognize .gdb_index.
4181         (create_cus_from_index_list): New function.
4182         (create_cus_from_index): Use it.  Handle .dwz data.
4183         (read_index_from_section): New function, extracted from
4184         dwarf2_read_index.
4185         (dwarf2_read_index): Use it.  Read .gdb_index from dwz file,
4186         if needed.
4187
4188 2012-07-18  Tom Tromey  <tromey@redhat.com>
4189
4190         * dwarf2read.c (struct dwarf2_per_objfile) <dwz_file>: New field.
4191         (struct dwarf2_per_cu_data) <length>: No longer bitfield.
4192         <is_dwz>: New field.
4193         (struct dwz_file): New.
4194         (struct partial_die_info) <is_dwz, spec_is_dwz>: New fields.
4195         (locate_dwz_sections, dwarf2_get_dwz_file)
4196         (get_abbrev_section_for_cu): New functions.
4197         (error_check_comp_unit_head, read_and_check_comp_unit_head)
4198         (read_and_check_type_unit_head): Add abbrev_section argument.
4199         (create_debug_types_hash_table): Update.
4200         (init_cutu_and_read_dies): Use proper abbrev section.
4201         (init_cutu_and_read_dies_no_follow): Likewise.
4202         (set_partial_user): Do nothing if PST==NULL.
4203         (read_comp_units_from_section): New function.
4204         (create_all_comp_units): Use it.
4205         (scan_partial_symbols, partial_die_parent_scope): Update.
4206         (skip_one_die): Handle DW_FORM_GNU_ref_alt, DW_FORM_GNU_strp_alt.
4207         (process_imported_unit_die, read_partial_die): Handle .dwz files.
4208         (find_partial_die): Add offset_in_dwz argument.  Update.
4209         (guess_partial_die_structure_name, fixup_partial_die): Update.
4210         (read_attribute_value): Handle DW_FORM_GNU_ref_alt,
4211         DW_FORM_GNU_strp_alt.
4212         (read_indirect_string_from_dwz): New function.
4213         (dwarf2_const_value_attr): Handle DW_FORM_GNU_strp_alt.
4214         (dump_die_shallow): Handle DW_FORM_GNU_ref_alt, DW_FORM_GNU_strp_alt.
4215         (is_ref_attr): Handle DW_FORM_GNU_ref_alt.
4216         (follow_die_offset): Add offset_in_dwz argument.
4217         (follow_die_ref, dwarf2_fetch_die_location_block): Update.
4218         (skip_form_bytes): Handle DW_FORM_GNU_strp_alt.
4219         (dwarf_decode_macro_bytes): Add section_is_dwz argument.
4220         Handle new macro forms.
4221         (dwarf_decode_macros): Update.
4222         (dwarf2_find_containing_comp_unit): Add offset_in_dwz argument.
4223         (dwarf2_per_objfile_free): Unref dwz_bfd, if it exists
4224         (lookup_die_type): Handle DW_FORM_GNU_ref_alt.
4225         (create_debug_types_hash_table): Use correct abbrev section.
4226         (get_debug_line_section): New function.
4227         (dwarf_decode_line_header, dwarf_decode_lines_1): Use it.
4228         (process_full_comp_unit): Pass 'required' argument to
4229         end_symtab_get_static_block.
4230         * buildsym.h (end_symtab_get_static_block): Update.
4231         * buildsym.c (end_symtab_get_static_block): Add 'required'
4232         argument.
4233         (end_symtab, end_expandable_symtab): Update.
4234
4235 2012-07-18  Tom Tromey  <tromey@redhat.com>
4236
4237         * dwarf2read.c: Don't include zlib.h or sys/mman.h.
4238         (pagesize): Remove.
4239         (struct dwarf2_section_info) <map_addr, map_len>: Remove.
4240         (zlib_decompress_section): Remove.
4241         (dwarf2_read_section): Use gdb_bfd_map_section.
4242         (munmap_section_buffer): Remove.
4243         (free_dwo_file, dwarf2_per_objfile_free): Don't use
4244         munmap_section_buffer.
4245         * gdb_bfd.c: Include zlib.h, sys/mman.h.
4246         (struct gdb_bfd_section_data): New.
4247         (free_one_bfd_section): New function.
4248         (gdb_bfd_close_or_warn): Use free_one_bfd_section.
4249         (get_section_descriptor, zlib_decompress_section)
4250         (gdb_bfd_map_section): New functions.
4251         * gdb_bfd.h (gdb_bfd_map_section): Declare.
4252
4253 2012-07-18  Tom Tromey  <tromey@redhat.com>
4254
4255         * dwarf2read.c (try_open_dwo_file): use gdb_bfd_open.
4256
4257 2012-07-18  Tom Tromey  <tromey@redhat.com>
4258
4259         * gdb_bfd.c (struct gdb_bfd_data): New.
4260         (gdb_bfd_cache): New global.
4261         (struct gdb_bfd_cache_search): New.
4262         (hash_bfd, eq_bfd, gdb_bfd_open): New functions.
4263         (gdb_bfd_ref, gdb_bfd_unref): Use gdb_bfd_data.
4264         * gdb_bfd.h (gdb_bfd_open): Declare.
4265
4266 2012-07-18  Tom Tromey  <tromey@redhat.com>
4267
4268         * utils.c (make_cleanup_bfd_unref): Rename from
4269         make_cleanup_bfd_close.
4270         * defs.h (make_cleanup_bfd_unref): Rename from
4271         make_cleanup_bfd_close.
4272         * cli/cli-dump.c (bfd_openr_with_cleanup): Update.
4273         (bfd_openw_with_cleanup): Update.
4274         * corelow.c (core_open): Update.
4275         * dsrec.c (load_srec): Update.
4276         * m32r-rom.c (m32r_load, m32r_upload_command): Update.
4277         * remote-m32r-sdi.c (m32r_load): Update.
4278         * remote-mips.c (mips_load_srec): Update.
4279         (pmon_load_fast): Update.
4280         * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
4281         Update.
4282         (darwin_bfd_open): Update.
4283         * solib.c (solib_bfd_fopen): Update.
4284         * symfile-mem.c (symbol_file_add_from_memory): Update.
4285         * symfile.c (symbol_file_add_with_addrs_or_offsets): Update.
4286         (symfile_bfd_open): Update.
4287         (generic_load): Update.
4288
4289 2012-07-18  Tom Tromey  <tromey@redhat.com>
4290
4291         * remote-mips.c (mips_load_srec): Use make_cleanup_bfd_close.
4292         (pmon_load_fast): Likewise.
4293         * m32r-rom.c (m32r_load): Use make_cleanup_bfd_close.
4294         (m32r_upload_command): Likewise.
4295         * dsrec.c (load_srec): Use make_cleanup_bfd_close.
4296         * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
4297         Use make_cleanup_bfd_close.
4298
4299 2012-07-18  Tom Tromey  <tromey@redhat.com>
4300
4301         * symfile.c (symfile_bfd_open): Don't copy name.  Call
4302         gdb_bfd_stash_filename.
4303         (load_command): Open the new BFD before freeing the old.
4304         (bfd_open_maybe_remote): Call gdb_bfd_stash_filename.
4305         * symfile-mem.c (symbol_file_add_from_memory): Don't copy name.
4306         Call gdb_bfd_stash_filename.
4307         * spu-linux-nat.c (spu_bfd_open): Don't copy name.
4308         * solib-spu.c (spu_bfd_fopen): Don't copy name.  Call
4309         gdb_bfd_stash_filename.
4310         * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
4311         Free found_pathname.
4312         * rs6000-nat.c (add_vmap): Don't copy filename.  Call
4313         gdb_bfd_stash_filename.
4314         * remote.c (remote_bfd_open): Call gdb_bfd_stash_filename.
4315         * machoread.c (macho_add_oso_symfile): Call
4316         gdb_bfd_stash_filename.
4317         (macho_symfile_read_all_oso): Arrange to free archive_name.  Call
4318         gdb_bfd_stash_filename.
4319         (macho_check_dsym): Don't copy filename.  Call
4320         gdb_bfd_stash_filename.
4321         * jit.c (bfd_open_from_target_memory): Don't copy the filename.
4322         * gdb_bfd.c (gdb_bfd_stash_filename): New function.
4323         * gdb_bfd.h (gdb_bfd_stash_filename): Declare.
4324         * gcore.c (create_gcore_bfd): Call gdb_bfd_stash_filename.
4325         * exec.c (exec_close): Don't free the BFD's filename.
4326         (exec_file_attach): Don't copy the filename.  Call
4327         gdb_bfd_stash_filename.
4328         * corelow.c (core_close): Don't free the BFD's filename.
4329         (core_open): Call gdb_bfd_stash_filename.
4330         * corefile.c (reopen_exec_file): Remove #if 0 code.
4331         * solib.c (solib_bfd_fopen): Call gdb_bfd_stash_filename.  Free
4332         pathname.
4333         * dwarf2read.c (try_open_dwo_file): Call gdb_bfd_stash_filename.
4334
4335 2012-07-18  Tom Tromey  <tromey@redhat.com>
4336
4337         * dwarf2read.c (try_open_dwo_file): Use gdb_bfd_ref and
4338         gdb_bfd_unref.
4339         (free_dwo_file): Use gdb_bfd_unref.
4340         * cli/cli-dump.c: Include gdb_bfd.h.
4341         (bfd_openw_with_cleanup): Use gdb_bfd_ref.
4342         (bfd_openr_with_cleanup): Likewise.
4343         * windows-nat.c (windows_make_so): Use gdb_bfd_ref,
4344         gdb_bfd_unref.
4345         * utils.c: Include gdb_bfd.h.
4346         (do_bfd_close_cleanup): Use gdb_bfd_unref.
4347         * symfile.c: Include gdb_bfd.h.
4348         (separate_debug_file_exists): Use gdb_bfd_unref.
4349         (bfd_open_maybe_remote): Use gdb_bfd_ref.
4350         (symfile_bfd_open): Use gdb_bfd_ref, gdb_bfd_unref.
4351         (generic_load): Use gdb_bfd_ref.
4352         (reread_symbols): Use gdb_bfd_unref.
4353         * symfile-mem.c: Include gdb_bfd.h.
4354         (symbol_file_add_from_memory): Use make_cleanup_bfd_close.
4355         * spu-linux-nat.c (spu_bfd_open): Use gdb_bfd_ref, gdb_bfd_unref.
4356         * solib.c: Include gdb_bfd.h.
4357         (solib_bfd_fopen): Use gdb_bfd_ref.
4358         (solib_bfd_open): Use gdb_bfd_unref.
4359         (free_so_symbols): Use gdb_bfd_unref.
4360         (reload_shared_libraries_1): Use gdb_bfd_unref.
4361         * solib-spu.c: Include gdb_bfd.h.
4362         (spu_bfd_fopen): Use gdb_bfd_ref, gdb_bfd_unref.
4363         * solib-pa64.c (pa64_solib_create_inferior_hook): Use gdb_bfd_ref,
4364         gdb_bfd_unref.
4365         * solib-frv.c: Include gdb_bfd.h.
4366         (enable_break2): Use gdb_bfd_unref.
4367         * solib-dsbt.c: Include gdb_bfd.h.
4368         (enable_break2): Use gdb_bfd_unref.
4369         * solib-darwin.c: Include gdb_bfd.h.
4370         (darwin_solib_get_all_image_info_addr_at_init): Use gdb_bfd_ref,
4371         gdb_bfd_unref.
4372         (darwin_bfd_open): Use gdb_bfd_unref.
4373         * rs6000-nat.c (add_vmap): Use gdb_bfd_ref, gdb_bfd_unref.
4374         * remote-mips.c: Include gdb_bfd.h.
4375         (mips_load_srec): Use gdb_bfd_ref.
4376         (pmon_load_fast): Use gdb_bfd_ref.
4377         * remote-m32r-sdi.c: Include gdb_bfd.h.
4378         (m32r_load): Use gdb_bfd_ref.
4379         * record.c: Include gdb_bfd.h.
4380         (record_save_cleanups): Use gdb_bfd_unref.
4381         (cmd_record_save): Use gdb_bfd_unref.
4382         * procfs.c (insert_dbx_link_bpt_in_file): Use gdb_bfd_ref,
4383         gdb_bfd_unref.
4384         * objfiles.h (gdb_bfd_close_or_warn): Remove.
4385         (gdb_bfd_ref, gdb_bfd_unref): Move to gdb_bfd.h.
4386         * objfiles.c: Include gdb_bfd.h.
4387         (free_objfile): Use gdb_bfd_unref.
4388         (gdb_bfd_close_or_warn, gdb_bfd_ref, gdb_bfd_unref): Move to
4389         gdb_bfd.c.
4390         * machoread.c (macho_add_oso_symfile): Use gdb_bfd_unref.
4391         (macho_symfile_read_all_oso): Use gdb_bfd_ref, gdb_bfd_unref.
4392         (macho_check_dsym): Likewise.
4393         * m32r-rom.c: Include gdb_bfd.h.
4394         (m32r_load): Use gdb_bfd_ref.
4395         (m32r_upload_command): Use gdb_bfd_ref.
4396         * jit.c: Include gdb_bfd.h.
4397         (jit_bfd_try_read_symtab): Use gdb_bfd_ref, gdb_bfd_unref.
4398         * gdb_bfd.h: New file.
4399         * gdb_bfd.c: New file.
4400         * gcore.c: Include gdb_bfd.h.
4401         (create_gcore_bfd): Use gdb_bfd_ref.
4402         (do_bfd_delete_cleanup): Use gdb_bfd_unref.
4403         (gcore_command): Use gdb_bfd_unref.
4404         * exec.c: Include gdb_bfd.h.
4405         (exec_close): Use gdb_bfd_unref.
4406         (exec_close_1): Use gdb_bfd_unref.
4407         (exec_file_attach): Use gdb_bfd_ref.
4408         * elfread.c: Include gdb_bfd.h.
4409         (build_id_verify): Use gdb_bfd_unref.
4410         * dsrec.c: Include gdb_bfd.h.
4411         (load_srec): Use gdb_bfd_ref.
4412         * corelow.c: Include gdb_bfd.h.
4413         (core_close): Use gdb_bfd_unref.
4414         (core_open): Use gdb_bfd_ref.
4415         * bfd-target.c: Include gdb_bfd.h.
4416         (target_bfd_xclose): Use gdb_bfd_unref.
4417         (target_bfd_reopen): Use gdb_bfd_ref.
4418         * Makefile.in (SFILES): Add gdb_bfd.c.
4419         (HFILES_NO_SRCDIR): Add gdb_bfd.h.
4420         (COMMON_OBS): Add gdb_bfd.o.
4421
4422 2012-07-18  Keith Seitz  <keiths@redhat.com>
4423
4424         * breakpoint.c (find_condition_and_thread): Initialize
4425         TASK and REST.
4426         (create_breakpiont): find_condition_and_thread will now
4427         initialize COND_STRING, THREAD, and REST (and TASK).
4428         (addr_string_to_sals): Likewise.
4429
4430 2012-07-18  Pedro Alves  <palves@redhat.com>
4431
4432         * infrun.c (handle_inferior_event) <TARGET_WAITKIND_NO_HISTORY>:
4433         Pull the single step breakpoints out of the target.
4434
4435 2012-07-18  Sergio Durigan Junior  <sergiodj@redhat.com>
4436
4437         * probe.c (probe_safe_evaluate_at_pc): Rename variable `n_probes'.
4438         * stap-probe.c (compile_probe_arg): Likewise.
4439
4440 2012-07-18  Sergio Durigan Junior  <sergiodj@redhat.com>
4441
4442         * elfread.c (elf_get_probe_argument_count): Remove `objfile' argument.
4443         (elf_compile_to_ax): Likewise.
4444         * infrun.c (insert_exception_resume_from_probe): Likewise.
4445         (check_exception_resume): Remove `objfile' variable.
4446         * probe.c (find_probe_by_pc): Remove `objfile' argument.
4447         (struct probe_and_objfile, probe_and_objfile_s): Delete.
4448         (collect_probes): Adjust return value to `VEC (probe_p) *'.
4449         (compare_entries): Rename to...
4450         (compare_probes): ...this.  Adjust function to work with
4451         `struct probe *'.  Rename variables `ea' and `eb' to `pa' and `pb'
4452         respectively.
4453         (gen_ui_out_table_header_info): Adjust `probes' argument to be
4454         `VEC (probe_p) *'.
4455         (print_ui_out_info): Adjust argument to be `struct probe *'.
4456         (info_probes_for_ops): Adjust internal computations to use
4457         `VEC (probe_p) *'.
4458         (probe_safe_evaluate_at_pc): Refactor to not pass `objfile' anymore.
4459         * probe.h (struct probe_ops) <get_probe_argument_count, compile_to_ax,
4460         gen_info_probes_table_values>: Remove `objfile' argument.
4461         (struct probe) <objfile>: New field.
4462         (find_probe_by_pc): Remove `objfile' argument.
4463         * stap-probe.c (stap_parse_probe_arguments): Likewise.
4464         (stap_get_probe_argument_count): Likewise.
4465         (stap_get_arg): Likewise.
4466         (stap_evaluate_probe_argument): Likewise.
4467         (stap_compile_to_ax): Likewise.
4468         (compile_probe_arg): Refactor not to pass `objfile' anymore.
4469         (handle_stap_probe): Fill `objfile' field from `struct probe'.
4470         (stap_gen_info_probes_table_header): Remove `objfile' argument.
4471         * symfile.h (struct sym_probe_fns) <sym_evaluate_probe_argument,
4472         sym_compile_to_ax>: Likewise.
4473
4474 2012-07-18  Terry Guo  <terry.guo@arm.com>
4475
4476         PR 14329
4477         * defs.h (GDB_MI_MSG_WIDTH): New.
4478         * ser_base (ser_base_read_error_fd): New function.
4479         (do_ser_base_readchar): Poll error file descriptor as well as
4480         standard output.
4481         (generic_readchar): Refactor error handling.
4482
4483 2012-07-18  Joel Brobecker  <brobecker@adacore.com>
4484
4485         * NEWS: Create a new section for the next release branch.
4486         Rename the section of the current branch, now that it has
4487         been cut.
4488
4489 2012-07-18  Joel Brobecker  <brobecker@adacore.com>
4490
4491         GDB 7.5 branch created (branch timestamp: 2012-07-18 03:22 UTC)
4492         * version.in: Bump version to 7.5.50.20120718-cvs.
4493
4494 2012-07-17  Keith Seitz  <keiths@redhat.com>
4495
4496         * linespec.c (linespec_parse_line_offset): Make parameter
4497         const.
4498
4499 2012-07-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
4500
4501         PR 11914
4502         * f-valprint.c (info_common_command): New variable frame_id.
4503         Reinitialize FI form FRAME_ID after each print_variable_and_value.
4504         * printcmd.c (print_variable_and_value): Extend function comment.
4505         Add comment for invalidated FRAME.
4506         * stack.c (backtrace_command_1): New variable frame_id.  Reinitialize
4507         FI form FRAME_ID after each print_frame_local_vars.
4508         (struct print_variable_and_value_data): Change frame to frame_id.
4509         (do_print_variable_and_value): New variable frame, initialize it from
4510         p->frame_id.  Add comment for invalidated FRAME.
4511         (print_frame_local_vars, print_frame_arg_vars): New function comment.
4512         Update CB_DATA.FRAME to CB_DATA.FRAME_ID initialization.  Add comment
4513         for invalidated FRAME.
4514
4515 2012-07-16  Marc Khouzam  <marc.khouzam@ericsson.com>
4516             Pedro Alves  <palves@redhat.com>
4517
4518         * linux-nat.c (linux_nat_detach): Don't unregister from the event
4519         loop.
4520
4521 2012-07-16  Tom Tromey  <tromey@redhat.com>
4522
4523         * jv-typeprint.c (c_type_print_varspec_suffix): Don't declare.
4524
4525 2012-07-15  Doug Evans  <dje@google.com>
4526
4527         * dwarf2read.c (stmt_list_hash): New struct.
4528         (type_unit_group): Embed "per_cu" member, remove pointer.
4529         New union member "t", move member "tus" into it, all uses updated.
4530         New member "hash", replaces member "line_offset, all uses updated.
4531         (quick_file_names): Replace member "offset" with "hash", all uses
4532         updated.
4533         (hash_stmt_list_entry, eq_stmt_list_entry): New functions.
4534         (hash_file_name_entry, eq_file_name_entry): Call them.
4535         (hash_type_unit_group, eq_type_unit_group): Ditto.
4536         (dw2_get_cu, dw2_get_primary_cu): Replace assert with a better one.
4537         (dw2_get_file_names_reader): Fix file name table calculation for TUs.
4538         (dw2_get_file_names): Update.
4539         (create_type_unit_group): Replace "per_cu" arg with "cu".
4540         All callers updated.  Fix "quick" (.gdb_index) handling.
4541         (get_type_unit_group): Replace "per_cu" arg with "cu".
4542         All callers updated.
4543         (build_type_unit_groups): Don't reset tu_stats.
4544
4545         * symtab.c (filename_seen_cache): Delete members "tab_alloc_size",
4546         "tab_cur_size".  Change member "tab" to be a htab_t.
4547         (create_filename_seen_cache): Update.
4548         (clear_filename_seen_cache, delete_filename_seen_cache): Update.
4549         (filename_seen): Update.
4550
4551 2012-07-13  Doug Evans  <dje@google.com>
4552
4553         * symtab.c (filename_seen): Update comment.
4554
4555 2012-07-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
4556             Doug Evans  <dje@google.com>
4557
4558         * buildsym.c (end_symtab_1): Split it to ...
4559         (end_symtab_get_static_block): ... this ...
4560         (end_symtab_from_static_block): ... and this function.
4561         (end_symtab, end_expandable_symtab): Call them.
4562         * buildsym.h (end_symtab_get_static_block)
4563         (end_symtab_from_static_block): New declarations.
4564         * dwarf2read.c (process_full_comp_unit): New variable static_block.
4565         Set its valid CU ranges.
4566
4567 2012-07-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
4568
4569         * dwarf2loc.c (disassemble_dwarf_expression): Handle
4570         DW_OP_GNU_parameter_ref.
4571
4572 2012-07-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
4573
4574         * dwarf2read.c (read_call_site_scope): Do not gdb_assert for invalid
4575         read-in CALL_SITE_PARAMETER_PARAM_OFFSET.
4576
4577 2012-07-13  Doug Evans  <dje@google.com>
4578
4579         * symtab.c (output_source_filename): Delete unnecessary forward decl.
4580         (filename_seen_cache): New struct.
4581         (INITIAL_FILENAME_SEEN_CACHE_SIZE): New macro.
4582         (create_filename_seen_cache): New function.
4583         (clear_filename_seen_cache, delete_filename_seen_cache): New functions.
4584         (filename_seen): Delete arg "first".  New arg "cache".  All callers
4585         updated.
4586         (output_source_filename_data): New struct.
4587         (output_source_filename): Delete arg "first".  New arg "data".
4588         All callers updated.
4589         (sources_info): Delete local "first".  New locals "data", "cleanups".
4590         Rewrite to use filename_seen_cache.
4591         (add_partial_filename_data): Delete member "first".  New member
4592         "filename_seen_cache".  All uses updated.
4593         (make_source_files_completion_list): Rewrite to use
4594         filename_seen_cache.
4595
4596 2012-07-12  Doug Evans  <dje@google.com>
4597
4598         * psymtab.c (map_symbol_filenames_psymtab): Skip shared psymtabs.
4599
4600 2012-07-10  Doug Evans  <dje@google.com>
4601
4602         PR gdb/13498
4603         * dwarf2read.c (dwarf2_per_objfile): New members n_type_unit_groups,
4604         all_type_unit_groups, type_unit_groups, tu_stats.
4605         (dwarf2_per_cu_data): Move "imported_symtabs" into new union "s".
4606         All uses updated.  Add type_unit_group to union "s".
4607         (type_unit_group): New struct.
4608         (IS_TYPE_UNIT_GROUP): New macro.
4609         (abbrev_table): Delete unused member "section".
4610         (dw2_do_instantiate_symtab): Early exit if type_unit_group.
4611         (dw2_get_cu): Assert not used with type_unit_group.
4612         (dw2_get_primary_cu): New function.
4613         (dw2_build_type_unit_groups_reader): New function.
4614         (dw2_build_type_unit_groups): New function.
4615         (dw2_get_file_names): Assert not called on type units.
4616         (dw2_map_symtabs_matching_filename): Call dw2_build_type_unit_groups.
4617         Redo loop to iterate over type unit groups instead of type units.
4618         (dw2_expand_symtabs_matching, dw2_map_symbol_filenames): Ditto.
4619         (read_abbrev_offset): New function.
4620         (init_cutu_and_read_dies): New arg "abbrev_table".  All callers
4621         updated.
4622         (create_partial_symtab): New function.
4623         (process_psymtab_comp_unit_reader): Assert not used with type units.
4624         Call create_partial_symtab.
4625         (process_psymtab_type_unit): Delete.
4626         (hash_type_unit_group, eq_type_unit_group): New functions.
4627         (allocate_type_unit_groups_table): New function.
4628         (NO_STMT_LIST_TYPE_UNIT_PSYMTAB): New macro.
4629         (NO_STMT_LIST_TYPE_UNIT_PSYMTAB_SIZE): New macro.
4630         (create_type_unit_group, get_type_unit_group): New functions.
4631         (tu_abbrev_offset): New struct.
4632         (sort_tu_by_abbrev_offset): New function.
4633         (add_type_unit_group_to_table): New function.
4634         (build_type_unit_groups): New function.
4635         (build_type_psymtabs_reader): New function.
4636         (build_type_psymtab_dependencies): New function.
4637         (build_type_psymtabs): Rewrite.
4638         (scan_partial_symbols): Flag an error if a DW_TAG_imported_unit
4639         is seen in a type unit.
4640         (process_queue): Move symtab expansion debugging printfs here.
4641         Call process_full_type_unit for type units.
4642         (compute_symtab_includes): Assert not called for type units.
4643         (process_cu_includes): Don't call compute_symtab_includes for
4644         type units.
4645         (process_full_type_unit): New function.
4646         (process_imported_unit_die): Flag an error if called for type units.
4647         (handle_DW_AT_stmt_list): Delete arg "want_line_info".  All callers
4648         updated.  Assert not called for type units.
4649         (read_file_scope): Call dwarf2_start_symtab.
4650         (setup_type_unit_groups): New function.
4651         (read_type_unit_scope): Rewrite.
4652         (abbrev_table_read_table): Initialize abbrev_table->offset.
4653         (abbrev_table_free_cleanup): New function.
4654         (dwarf2_start_symtab): New function.
4655         (load_full_type_unit): Assert not called for type unit groups.
4656         * buildsym.c (finish_block_internal): New arg "expandable".
4657         All callers updated.
4658         (start_symtab): Move most contents to ...
4659         (restart_symtab): ... here.  New function.
4660         (reset_symtab_globals): New function.
4661         (end_symtab_1): Renamed from end_symtab.  New arg "expandable".
4662         Call reset_symtab_globals.
4663         (end_symtab, end_expandable_symtab): New functions.
4664         (set_missing_symtab, augment_type_symtab): New functions.
4665         * buildsym.h (end_expandable_symtab): Declare.
4666         (augment_type_symtab, restart_symtab): Declare.
4667         * psympriv.h (struct partial_symtab): New member "anonymous".
4668         * psymtab.c (partial_map_symtabs_matching_filename): Ignore
4669         anonymous psymtabs.
4670         (read_psymtabs_with_filename): Ditto.
4671         (map_symbol_filenames_psymtab, psymtab_to_fullname): Ditto.
4672         (expand_symtabs_matching_via_partial): Ditto.
4673         (dump_psymtab): Update.
4674         * dictionary.c (dict_add_pending): New function.
4675         * dictionary.h (dict_add_pending): Declare.
4676
4677 2012-07-09  Doug Evans  <dje@google.com>
4678
4679         * buildsym.c (start_subfile): Remove unnecessary check for
4680         name == NULL.
4681
4682         * psymtab.c (allocate_psymtab): Use host_address_to_string.
4683
4684         * dwarf2read.c (load_full_type_unit): Simplify.
4685
4686         * dwarf2read.c (dwarf2_per_objfile): Change type of all_type_units
4687         to struct signatured_type **.  All uses updated.
4688
4689         * dwarf2read.c (dwarf2_attr_no_follow): Delete unused arg "cu".
4690         All callers updated.
4691
4692 2012-07-09  Tom Tromey  <tromey@redhat.com>
4693
4694         * c-exp.y (check_parameter_typelist): New function.
4695         (parameter_typelist): Call it.
4696         * eval.c (make_params): Handle '(void)' case.
4697         * gdbtypes.c (lookup_function_type_with_arguments): Handle
4698         '(void)' case.
4699
4700 2012-07-07  Jan Kratochvil  <jan.kratochvil@redhat.com>
4701
4702         * common/linux-ptrace.c: Include gdb_assert.h.
4703         <__i386__> (linux_ptrace_test_ret_to_nx_instr): New declaration.
4704         <__i386__>: Include sys/reg.h, sys/mman.h, signal.h, sys/wait.h and
4705         stdint.h.
4706         (linux_ptrace_test_ret_to_nx, linux_ptrace_init_warnings): New
4707         functions.
4708         * common/linux-ptrace.h (linux_ptrace_init_warnings): New declarations.
4709         * linux-nat.c (linux_child_post_attach)
4710         (linux_child_post_startup_inferior): Call linux_ptrace_init_warnings.
4711
4712 2012-07-07  Jan Kratochvil  <jan.kratochvil@redhat.com>
4713
4714         * linux-thread-db.c (thread_db_find_new_threads_silently): Do not apply
4715         nptl <2.7 bug workaround for core files.
4716
4717 2012-07-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
4718
4719         * linux-nat.c (resume_lwp, linux_nat_resume): Remove LP->SIGINFO
4720         clearing.
4721         (save_siginfo): Remove.
4722         (stop_wait_callback, linux_nat_filter_event): Remove the save_siginfo
4723         call.
4724         (resume_stopped_resumed_lwps): Remove LP->SIGINFO clearing.
4725         (linux_nat_get_siginfo): Use PTRACE_GETSIGINFO.
4726         * linux-nat.h (struct lwp_info): Remove field siginfo.
4727
4728 2012-07-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
4729
4730         Code cleanup for the next patch.
4731         * arm-linux-nat.c (arm_linux_stopped_data_address): Change variable
4732         siginfo_p to siginfo, update its users incl. the linux_nat_get_siginfo
4733         call for it.
4734         * ia64-linux-nat.c (ia64_linux_stopped_data_address): Likewise.
4735         (ia64_linux_stopped_data_address):
4736         * linux-nat.c (linux_nat_get_siginfo): Add parameter siginfo, change
4737         the return value.
4738         * linux-nat.h (linux_nat_get_siginfo): Likewise.
4739         * ppc-linux-nat.c (ppc_linux_stopped_data_address): Change variable
4740         siginfo_p to siginfo, update its users incl. the linux_nat_get_siginfo
4741         call for it.
4742
4743 2012-07-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
4744
4745         PR 14321
4746         * findcmd.c (parse_find_args): New variable pattern_buf_size_need.
4747         Increase buffer sizes to 2x we need, not just 2x of the previous size.
4748
4749 2012-07-06  Tom Tromey  <tromey@redhat.com>
4750
4751         * c-exp.y (DOTDOTDOT): New token.
4752         (func_mod, exp): Use parameter_typelist.
4753         (parameter_typelist): New production.
4754         (tokentab3): Add "..." token.
4755         * eval.c (make_params): Handle varargs.
4756         * gdbtypes.c (lookup_function_type_with_arguments): Handle
4757         varargs.
4758
4759 2012-07-06  Tom Tromey  <tromey@redhat.com>
4760
4761         PR exp/9608:
4762         * c-exp.y (%union) <tvec>: Change type.
4763         (func_mod): Now uses <tvec> type.
4764         (exp): Update for tvec change.
4765         (direct_abs_decl): Push the typelist.
4766         (func_mod): Return a typelist.
4767         (nonempty_typelist): Update for tvec change.
4768         * gdbtypes.c (lookup_function_type_with_arguments): New function.
4769         * gdbtypes.h (lookup_function_type_with_arguments): Declare.
4770         * parse.c (pop_type_list): New function.
4771         (push_typelist): New function.
4772         (follow_types): Handle tp_function_with_arguments.
4773         * parser-defs.h (type_ptr): New typedef.  Define a VEC.
4774         (enum type_pieces) <tp_function_with_arguments>: New constant.
4775         (union type_stack_elt) <typelist_val>: New field.
4776         (push_typelist): Declare.
4777
4778 2012-07-06  Tom Tromey  <tromey@redhat.com>
4779
4780         * c-exp.y (%union) <type_stack>: New field.
4781         (abs_decl, direct_abs_decl): Use <type_stack> type.  Update.
4782         (ptr_operator_ts): New production.
4783         (ptype): Update.
4784         * parse.c (type_stack_reserve): New function.
4785         (check_type_stack_depth): Use it.
4786         (pop_type_stack, append_type_stack, push_type_stack)
4787         (get_type_stack, type_stack_cleanup): New functions.
4788         (follow_types): Handle tp_type_stack.
4789         (_initialize_parse): Simplify initialization.
4790         * parser-defs.h (enum type_pieces) <tp_type_stack>: New
4791         constant.
4792         (union type_stack_elt) <stack_val>: New field.
4793         (get_type_stack, append_type_stack, push_type_stack)
4794         (type_stack_cleanup): Declare.
4795
4796 2012-07-06  Tom Tromey  <tromey@redhat.com>
4797
4798         * parser-defs.h (type_stack, type_stack_size, type_stack_depth):
4799         Remove.
4800         (struct type_stack): New.
4801         * parse.c (type_stack, type_stack_size, type_stack_depth):
4802         Remove.
4803         (type_stack): New global.
4804         (parse_exp_in_context, check_type_stack_depth)
4805         (insert_into_type_stack, insert_type, push_type, push_type_int)
4806         (insert_type_address_space, pop_type, pop_type_int)
4807         (_initialize_parse): Update.
4808
4809 2012-07-06  Tom Tromey  <tromey@redhat.com>
4810
4811         * c-exp.y (func_mod, direct_abs_decl, abs_decl, ptr_operator):
4812         Remove %type.
4813
4814 2012-07-06  Siddhesh Poyarekar  <siddhesh@redhat.com>
4815
4816         * c-lang.c (c_printstr): Remove ununsed variable WIDTH.
4817
4818 2012-07-06  Siddhesh Poyarekar  <siddhesh@redhat.com>
4819             Jan Kratochvil  <jan.kratochvil@redhat.com>
4820
4821         * cp-valprint.c (cp_print_value): Replace potentially unsafe
4822         alloca with xmalloc/xfree.
4823
4824 2012-07-06  Siddhesh Poyarekar  <siddhesh@redhat.com>
4825
4826         * MAINTAINERS (Write After Approval): Add myself to the list.
4827
4828 2012-07-05  Doug Evans  <dje@google.com>
4829
4830         * dwarf2read.c (dw2_expand_symtabs_matching): Fix typo.
4831
4832 2012-07-05  Hui Zhu  <hui_zhu@mentor.com>
4833
4834         * ax-gdb.c (cli/cli-utils.h): New include.
4835         (linespec.h): Ditto.
4836         (agent_eval_command_one): New function.
4837         (agent_command_1): Ditto.
4838         (agent_command): Call function agent_command_1.
4839         (agent_eval_command): Ditto.
4840         (_initialize_ax_gdb): Change help for "maint agent"
4841         and "maint agent-eval".
4842
4843 2012-07-05  Hui Zhu  <hui_zhu@mentor.com>
4844
4845         * breakpoint.c (check_for_argument): Move to file cli/cli-utils.c.
4846         * cli/cli-utils.c (check_for_argument): New function.
4847         * cli/cli-utils.h (check_for_argument): Ditto.
4848
4849 2012-07-04  H.J. Lu  <hongjiu.lu@intel.com>
4850
4851         * NEWS: Mention x32 ABI support.
4852
4853 2012-07-04  H.J. Lu  <hongjiu.lu@intel.com>
4854
4855         * amd64-tdep.c (amd64_x32_init_abi): Set sp_regnum_from_eax to
4856         AMD64_RSP_REGNUM and pc_regnum_from_eax to AMD64_RIP_REGNUM.
4857
4858         * i386-tdep.c (i386_gdbarch_init): Initialize sp_regnum_from_eax
4859         and pc_regnum_from_eax to -1.  Update SP regnum from
4860         sp_regnum_from_eax and PC regnum from pc_regnum_from_eax if
4861         needed.
4862
4863         * i386-tdep.h (gdbarch_tdep): Add sp_regnum_from_eax and
4864         pc_regnum_from_eax.
4865
4866 2012-07-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
4867
4868         Fix 'warning: parameter has incomplete type' with gcc-3.4.6.
4869         * dwarf2expr.h: Include gdbtypes.h.
4870         (enum call_site_parameter_kind, union call_site_parameter_u): Remove
4871         these forward declarations.
4872         (cu_offset, sect_offset): Move these ...
4873         * gdbtypes.h: Remove include dwarf2expr.h.
4874         (cu_offset, sect_offset): ... here.
4875
4876 2012-07-03  H.J. Lu  <hongjiu.lu@intel.com>
4877
4878         * amd64-linux-tdep.c (linux_sigtramp_code): Renamed to ...
4879         (amd64_linux_sigtramp_code): This.
4880         (amd64_x32_linux_sigtramp_code): New.
4881         (LINUX_SIGTRAMP_LEN): Updated.
4882         (amd64_linux_sigtramp_start): Check x32 sigtramp.
4883
4884 2012-07-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
4885
4886         * linux-thread-db.c (thread_db_new_objfile): Fix comment typos.
4887
4888 2012-07-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
4889
4890         * config.in: Regenerate.
4891         * configure: Regenerate.
4892         * configure.ac: Remove check for gnu/libc-version.h.
4893         * linux-thread-db.c <HAVE_GNU_LIBC_VERSION_H>: Remove include of
4894         gnu/libc-version.h.
4895         (enable_thread_event_reporting) <HAVE_GNU_LIBC_VERSION_H>: Remove
4896         variables libc_version, libc_major and libc_minor.  Replace sscanf by
4897         inferior_has_bug.  Extend the comment.
4898
4899 2012-07-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
4900
4901         * linux-thread-db.c (inferior_has_bug): New function.
4902         (thread_db_find_new_threads_silently): Return boolean as checked by
4903         inferior_has_bug, describe it in the comments.
4904         (try_thread_db_load_1): Move call to thread_db_find_new_threads_silently
4905         earlier.  Abort the initialization if it returned non-zero.
4906         (thread_db_new_objfile): Exclude debug files.
4907         (thread_db_find_new_threads_2): Preinitialize ERR.  Check errors also
4908         if UNTIL_NO_NEW,
4909
4910 2012-07-02  Doug Evans  <dje@google.com>
4911
4912         * dwarf2read.c (maybe_queue_comp_unit): Move definition next to others
4913         related to queue management.
4914
4915         * dwarf2read.c (create_debug_types_hash_table): Use "debug dwarf2-read"
4916         instead of "debug dwarf2-die" in debugging printfs.
4917         (create_debug_info_hash_table_reader): Ditto.
4918         (create_debug_info_hash_table): Ditto.
4919         (init_dwo_file): Ditto.
4920         (init_cutu_and_read_dies): Add debugging printf.
4921         (init_cutu_and_read_dies_no_follow): Ditto.
4922         (process_psymtab_comp_unit_reader): Ditto.
4923
4924 2012-07-02  Stan Shebs  <stan@codesourcery.com>
4925
4926         Add target-side support for dynamic printf.
4927         * NEWS: Mention the additional style.
4928         * breakpoint.h (struct bp_target_info): New fields tcommands, persist.
4929         (struct bp_location): New field cmd_bytecode.
4930         * breakpoint.c: Include format.h.
4931         (disconnected_dprintf): New global.
4932         (parse_cmd_to_aexpr): New function.
4933         (build_target_command_list): New function.
4934         (insert_bp_location): Call it.
4935         (remove_breakpoints_pid): Skip dprintf breakpoints.
4936         (print_one_breakpoint_location): Ditto.
4937         (dprintf_style_agent): New global.
4938         (dprintf_style_enums): Add dprintf_style_agent.
4939         (update_dprintf_command_list): Add agent case.
4940         (agent_printf_command): New function.
4941         (_initialize_breakpoint): Add new commands.
4942         * common/ax.def (printf): New bytecode.
4943         * ax.h (ax_string): Declare.
4944         * ax-gdb.h (gen_printf): Declare.
4945         * ax-gdb.c: Include cli-utils.h, format.h.
4946         (gen_printf): New function.
4947         (maint_agent_print_command): New function.
4948         (_initialize_ax_gdb): Add maint agent-printf command.
4949         * ax-general.c (ax_string): New function.
4950         (ax_print): Add printf disassembly.
4951         * Makefile.in (SFILES): Add format.c
4952         (COMMON_OBS): Add format.o.
4953         * common/format.h: New file.
4954         * common/format.c: New file.
4955         * printcmd.c: Include format.h.
4956         (ui_printf): Call parse_format_string.
4957         * remote.c (remote_state): New field breakpoint_commands.
4958         (PACKET_BreakpointCommands): New enum.
4959         (remote_breakpoint_commands_feature): New function.
4960         (remote_protocol_features): Add new BreakpointCommands entry.
4961         (remote_can_run_breakpoint_commands): New function.
4962         (remote_add_target_side_commands): New function.
4963         (remote_insert_breakpoint): Call it.
4964         (remote_insert_hw_breakpoint): Ditto.
4965         (_initialize_remote): Add new packet configuration for
4966         target-side breakpoint commands.
4967         * target.h (struct target_ops): New field
4968         to_can_run_breakpoint_commands.
4969         (target_can_run_breakpoint_commands): New macro.
4970         * target.c (update_current_target): Handle
4971         to_can_run_breakpoint_commands.
4972
4973 2012-07-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
4974
4975         Execute -ix and -iex only after system and user gdbinit files.
4976         * main.c (captured_main): Move CMDARG_INIT_FILE and CMDARG_INIT_COMMAND
4977         processing down after gdbinit files.
4978
4979 2012-07-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
4980
4981         Add fnmatch-gnu module.
4982         * gnulib/Makefile.in (aclocal_m4_deps): Add new files and remove one.
4983         * gnulib/configure.ac (AC_INIT): Use now import/memmem.c.
4984         * gnulib/aclocal.m4: Regenerate.
4985         * gnulib/config.in: Regenerate.
4986         * gnulib/configure: Regenerate.
4987         * gnulib/import/dummy.c: Remove.
4988         * gnulib/import/Makefile.am: Regenerate.
4989         * gnulib/import/Makefile.in: Likewise.
4990         * gnulib/import/m4/gnulib-cache.m4: Likewise.
4991         * gnulib/import/m4/gnulib-comp.m4: Likewise.
4992         * gnulib/import/alloca.c: New file.
4993         * gnulib/import/alloca.in.h: Likewise.
4994         * gnulib/import/config.charset: Likewise.
4995         * gnulib/import/fnmatch.c: Likewise.
4996         * gnulib/import/fnmatch.in.h: Likewise.
4997         * gnulib/import/fnmatch_loop.c: Likewise.
4998         * gnulib/import/localcharset.c: Likewise.
4999         * gnulib/import/localcharset.h: Likewise.
5000         * gnulib/import/m4/alloca.m4: Likewise.
5001         * gnulib/import/m4/codeset.m4: Likewise.
5002         * gnulib/import/m4/configmake.m4: Likewise.
5003         * gnulib/import/m4/fcntl-o.m4: Likewise.
5004         * gnulib/import/m4/fnmatch.m4: Likewise.
5005         * gnulib/import/m4/glibc21.m4: Likewise.
5006         * gnulib/import/m4/localcharset.m4: Likewise.
5007         * gnulib/import/m4/locale-fr.m4: Likewise.
5008         * gnulib/import/m4/locale-ja.m4: Likewise.
5009         * gnulib/import/m4/locale-zh.m4: Likewise.
5010         * gnulib/import/m4/mbrtowc.m4: Likewise.
5011         * gnulib/import/m4/mbsinit.m4: Likewise.
5012         * gnulib/import/m4/mbsrtowcs.m4: Likewise.
5013         * gnulib/import/m4/mbstate_t.m4: Likewise.
5014         * gnulib/import/m4/stdbool.m4: Likewise.
5015         * gnulib/import/m4/wchar_h.m4: Likewise.
5016         * gnulib/import/m4/wctype_h.m4: Likewise.
5017         * gnulib/import/m4/wint_t.m4: Likewise.
5018         * gnulib/import/mbrtowc.c: Likewise.
5019         * gnulib/import/mbsinit.c: Likewise.
5020         * gnulib/import/mbsrtowcs-impl.h: Likewise.
5021         * gnulib/import/mbsrtowcs-state.c: Likewise.
5022         * gnulib/import/mbsrtowcs.c: Likewise.
5023         * gnulib/import/ref-add.sin: Likewise.
5024         * gnulib/import/ref-del.sin: Likewise.
5025         * gnulib/import/stdbool.in.h: Likewise.
5026         * gnulib/import/streq.h: Likewise.
5027         * gnulib/import/strnlen1.c: Likewise.
5028         * gnulib/import/strnlen1.h: Likewise.
5029         * gnulib/import/verify.h: Likewise.
5030         * gnulib/import/wchar.in.h: Likewise.
5031         * gnulib/import/wctype.in.h: Likewise.
5032
5033 2012-07-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
5034
5035         Support shell wildcards for 'set auto-load safe-path'.
5036         * auto-load.c: Include fnmatch.h.
5037         (filename_is_in_dir): Rename to ...
5038         (filename_is_in_pattern_1, filename_is_in_pattern): ... here and split
5039         it.  Update function comment.  Rename dir_len to pattern_len.  New
5040         variables filename_len, pattern and filename.  Add more DEBUG_AUTO_LOAD
5041         messages.  Use gdb_filename_fnmatch.
5042         (filename_is_in_auto_load_safe_path_vec): Rename variable dir to
5043         pattern.
5044         (_initialize_auto_load): Extend the "set auto-load safe-path" help text.
5045         * defs.h (gdb_filename_fnmatch): New declaration.
5046         * utils.c: Include fnmatch.h.
5047         (gdb_filename_fnmatch): New function.
5048
5049 2012-07-02  Sergio Durigan Junior  <sergiodj@redhat.com>
5050
5051         * breakpoint.c (BREAK_ARGS_HELP): Include help message for the new
5052         `-probe' and `-probe-stap' options.
5053
5054 2012-07-01  Yao Qi  <yao@codesourcery.com>
5055
5056         * breakpoint.c: Removed always_inserted_auto, always_inserted_on,
5057         always_inserted_off, and always_inserted_enums.
5058         Change always_inserted_mode's type to 'enum auto_boolean'.
5059         (show_always_inserted_mode, breakpoint_always_inserted_mode): Update
5060         callers.
5061         (_initialize_breakpoint): Call add_setshow_auto_boolean_cmd instead
5062         of add_setshow_enum_cmd.
5063         * infrun.c: Remove can_use_displaced_stepping_auto,
5064         can_use_displaced_stepping_on, can_use_displaced_stepping_off, and
5065         can_use_displaced_stepping_enum.
5066         Change can_use_displaced_stepping's type to 'enum auto_boolean'.
5067         (show_can_use_displaced_stepping, use_displaced_stepping): Update
5068         callers.
5069         (_initialize_infrun): Call add_setshow_auto_boolean_cmd instead of
5070         add_setshow_enum_cmd.
5071
5072 2012-06-30  Doug Evans  <dje@google.com>
5073
5074         * dwarf2read.c (signatured_type): Make "per_cu" member first.
5075         (init_cutu_and_read_dies): Handle rereading a DWO CU while it's
5076         currently being read.  Propagate DW_AT_comp_dir to DWO DIE.
5077
5078 2012-06-29  Doug Evans  <dje@google.com>
5079
5080         * linespec.c: #include "stack.h".
5081         (decode_line_with_current_source): Moved here from symtab.c and
5082         renamed from decode_line_spec.  All callers updated.
5083         (decode_line_with_last_displayed): Moved here from breakpoint.c and
5084         renamed from decode_line_spec_1.  All callers updated.
5085         * linespec.h (decode_line_with_current_source): Move declaration here
5086         from symtab.h and renamed from decode_line_spec.
5087         (decode_line_with_last_displayed): Move declaration here from symtab.h
5088         and renamed from decode_line_spec_1.
5089         * macrocmd.c: #include "linespec.h".
5090         * symtab.c: Remove #include "linespec.h".
5091
5092 2012-06-28  Doug Evans  <dje@google.com>
5093
5094         * dwarf2read.c (get_cu_length): New function.
5095         (offset_in_cu_p, error_check_comp_unit_head): Call it.
5096         (create_debug_types_hash_table): Ditto.
5097         (init_cutu_and_read_dies): Ditto.
5098         (init_cutu_and_read_dies_no_follow): Ditto.
5099
5100         * dwarf2read.c (dwarf2_find_base_address): Move definition.
5101
5102         * dwarf2read.c (ABBREV_HASH_SIZE): Remove enclosing #ifndef/#endif.
5103         (struct abbrev_table): Define.
5104         (dwarf2_cu): Replace members dwarf2_abbrevs, abbrev_obstack with
5105         abbrev_table.
5106         (init_cutu_and_read_dies): Update.
5107         (abbrev_table_alloc_abbrev): New function.  Replaces
5108         dwarf_alloc_abbrev.  All callers updated.
5109         (abbrev_table_add_abbrev): New function.
5110         (abbrev_table_lookup_abbrev): New function.  Replaces
5111         dwarf2_lookup_abbrev.  All callers updated.
5112         (abbrev_table_read_table): New function.  Contents moved here from
5113         dwarf2_read_abbrevs.
5114         (dwarf2_read_abbrevs): Call it.
5115         (abbrev_table_free): New function.
5116         (dwarf2_free_abbrev_table): Call it.
5117
5118 2012-06-28  Stan Shebs  <stan@codesourcery.com>
5119
5120         * osdata.c (info_osdata_command): Filter out "Title" columns
5121         from non-MI uses.
5122         * common/linux-osdata.c (struct osdata_type): Add title field.
5123         (osdata_table): Add titles to each entry.
5124         (linux_command_xfer_osdata): Add a column for title data.
5125
5126 2012-06-28  Stan Shebs  <stan@codesourcery.com>
5127
5128         Make logging work for MI.
5129         * NEWS: Mention it.
5130         * interps.h (interp_set_logging_ftype): New typedef.
5131         (struct interp_procs): New field set_logging_proc.
5132         (current_interp_set_logging): Declare.
5133         * interps.c (current_interp_set_logging): New function.
5134         * cli/cli-logging.c: Include interps.h.
5135         (set_logging_redirect): Call current_interp_set_logging.
5136         (pop_output_files): Ditto.
5137         (handle_redirections): Ditto, plus skip ui-out redirect if MI.
5138         * mi/mi-console.h (mi_console_set_raw): Declare.
5139         * mi/mi-console.c (mi_console_set_raw): New function.
5140         * mi/mi-interp.c (saved_raw_stdout): New global.
5141         (mi_set_logging): New function.
5142         (_initialize_mi_interp): Add it to interp procs.
5143
5144 2012-06-28  Doug Evans  <dje@google.com>
5145
5146         * symtab.c (lookup_symbol_aux_objfile): Use
5147         ALL_OBJFILE_PRIMARY_SYMTABS.
5148
5149         * gdbtypes.c (lookup_typename): Rename local variable "tmp" to "type".
5150
5151 2012-06-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
5152
5153         * common/buffer.c: Include inttypes.h and stdint.h.
5154         (buffer_xml_printf): Use PRId64, PRIu64, PRIx64 and PRIo64.
5155
5156 2012-06-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
5157             Pedro Alves  <palves@redhat.com>
5158
5159         * gdbthread.h (ALL_THREADS): New macro.
5160         (thread_list): Declare.
5161         * infrun.c (handle_inferior_event) <spurious signal>: Don't keep
5162         going, but instead fall through to the stepping handling.
5163         * linux-nat.c (resume_lwp): New parameter 'signo'.  Resume with
5164         the passed in signal.  Adjust debug output.
5165         (resume_callback): Rename to ...
5166         (linux_nat_resume_callback): ... this.  Pass the thread's last
5167         stop signal, if in "pass" state.
5168         (linux_nat_resume): Adjust to rename.
5169         (stop_wait_callback): New assertion.  Don't respawn signals;
5170         instead let the LWP remain with SIGNALLED set.
5171         (linux_nat_wait_1): Remove flushing of pending SIGSTOPs.
5172         * remote.c (append_pending_thread_resumptions): New.
5173         (remote_vcont_resume): Call it.
5174         * target.h (target_resume): Extend comment.
5175
5176 2012-06-28  Iain Sandoe  <iain@codesourcery.com>
5177
5178         * auxv.c (fprint_target_auxv): Handle extended cache data tags.
5179
5180 2012-06-27  Doug Evans  <dje@google.com>
5181
5182         * dwarf2read.c (dwarf2_cu): Add ranges_base.
5183         Delete have_addr_base, unused.  All uses updated.
5184         (init_cutu_and_read_dies): Process DW_AT_GNU_ranges_base.
5185         (dwarf2_get_pc_bounds): Add ranges_base.
5186         (dwarf2_record_block_ranges): Ditto.
5187
5188 2012-06-27  Tom Tromey  <tromey@redhat.com>
5189
5190         PR macros/7961:
5191         * varobj.c (varobj_create): Update.
5192         (varobj_set_value): Update.
5193         * tracepoint.c (validate_actionline): Update.
5194         (encode_actions_1): Update.
5195         * parse.c (parse_exp_1): Add 'pc' argument.
5196         (parse_exp_in_context): Add 'pc' argument.  Change how
5197         expression_context_pc is set.
5198         (parse_expression): Update.
5199         (parse_field_expression): Update.
5200         * expression.h (parse_exp_1): Update.
5201         * eval.c (parse_to_comma_and_eval): Update.
5202         * breakpoint.c (set_breakpoint_condition): Update.
5203         (update_watchpoint): Update.
5204         (init_breakpoint_sal): Update
5205         (find_condition_and_thread): Update.
5206         (watch_command_1): Update.
5207         (update_breakpoint_locations): Update.
5208         * ada-lang.c (ada_read_renaming_var_value): Update.
5209         (create_excep_cond_exprs): Update.
5210
5211 2012-06-27  Doug Evans  <dje@google.com>
5212
5213         * dwarf2read.c (per_cu_header_read_in): Simplify, and handle
5214         type units.
5215
5216 2012-06-26  Doug Evans  <dje@google.com>
5217
5218         * dwarf2read.c (read_and_check_comp_unit_head): Delete unnecessary
5219         prototype.
5220         (error_check_comp_unit_head): New arg abbrev_section.  All callers
5221         updated.
5222         (read_and_check_comp_unit_head): Ditto.
5223         (read_and_check_type_unit_head): Ditto.
5224
5225 2012-06-26  Siva Chandra Reddy  <sivachandra@google.com>
5226
5227         New attribute 'last' for gdb.Symtab_and_line.
5228         * NEWS (Python Scripting): Add entry about the new attribute.
5229         * python/py-symtab.c (salpy_get_last): New function which
5230         implements the get method for the 'last' attribute of
5231         gdb.Symtab_and_line.
5232         (sal_object_getset): Add entry for the 'last' attribute.
5233
5234 2012-06-26  Doug Evans  <dje@google.com>
5235
5236         * dwarf2read.c (dwo_section_names): Add macinfo_dwo, macro_dwo.
5237         (dwo_sections): Add macinfo, macro.
5238         (dwarf2_locate_dwo_sections): Watch for macro sections.
5239         (dwarf_decode_macros): Remove args lh, abfd, section, section_name.
5240         All callers updated.  Handle DWO files.
5241
5242         * NEWS: Mention new options "set debug dwarf2-read" and
5243         "set debug symtab-create".
5244         * dwarf2read.c (dwarf2_read_debug): New static global.
5245         (dwarf2_build_psymtabs_hard): Add debugging printfs.
5246         (process_queue): Ditto.
5247         (process_full_comp_unit): Ditto.
5248         (_initialize_dwarf2_read): Add new option "set debug dwarf2-read".
5249         * elfread.c (elf_symfile_read): Add debugging printf.
5250         * minsyms.c (install_minimal_symbols): Ditto.
5251         * psymtab.c (allocate_psymtab): Ditto.
5252         * symfile.c (allocate_symtab): Ditto.
5253         * symtab.c (symtab_create_debug): New global.
5254         (_initialize_symtab): Add new option "set debug symtab-create".
5255         * symtab.h (symtab_create_debug): Declare.
5256
5257         * dwarf2read.c (lookup_dwo_comp_unit): Enhance comment.
5258         (lookup_dwo_type_unit): Ditto.
5259
5260 2012-06-26  Roland McGrath  <roland@hack.frob.com>
5261             H.J. Lu  <hongjiu.lu@intel.com>
5262
5263         * amd64-linux-nat.c: Include <sys/user.h>.
5264         (ps_get_thread_area): Use PTRACE_PEEKUSER to get fs_base/gs_base
5265         if HAVE_STRUCT_USER_REGS_STRUCT_FS_BASE or
5266         HAVE_STRUCT_USER_REGS_STRUCT_GS_BASE is defined.
5267
5268         * configure.ac: Check if the fs_base and gs_base members of
5269         `struct user_regs_struct' exist.
5270         * config.in: Regenerated.
5271         * configure: Likewise.
5272
5273 2012-06-25  Michael Eager  <eager@eagercon.com>
5274
5275         PR python/14291
5276         * python/python.c (gdbpy_write): Check for interrupted output.
5277
5278 2012-06-25  Greta Yorsh  <greta.yorsh@arm.com>
5279
5280         * arm-tdep.c (arm_in_function_epilogue_p): Recognize POP with a single
5281         register as a stack alignment in ARM mode.
5282
5283 2012-06-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
5284
5285         Update gnulib to GIT commit a39f53ccb70a613e647e1019fb4c63645220267e.
5286         * gnulib/config.in: Regenerate.
5287         * gnulib/configure: Likewise.
5288         * gnulib/import/m4/extensions.m4: Update it.
5289         * gnulib/import/m4/gnulib-common.m4: Likewise.
5290         * gnulib/import/m4/memmem.m4: Likewise.
5291         * gnulib/import/m4/mmap-anon.m4: Likewise.
5292         * gnulib/import/m4/multiarch.m4: Likewise.
5293         * gnulib/import/stdint.in.h: Likewise.
5294
5295 2012-06-24  Yao Qi  <yao@codesourcery.com>
5296
5297         * corefile.c (write_memory_with_notification): New.
5298         * gdbcore.h: Declare write_memory_with_notification.
5299         * ada-lang.c (ada_value_assign): Replace 'write_memory' and
5300         'observer_notify_memory_changed' with 'write_memory_with_notification'.
5301         * valops.c (value_assign): Likewise.
5302         * python/py-inferior.c (infpy_write_memory): Call
5303         'write_memory_with_notification'.
5304
5305 2012-06-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
5306
5307         * cc-with-index.sh: Use also -ex "set auto-load no".
5308
5309 2012-06-23  Doug Evans  <dje@google.com>
5310
5311         PR 14125
5312         * NEWS: Document additions to .gdb_index.
5313         * dwarf2read.c: #include "gdb/gdb-index.h".
5314         (DW2_GDB_INDEX_SYMBOL_STATIC_SET_VALUE): New macro.
5315         (DW2_GDB_INDEX_SYMBOL_KIND_SET_VALUE): New macro.
5316         (DW2_GDB_INDEX_CU_SET_VALUE): New macro.
5317         (dwarf2_read_index): Recognize version 7.
5318         (dw2_do_expand_symtabs_matching): New args want_specific_block,
5319         block_kind, domain): All callers updated.
5320         (dw2_find_symbol_file): Handle new index CU values.
5321         (dw2_expand_symtabs_matching): Match symbol kind if requested.
5322         (add_index_entry): New args is_static, kind.  All callers updated.
5323         (offset_type_compare, uniquify_cu_indices): New functions
5324         (symbol_kind): New function.
5325         (write_psymtabs_to_index): Remove duplicate CU values.
5326         (write_psymtabs_to_index): Write .gdb_index version 7.
5327
5328 2012-06-22  Joel Brobecker  <brobecker@adacore.com>
5329
5330         * configure.ac (build_warnings): Add -Wdeclaration-after-statement.
5331         * configure: Regenerate.
5332
5333 2012-06-20  Yao Qi  <yao@codesourcery.com>
5334
5335         * python/py-inferior.c: Update comments of infpy_read_memory
5336         and infpy_write_memory.
5337
5338 2012-06-19  Tom Tromey  <tromey@redhat.com>
5339
5340         PR exp/9514:
5341         * parser-defs.h (insert_type, insert_type_address_space): Declare.
5342         (push_type_address_space): Remove.
5343         * parse.c (insert_into_type_stack): New function.
5344         (insert_type): Likewise.
5345         (insert_type_address_space): Rename from push_type_address_space.
5346         Insert tp_space_identifier.
5347         * c-exp.y (ptr_operator): New production.
5348         (abs_decl): Use ptr_operator.
5349         (space_identifier): Call insert_type_address_space.
5350         (ptype): Don't use const_or_volatile_or_space_identifier.
5351         (const_or_volatile_noopt): Call insert_type.
5352         (conversion_type_id, conversion_declarator): New productions.
5353         (operator): Use conversion_type_id.
5354
5355 2012-06-18  Doug Evans  <dje@google.com>
5356
5357         * symtab.h (minimal_symbol): New member created_by_gdb.
5358         * elfread.c (elf_symtab_read): Set created_by_gdb for @plt minsym
5359         created by gdb.
5360         * symtab.c (lookup_symbol_in_objfile_from_linkage_name): New function.
5361         (search_symbols): Call it instead of lookup_symbol.
5362         Skip symbols created by gdb.  Only scan minsyms if nfiles == 0.
5363
5364         * dwarf2expr.c (execute_stack_op): Handle DW_OP_GNU_const_index.
5365         Adjust address for DW_OP_GNU_addr_index.
5366         * dwarf2expr.h (dwarf_expr_context): Update comment.
5367         * dwarf2loc.c (locexpr_describe_location_piece): New arg per_cu,
5368         all callers updated.  Handle TLS vars described with
5369         DW_OP_GNU_const_index.
5370         (disassemble_dwarf_expression): Handle DW_OP_GNU_addr_index
5371         and DW_OP_GNU_const_index.
5372         * dwarf2read.c (decode_locdesc): Handle DW_OP_GNU_addr_index.
5373
5374         * block.c (find_block_in_blockvector): Make explicit the fact that we
5375         ignore GLOBAL_BLOCK.
5376
5377 2012-06-18  Tom Tromey  <tromey@redhat.com>
5378
5379         * c-exp.y (operator): Remove trailing space after "delete" and
5380         "delete[]".
5381
5382 2012-06-18  Mark Kettenis  <kettenis@gnu.org>
5383             Jan Kratochvil  <jan.kratochvil@redhat.com>
5384
5385         Switch i386 and derived targets to ON_STACK.
5386         * amd64-dicos-tdep.c (amd64_dicos_push_dummy_code): Remove.
5387         (amd64_dicos_init_abi): Remove its installment.
5388         * dicos-tdep.c (dicos_init_abi): Remove the
5389         set_gdbarch_call_dummy_location call.  Update the comment here.
5390         * i386-dicos-tdep.c (i386_dicos_push_dummy_code): Remove.
5391         (i386_dicos_init_abi): Remove its installment.
5392         * i386-tdep.c (i386_push_dummy_code): New function.
5393         (i386_gdbarch_init): Call set_gdbarch_call_dummy_location, install
5394         i386_push_dummy_code.
5395
5396 2012-06-18  Jan Kratochvil  <jan.kratochvil@redhat.com>
5397
5398         Remove stale dummy frames.
5399         * breakpoint.c: Include dummy-frame.h.
5400         (longjmp_breakpoint_ops): New variable.
5401         (update_breakpoints_after_exec, breakpoint_init_inferior): Delete also
5402         bp_longjmp_call_dummy.
5403         (bpstat_what, bptype_string, print_one_breakpoint_location)
5404         (init_bp_location): Support bp_longjmp_call_dummy.
5405         (set_longjmp_breakpoint): Use longjmp_breakpoint_ops.  Comment why.
5406         (set_longjmp_breakpoint_for_call_dummy)
5407         (check_longjmp_breakpoint_for_call_dummy, longjmp_bkpt_dtor): New
5408         functions.
5409         (initialize_breakpoint_ops): Initialize longjmp_breakpoint_ops.
5410         * breakpoint.h (enum bptype): New item bp_longjmp_call_dummy.  Delete
5411         FIXME comment and extend the other comment for bp_call_dummy.
5412         (set_longjmp_breakpoint_for_call_dummy)
5413         (check_longjmp_breakpoint_for_call_dummy): New declarations.
5414         * dummy-frame.c: Include gdbthread.h.
5415         (pop_dummy_frame_bpt): New function.
5416         (pop_dummy_frame): Call pop_dummy_frame_bpt.
5417         (dummy_frame_discard): New function.
5418         (cleanup_dummy_frames): Update the comment about longjmps.
5419         * dummy-frame.h (dummy_frame_discard): New declaration.
5420         * gdbthread.h (struct thread_info): Extend initiating_frame comment.
5421         * infcall.c (call_function_by_hand): New variable longjmp_b.  Call
5422         set_longjmp_breakpoint_for_call_dummy.  Chain its breakpoints with BPT.
5423         * infrun.c (handle_inferior_event) <BPSTAT_WHAT_CLEAR_LONGJMP_RESUME>:
5424         Add case 4 comment.  Call check_longjmp_breakpoint_for_call_dummy and
5425         keep_going if IS_LONGJMP and there is no other reason to stop.
5426
5427 2012-06-18  Greta Yorsh  <Greta.Yorsh@arm.com>
5428
5429         * remote-sim.c (sim_command_completer): Initialize
5430         variable 'result'.
5431
5432 2012-06-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
5433
5434         * dwarf2expr.c (execute_stack_op): Support DW_OP_GNU_parameter_ref.
5435         * dwarf2loc.c (call_site_parameter_matches): Support
5436         CALL_SITE_PARAMETER_PARAM_OFFSET.
5437         (needs_dwarf_reg_entry_value): Push stub value.
5438         * dwarf2read.c (read_call_site_scope): New variable origin.  Support
5439         CALL_SITE_PARAMETER_PARAM_OFFSET and its DW_AT_abstract_origin.
5440         * gdbtypes.h (enum call_site_parameter_kind): New item
5441         CALL_SITE_PARAMETER_PARAM_OFFSET.
5442         (struct call_site.parameter.u): New field param_offset.
5443
5444 2012-06-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
5445
5446         Code cleanup: Generalize call_site.parameter key.
5447         * dwarf2expr.c (execute_stack_op) <DW_OP_GNU_entry_value>: Remove
5448         variable dwarf_reg.  New variable kind_u.  Update parameters to
5449         push_dwarf_reg_entry_value.
5450         (ctx_no_push_dwarf_reg_entry_value): Update parameters.
5451         * dwarf2expr.h (enum call_site_parameter_kind)
5452         (union call_site_parameter_u): Forward declarations.
5453         (struct dwarf_expr_context_funcs): Update parameters and their
5454         description for push_dwarf_reg_entry_value.
5455         (ctx_no_push_dwarf_reg_entry_value): Update parameters.
5456         * dwarf2loc.c (call_site_parameter_matches): New function.
5457         (dwarf_expr_reg_to_entry_parameter): Update parameters and their
5458         description.  Use call_site_parameter_matches.
5459         (dwarf_expr_push_dwarf_reg_entry_value, value_of_dwarf_reg_entry):
5460         Update parameters and their description.
5461         (value_of_dwarf_block_entry): Remove variables dwarf_reg and fb_offset.
5462         New variable kind_u.  Adjust the caller for updated parameters.
5463         (needs_dwarf_reg_entry_value): Update parameters.
5464         * dwarf2read.c (read_call_site_scope): New variable loc.  Use it
5465         instead of attr.  Update for the changed fields of struct
5466         call_site_parameter.
5467         * gdbtypes.h: Include dwarf2expr.h.
5468         (enum call_site_parameter_kind): New.
5469         (struct call_site.parameter): New field kind.  Wrap dwarf_reg and
5470         fb_offset into new union u.
5471
5472 2012-06-16  H.J. Lu  <hongjiu.lu@intel.com>
5473
5474         * amd64-tdep.c (amd64_x32_analyze_stack_align): New function.
5475         (amd64_analyze_prologue): Call amd64_x32_analyze_stack_align
5476         for x32.
5477
5478 2012-06-16  H.J. Lu  <hongjiu.lu@intel.com>
5479
5480         * amd64-linux-nat.c (compat_x32_clock_t): New.
5481         (compat_x32_siginfo_t): Likewise.
5482         (compat_x32_siginfo_from_siginfo): Likewise.
5483         (siginfo_from_compat_x32_siginfo): Likewise.
5484         (amd64_linux_siginfo_fixup): Call compat_x32_siginfo_from_siginfo
5485         and siginfo_from_compat_x32_siginfo for x32.
5486
5487 2012-06-15  Hui Zhu  <hui_zhu@mentor.com>
5488
5489         * tracepoint.c (tfile_xfer_partial): Add a lseek.
5490
5491 2012-06-15  H.J. Lu  <hongjiu.lu@intel.com>
5492
5493         * amd64-linux-nat.c (ps_get_thread_area): Check bits_per_word
5494         instead of gdbarch_ptr_bit.
5495         * amd64-nat.c (amd64_native_gregset_reg_offset): Likewise.
5496         (amd64_supply_native_gregset): Likewise.
5497         (amd64_collect_native_gregset): Likewise.
5498         * amd64-tdep.c (amd64_supply_fxsave): Likewise.
5499         (amd64_supply_xsave): Likewise.
5500         (amd64_collect_fxsave): Likewise.
5501         (amd64_collect_xsave): Likewise.
5502
5503 2012-06-15  H.J. Lu  <hongjiu.lu@intel.com>
5504
5505         * amd64-linux-nat.c (AMD64_LINUX_X32_DS): New.
5506         (amd64_linux_read_description): Check DS segment register for
5507         x32 process.
5508
5509 2012-06-15  Tom Tromey  <tromey@redhat.com>
5510
5511         * dwarf2read.c (dw2_find_symbol_file): Unconditionally use
5512         init_cutu_and_read_dies.
5513
5514 2012-06-15  Iain Sandoe <iain@codesourcery.com>
5515
5516         * MAINTAINERS (Write After Approval): Add myself to the list.
5517
5518 2012-06-15  Tom Tromey  <tromey@redhat.com>
5519
5520         * valops.c (value_find_oload_method_list): Now static.
5521         * value.h (value_find_oload_method_list): Don't declare.
5522
5523 2012-06-15  Tom Tromey  <tromey@redhat.com>
5524
5525         * valops.c (find_overload_match): Use value_ind.
5526
5527 2012-06-15  Maciej W. Rozycki  <macro@codesourcery.com>
5528
5529         * infrun.c (handle_inferior_event): Correct indentation.
5530
5531 2012-06-14  Doug Evans  <dje@google.com>
5532
5533         * dwarf2loc.c (debug_loc_kind): Add DEBUG_LOC_START_LENGTH.
5534         (DEBUG_LOC_START_END): Renamed from DEBUG_LOC_NORMAL.
5535         All uses updated.
5536         (decode_debug_loc_dwo_addresses): New arg "byte_order".  All callers
5537         updated.  Handle DEBUG_LOC_START_LENGTH.
5538         (dwarf2_find_location_expression): Handle DEBUG_LOC_START_LENGTH.
5539         (loclist_describe_location): Ditto.
5540
5541 2012-06-14  Maciej W. Rozycki  <macro@codesourcery.com>
5542
5543         PR backtrace/13866
5544         * infrun.c (handle_inferior_event): Re-fetch frame and gdbarch
5545         after hiding inline functions.
5546
5547 2012-06-13  Joel Brobecker  <brobecker@adacore.com>
5548
5549         * inf-ttrace.c (_initialize_hppa_hpux_nat): Rename into
5550         _initialize_inf_ttrace.
5551
5552 2012-06-13  Joel Brobecker  <brobecker@adacore.com>
5553
5554         * ia64-hpux-nat.c (_initialize_ia64_hpux_nat): Renames
5555         _initialize_hppa_hpux_nat.
5556
5557 2012-06-13  Joel Brobecker  <brobecker@adacore.com>
5558
5559         * remote-sim.c (sim_command_completer): Change type of return
5560         value to "VEC (char_ptr) *".  Adjust implementation accordingly.
5561
5562 2012-06-13  Mark Kettenis  <kettenis@gnu.org>
5563             Jan Kratochvil  <jan.kratochvil@redhat.com>
5564
5565         PR tdep/14222
5566         * i386-tdep.c (i386_push_dummy_call): Unconditionally align the
5567         stack on a 16-byte boundary.
5568
5569 2012-06-13  Kaushik Srenevasan  <kaushik@twitter.com>
5570
5571         * jit.c (finalize_symtab): Set function's return type to 'void' by
5572         default.
5573
5574 2012-06-13  Mark Kettenis  <kettenis@gnu.org>
5575             H.J. Lu  <hongjiu.lu@intel.com>
5576
5577         * amd64-linux-tdep.c (amd64_linux_init_abi_common): New function.
5578         Move bits common to both the classic LP64 and the new x32 ILP32
5579         ABI here.
5580         (amd64_linux_init_abi): Call amd64_linux_init_abi_common.
5581         (amd64_x32_linux_init_abi): New function.
5582         (_initialize_amd64_linux_tdep): Register osabi for bfd_mach_x64_32
5583         subtype.
5584
5585         * i386-tdep.h (i386_pseudo_register_name): New prototype.
5586         * i386-tdep.c (i386_pseudo_register_name): Make public.
5587         * amd64-tdep.h (amd64_x32_init_abi): New prototype.
5588         * amd64-tdep.c (amd64_dword_names): Add "eip".
5589         (amd64_x32_pseudo_register_type): New function
5590         (amd64_x32_init_abi): New function.
5591
5592 2012-06-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
5593
5594         PR build/14003
5595         * inferior.h (struct inferior_suspend_state): Comment out.
5596         (struct inferior): Comment out the field suspend.
5597         * infrun.c (struct infcall_suspend_state): Comment out the field
5598         inferior_suspend.
5599         (save_infcall_suspend_state, restore_infcall_suspend_state): Comment
5600         out its assignment.
5601
5602 2012-06-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
5603
5604         PR c++/14177 - Fix parsing TYPENAME:: in parentheses.
5605         * c-exp.y (classify_inner_name): Remove caller assumptions in the
5606         function comment.  Return ERROR for unresolved cases.  Implement
5607         returning proper NAME.
5608         (yylex): Accept also NAME from classify_inner_name.
5609         * cp-namespace.c (cp_lookup_nested_type): Rename to ...
5610         (cp_lookup_nested_symbol): ... here.  Return any found symbol, not just
5611         LOC_TYPEDEF type.
5612         * cp-support.h (cp_lookup_nested_type): Update its declaration.
5613
5614 2012-06-13  Tom Tromey  <tromey@redhat.com>
5615
5616         * breakpoint.c (condition_completer): New function.
5617         (_initialize_breakpoint): Use it.
5618         * value.c (complete_internalvar): New function.
5619         * value.h (complete_internalvar): Declare.
5620
5621 2012-06-13  Tom Tromey  <tromey@redhat.com>
5622
5623         * ada-lang.c (ada_make_symbol_completion_list): Return a VEC.
5624         * breakpoint.c (catch_syscall_completer): Return a VEC.
5625         * cli/cli-cmds.c (complete_command): Update.
5626         * cli/cli-decode.c (complete_on_cmdlist): Return a VEC.
5627         (complete_on_enum): Likewise.
5628         * command.h: Include gdb_vecs.h.
5629         (completer_ftype): Change return type.
5630         (complete_on_cmdlist, complete_on_enum): Likewise.
5631         * completer.c (noop_completer, filename_completer)
5632         (location_completer): Return a VEC.
5633         (add_struct_fields): Remove 'nextp' argument.  Change 'output'
5634         to a VEC.
5635         (expression_completer, complete_line_internal, complete_line)
5636         (command_completer): Return a VEC.
5637         (gdb_completion_word_break_characters, line_completion_function):
5638         Update.
5639         * completer.h: Include gdb_vecs.h.
5640         (complete_line, noop_completer, filename_completer)
5641         (expression_completer, location_completer, command_completer):
5642         Update.
5643         * f-lang.c (f_word_break_characters): Return a VEC.
5644         * interps.c (interpreter_completer): Return a VEC.
5645         * language.h (struct language_defn)
5646         <la_make_symbol_completion_list>: Return a VEC.
5647         * python/py-cmd.c (cmdpy_completer): Return a VEC.
5648         * symtab.c (free_completion_list): Take a VEC.
5649         (return_val_size, return_val_index): Remove.
5650         (return_val): Now a VEC.
5651         (completion_list_add_name): Update.
5652         (default_make_symbol_completion_list_break_on)
5653         (default_make_symbol_completion_list, make_symbol_completion_list)
5654         (make_symbol_completion_list_fn, make_file_symbol_completion_list):
5655         Return a VEC.
5656         (add_filename_to_list): Update.
5657         (struct add_partial_filename_data) <list_used, list_alloced>: Remove.
5658         <list>: Now a VEC.
5659         (maybe_add_partial_symtab_filename): Update.
5660         (make_source_files_completion_list): Return a VEC.
5661         * symtab.h (default_make_symbol_completion_list_break_on)
5662         (default_make_symbol_completion_list, make_symbol_completion_list)
5663         (make_symbol_completion_list_fn, make_file_symbol_completion_list)
5664         (make_source_files_completion_list): Update.
5665
5666 2012-06-13  Tom Tromey  <tromey@redhat.com>
5667
5668         * breakpoint.c (add_catch_command): Use completer_ftype.
5669         * breakpoint.h: Include command.h.
5670         (add_catch_command): Use completer_ftype.
5671         * cli/cli-decode.c (set_cmd_completer): Use completer_ftype.
5672         * cli/cli-decode.h (struct cmd_list_element) <completer>:
5673         Use completer_ftype.
5674         * command.h (completer_ftype): New typedef.
5675         (set_cmd_completer): Use it.
5676         * python/py-cmd.c (struct cmdpy_completer) <completer>: Use
5677         completer_ftype.
5678
5679 2012-06-13  Pedro Alves  <palves@redhat.com>
5680
5681         Partial revert of previous change.
5682
5683         * serial.c (scb_base): New global.
5684         (serial_for_fd): New.
5685         (serial_open, serial_fdopen_ops): Link new serial in open serials
5686         chain.
5687         (do_serial_close): Unlink serial from the open serials chain.
5688
5689 2012-06-12  Pedro Alves  <palves@redhat.com>
5690
5691         * infrun.c (infrun_thread_stop_requested_callback): Don't switch
5692         threads here.
5693         (prepare_for_detach): No longer context switch here in non-stop
5694         mode.
5695         (fetch_inferior_event): Ditto.
5696         (handle_inferior_event) <STOP_QUIETLY || NO_STOP_QUIETLY>: Switch
5697         to the event thread before removing breakpoints.  Switch to the
5698         event thread before inserting breakpoints and resuming.
5699         (handle_inferior_event) <TARGET_WAITKIND_SPURIOUS>: Switch to the
5700         event thread before resuming.
5701         (handle_inferior_event) <stepping_past_singlestep_breakpoint>:
5702         Switch to the event thread before removing breakpoints.
5703
5704 2012-06-12  Eli Zaretskii  <eliz@gnu.org>
5705
5706         * infcmd.c (construct_inferior_arguments) [__MINGW32__]: Quote
5707         special characters correctly for the Windows shells.  See
5708         http://sourceware.org/ml/gdb/2012-06/msg00047.html for the bug
5709         report.
5710         [!__MINGW32__]: Remove extra double quote character from special
5711         characters.
5712
5713 2012-06-11  Stan Shebs  <stan@codesourcery.com>
5714
5715         * ui-out.h: Remove #if 0 declarations.
5716         * ui-out.c: Remove #if 0 functions.
5717
5718 2012-06-11  Pedro Alves  <palves@redhat.com>
5719
5720         * ser-base.c (run_async_handler_and_reschedule): New.
5721         (fd_event, push_event): Use it.
5722         * serial.c (serial_open, serial_fdopen_ops): Set the initial
5723         reference count to 1.
5724         (do_serial_close): Set the bufp field to NULL.  Use serial_unref
5725         instead of xfree.
5726         (serial_is_open, serial_ref, serial_unref): New.
5727         * serial.h (serial_open): Adjust comment.
5728         (serial_is_open): Declare.
5729         (serial_close): Adjust comment.
5730         (serial_ref, serial_unref) Declare.
5731         (struct serial): New field 'refcnt'.
5732
5733 2012-06-11  Pedro Alves  <palves@redhat.com>
5734
5735         Remove #if 0'd "connect" command, and unnecessary associated
5736         refcounting and serial reuse bits.
5737
5738         * serial.h (struct serial): Remove fields 'next' and 'refcnt'.
5739         * serial.c (last_serial_opened): Delete.
5740         (scb_base): Delete.
5741         (serial_open): Adjust.
5742         (serial_for_fd): Delete.
5743         (serial_fdopen_ops, do_serial_close): Adjust.
5744         (serial_fdopen_ops): Adjust.
5745
5746 2012-06-11  Pedro Alves  <palves@redhat.com>
5747
5748         * serial.c (do_serial_close): Remove early return when SCB is
5749         null.
5750
5751 2012-06-11  Tom Tromey  <tromey@redhat.com>
5752
5753         * dwarf2read.c (dw2_get_file_names_reader): Ignore partial units.
5754
5755 2012-06-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
5756
5757         Fix regression by the "ambiguous linespec" series.
5758         * breakpoint.c (parse_breakpoint_sals): New variable cursal.  Use
5759         get_last_displayed_symtab and get_last_displayed_line and depending
5760         on CURSAL.
5761
5762 2012-06-11  Tom Tromey  <tromey@redhat.com>
5763
5764         * dwarf2read.c (dw2_get_primary_filename_reader): New function.
5765         (dw2_find_symbol_file): Use it.
5766
5767 2012-06-11  Michael Eager  <eager@eagercon.com>
5768
5769         * mips-linux-tdep.c (mips_gdb_signal_from_target): New
5770         * mips-linux-tdep.h (mips_signals): New
5771
5772 2012-06-11  Tom Tromey  <tromey@redhat.com>
5773
5774         * infrun.c (handle_inferior_event)
5775         <BPSTAT_WHAT_SET_LONGJMP_RESUME>: Don't delete the step-resume
5776         breakpoint.
5777         <BPSTAT_WHAT_CLEAR_LONGJMP_RESUME>: Remove longjmp logic; use
5778         exception logic in all cases.  Update comments.
5779         (insert_longjmp_resume_breakpoint): Set the exception resume
5780         breakpoint.
5781
5782 2012-06-11  Maciej W. Rozycki  <macro@codesourcery.com>
5783
5784         * mips-tdep.c (mips_push_dummy_code): Handle microMIPS code.
5785
5786 2012-06-09  Siva Chandra Reddy  <sivachandra@google.com>
5787
5788         * valarith.c (binop_types_user_defined_p): Fix a typo.
5789
5790 2012-06-08  Yao Qi  <yao@codesourcery.com>
5791             Chung-Lin Tang <cltang@codesourcery.com>
5792
5793         * arch-utils.c (default_return_in_first_hidden_param_p): New.
5794         * arch-utils.h: Declare.
5795         * gdbarch.sh: Add return_in_first_hidden_param_p.
5796         * gdbarch.c, gdbarch.h: Regenerated.
5797         * infcall.c (call_function_by_hand): Call
5798         gdbarch_return_in_first_hidden_param_p instead of
5799         language_pass_by_reference.
5800
5801         * m68k-tdep.c (m68k_return_in_first_hidden_param_p): New.
5802         (m68k_gdbarch_init): Install m68k_return_in_first_hidden_param_p.
5803         * sh-tdep.c (sh_return_in_first_hidden_param_p): New.
5804         (sh_gdbarch_init): Install sh_return_in_first_hidden_param_p.
5805         * tic6x-tdep.c (tic6x_push_dummy_call): Remove local variable
5806         `cplus_return_struct_by_reference'.
5807         (tic6x_return_value): Handle language cplusplus.
5808         (tic6x_return_in_first_hidden_param_p): New.
5809         (tic6x_gdbarch_init): Install tic6x_return_in_first_hidden_param_p.
5810
5811 2012-06-07  Doug Evans  <dje@google.com>
5812
5813         * dwarf2read.c (dwarf2_cu): Add comment.
5814
5815 2012-06-06  Maciej W. Rozycki  <macro@codesourcery.com>
5816
5817         * mips-tdep.c (mips_pseudo_register_type): Remove tdep local
5818         variable.
5819         (mips_eabi_push_dummy_call): Likewise.
5820         (mips_n32n64_push_dummy_call): Likewise.
5821         (mips_o32_push_dummy_call): Likewise.
5822         (mips_o64_push_dummy_call): Likewise.
5823
5824 2012-06-06  Maciej W. Rozycki  <macro@codesourcery.com>
5825
5826         * mips-tdep.c (mips_convert_register_p): Correct coding style.
5827
5828 2012-06-06  Maciej W. Rozycki  <macro@codesourcery.com>
5829
5830         * mips-tdep.c (mips_pseudo_register_type): Use
5831         mips_float_register_p.
5832
5833 2012-06-06  Pedro Alves  <palves@redhat.com>
5834
5835         * infrun.c (handle_inferior_event): Remove calls to
5836         reinit_frame_cache that follow a context_switch call.
5837
5838 2012-06-06  Pedro Alves  <palves@redhat.com>
5839
5840         * infrun.c (handle_inferior_event) <deferred_step_ptid>: Use
5841         context_switch and remove stale comment.
5842
5843 2012-06-06  Pedro Alves  <palves@redhat.com>
5844
5845         * infrun.c (struct execution_control_state): Remove
5846         `new_thread_event' field.
5847         (handle_inferior_event): Simplify new threads handling; don't
5848         resume the inferior if we find a new thread.
5849
5850 2012-06-06  Thomas Schwinge  <thomas@codesourcery.com>
5851
5852         * NEWS: Document the deprecation of SH's 'regs' command.
5853         * inferior.h (all_registers_info): Add function declaration.
5854         * sh-tdep.c (sh_show_regs): Remove variable.
5855         (sh_generic_show_regs, sh3_show_regs, sh2e_show_regs, sh2a_show_regs)
5856         (sh2a_nofpu_show_regs, sh3e_show_regs, sh3_dsp_show_regs)
5857         (sh4_show_regs, sh4_nofpu_show_regs, sh_dsp_show_regs)
5858         (sh_show_regs_command): Remove functions.
5859         (sh_gdbarch_init): Don't set sh_show_regs.
5860         (_initialize_sh_tdep): Make the 'regs' command an deprecated alias to
5861         'info all-registers'.
5862         * sh64-tdep.c (sh64_show_media_regs, sh64_show_compact_regs)
5863         (sh64_show_regs): Remove functions.
5864         * sh64-tdep.h (sh64_show_regs): Remove function declaration.
5865
5866 2012-06-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
5867
5868         * configure.ac: Move development=true below AC_INIT.
5869         * configure: Regenerate.
5870
5871 2012-06-05  Stan Shebs  <stan@codesourcery.com>
5872
5873         * mi/mi-interp.c (mi_interpreter_init): Set raw_stdout from
5874         gdb_stdout.
5875
5876 2012-06-05  Siddhesh Poyarekar  <siddhesh@redhat.com>
5877
5878         * corefile.c (read_memory, read_stack, write_memory): Accept LEN
5879         argument as ssize_t.
5880         * gdbcore.h (read_memory, read_stack, write_memory): Likewise.
5881         * remote.c (remote_write_bytes_aux, remote_write_bytes): Likewise.
5882         * target.c (target_read_stack, target_write_memory)
5883         (target_write_raw_memory): Likewise.
5884         * target.h (target_read_stack, target_write_memory)
5885         (target_write_raw_memory): Likewise.
5886
5887 2012-06-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
5888
5889         * symfile-mem.c: Change gdb_static_assert to ssize_t.
5890         (target_read_memory_bfd): Cast gdb_assert LEN to ssize_t.
5891         * target.c (target_read_memory): Change LEN to ssize_t.
5892         * target.h (target_read_memory): Change LEN to ssize_t.
5893
5894 2012-06-05  Pedro Alves  <palves@redhat.com>
5895
5896         PR backtrace/13866
5897
5898         * breakpoint.c (until_break_command): Only fetch the selected
5899         frame after decode_line_1.
5900
5901 2012-06-05  Joakim Tjernlund  <Joakim.Tjernlund@transmode.se>
5902
5903         * solib-svr4.c (enable_break): Don't fallback to setting the solib
5904         event breakpoint at _start, __start or main if a program
5905         interpreter is not found.
5906
5907 2012-06-05  Joel Brobecker  <brobecker@adacore.com>
5908
5909         * windows-tdep.h (windows_iterate_over_objfiles_in_search_order):
5910         Add declaration.
5911         * windows-tdep.c: #include "objfiles.h".
5912         (windows_iterate_over_objfiles_in_search_order): New function.
5913         * amd64-windows-tdep.c (amd64_windows_init_abi): Set
5914         iterate_over_objfiles_in_search_order gdbarch method to
5915         windows_iterate_over_objfiles_in_search_order.
5916         * i386-cygwin-tdep.c (i386_cygwin_init_abi): Likewise.
5917
5918 2012-06-05  Joel Brobecker  <brobecker@adacore.com>
5919
5920         * gdbarch.sh: Add generation of
5921         "iterate_over_objfiles_in_search_order_cb_ftype" typedef in
5922         gdbarch.h.  Add include of "objfiles.h" in gdbarch.c.
5923         (iterate_over_objfiles_in_search_order): New gdbarch method.
5924         * gdbarch.h, gdbarch.c: Regenerate.
5925         * objfiles.h (default_iterate_over_objfiles_in_search_order):
5926         Add declaration.
5927         * objfiles.c (default_iterate_over_objfiles_in_search_order):
5928         New function.
5929         * symtab.c (lookup_symbol_aux_objfile): New function, extracted
5930         out of lookup_symbol_aux_symtabs.
5931         (lookup_symbol_aux_symtabs): Replace extracted-out code by
5932         call to lookup_symbol_aux_objfile.
5933         (struct global_sym_lookup_data): New type.
5934         (lookup_symbol_global_iterator_cb): New function.
5935         (lookup_symbol_global): Search for symbol using
5936         gdbarch_iterate_over_objfiles_in_search_order and
5937         lookup_symbol_global_iterator_cb.
5938         * findvar.c (struct minsym_lookup_data): New type.
5939         (minsym_lookup_iterator_cb): New function.
5940         (default_read_var_value) [case LOC_UNRESOLVED]: Resolve the
5941         symbol's address via gdbarch_iterate_over_objfiles_in_search_order
5942         and minsym_lookup_iterator_cb.
5943
5944 2012-06-05  Joel Brobecker  <brobecker@adacore.com>
5945
5946         Revert the following patch:
5947         * findvar.c (default_read_var_value): For LOC_UNRESOLVED symbols,
5948         try locating the symbol in the symbol's own objfile first, before
5949         extending the search to all objfiles.
5950         * symtab.c (lookup_symbol_aux_objfile): New function, extracted
5951         out of lookup_symbol_aux_symtabs.
5952         (lookup_symbol_aux_symtabs): Add new parameter "exclude_objfile".
5953         Replace extracted-out code by call to lookup_symbol_aux_objfile.
5954         Do not search EXCLUDE_OBJFILE.
5955         (lookup_static_symbol_aux): Update call to lookup_symbol_aux_symtabs.
5956         (lookup_symbol_global): Search for matches in the block's objfile
5957         first, before searching all other objfiles.
5958
5959 2012-06-05  Joel Brobecker  <brobecker@adacore.com>
5960
5961         * breakpoint.c (find_condition_and_thread): Stop parsing
5962         as soon as the first invalid keyword is found.
5963
5964 2012-06-05  Joel Brobecker  <brobecker@adacore.com>
5965
5966         * copyright.py (EXCLUDE_LIST): Add 'gdb/CONTRIBUTE' to list.
5967
5968 2012-06-05  Joel Brobecker  <brobecker@adacore.com>
5969
5970         * config/djgpp/djcheck.sh: Add copyright header.
5971
5972 2012-06-05  Joel Brobecker  <brobecker@adacore.com>
5973
5974         * copyright.py (update_files, main): Fix path to update-copyright
5975         script.
5976
5977 2012-06-05  Joel Brobecker  <brobecker@adacore.com>
5978
5979         * copyright.py (MULTIPLE_COPYRIGHT_HEADERS): New constant.
5980         (main): Add MULTIPLE_COPYRIGHT_HEADERS to the list of files
5981         for which a reminder to update by hand is printed.
5982
5983 2012-06-04  Doug Evans  <dje@google.com>
5984
5985         * buildsym.c (make_blockvector): Add comment.
5986
5987 2012-06-04  Pedro Alves  <palves@redhat.com>
5988
5989         * arch-utils.c (default_gdb_signal_from_target): Delete.
5990         * arch-utils.h (default_gdb_signal_from_target): Delete.
5991         * corelow.c (core_open) <signal mapping>: Extended comment.  Check
5992         gdbarch_gdb_signal_from_target_p.
5993         * gdbarch.sh (gdb_signal_from_target): Make it an M method (with
5994         predicate).
5995         * gdbarch.h: Regenerate.
5996         * gdbarch.c: Regenerate.
5997
5998 2012-06-04  Pedro Alves  <palves@redhat.com>
5999
6000         * gdbarch.sh (gdb_signal_from_target): Mention that the
6001         implementation of the method must be host independent.
6002         * gdbarch.h: Regenerate.
6003
6004 2012-06-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
6005
6006         * symfile-mem.c: 3 new gdb_static_assert for target_read_memory_bfd
6007         parameters.
6008         (target_read_memory_bfd): New function.
6009         (symbol_file_add_from_memory): Use it.
6010
6011 2012-06-03  Doug Evans  <dje@google.com>
6012
6013         * symtab.c (lookup_global_symbol_from_objfile): Only scan blockvector
6014         of primary symtab.
6015         (basic_lookup_transparent_type): Ditto.
6016
6017         * objfiles.h (ALL_OBJFILE_PRIMARY_SYMTABS): New macro.
6018         (ALL_PRIMARY_SYMTABS): Use it.
6019         (ALL_PSPACE_PRIMARY_SYMTABS): Ditto.
6020         * dwarf2read.c (dw2_find_symbol_file): Ditto.
6021         * linespec.c (iterate_over_all_matching_symtabs): Ditto.
6022         * symtab.c (lookup_symbol_aux_objfile): Ditto.
6023         (basic_lookup_transparent_type): Ditto.
6024
6025 2012-06-02  Sergio Durigan Junior  <sergiodj@redhat.com>
6026
6027         * symtab.c (symbol_demangled_name): New variable `dem_name'.  Use
6028         it to optimize resolution of demangled name.
6029
6030 2012-06-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
6031
6032         * configure.ac (development): Define new variable.
6033         Call AC_CHECK_LIB for mcheck if $development.
6034         (ERROR_ON_WARNING): Enable it by default only if $development.
6035         * config.in: Regenerate.
6036         * configure: Regenerate.
6037
6038 2012-06-01  Siddhesh Poyarekar  <siddhesh@redhat.com>
6039
6040         * target.c (target_read_memory): Make LEN argument as size_t.
6041         * target.h (target_read_memory): Likewise.
6042
6043 2012-06-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
6044
6045         * tilegx-linux-tdep.c (tilegx_l): Use ULL for 64-bit values.
6046
6047 2012-05-31  Edjunior Machado  <emachado@linux.vnet.ibm.com>
6048
6049         * ppc-linux-nat.c (have_ptrace_booke_interface): Disable ptrace
6050         BookE interface for PowerPC server processors if not available
6051         in the Linux Kernel.
6052
6053 2012-05-31  Keith Seitz  <keiths@redhat.com>
6054
6055         * linespec.c (decode_objc): Add cleanup to free
6056         INFO.FILE_SYMTABS.
6057         (find_linespec_symbols): Add cleanup to free CLASSES.
6058         * symfile.c (find_separate_debug_file_by_debuglink): Add
6059         cleanup to free DEBUGLINK.
6060         * ui-out.c (clear_header_list): No need to check if
6061         HEADER_NEXT.COLHDR is NULL.
6062         Free HEADER_NEXT.COL_NAME.
6063
6064 2012-05-31  Matthew Gretton-Dann  <matthew.gretton-dann@arm.com>
6065
6066         * ada-lang.c (standard_lookup): Prevent uninitialized variable
6067         warning.
6068
6069 2012-05-30  Jeff Kenton  <jkenton@tilera.com>
6070
6071         * configure.host (gdb_host_cpu): Handle tilegx*.
6072         (gdb_host): Handle tilegx-*-linux*.
6073         * tilegx-linux-nat.c: New file.
6074         * config/tilegx/linux.mh: New file.
6075
6076 2012-05-30  Jeff Kenton  <jkenton@tilera.com>
6077
6078         * Makefile.in (ALL_TARGET_OBJS): Add tilegx-tdep.o and
6079         tilegx-linux-tdep.o.
6080         (ALLDEPFILES): Add tilegx-linux-nat.c, tilegx-tdep.c and
6081         tilegx-linux-tdep.c.
6082         * configure.tgt: Handle tilegx-*-linux*.
6083         * tilegx-tdep.h: New file.
6084         * tilegx-tdep.c: New file.
6085         * tilegx-linux-tdep.c: New file.
6086         * regformats/reg-tilegx.dat: New file.
6087
6088 2012-05-30  Edjunior Machado  <emachado@linux.vnet.ibm.com>
6089
6090         * ppc-linux-nat.c (ppc_linux_can_use_hw_breakpoint): fix
6091         accounting of hw watchpoints on ppc.
6092
6093 2012-05-30  Thiago Jung Bauermann  <thiago.bauermann@linaro.org>
6094
6095         * source.c (openp): Expand tilde in path entries.
6096
6097 2012-05-29  Doug Evans  <dje@google.com>
6098
6099         * buildsym.c (block_compar): Fix comment.
6100         (end_symtab): Fix and clarify some comments.
6101
6102         * stabsread.h (cleanup_undefined_stabs_types): Renamed from
6103         cleanup_undefined_types.
6104         * stabsread.c (cleanup_undefined_stabs_types): Ditto.
6105         All callers updated.
6106
6107 2012-05-29  Tom Tromey  <tromey@redhat.com>
6108
6109         * symfile.c (symfile_bfd_open): Don't close desc if bfd_fopen
6110         fails.
6111         * solib.c (solib_bfd_fopen): Don't close fd if bfd_fopen fails.
6112         * exec.c (exec_file_attach): Don't close scratch_chan if bfd_fopen
6113         fails.
6114         * dwarf2read.c (try_open_dwo_file): Don't close fd if bfd_fopen
6115         fails.
6116
6117 2012-05-29  Tristan Gingold  <gingold@adacore.com>
6118
6119         * solib-darwin.c (dyld_all_image_addr, dyld_all_image): Move into...
6120         (struct darwin_info): ... New struct.
6121         (solib_darwin_pspace_data): New variable.
6122         (darwin_pspace_data_cleanup): New function.
6123         (get_darwin_info): Likewise.
6124         (darwin_dyld_version_ok, darwin_load_image_infos)
6125         (darwin_solib_get_all_image_info_addr_at_init)
6126         (darwin_solib_read_all_image_info_addr): Add info argument.
6127         Adjust code.
6128         (darwin_current_sos): Use per pspace structure.
6129         (darwin_solib_create_inferior_hook): Likewise.
6130         (darwin_clear_solib): Likewise.
6131         (_initialize_darwin_solib): Initialize solib_darwin_pspace_data.
6132
6133 2012-05-28  Pedro Alves  <palves@redhat.com>
6134
6135         * infrun.c (wait_for_inferior): Move ecss and ecs locals to the
6136         block that uses them.  Clear ecss before handling each event.
6137
6138 2012-05-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
6139
6140         * solib-svr4.c (svr4_current_sos): New comment on
6141         svr4_current_sos_via_xfer_libraries fall back.
6142
6143 2012-05-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
6144
6145         * psymtab.c (lookup_symbol_aux_psymtabs): New variable stab_best.  Use
6146         it as a fallback for TYPE_IS_OPAQUE.
6147         * symfile.h (struct quick_symbol_functions): Mention TYPE_OPAQUE
6148         symbols for lookup_symbol.
6149
6150 2012-05-24  John Steele Scott  <toojays@toojays.net>
6151
6152         PR symtab/13277: Resolving opaque structures in ICC generated binaries.
6153         * dwarf2read.c (struct dwarf2_cu) <producer_is_icc>: New field.
6154         (producer_is_gxx_lt_4_6): Move the checking and caching to...
6155         (check_producer): ... this new function, which also checks for ICC
6156         and caches the result.
6157         (producer_is_icc): New function.
6158         (read_structure_type): Don't set TYPE_STUB_SUPPORTED if the
6159         producer was ICC.
6160
6161 2012-05-24  Pedro Alves  <palves@redhat.com>
6162
6163         PR gdb/7205
6164
6165         * arch-utils.c (default_gdb_signal_to_host): Rename to ...
6166         (default_gdb_signal_to_target): ... this.  Add comment.
6167         (default_gdb_signal_from_host): Rename to ...
6168         (default_gdb_signal_from_target): ... this.  Add comment.
6169         * arch-utils.h (default_gdb_signal_to_host): Rename to ...
6170         (default_gdb_signal_to_target): ... this.
6171         (default_gdb_signal_from_host): Rename to ...
6172         (default_gdb_signal_from_target): ... this.
6173         * corelow.c (core_open): Adjust to naming change.  Replace comment.
6174         * gdbarch.sh (gdb_signal_from_host): Rename to ...
6175         (gdb_signal_from_target): ... this.  Adjust to
6176         default_gdb_signal_from_host naming change.  Extend comment.
6177         (gdb_signal_to_host): Rename to ...
6178         (gdb_signal_to_target): ... this.  Adjust to
6179         default_gdb_signal_to_host naming change.
6180         * gdbarch.h, gdbarch.c: Renegerate.
6181
6182 2012-05-24  Pedro Alves  <palves@redhat.com>
6183
6184         PR gdb/7205
6185
6186         Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout.
6187
6188 2012-05-24  Pedro Alves  <palves@redhat.com>
6189
6190         PR gdb/7205
6191
6192         Replace target_signal with gdb_signal throughout.
6193
6194 2012-05-24  Pedro Alves  <palves@redhat.com>
6195
6196         PR tui/14159
6197
6198         * tui/tui-hooks.c (tui_query_hook): Pre-compute the question
6199         string, instead of reusing the va_list argument.
6200
6201 2012-05-24  Tom Tromey  <tromey@redhat.com>
6202
6203         * cp-support.h (cp_finalize_namespace, cp_initialize_namespace):
6204         Remove.
6205
6206 2012-05-23  Doug Evans  <dje@google.com>
6207
6208         * symtab.c (search_symbols): Formatting fixes.
6209         (print_symbol_info): Formatting fixes.
6210
6211         * dwarf2-frame.c (execute_cfa_program): Update to handle long long ->
6212         int64_t change to leb128 API.
6213         (read_encoded_value, decode_frame_entry_1): Ditto.
6214         * dwarf2expr.c (safe_read_uleb128, safe_read_sleb128): Ditto.
6215         (dwarf_block_to_dwarf_reg, dwarf_block_to_dwarf_reg_deref): Ditto.
6216         (dwarf_block_to_fb_offset, dwarf_block_to_sp_offset): Ditto.
6217         (execute_stack_op): Ditto.
6218         * dwarf2expr.h (gdb_read_uleb128, gdb_read_sleb128): Ditto.
6219         (safe_read_uleb128, safe_read_sleb128): Ditto.
6220         * dwarf2loc.c (decode_debug_loc_dwo_addresses): Ditto.
6221         (dwarf2_compile_expr_to_ax): Ditto.
6222         (locexpr_describe_location_piece): Ditto.
6223         (disassemble_dwarf_expression): Ditto.
6224         (locexpr_describe_location_1): Ditto.
6225
6226 2012-05-23  Stan Shebs  <stan@codesourcery.com>
6227             Kwok Cheung Yeung  <kcy@codesourcery.com>
6228
6229         * Makefile.in (SUBDIR_MI_OBS): Add mi-cmd-info.o.
6230         (SUBDIR_MI_SRCS): Add mi-cmd-info.c.
6231         (mi-cmd-info.o): New rule.
6232         * osdata.h (info_osdata_command): New declaration.
6233         * osdata.c (info_osdata_command): Change to non-static.
6234         * mi/mi-cmds.h (mi_cmd_info_os): New declaration.
6235         * mi/mi-cmds.c (mi_cmds): Add -info-os MI command.
6236         * mi/mi-cmd-info.c: New file.
6237
6238 2012-05-23  Doug Evans  <dje@google.com>
6239
6240         * symtab.c (search_symbols): Pass NULL for file_matcher to
6241         expand_symtabs_matching if there are no files to match.
6242
6243         * gdbtypes.c (lookup_typename): Simplify.
6244
6245 2012-05-23  Pedro Alves  <palves@redhat.com>
6246
6247         * arch-utils.h (default_target_signal_to_host): Delete.
6248         * arch-utils.c (default_target_signal_to_host): Delete.
6249         * gdbarch.sh (target_signal_to_host): Remove.
6250         * gdbarch.h, gdbarch.c: Regenerate.
6251
6252 2012-05-22  Doug Evans  <dje@google.com>
6253
6254         * dwarf2-frame.c (struct dwarf2_cie): Make initial_instructions, end
6255         "const gdb_byte *".
6256         (struct dwarf2_fde): Make instructions, end "const gdb_byte *".
6257         (execute_cfa_program): Update to match API of leb128 functions.
6258         (read_1_byte, read_4_bytes, read_8_bytes): Make buf parameter
6259         "const gdb_byte *".
6260         (read_unsigned_leb128, read_signed_leb128): Delete.
6261         (read_initial_length): Change type of buf argument to
6262         "const gdb_byte *".
6263         (read_encoded_value): Update to match API of leb128 functions.
6264         (decode_frame_entry): Change result to "const gdb_byte *", and
6265         similarly for "start" parameter.
6266         (decode_frame_entry_1): Ditto.  Use new leb128 reader functions.
6267         (dwarf2_build_frame_info): Change local frame_ptr to
6268         "const gdb_byte *".
6269         * dwarf2expr.c (safe_read_uleb128, safe_read_sleb128): Replaces
6270         read_uleb128, read_sleb128.  All callers updated.
6271         (safe_skip_leb128): New function.
6272         (dwarf_block_to_dwarf_reg): Update to match API of leb128 functions.
6273         Call gdb_read_uleb128, gdb_skip_leb128 instead of read_uleb128.
6274         (dwarf_block_to_dwarf_reg_deref): Update to match API of leb128
6275         functions.  Call gdb_read_uleb128, gdb_read_sleb128 instead of
6276         read_uleb128, read_sleb128.
6277         (dwarf_block_to_fb_offset, dwarf_block_to_sp_offset): Ditto.
6278         (execute_stack_op): Update to match API of leb128 functions.
6279         * dwarf2expr.h: #include "leb128.h".
6280         (read_uleb128, read_sleb128): Delete.
6281         (gdb_read_uleb128, gdb_read_sleb128, gdb_skip_leb128): New functions.
6282         (safe_read_uleb128, safe_read_sleb128, safe_skip_leb128): Declare.
6283         * dwarf2loc.c (debug_loc_kind): New enum.
6284         (decode_debug_loc_addresses): New function.
6285         (decode_debug_loc_dwo_addresses): New function.
6286         (dwarf2_find_location_expression): Rewrite.
6287         (dwarf2_compile_expr_to_ax): Update to match API of leb128 functions.
6288         (locexpr_describe_location_piece): Ditto.
6289         (disassemble_dwarf_expression): Ditto.
6290         (locexpr_describe_location_1): Ditto.
6291         (loclist_describe_location): Rewrite.
6292         * dwarf2loc.h (dwarf2_loclist_baton): New member "from_dwo".
6293         * dwarf2read.c (die_reader_specs): New member "buffer_end".
6294         (dwarf2_section_buffer_overflow_complaint): Renamed from
6295         dwarf2_macros_too_long_complaint.  All callers updated.
6296         (skip_leb128): Delete.
6297         (init_cu_die_reader): Initialize reader->buffer_end.
6298         (skip_one_die): Replace call to skip_leb128 with safe_skip_leb128.
6299         (skip_form_bytes): New arg buffer_end.  All callers updated.
6300         Replace call to skip_leb128 with gdb_skip_leb128.
6301         (skip_unknown_opcode): New arg mac_end.  All callers updated.
6302         (fill_in_loclist_baton): Initialize baton->from_dwo.
6303
6304 2012-05-22  Maciej W. Rozycki  <macro@codesourcery.com>
6305
6306         * mips-linux-nat.c (mips_linux_read_description): Use a more
6307         verbose error message.
6308
6309 2012-05-22  Maciej W. Rozycki  <macro@codesourcery.com>
6310
6311         * NEWS: Add MIPS/Linux DSP support.
6312         * mips-linux-tdep.c: Document post-2.6.12 o32 sigcontext layout.
6313         (SIGCONTEXT_DSPCTL): New macro.
6314         (SIGCONTEXT_HI1, SIGCONTEXT_LO1): Likewise.
6315         (SIGCONTEXT_HI2, SIGCONTEXT_LO2): Likewise.
6316         (SIGCONTEXT_HI3, SIGCONTEXT_LO3): Likewise.
6317         (N64_SIGCONTEXT_HI1, N64_SIGCONTEXT_HI2): Likewise.
6318         (N64_SIGCONTEXT_HI3): Likewise.
6319         (N64_SIGCONTEXT_LO1, N64_SIGCONTEXT_LO2): Likewise.
6320         (N64_SIGCONTEXT_LO3): Likewise.
6321         (N64_SIGCONTEXT_DSPCTL): Likewise.
6322         (N64_SIGCONTEXT_FPCSR): Clarify definition.
6323         (mips_linux_o32_sigframe_init): Handle DSP registers.
6324         (mips_linux_n32n64_sigframe_init): Likewise.
6325
6326 2012-05-22  Pierre Muller  <muller@ics.u-strasbg.fr>
6327
6328         * common/buffer.c (buffer_grow): ARI fix: Remove unneeded
6329         call to abort.
6330
6331 2012-05-22  Pedro Alves  <palves@redhat.com>
6332
6333         * target.h (store_waitstatus): Move declaration ...
6334         * inf-child.h (store_waitstatus): ... here.
6335         * target.c: Move inclusion of gdb_wait.h, and ...
6336         (store_waitstatus): ... this ...
6337         * inf-child.c: ... here.
6338         * linux-nat.c: Include inf-child.h.
6339         * rs6000-nat.c: Include inf-child.h.
6340         * spu-linux-nat.c: Include inf-child.h.
6341
6342 2012-05-22  Pierre Muller  <muller@ics.u-strasbg.fr>
6343
6344         * tracepoint.c (start_tracing): Add missing i18n markup.
6345         (stop_tracing, set_trace_user): Ditto.
6346         (set_trace_notes, set_trace_stop_notes): Ditto.
6347
6348 2012-05-21  Tom Tromey  <tromey@redhat.com>
6349
6350         PR c++/7173:
6351         * gnu-v3-abi.c (gnuv3_baseclass_offset): Return early for Java
6352         types.
6353         * value.h (value_cast_pointers): Update.
6354         * valops.c (value_cast_pointers): Add 'subclass_check' argument.
6355         (value_cast): Update.
6356         (update_search_result): New function.
6357         (do_search_struct_field): New, from search_struct_field.  Check
6358         for ambiguous results.
6359         (search_struct_field): Rewrite.
6360         * infcall.c (value_arg_coerce): Update.
6361         * eval.c (evaluate_subexp_standard) <STRUCTOP_MEMBER>: Use
6362         value_cast_pointers.
6363         * ada-lang.c (ada_convert_actual): Update.
6364
6365 2012-05-21  Tom Tromey  <tromey@redhat.com>
6366
6367         * macroexp.c (macro_stringify): Terminate the string.
6368
6369 2012-05-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
6370
6371         * NEWS (--with-auto-load-dir): Prepend $debugdir to the default path.
6372         Describe it.
6373         * auto-load.c (auto_load_expand_dir_vars): New function.
6374         (auto_load_safe_path_vec_update): Use it, remove the
6375         substitute_path_component call thanks to it.
6376         (auto_load_objfile_script): Remove the debug_file_directory processing.
6377         Use auto_load_expand_dir_vars, remove the substitute_path_component
6378         call thanks to it.
6379         * configure: Regenerate.
6380         * configure.ac (--with-auto-load-dir): Prepend $debugdir to the default
6381         path.  Escape $ also for $debugdir.
6382         (--with_auto_load_safe_path): Escape $ also for $debugdir.
6383         * utils.c (substitute_path_component): Accept also DIRNAME_SEPARATOR.
6384
6385 2012-05-20  Doug Evans  <dje@google.com>
6386
6387         * dwarf2read.c (recursively_find_pc_sect_symtab): Initialize "s"
6388         before use.  Check for symtab->includes == NULL before scanning it.
6389
6390 2012-05-18  Maciej W. Rozycki  <macro@codesourcery.com>
6391
6392         * mips-tdep.c (mips_reg3_to_reg): Optimize storage.
6393
6394 2012-05-18  Maciej W. Rozycki  <macro@codesourcery.com>
6395
6396         * NEWS: Add microMIPS support and "set mips compression",
6397         "show mips compression" commands.
6398         * mips-tdep.h (mips_isa): New enum.
6399         (gdbarch_tdep): Add mips_isa.
6400         (mips_pc_is_mips16): Update prototype.
6401         (mips_pc_is_mips, mips_pc_is_micromips): New prototypes.
6402         * mips-tdep.c (mips_compression_mips16): New variable.
6403         (mips_compression_micromips): Likewise.
6404         (mips_compression_strings): Likewise.
6405         (mips_compression_string): Likewise.
6406         (is_mips16_isa, is_micromips_isa): New functions.
6407         (is_mips16_addr): Rename to...
6408         (is_compact_addr): ... this.
6409         (unmake_mips16_addr): Likewise to...
6410         (unmake_compact_addr): ... this.
6411         (make_mips16_addr): Likewise to...
6412         (make_compact_addr): ... this.
6413         (is_mips_addr, is_mips16_addr, is_micromips_addr): New
6414         functions.
6415         (mips_elf_make_msymbol_special): Handle microMIPS code.
6416         (msymbol_is_special): Rename to...
6417         (msymbol_is_mips16): ... this.
6418         (mips_make_symbol_special, mips_pc_is_mips16): Update
6419         accordingly.
6420         (msymbol_is_mips, msymbol_is_micromips): New functions.
6421         (mips16_to_32_reg): Rename to...
6422         (mips_reg3_to_reg): ... this.
6423         (mips_pc_is_mips, mips_pc_is_micromips): New functions.
6424         (mips_pc_isa): Likewise.
6425         (mips_read_pc, mips_unwind_pc, mips_write_pc): Handle microMIPS
6426         code.
6427         (mips_fetch_instruction): Pass return status instead of printing
6428         an error message if requested.  Handle microMIPS code.  Bail out
6429         on an invalid ISA.
6430         (micromips_op): New macro.
6431         (b0s4_imm, b0s5_imm, b0s5_reg, b0s7_imm, b0s10_imm): Likewise.
6432         (b1s9_imm, b2s3_cc, b4s2_regl, b5s5_op, b5s5_reg): Likewise.
6433         (b6s4_op, b7s3_reg): Likewise.
6434         (b0s6_op, b0s11_op, b0s12_imm, b0s16_imm, b0s26_imm): Likewise.
6435         (b6s10_ext, b11s5_reg, b12s4_op): Likewise.
6436         (mips_insn_size): New function.
6437         (mips32_next_pc): Update mips_fetch_instruction call.
6438         (micromips_relative_offset7): New function.
6439         (micromips_relative_offset10): Likewise.
6440         (micromips_relative_offset16): Likewise.
6441         (micromips_pc_insn_size): Likewise.
6442         (micromips_bc1_pc): Likewise.
6443         (micromips_next_pc): Likewise.
6444         (unpack_mips16): Update mips_fetch_instruction call.
6445         (extended_mips16_next_pc): Update according to change to
6446         mips16_to_32_reg.
6447         (mips_next_pc): Update mips_pc_is_mips16 call.  Handle microMIPS
6448         code.
6449         (mips16_scan_prologue): Update mips_fetch_instruction call.
6450         Update according to change to mips16_to_32_reg.
6451         (mips_insn16_frame_sniffer): Update mips_pc_is_mips16 call.
6452         (mips_insn16_frame_base_sniffer): Likewise.
6453         (micromips_decode_imm9): New function.
6454         (micromips_scan_prologue): Likewise.
6455         (mips_micro_frame_cache): Likewise.
6456         (mips_micro_frame_this_id): Likewise.
6457         (mips_micro_frame_prev_register): Likewise.
6458         (mips_micro_frame_sniffer): Likewise.
6459         (mips_micro_frame_unwind): New variable.
6460         (mips_micro_frame_base_address): New function.
6461         (mips_micro_frame_base): New variable.
6462         (mips_micro_frame_base_sniffer): New function.
6463         (mips32_scan_prologue): Update mips_fetch_instruction call.
6464         (mips_insn32_frame_sniffer): Check for the standard MIPS ISA
6465         rather than for MIPS16.
6466         (mips_insn32_frame_base_sniffer): Likewise.
6467         (mips_addr_bits_remove): Handle microMIPS code.
6468         (deal_with_atomic_sequence): Rename to...
6469         (mips_deal_with_atomic_sequence): ... this.  Update the type
6470         of the variable used to hold an instruction.  Remove the ISA bit
6471         check.  Update mips_fetch_instruction call.
6472         (micromips_deal_with_atomic_sequence): New function.
6473         (deal_with_atomic_sequence): Likewise.
6474         (mips_about_to_return): Handle microMIPS code.  Update
6475         mips_fetch_instruction call.
6476         (heuristic_proc_start): Check for the standard MIPS ISA rather
6477         than for MIPS16.  Update mips_pc_is_mips16 and
6478         mips_fetch_instruction calls.  Handle microMIPS code.
6479         (mips_push_dummy_code): Handle microMIPS code.
6480         (mips_eabi_push_dummy_call): Likewise.
6481         (mips_o32_return_value): Update mips_pc_is_mips16 call.
6482         (mips_o64_push_dummy_call): Handle microMIPS code.
6483         (mips_o64_return_value): Update mips_pc_is_mips16 call.
6484         (is_delayed): Remove function.
6485         (mips_single_step_through_delay): Replace the call to is_delayed
6486         with mips32_instruction_has_delay_slot.  Correct MIPS16 handling.
6487         Handle microMIPS code.
6488         (mips_skip_prologue): Update mips_pc_is_mips16 call.  Handle
6489         microMIPS code.
6490         (mips32_in_function_epilogue_p): Update mips_fetch_instruction
6491         call.
6492         (micromips_in_function_epilogue_p): New function.
6493         (mips16_in_function_epilogue_p): Update mips_fetch_instruction
6494         call.
6495         (mips_in_function_epilogue_p): Update mips_pc_is_mips16 call.
6496         Handle microMIPS.
6497         (gdb_print_insn_mips): Likewise.
6498         (mips_breakpoint_from_pc): Likewise.
6499         (mips_remote_breakpoint_from_pc): New function.
6500         (mips32_instruction_has_delay_slot): Simplify making use of the
6501         updated mips_fetch_instruction interface.
6502         (micromips_instruction_has_delay_slot): New function.
6503         (mips16_instruction_has_delay_slot): Simplify making use of the
6504         updated mips_fetch_instruction interface.
6505         (mips_adjust_breakpoint_address): Check for the standard MIPS
6506         ISA rather than for MIPS16 ISA.  Update for unmake_compact_addr
6507         calls.  Handle microMIPS code.
6508         (mips_get_mips16_fn_stub_pc): Update mips_fetch_instruction call.
6509         (mips_skip_trampoline_code): Handle microMIPS code.
6510         (global_mips_compression): New function.
6511         (mips_gdbarch_init): Handle the compressed ISA setting from ELF
6512         file flags.  Register the microMIPS remote breakpoint handler
6513         and heuristic frame unwinder.
6514         (show_mips_compression): New function.
6515         (_initialize_mips_tdep): Add the "set mips compression" and
6516         "show mips compression" commands.
6517
6518 2012-05-18  Sergio Durigan Junior  <sergiodj@redhat.com>
6519
6520         * ada-lang.c:
6521         * ada-tasks.c:
6522         * ada-varobj.c:
6523         * amd64-darwin-tdep.c:
6524         * arm-symbian-tdep.c:
6525         * arm-tdep.c:
6526         * avr-tdep.c:
6527         * ax-gdb.c:
6528         * bfin-linux-tdep.c:
6529         * breakpoint.c:
6530         * c-valprint.c:
6531         * cli/cli-cmds.c:
6532         * coffread.c:
6533         * cp-support.c:
6534         * cris-tdep.c:
6535         * dwarf2-frame-tailcall.c:
6536         * dwarf2-frame.c:
6537         * dwarf2expr.c:
6538         * dwarf2loc.c:
6539         * dwarf2read.c:
6540         * elfread.c:
6541         * eval.c:
6542         * expprint.c:
6543         * f-valprint.c:
6544         * frv-tdep.c:
6545         * h8300-tdep.c:
6546         * hppa-hpux-tdep.c:
6547         * hppa-tdep.c:
6548         * hppanbsd-tdep.c:
6549         * i386-nto-tdep.c:
6550         * i386-tdep.c:
6551         * i387-tdep.c:
6552         * ia64-tdep.c:
6553         * jit.c:
6554         * linespec.c:
6555         * linux-tdep.c:
6556         * lm32-tdep.c:
6557         * m2-valprint.c:
6558         * m32c-tdep.c:
6559         * m32r-rom.c:
6560         * m32r-tdep.c:
6561         * m68k-tdep.c:
6562         * m68klinux-tdep.c:
6563         * mi/mi-main.c:
6564         * microblaze-tdep.c:
6565         * mips-linux-tdep.c:
6566         * mips-tdep.c:
6567         * mn10300-tdep.c:
6568         * p-valprint.c:
6569         * parse.c:
6570         * ppc-linux-tdep.c:
6571         * ppc-sysv-tdep.c:
6572         * printcmd.c:
6573         * python/py-finishbreakpoint.c:
6574         * python/py-inferior.c:
6575         * python/py-infthread.c:
6576         * python/py-type.c:
6577         * python/python.c:
6578         * remote-fileio.c:
6579         * remote-m32r-sdi.c:
6580         * remote-mips.c:
6581         * reverse.c:
6582         * rl78-tdep.c:
6583         * rs6000-aix-tdep.c:
6584         * rs6000-tdep.c:
6585         * s390-tdep.c:
6586         * score-tdep.c:
6587         * sh64-tdep.c:
6588         * skip.c:
6589         * solib-darwin.c:
6590         * solib-dsbt.c:
6591         * solib-frv.c:
6592         * sparc-tdep.c:
6593         * spu-multiarch.c:
6594         * spu-tdep.c:
6595         * stack.c:
6596         * symfile.c:
6597         * symtab.c:
6598         * tic6x-tdep.c:
6599         * tracepoint.c:
6600         * v850-tdep.c:
6601         * valarith.c:
6602         * valprint.c:
6603         * value.c:
6604         * xcoffread.c:
6605         * xtensa-tdep.c:
6606         * ada-lang.c:
6607         * ada-tasks.c:
6608         * ada-varobj.c:
6609         * amd64-darwin-tdep.c:
6610         * arm-symbian-tdep.c:
6611         * arm-tdep.c: Delete unused variables.
6612
6613 2012-05-18  Jan Kratochvil  <jan.kratochvil@redhat.com>
6614
6615         Rename $ddir to $datadir.
6616         * NEWS (--with-auto-load-dir): Rename $ddir to $datadir.
6617         * auto-load.c (auto_load_safe_path_vec_update)
6618         (auto_load_gdb_datadir_changed, auto_load_objfile_script): Likewise.
6619         * configure: Regenerate.
6620         * configure.ac (--with-auto-load-dir, --with-auto-load-safe-path):
6621         Likewise.  Remove the 'use $ddir' help string.
6622
6623 2012-05-18  Jan Kratochvil  <jan.kratochvil@redhat.com>
6624
6625         * auto-load.c (show_auto_load_safe_path): Accept any combination of
6626         DIRNAME_SEPARATOR and IS_DIR_SEPARATOR for wild-match.
6627
6628 2012-05-18  Tom Tromey  <tromey@redhat.com>
6629
6630         PR exp/13907:
6631         * valprint.h (struct value_print_options) <symbol_print>: New
6632         field.
6633         * valprint.c (user_print_options): Add default for symbol_print.
6634         (show_symbol_print): New function.
6635         (generic_val_print): Respect symbol_print.
6636         (_initialize_valprint): Add "print symbol" setting.
6637         * f-valprint.c (f_val_print): Respect symbol_print.
6638         * c-valprint.c (c_val_print): Respect symbol_print.
6639         * NEWS: Update.
6640         * printcmd.c (print_address_symbolic): Return int.  Ignore some
6641         zero-size symbols.
6642         (print_address_demangle): Return int.
6643         * defs.h: (print_address_symbolic): Return int.
6644         * value.h (print_address_demangle): Return int.
6645
6646 2012-05-18  Tom Tromey  <tromey@redhat.com>
6647
6648         * valprint.c (val_print_string): Don't print leading space.
6649         * p-valprint.c (pascal_val_print) <TYPE_CODE_PTR>: Optionally
6650         print space before string or vtbl.
6651         * m2-valprint.c (print_unpacked_pointer): Optionally print space
6652         before string.
6653         * jv-valprint.c (java_value_print): Print space before string.
6654         * go-valprint.c (print_go_string): Print space before string.
6655         * f-valprint.c (f_val_print) <TYPE_CODE_PTR>: Optionally print
6656         space before string.
6657         * c-valprint.c (c_val_print) <TYPE_CODE_PTR>: Optionally print
6658         space before string or vtbl.
6659         * auxv.c (fprint_target_auxv): Print space after address.
6660
6661 2012-05-18  Tom Tromey  <tromey@redhat.com>
6662
6663         * printcmd.c (print_address_demangle): Remove special case for 0.
6664
6665 2012-05-18  Tom Tromey  <tromey@redhat.com>
6666
6667         * printcmd.c (print_address_demangle): Add 'opts' argument.
6668         * p-valprint.c (pascal_val_print): Update.
6669         * jv-valprint.c (java_val_print): Update.
6670         * value.h: Update.
6671         * valprint.c (generic_val_print): Update.
6672         (print_function_pointer_address): Add 'options' argument.  Remove
6673         'addressprint' argument.  Update.
6674         * m2-valprint.c (print_unpacked_pointer): Update.
6675         * gnu-v3-abi.c (print_one_vtable): Update.
6676         (gnuv3_print_method_ptr): Update.
6677         * f-valprint.c (f_val_print): Update.
6678         * cp-valprint.c (cp_print_value_fields): Update.
6679         * valprint.h (print_function_pointer_address): Update.
6680         * c-valprint.c (c_val_print): Update.
6681
6682 2012-05-18  Tom Tromey  <tromey@redhat.com>
6683
6684         * psymtab.c (find_pc_sect_symtab_from_partial): Return the symtab
6685         directly corresponding to the found psymtab.
6686         * dwarf2read.c (recursively_find_pc_sect_symtab): New function.
6687         (dw2_find_pc_sect_symtab): Use it.
6688         * block.h (blockvector_contains_pc): Declare.
6689         * block.c (find_block_in_blockvector): New function.
6690         (blockvector_for_pc_sect): Use it.
6691         (blockvector_contains_pc): New function.
6692
6693 2012-05-18  Maciej W. Rozycki  <macro@codesourcery.com>
6694
6695         * mips-tdep.h (mips_write_pc): New prototype.
6696         * mips-tdep.c (mips_write_pc): Make external, add description.
6697         * mips-linux-tdep.c (mips_linux_write_pc): Use mips_write_pc,
6698         add description.
6699
6700 2012-05-18  Maciej W. Rozycki  <macro@codesourcery.com>
6701
6702         * mips-tdep.c (mips_read_pc): Use gdbarch_pc_regnum instead of
6703         mips_regnum->pc.
6704         (mips_unwind_pc, mips_write_pc): Likewise.
6705         (mips_gdbarch_init): Remove a comment on gdbarch_pc_regnum and
6706         gdbarch_read_pc.
6707
6708 2012-05-17  Joel Brobecker  <brobecker@adacore.com>
6709
6710         * procfs.c (procfs_find_new_threads, procfs_pid_to_str,
6711         proc_warn, proc_error, proc_get_status, proc_flags,
6712         proc_why, proc_what, proc_nsysarg, proc_sysargs,
6713         proc_set_run_on_last_close, proc_unset_run_on_last_close,
6714         proc_unset_inherit_on_fork, proc_set_async, proc_unset_async,
6715         proc_stop_process, proc_wait_for_stop, proc_run_process,
6716         proc_set_traced_signals, proc_set_traced_faults,
6717         proc_set_traced_sysentry, proc_set_traced_sysexit,
6718         proc_set_held_signals, proc_get_held_signals,
6719         proc_get_traced_signals, proc_get_traced_faults,
6720         proc_get_traced_sysentry, proc_get_traced_sysexit,
6721         proc_clear_current_fault, proc_set_current_signal,
6722         proc_clear_current_signal, proc_get_gregs, proc_get_fpregs,
6723         proc_set_gregs, proc_set_fpregs, proc_kill, proc_parent_pid,
6724         proc_get_nthreads, proc_get_nthreads, proc_get_nthreads,
6725         proc_get_current_thread, proc_get_current_thread,
6726         proc_get_current_thread, proc_update_threads,
6727         proc_update_threads, proc_update_threads, proc_update_threads,
6728         proc_iterate_over_threads, procfs_find_new_threads,
6729         procfs_pid_to_str): Make static.  Remove advance declaration.
6730         (proc_cursig): Make static.  Conditionalized defintion on
6731         PROCFS_DONT_PIOCSSIG_CURSIG being defined.
6732         (proc_syscall, proc_set_kill_on_last_close,
6733         proc_unset_kill_on_last_close, proc_set_inherit_on_fork,
6734         proc_get_pending_signals, proc_get_signal_actions,
6735         proc_trace_signal, proc_ignore_signal): Delete.
6736
6737 2012-05-16  Sergio Durigan Junior  <sergiodj@redhat.com>
6738
6739         * coffread.c (cs_section_address): Passing proper argument for
6740         `bfd_get_section_vma'.
6741         * dwarf2read.c (dwarf2_locate_sections): Likewise, for
6742         `bfd_get_section_flags'.
6743         * remote.c (remote_trace_set_readonly_regions): Likewise, for
6744         `bfd_get_section_vma'.
6745
6746 2012-05-16  Tom Tromey  <tromey@redhat.com>
6747
6748         PR macros/13205:
6749         * macrotab.h: (macro_define_special): Declare.
6750         (enum macro_special_kind): New.
6751         (struct macro_definition) <argc, replacement>: Update comments.
6752         * macrotab.c (new_macro_definition): Unconditionally set 'argc'.
6753         (macro_define_object_internal): New function.
6754         (macro_define_object): Use it.
6755         (macro_define_special): New function.
6756         (fixup_definition): New function.
6757         (macro_lookup_definition, foreach_macro_in_scope)
6758         (foreach_macro): Use fixup_definition.
6759         * macroexp.h (macro_stringify): Declare.
6760         * macroexp.c (free_buffer_return_text): New function.
6761         (stringify): Constify "arg".
6762         (macro_stringify): New function.
6763         * dwarf2read.c (macro_start_file): Call macro_define_special.
6764
6765 2012-05-16  Maciej W. Rozycki  <macro@codesourcery.com>
6766             Maciej W. Rozycki  <macro@mips.com>
6767
6768         * breakpoint.h (bp_location): Add related_address member.
6769         * inferior.h (get_return_value): Take a pointer to struct value
6770         instead of struct type for the function requested.
6771         * value.h (using_struct_return): Likewise.
6772         * gdbarch.sh (return_value): Take a pointer to struct value
6773         instead of struct type for the function requested.
6774         * breakpoint.c (set_breakpoint_location_function): Initialize
6775         related_address for bp_gnu_ifunc_resolver breakpoints.
6776         * elfread.c (elf_gnu_ifunc_resolver_return_stop): Pass the
6777         requested function's address to gdbarch_return_value.
6778         * eval.c (evaluate_subexp_standard): Pass the requested
6779         function's address to using_struct_return.
6780         * infcall.c (call_function_by_hand): Pass the requested
6781         function's address to using_struct_return and
6782         gdbarch_return_value.
6783         * infcmd.c (get_return_value): Take a pointer to struct value
6784         instead of struct type for the function requested.
6785         (print_return_value): Update accordingly.
6786         (finish_command_continuation): Likewise.
6787         * stack.c (return_command): Pass the requested function's
6788         address to using_struct_return and gdbarch_return_value.
6789         * value.c (using_struct_return): Take a pointer to struct value
6790         instead of struct type for the function requested.  Pass the
6791         requested function's address to gdbarch_return_value.
6792         * python/py-finishbreakpoint.c (finish_breakpoint_object):
6793         New function_value member, replacing function_type.
6794         (bpfinishpy_dealloc): Update accordingly.
6795         (bpfinishpy_pre_stop_hook): Likewise.
6796         (bpfinishpy_init): Likewise.  Record the requested function's
6797         address.
6798         * mips-tdep.c (mips_fval_reg): New enum.
6799         (mips_o32_push_dummy_call): For MIPS16 FP doubles do not swap
6800         words put in GP registers.
6801         (mips_o64_push_dummy_call): Update a comment.
6802         (mips_o32_return_value): Take a pointer to struct value instead
6803         of struct type for the function requested and use it to check if
6804         using the MIPS16 calling convention.  Return the designated
6805         general purpose registers for floating-point values returned in
6806         MIPS16 mode.
6807         (mips_o64_return_value): Likewise.
6808         * ppc-tdep.h (ppc_sysv_abi_return_value): Update prototype.
6809         (ppc_sysv_abi_broken_return_value): Likewise.
6810         (ppc64_sysv_abi_return_value): Likewise.
6811         * alpha-tdep.c (alpha_return_value): Take a pointer to struct
6812         value instead of struct type for the function requested.
6813         * amd64-tdep.c (amd64_return_value): Likewise.
6814         * amd64-windows-tdep.c (amd64_windows_return_value): Likewise.
6815         * arm-tdep.c (arm_return_value): Likewise.
6816         * avr-tdep.c (avr_return_value): Likewise.
6817         * bfin-tdep.c (bfin_return_value): Likewise.
6818         * cris-tdep.c (cris_return_value): Likewise.
6819         * frv-tdep.c (frv_return_value): Likewise.
6820         * h8300-tdep.c (h8300_return_value): Likewise.
6821         (h8300h_return_value): Likewise.
6822         * hppa-tdep.c (hppa32_return_value): Likewise.
6823         (hppa64_return_value): Likewise.
6824         * i386-tdep.c (i386_return_value): Likewise.
6825         * ia64-tdep.c (ia64_return_value): Likewise.
6826         * iq2000-tdep.c (iq2000_return_value): Likewise.
6827         * lm32-tdep.c (lm32_return_value): Likewise.
6828         * m32c-tdep.c (m32c_return_value): Likewise.
6829         * m32r-tdep.c (m32r_return_value): Likewise.
6830         * m68hc11-tdep.c (m68hc11_return_value): Likewise.
6831         * m68k-tdep.c (m68k_return_value): Likewise.
6832         (m68k_svr4_return_value): Likewise.
6833         * m88k-tdep.c (m88k_return_value): Likewise.
6834         * mep-tdep.c (mep_return_value): Likewise.
6835         * microblaze-tdep.c (microblaze_return_value): Likewise.
6836         * mn10300-tdep.c (mn10300_return_value): Likewise.
6837         * moxie-tdep.c (moxie_return_value): Likewise.
6838         * mt-tdep.c (mt_return_value): Likewise.
6839         * ppc-linux-tdep.c (ppc_linux_return_value): Likewise.
6840         * ppc-sysv-tdep.c (ppc_sysv_abi_return_value): Likewise.
6841         (ppc_sysv_abi_broken_return_value): Likewise.
6842         (ppc64_sysv_abi_return_value): Likewise.
6843         * ppcnbsd-tdep.c (ppcnbsd_return_value): Likewise.
6844         * rl78-tdep.c (rl78_return_value): Likewise.
6845         * rs6000-aix-tdep.c (rs6000_return_value): Likewise.
6846         * rx-tdep.c (rx_return_value): Likewise.
6847         * s390-tdep.c (s390_return_value): Likewise.
6848         * score-tdep.c (score_return_value): Likewise.
6849         * sh-tdep.c (sh_return_value_nofpu): Likewise.
6850         (sh_return_value_fpu): Likewise.
6851         * sh64-tdep.c (sh64_return_value): Likewise.
6852         * sparc-tdep.c (sparc32_return_value): Likewise.
6853         * sparc64-tdep.c (sparc64_return_value): Likewise.
6854         * spu-tdep.c (spu_return_value): Likewise.
6855         * tic6x-tdep.c (tic6x_return_value): Likewise.
6856         * v850-tdep.c (v850_return_value): Likewise.
6857         * vax-tdep.c (vax_return_value): Likewise.
6858         * xstormy16-tdep.c (xstormy16_return_value): Likewise.
6859         * xtensa-tdep.c (xtensa_return_value): Likewise.
6860         * gdbarch.c: Regenerate.
6861         * gdbarch.h: Regenerate.
6862
6863 2012-05-15  Tom Tromey  <tromey@redhat.com>
6864
6865         * python/python.c (gdbpy_find_pc_line): Use gdb_py_ulongest.
6866
6867 2012-05-15  Joel Brobecker  <brobecker@adacore.com>
6868
6869         * breakpoint.c (init_breakpoint_sal): Add quotes around part
6870         of command in two error message.
6871
6872 2012-05-15  Joel Brobecker  <brobecker@adacore.com>
6873
6874         * breakpoint.c (init_breakpoint_sal): Remove trailing spaces.
6875
6876 2012-05-15  Joel Brobecker  <brobecker@adacore.com>
6877
6878         * breakpoint.c (find_condition_and_thread): Minor reformatting.
6879
6880 2012-05-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
6881
6882         * NEWS (show auto-load scripts-directory): Add forgotten command.
6883
6884 2012-05-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
6885
6886         * spu-tdep.c (spu_catch_start): Update create_breakpoint caller
6887         parameters.
6888
6889 2012-05-14  H.J. Lu  <hongjiu.lu@intel.com>
6890
6891         * amd64-tdep.c: Include features/i386/x32.c and
6892         features/i386/x32-avx.c.
6893         (_initialize_amd64_tdep): Call initialize_tdesc_x32 and
6894         initialize_tdesc_x32_avx.
6895
6896 2012-05-14  Stan Shebs  <stan@codesourcery.com>
6897
6898         Add dynamic printf.
6899         * breakpoint.h (enum bptype): New type bp_dprintf.
6900         (struct breakpoint): New field extra_string.
6901         (struct breakpoint_ops): Add arg to create_breakpoints_sal.
6902         (create_breakpoint): Add extra_string arg.
6903         * breakpoint.c (dprintf_breakpoint_ops): New.
6904         (is_breakpoint): Add bp_dprintf.
6905         (bpstat_what): Add dprintf case.
6906         (bptype_string): Ditto.
6907         (print_one_breakpoint_location): Ditto.
6908         (init_bp_location): Ditto.
6909         (bkpt_print_mention): Ditto.
6910         (dprintf_style_enums): New array.
6911         (dprintf_style): New global.
6912         (dprintf_function): New global.
6913         (dprintf_channel): New global.
6914         (update_dprintf_command_list): New function.
6915         (update_dprintf_commands): New function.
6916         (init_breakpoint_sal): Add extra_string argument, handle it.
6917         (create_breakpoint_sal): Add extra_string argument.
6918         (create_breakpoints_sal): Add extra_string argument, update callers.
6919         (find_condition_and_thread): Add extra argument.
6920         (create_breakpoint): Add extra_string argument, record it.
6921         (dprintf_command): New function.
6922         (break_command_1): Add arg to create_breakpoint call.
6923         (handle_gnu_v3_exceptions): Ditto.
6924         (trace_command): Ditto.
6925         (ftrace_command): Ditto.
6926         (strace_command): Ditto.
6927         (bkpt_print_mention): Add dprintf case.
6928         (create_breakpoint_sal_default): Add extra_string argument.
6929         (_initialize_breakpoint): Add new commands.
6930         * mi/mi-cmd-break.c (mi_cmd_break_insert): Add arg to call.
6931         * python/py-breakpoint.c (bppy_init): Ditto.
6932         * python/py-finishbreakpoint.c (bpfinishpy_init): Ditto.
6933
6934 2012-05-14  Maciej W. Rozycki  <macro@codesourcery.com>
6935
6936         * mips-tdep.c (mips_push_dummy_code): Correct description typo.
6937
6938 2012-05-14  Siva Chandra Reddy  <sivachandra@google.com>
6939
6940         * python/python.c (gdbpy_find_pc_line): Use ULONGEST instead of
6941         unsigned long long.
6942
6943 2012-05-13  Siva Chandra Reddy  <sivachandra@google.com>
6944
6945         Add a new function gdb.find_pc_line to the Python API.
6946         * NEWS (Python Scripting): Add entry about the new function.
6947         * python/python.c (gdbpy_find_pc_line): New function which
6948         implements gdb.find_pc_line.
6949         (GdbMethods): Add entry for the new function.
6950
6951 2012-05-12  Pedro Alves  <palves@redhat.com>
6952
6953         * amd64-linux-tdep.c (_initialize_amd64_linux_tdep): Call
6954         initialize_tdesc_x32_linux and initialize_tdesc_x32_avx_linux.
6955
6956 2012-05-12  Eli Zaretskii  <eliz@gnu.org>
6957
6958         * inferior.c: Include completer.h
6959         (initialize_inferiors): Set completer of add-inferior to
6960         filename_completer.
6961
6962 2012-05-11  H.J. Lu  <hongjiu.lu@intel.com>
6963
6964         * amd64-linux-tdep.c (amd64_linux_core_read_description): Check
6965         gdbarch_ptr_bit for x32 core dump.
6966
6967 2012-05-11  H.J. Lu  <hongjiu.lu@intel.com>
6968
6969         * amd64-linux-tdep.c: Include features/i386/x32-linux.c
6970         and features/i386/x32-avx-linux.c.
6971
6972 2012-05-11  Stan Shebs  <stan@codesourcery.com>
6973             Kwok Cheung Yeung  <kcy@codesourcery.com>
6974
6975         * NEWS: Describe new info os commands.
6976         * common/linux-osdata.c (PID_T, TIME_T): Define.
6977         (MAX_PID_T_STRLEN): New.
6978         (linux_common_core_of_thread): Add comment.  Change to use PID_T and
6979         MAX_PID_T_STRLEN.
6980         (command_from_pid): Add comment.  Change to use PID_T.
6981         (commandline_from_pid):  Change to use PID_T.
6982         (user_from_pid): Add comment.
6983         (get_process_owner): Add comment. Change to use PID_T and
6984         MAX_PID_T_STRLEN.
6985         (get_number_of_cpu_cores): Add comment.
6986         (get_cores_used_by_process): Add comment.  Change to use PID_T and
6987         MAX_PID_T_STRLEN.
6988         (linux_xfer_osdata_processes): Change to use PID_T and
6989         MAX_PID_T_STRLEN.
6990         (compare_processes): New function.
6991         (linux_xfer_osdata_processgroups): New function.
6992         (linux_xfer_osdata_threads): Change to use PID_T.
6993         (linux_xfer_osdata_fds): New function.
6994         (format_socket_state, print_sockets): New functions.
6995         (union socket_addr): New union.
6996         (linux_xfer_osdata_isockets): New function.
6997         (time_from_time_t, group_from_gid): New functions.
6998         (linux_xfer_osdata_shm): New function.
6999         (linux_xfer_osdata_sem): New function.
7000         (linux_xfer_osdata_msg): New function.
7001         (linux_xfer_osdata_modules): New function.
7002         (osdata_table): Add new entries.
7003         * common/buffer.c (buffer_xml_printf): Add support for long and
7004         long long format specifiers.
7005
7006 2012-05-11  H.J. Lu  <hongjiu.lu@intel.com>
7007
7008         * amd64-linux-tdep.h (tdesc_x32_linux): New.
7009         (tdesc_x32_avx_linux): Likewise.
7010
7011 2012-05-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
7012
7013         Implement multi-component --with-auto-load-dir.
7014         * NEWS (set auto-load scripts-directory, --with-auto-load-dir): New
7015         entries.
7016         (--with-auto-load-safe-path): Update the default value description.
7017         * auto-load.c (auto_load_dir, set_auto_load_dir, show_auto_load_dir):
7018         New.
7019         (auto_load_objfile_script): Add DEBUG_AUTO_LOAD output.  Remove
7020         GDB_DATADIR NULL check.  Replace GDB_DATADIR/auto-load by
7021         AUTO_LOAD_DIR.  Support $ddir and multiple components in it.
7022         (_initialize_auto_load): Initialize also auto_load_dir.  Install new
7023         "set auto-load scripts-directory".
7024         * config.in: Regenerate.
7025         * configure: Regenerate.
7026         * configure.ac (--with-auto-load-dir): New configure option.
7027         (--auto-load-safe-path): Change the default to --with-auto-load-dir.
7028
7029 2012-05-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
7030
7031         Provide $ddir substitution for --with-auto-load-safe-path.
7032         * NEWS (--with-auto-load-safe-path, --without-auto-load-safe-path): New
7033         entries.
7034         * auto-load.c: Include observer.h.
7035         (auto_load_safe_path_vec_update): Call substitute_path_component for
7036         each component.  New variable ddir_subst.
7037         (auto_load_gdb_datadir_changed): New function.
7038         (set_auto_load_safe_path): Rename DEFAULT_AUTO_LOAD_SAFE_PATH to
7039         AUTO_LOAD_SAFE_PATH.  New comment.
7040         (_initialize_auto_load): Rename DEFAULT_AUTO_LOAD_SAFE_PATH to
7041         AUTO_LOAD_SAFE_PATH.  Install auto_load_gdb_datadir_changed.
7042         * config.in: Regenerate.
7043         * configure: Regenerate.
7044         * configure.ac (--auto-load-safe-path): Rename
7045         DEFAULT_AUTO_LOAD_SAFE_PATH to AUTO_LOAD_SAFE_PATH.  Default to
7046         GDB_DATADIR/auto-load.
7047         * defs.h (substitute_path_component): New declaration.
7048         * top.c: Include observer.h.
7049         (set_gdb_datadir): New function.
7050         (init_main): Install it for "set data-directory".
7051         * utils.c (substitute_path_component): New function.
7052
7053 2012-05-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
7054
7055         Make auto-load handle multiple components of DEBUG_FILE_DIRECTORY.
7056         * auto-load.c (auto_load_objfile_script): Remove check for NULL
7057         DEBUG_FILE_DIRECTORY.  Handle multiple components of
7058         DEBUG_FILE_DIRECTORY.
7059
7060 2012-05-10  Tom Tromey  <tromey@redhat.com>
7061
7062         * dwarf2read.c (recursively_write_psymbols): New function.
7063         (write_psymtabs_to_index): Use it.
7064
7065         * dwarf2read.c (struct dwarf2_queue_item) <pretend_language>: New
7066         field.
7067         (load_cu, dw2_do_instantiate_symtab, process_psymtab_comp_unit)
7068         (load_partial_comp_unit): Update.
7069         (queue_comp_unit): Add argument 'pretend_language'.
7070         (process_queue): Update.
7071         (psymtab_to_symtab_1): Skip dependencies that have a user.
7072         (load_partial_comp_unit_reader): Give meaning to the 'data'
7073         argument.
7074         (load_full_comp_unit): Add 'pretend_language' argument.
7075         (process_full_comp_unit): Add 'pretend_language' argument.  Set
7076         language on CU.
7077         (process_imported_unit_die, read_file_scope, read_type_unit_scope):
7078         Update.
7079         (maybe_queue_comp_unit): Add 'pretend_language' argument.
7080         (follow_die_offset, follow_die_sig, read_signatured_type_reader):
7081         Update.
7082         (prepare_one_comp_unit): Add 'pretend_language' argument.
7083
7084         * dwarf2read.c: (dwarf2_per_cu_ptr): New typedef.
7085         (struct dwarf2_per_objfile) <just_read_cus>: New field.
7086         (struct dwarf2_per_cu_data) <imported_symtabs>: New field.
7087         (dw2_do_instantiate_symtab): Check whether symtab was read in
7088         before queueing.
7089         (dw2_instantiate_symtab): Add assertion.  Call
7090         process_cu_includes.
7091         (process_psymtab_comp_unit): Compute 'dependencies' for psymtab.
7092         (partial_symtab_p): New typedef.
7093         (set_partial_user): New function.
7094         (dwarf2_build_psymtabs_hard): Use set_partial_user.
7095         (scan_partial_symbols): Add imported CU to imported_symtabs.
7096         (dwarf2_psymtab_to_symtab): Call process_cu_includes.
7097         (psymtab_to_symtab_1): Do nothing if psymtab is readin.
7098         (get_symtab, recursively_compute_inclusions)
7099         (compute_symtab_includes, process_cu_includes)
7100         (process_imported_unit_die): New functions.
7101         (process_die) <DW_TAG_imported_unit>: New case.
7102         (dwarf2_per_objfile_free): Free 'imported_symtabs'.
7103
7104         * dwarf2read.c (struct dwarf2_per_cu_data) <psymtab>: Update
7105         comment.
7106         (struct partial_die_info) <locdesc>: Remove.
7107         <d>: New field.
7108         (process_psymtab_comp_unit): Add 'read_partial' argument.
7109         Update.
7110         (process_type_comp_unit, dwarf2_build_psymtabs_hard): Update.
7111         (scan_partial_symbols): Handle DW_TAG_imported_unit.
7112         (add_partial_symbol): Update.
7113         (process_die): Handle DW_TAG_partial_unit.
7114         (read_file_scope): Update comment.
7115         (load_partial_dies): Handle DW_TAG_imported_unit.
7116         (read_partial_die): Handle DW_TAG_partial_unit, DW_AT_import.
7117         (determine_prefix, dwarf2_name): Handle DW_TAG_partial_unit.
7118
7119 2012-05-10  Tom Tromey  <tromey@redhat.com>
7120
7121         * cc-with-dwz.sh: New file.
7122
7123 2012-05-10  Tom Tromey  <tromey@redhat.com>
7124
7125         * symtab.h (struct symtab) <includes, user>: New fields.
7126         * block.h (struct block_iterator) <d, idx, which>: New fields.
7127         * block.c (initialize_block_iterator, find_iterator_symtab)
7128         (block_iterator_step, block_iter_name_step)
7129         (block_iter_match_step): New functions.
7130         (block_iterator_first, block_iterator_next)
7131         (block_iter_name_first, block_iter_name_next)
7132         (block_iter_match_first, block_iter_match_next): Rewrite.
7133         (get_block_symtab): New function.
7134
7135 2012-05-10  Tom Tromey  <tromey@redhat.com>
7136
7137         * jv-lang.c (get_java_class_symtab): Use allocate_global_block,
7138         set_block_symtab.
7139         * jit.c (finalize_symtab): Use allocate_global_block,
7140         set_block_symtab.
7141         * buildsym.c (finish_block_internal): New function, from old
7142         finish_block.
7143         (finish_block): Rewrite.
7144         (end_symtab): Use finish_block_internal, set_block_symtab.
7145         * block.h (struct global_block): New.
7146         (allocate_global_block, set_block_symtab): Declare.
7147         * block.c (allocate_global_block, set_block_symtab): New
7148         functions.
7149
7150 2012-05-10  Tom Tromey  <tromey@redhat.com>
7151
7152         * psymtab.c (partial_map_expand_apply): Add assertion.
7153         (partial_map_symtabs_matching_filename): Skip included psymtabs.
7154         (psymtab_to_symtab): Find unshared psymtab.
7155         (dump_psymtab): Print including psymtabs.
7156         (recursively_search_psymtabs): New function.
7157         (expand_symtabs_matching_via_partial): Use it.
7158         * psympriv.h (struct partial_symtab) <user, searched_flag>: New
7159         fields.
7160         (enum psymtab_search_status): New.
7161
7162 2012-05-10  Tom Tromey  <tromey@redhat.com>
7163
7164         * tracepoint.c (scope_info): Update.
7165         * symtab.c (lookup_block_symbol, iterate_over_symbols)
7166         (find_pc_sect_symtab, search_symbols)
7167         (default_make_symbol_completion_list_break_on)
7168         (make_file_symbol_completion_list): Update.
7169         * symmisc.c (dump_symtab_1): Update.
7170         * stack.c (print_frame_args, iterate_over_block_locals)
7171         (print_frame_labels, iterate_over_block_arg_vars): Update.
7172         * python/py-block.c (block_object) <dict>: Remove.
7173         <block>: New field.
7174         <iter>: Change type.
7175         (blpy_iter): Update.
7176         (blpy_block_syms_iternext): Update.
7177         * psymtab.c (map_block): Use block iterators.
7178         * objfiles.c (objfile_relocate1): Use ALL_DICT_SYMBOLS.
7179         * mi/mi-cmd-stack.c (list_args_or_locals): Update.
7180         * mdebugread.c (parse_symbol, mylookup_symbol): Update.
7181         * infrun.c (check_exception_resume): Update.
7182         * cp-support.c (make_symbol_overload_list_block): Update.
7183         * coffread.c (patch_opaque_types): Update.
7184         * buildsym.c (finish_block, end_symtab): Use ALL_DICT_SYMBOLS.
7185         * block.h (struct block_iterator): New.
7186         (block_iterator_first, block_iterator_next, block_iter_name_first)
7187         (block_iter_name_next, block_iter_match_first)
7188         (block_iter_match_next): Declare.
7189         (ALL_BLOCK_SYMBOLS): Redefine.
7190         * block.c (block_iterator_first, block_iterator_next)
7191         (block_iter_name_first, block_iter_name_next)
7192         (block_iter_match_first, block_iter_match_next): New functions.
7193         * ada-lang.c (ada_add_block_symbols)
7194         (ada_make_symbol_completion_list): Use block iterator.
7195
7196 2012-05-10  Tom Tromey  <tromey@redhat.com>
7197
7198         * psymtab.c (PSYMTAB_TO_SYMTAB): Remove.
7199         (find_pc_sect_symtab_from_partial, lookup_symbol_aux_psymtabs)
7200         (lookup_partial_symbol, find_last_source_symtab_from_partial)
7201         (read_psymtabs_with_filename, map_matching_symbols_psymtab)
7202         (expand_symtabs_matching_via_partial, maintenance_check_symtabs):
7203         Update.
7204
7205 2012-05-10  Joel Brobecker  <brobecker@adacore.com>
7206
7207         * config/djgpp/fnchange.lst: Add entries for print-file-var-lib1.c,
7208         print-file-var-lib2.c, print-file-var-main.c and
7209         print-file-var.exp (located in gdb/testsuite/gdb.base).
7210
7211 2012-05-10  Joel Brobecker  <brobecker@adacore.com>
7212
7213         * findvar.c (default_read_var_value): For LOC_UNRESOLVED symbols,
7214         try locating the symbol in the symbol's own objfile first, before
7215         extending the search to all objfiles.
7216         * symtab.c (lookup_symbol_aux_objfile): New function, extracted
7217         out of lookup_symbol_aux_symtabs.
7218         (lookup_symbol_aux_symtabs): Add new parameter "exclude_objfile".
7219         Replace extracted-out code by call to lookup_symbol_aux_objfile.
7220         Do not search EXCLUDE_OBJFILE.
7221         (lookup_static_symbol_aux): Update call to lookup_symbol_aux_symtabs.
7222         (lookup_symbol_global): Search for matches in the block's objfile
7223         first, before searching all other objfiles.
7224
7225 2012-05-10  Tristan Gingold  <gingold@adacore.com>
7226
7227         * printcmd.c (set_command): Add pre/post inc/dec.
7228
7229 2012-05-09  Frank Ch. Eigler  <fche@redhat.com>
7230
7231         * gdb.1: Document -ex option.
7232
7233 2012-05-09  Joel Brobecker  <brobecker@adacore.com>
7234
7235         * infcall.c (call_function_by_hand): Remove AT_SYMBOL handling.
7236         * inferior.h (AT_SYMBOL): Delete.
7237
7238 2012-05-09  Joel Brobecker  <brobecker@adacore.com>
7239
7240         * mips-tdep.c (mips_push_dummy_code): New function.
7241         (mips_gdbarch_init): Set the gdbarch call_dummy_location to
7242         ON_STACK and install mips_push_dummy_code as our gdbarch
7243         push_dummy_code routine.
7244
7245 2012-05-09  Pedro Alves  <palves@redhat.com>
7246
7247         * target.c (set_maintenance_target_async_permitted): Rename to ...
7248         (set_target_async_command): ... this.
7249         (show_maintenance_target_async_permitted): Rename to ...
7250         (show_target_async_command): ... this.
7251         (initialize_targets): Adjust.
7252
7253 2012-05-08  Doug Evans  <dje@google.com>
7254
7255         * go-exp.y (classify_name): Add missing assignment of fields of
7256         yylval.ssym.
7257
7258 2012-05-08  Eli Zaretskii  <eliz@gnu.org>
7259
7260         Display the ">" prompt in interactive mode while reading canned
7261         commands, even when the current interpreter is MI.
7262
7263         * interps.c (interp_set_temp): New function.
7264
7265         * interps.h (interp_set_temp): Add prototype.
7266
7267         * cli/cli-script.c (restore_interp): New cleanup function.
7268         (read_command_lines): Temporarily override the current interpreter
7269         with CLI and arrange for restoring the original one.
7270
7271 2012-05-12  Joel Sherrill <joel.sherrill@oarcorp.com>
7272
7273         * microblaze-rom.c (_initialize_picobug_rom): Add prototype.
7274
7275 2012-05-07  Sergio Durigan Junior  <sergiodj@redhat.com>
7276
7277         * probe.c (parse_probes): Move conditional to check for
7278         debuginfo files from here...
7279         * stap-probe.c (stap_get_probes): ... to here.
7280
7281 2012-05-07  Mark Kettenis  <kettenis@gnu.org>
7282             H.J. Lu  <hongjiu.lu@intel.com>
7283
7284         * amd64-tdep.c (amd64_analyze_prologue): Additionally check for
7285         `movl %esp, %ebp' for the X32 ABI.
7286
7287 2012-05-07  Tom Tromey  <tromey@redhat.com>
7288
7289         * dwarf2read.c (dwarf_tag_name): Return const char *.  Use
7290         get_DW_TAG_name.
7291         (dwarf_attr_name): Return const char *.  Use get_DW_AT_name.
7292         (dwarf_form_name): Return const char *.  Use get_DW_FORM_name.
7293         (dwarf_stack_op_name): Remove.
7294         (dwarf_cfi_name): Return const char *.  Use get_DW_ATE_name.
7295         (decode_locdesc): Use get_DW_OP_name.
7296         * dwarf2loc.c (unimplemented): Use get_DW_OP_name.
7297         (dwarf2_compile_expr_to_ax): Likewise.
7298         (disassemble_dwarf_expression): Likewise.
7299         * dwarf2expr.h: (dwarf_stack_op_name): Remove.
7300
7301 2012-05-07  Chung-Lin Tang  <cltang@codesourcery.com>
7302
7303         * sh-linux-tdep.c: Include trad-frame.h and tramp-frame.h.
7304         (sh_linux_sigtramp_cache): New function.
7305         (sh_linux_sigreturn_init): New function.
7306         (sh_linux_rt_sigreturn_init): New function.
7307         (SH_MOVW,SH_TRAP,SH_OR_R0_R0): New symbols for instruction
7308         patterns.
7309         (SH_NR_SIGRETURN,SH_NR_RT_SIGRETURN): New symbols for sigreturn
7310         syscall codes.
7311         (sh_linux_sigreturn_tramp_frame): New tramp_frame definition.
7312         (sh_linux_rt_sigreturn_tramp_frame): Likewise.
7313         (sh_linux_init_abi): Add init calls to register new tramp_frame
7314         definitions under 32-bit SH, update comments.
7315
7316 2012-05-07  Pedro Alves  <palves@redhat.com>
7317
7318         PR gdb/10952
7319
7320         * amd64-linux-tdep.c: Include glibc-tdep.h.
7321         (amd64_linux_init_abi): Install glibc_skip_solib_resolver as
7322         gdbarch_skip_solib_resolver callback.
7323
7324 2012-05-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
7325
7326         * auto-load.c (set_auto_load_safe_path): Reset AUTO_LOAD_SAFE_PATH
7327         back to DEFAULT_AUTO_LOAD_SAFE_PATH if it is being set to "".
7328         (show_auto_load_safe_path): Check any-directory by comparison with "/".
7329         (add_auto_load_safe_path): Change the error message.
7330         (_initialize_auto_load): Change the "safe-path" help text.
7331         * configure: Regenerate
7332         * configure.ac (--without-auto-load-safe-path): Set
7333         WITH_AUTO_LOAD_SAFE_PATH to /.
7334
7335 2012-05-05  Sergio Durigan Junior  <sergiodj@redhat.com>
7336
7337         * stap-probe.h: Do not include unecessary `probe.h'.
7338
7339 2012-05-05  Alan Modra  <amodra@gmail.com>
7340
7341         * elfread.c (elf_symtab_read): Use bfd_abs_section_ptr and
7342         bfd_und_section_ptr.
7343         * machoread.c (macho_symtab_add_minsym): Use bfd_abs_section_ptr
7344         and bfd_com_section_ptr.
7345
7346 2012-05-04  Joel Brobecker  <brobecker@adacore.com>
7347
7348         * MAINTAINERS (Past Maintainers): Add Chris Faylor.
7349
7350 2012-05-04  Joel Brobecker  <brobecker@adacore.com>
7351
7352         * windows-nat.h (segment_register_p_ftype): New typedef.
7353         (windows_set_segment_register_p): Add declaration.
7354         * windows-nat.c (segment_register_p): New static global.
7355         (windows_set_segment_register_p): New function.
7356         (do_windows_fetch_inferior_registers): Add special handling
7357         for segment registers.
7358         * amd64-windows-nat.c: #include "amd64-tdep.h".
7359         (amd64_windows_segment_register_p): New function.
7360         (_initialize_amd64_windows_nat): Call windows_set_segment_register_p.
7361         * i386-windows-nat.c: #include "i386-tdep.h".
7362         (i386_windows_segment_register_p): New function.
7363         (_initialize_i386_windows_nat): Call windows_set_segment_register_p.
7364
7365 2012-05-04  Tristan Gingold  <gingold@adacore.com>
7366
7367         * printcmd.c (set_command): Emit a warning if the expression is not
7368         an assignment.
7369
7370 2012-05-03  Joel Brobecker  <brobecker@adacore.com>
7371
7372         * nto-procfs.c (procfs_find_new_threads, procfs_pid_to_str):
7373         Make static.
7374
7375 2012-05-03  Sergio Durigan Junior  <sergiodj@redhat.com>
7376
7377         * stap-probe.c (stap_is_operator): Change declaration.
7378         (stap_get_opcode): Change return value.
7379         (stap_parse_argument_1): Update calls to `stap_get_opcode' and
7380         `stap_parse_argument_1'.
7381
7382 2012-05-03  Pedro Alves  <pedro@codesourcery.com>
7383
7384         * infrun.c (displaced_step_fixup): Add "displaced:" prefix to
7385         debug log.
7386
7387 2012-05-03  Siva Chandra Reddy  <sivachandra@google.com>
7388
7389         Add two new methods global_block and static_block to gdb.Symtab
7390         objects.
7391         * NEWS (Python scripting): Add entry about the new methods.
7392         * python/py-symtab.c (stpy_global_block): New function which
7393         implements the gdb.Symtab.global_block() method.
7394         (stpy_static_block): New function which implements the
7395         gdb.Symtab.static_block() method.
7396         (symtab_object_methods): Add entries for the two new methods.
7397
7398 2012-05-03  Doug Evans  <dje@google.com>
7399
7400         * dwarf2read.c (dw2_find_symbol_file): Don't crash if there are no
7401         files.
7402
7403 2012-05-03  Yao Qi  <yao@codesourcery.com>
7404
7405         * i386-tdep.c (i386_fetch_pointer_argument): Remove extra
7406         space.
7407         (i386_process_record): Ditto.
7408
7409 2012-05-02  Joel Brobecker  <brobecker@adacore.com>
7410
7411         * infcall.c (unwind_on_signal_p): Make static.
7412
7413 2012-05-02  Joel Brobecker  <brobecker@adacore.com>
7414
7415         * sol-thread.c (solaris_pid_to_str): Make static.
7416         (_initialize_sol_thread): Add prototype.
7417
7418 2012-05-02  Joel Brobecker  <brobecker@adacore.com>
7419
7420         * sol-thread.c (procfs_pid_to_str): Delete extern declaration.
7421
7422 2012-05-02  Christopher Faylor  <me.cygwin2012@cgf.cx>
7423
7424         * MAINTAINERS: Remove myself.
7425
7426 2012-05-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
7427
7428         Fix --without-auto-load-safe-path for MS-Windows host platform.
7429         * auto-load.c (filename_is_in_dir): Return 1 for DIR_LEN 0.
7430
7431 2012-05-02  Eli Zaretskii  <eliz@gnu.org>
7432
7433         * gdb_curses.h: Undefine KEY_EVENT before including curses
7434         headers.  Move "#undef MOUSE_MOVED" before any curses header
7435         inclusion.
7436
7437 2012-05-02  Sergio Durigan Junior  <sergiodj@gmail.com>
7438
7439         * features/i386/i386-mmx-linux.c: Regenerate.
7440         * features/rs6000/powerpc-32.c: Likewise.
7441         * features/rs6000/powerpc-32l.c: Likewise.
7442         * features/rs6000/powerpc-403.c: Likewise.
7443         * features/rs6000/powerpc-403gc.c: Likewise.
7444         * features/rs6000/powerpc-405.c: Likewise.
7445         * features/rs6000/powerpc-505.c: Likewise.
7446         * features/rs6000/powerpc-601.c: Likewise.
7447         * features/rs6000/powerpc-602.c: Likewise.
7448         * features/rs6000/powerpc-603.c: Likewise.
7449         * features/rs6000/powerpc-604.c: Likewise.
7450         * features/rs6000/powerpc-64.c: Likewise.
7451         * features/rs6000/powerpc-64l.c: Likewise.
7452         * features/rs6000/powerpc-750.c: Likewise.
7453         * features/rs6000/powerpc-860.c: Likewise.
7454         * features/rs6000/powerpc-e500.c: Likewise.
7455         * features/rs6000/powerpc-e500l.c: Likewise.
7456         * features/rs6000/powerpc-isa205-32l.c: Likewise.
7457         * features/rs6000/powerpc-isa205-64l.c: Likewise.
7458         * features/rs6000/rs6000.c: Likewise.
7459
7460 2012-05-02  Sergio Durigan Junior  <sergiodj@gmail.com>
7461
7462         * i386-tdep.c (i386_stap_parse_special_token) <s>: Remove unused
7463         variable.
7464         * stap-probe.c (stap_parse_single_operand) <reg_suffix,
7465         reg_ind_suffix, reg_suffix_len, reg_ind_suffix_len>: Likewise.
7466         (stap_parse_argument) <e>: Likewise.
7467         (handle_stap_probe) <byte_order>: Likewise.
7468
7469 2012-04-30  Doug Evans  <dje@google.com>
7470
7471         * dwarf2read.c (init_cutu_and_read_dies): Renamed from
7472         init_and_read_dies_worker.  All callers updated.
7473         (init_cu_and_read_dies, init_tu_and_read_dies): Delete.  All calls
7474         replaced with init_cutu_and_read_dies.
7475         (load_partial_comp_unit): Pass 1 for use_existing_cu.
7476         (find_partial_die): Remove FIXME.  Don't free current CU.
7477
7478 2012-04-30  Sterling Augustine  <saugustine@google.com>
7479
7480         * contrib: New directory.
7481         * contrib/test_pubnames_and_indexes.py: New file.
7482
7483 2012-04-30  Doug Evans  <dje@google.com>
7484
7485         * dwarf2read.c (dwarf_decode_macros): New arg section_name.
7486         All callers updated.
7487         (init_cu_die_reader): Verify the section is non-empty.
7488         (dwarf_decode_line_header): Don't dereference section->asection
7489         until we know the section is present.
7490
7491 2012-04-29  Sergio Durigan Junior  <sergiodj@redhat.com>
7492
7493         * tracepoint.c (start_tracing, stop_tracing): Checking for NULL
7494         probes.
7495
7496 2012-04-29  Yao Qi  <yao@codesourcery.com>
7497
7498         * gdb-code-style.el: New hook gdb-markup-hook
7499         and gdb-comment-hook.
7500
7501 2012-04-28  Doug Evans  <dje@google.com>
7502
7503         Initial support for Fission.  http://gcc.gnu.org/wiki/DebugFission
7504         * symfile.c (default_symfile_relocate): Use sectp->owner instead of
7505         objfile->obfd.
7506         * symfile.h (dwarf2_debug_sections): New member addr.
7507         * dwarf2expr.c (execute_stack_op): New case DW_OP_GNU_addr_index.
7508         (ctx_no_get_addr_index): New function.
7509         * dwarf2expr.h (dwarf_expr_context_funcs): New member get_addr_index.
7510         (ctx_no_get_addr_index): Declare.
7511         * dwarf2-frame.c (dwarf2_frame_ctx_funcs): Update.
7512         * dwarf2loc.c (dwarf_expr_get_addr_index): New function.
7513         (dwarf_expr_ctx_funcs): Update.
7514         (needs_get_addr_index): New function.
7515         (needs_frame_ctx_funcs): Update.
7516         * dwarf2loc.h (dwarf2_read_addr_index): Declare.
7517         * dwarf2read.c: #include "gdbcore.h".
7518         (dwarf2_per_objfile): New members addr, dwo_files.
7519         (dwarf2_elf_names): Add entry for addr.
7520         (struct dwo_section_names): New type.
7521         (dwo_section_names): New static global.
7522         (dwarf2_cu): New members dwo_unit, addr_base, have_addr_base.
7523         (dwarf2_per_cu_data): New member is_debug_types, all boolean uses of
7524         old debug_types_section member updated to use this.
7525         Rename member debug_types_section to info_or_types_section,
7526         all uses updated.
7527         (signatured_type): Rename member type_offset to type_offset_in_tu,
7528         all uses updated.  New member type_offset_in_section.
7529         (struct dwo_sections): New type.
7530         (struct dwo_unit): New type.
7531         (struct dwo_file): New type.
7532         (die_reader_specs): New member dwo_file.
7533         (dwarf2_locate_sections): Watch for .debug_addr.
7534         (zlib_decompress_section): Use sectp->owner instead of objfile->obfd.
7535         (dwarf2_read_section): Get bfd of section from bfd's asection,
7536         instead of objfile.
7537         (create_cus_from_index): Initialize the_cu->info_or_types_section.
7538         (create_signatured_type_table_from_index): Initialize
7539         sig_type->info_or_types_section.
7540         (dw2_get_file_names): Statement lists for type units with DWO files
7541         live in the DWO file.
7542         (create_debug_types_hash_table): New function.
7543         (create_all_type_units): Rewrite.
7544         (init_cu_die_reader): New arg dwo_file, all callers updated.
7545         (init_and_read_dies_worker): Get section from
7546         this_cu->info_or_types_section.  Set sig_type->type_offset_in_section.
7547         Watch for DW_AT_GNU_dwo_name and if present lookup the file and
7548         continue reading the CU/TU from there.
7549         (init_cutu_and_read_dies_no_follow): New arg dwo_file, all callers
7550         updated.  Get section from this_cu->info_or_types_section.
7551         (create_all_comp_units): Initialize this_cu->info_or_types_section.
7552         (skip_one_die): New cases DW_FORM_GNU_addr_index,
7553         DW_FORM_GNU_str_index.
7554         (hash_dwo_file, eq_dwo_file): New functions.
7555         (allocate_dwo_file_hash_table): New function.
7556         (hash_dwo_unit, eq_dwo_unit): New functions.
7557         (allocate_dwo_unit_table): New function.
7558         (dwarf2_locate_dwo_sections): New function.
7559         (struct create_dwo_info_table_data): New type.
7560         (create_debug_info_hash_table_reader): New function.
7561         (create_debug_info_hash_table): New function.
7562         (try_open_dwo_file, open_dwo_file, init_dwo_file): New function.
7563         (lookup_dwo_file): New function.
7564         (lookup_dwo_comp_unit, lookup_dwo_type_unit): New functions.
7565         (free_dwo_file, free_dwo_file_cleanup): New functions.
7566         (free_dwo_file_from_slot, free_dwo_files): New functions.
7567         (dwarf2_get_pc_bounds): Handle DW_FORM_GNU_addr_index.
7568         (dwarf2_record_block_ranges): Ditto.
7569         (read_partial_die): Ditto.
7570         (process_enumeration_scope): Update to use type_offset_in_section.
7571         (read_full_die_1): New function.
7572         (read_full_die): Rewrite.
7573         (read_attribute_value): New cases DW_FORM_GNU_addr_index,
7574         DW_FORM_GNU_str_index.
7575         (read_addr_index_1, read_addr_index): New functions.
7576         (read_addr_index_from_leb128): New function.
7577         (struct dwarf2_read_addr_index_data): New type.
7578         (dwarf2_read_addr_index_reader): New function.
7579         (dwarf2_read_addr_index): New function.
7580         (read_str_index): New function.
7581         (leb128_size): New function.
7582         (dwarf_decode_line_header): Delete arg abfd, all callers updated.
7583         If processing a type unit from a DWO file, get the line section
7584         from the DWO file.
7585         (var_decode_location): Watch for DW_OP_GNU_addr_index.
7586         (dwarf2_const_value_attr): New cases DW_FORM_GNU_addr_index,
7587         DW_FORM_GNU_str_index.
7588         (lookup_die_type): Check whether section offset of type's die is
7589         known before looking it up.  Remove assert.  Condition can
7590         legimately happen for inter-cu type references.
7591         (dwarf_attr_name): Handle Fission attributes.
7592         (dwarf_form_name): Handle Fission forms.
7593         (dump_die_shallow): New cases DW_FORM_GNU_addr_index,
7594         DW_FORM_GNU_str_index.
7595         (follow_die_sig): Update to use type_offset_in_section.
7596         (decode_locdesc): New case DW_OP_GNU_addr_index.
7597         (skip_form_bytes): New cases DW_FORM_GNU_addr_index,
7598         DW_FORM_GNU_str_index.
7599         (cu_debug_loc_section): New function.
7600         (fill_in_loclist_baton, dwarf2_symbol_mark_computed): Call it.
7601         (dwarf2_per_objfile_free): Unmap .debug_addr section.
7602         Free DWO files if present.
7603         * xcoffread.c (dwarf2_xcoff_names): Add .debug_addr.
7604
7605         Refactor DIE reading.
7606         * dwarf2read.c (dwarf2_per_objfile): Replace members
7607         debug_info_type_hash and debug_types_type_hash with die_type_hash.
7608         (die_reader_specs): New member "die_section".  Temporarily make
7609         member "buffer" non-const, pending constifying all info_ptr uses.
7610         (die_reader_func_ftype): New typedef.
7611         (dw2_get_file_names_reader): New function.
7612         (dw2_get_file_names): Rewrite.
7613         (read_and_check_type_unit_head): Rename arg type_offset to
7614         type_offset_in_tu.
7615         (create_all_type_units): Improve debugging message.
7616         Improve dummy type unit check.
7617         (init_cu_die_reader): New arg "section".  All callers updated.
7618         (init_and_read_dies_worker): New function.
7619         (init_cu_and_read_dies, init_tu_and_read_dies): New functions.
7620         (init_cutu_and_read_dies_no_follow): New function.
7621         (init_cutu_and_read_dies_simple): New function.
7622         (process_psymtab_comp_unit_reader): New function.
7623         (process_psymtab_comp_unit): Delete args section,
7624         is_debug_types_section.  Rewrite.  All callers updated.
7625         (process_psymtab_type_unit): Renamed from process_type_comp_unit.
7626         All callers updated.  Rewrite.
7627         (load_partial_comp_unit_reader): New function.
7628         (load_partial_comp_unit): Rewrite.
7629         (skip_children): New arg reader.  Delete args buffer, cu.
7630         All callers updated.
7631         (skip_one_die): New arg reader.  Delete args buffer, cu.
7632         All callers updated.
7633         (locate_pdi_sibling): New arg reader.  Delete args buffer, abfd, cu.
7634         All callers updated.
7635         (load_full_comp_unit_reader): New function.
7636         (load_full_comp_unit): Rewrite.
7637         (read_comp_unit): Delete.
7638         (read_die_and_children_1): Delete, contents moved ...
7639         (read_die_and_children): ... here.
7640         (dwarf2_read_abbrevs): New arg abbrev_section.  All callers updated.
7641         (load_partial_dies): New arg reader.  Delete args abfd, buffer, cu.
7642         All callers updated.
7643         (read_partial_die): New arg reader.  Delete args abfd, buffer, cu.
7644         All callers updated.
7645         (find_partial_die): Rewrite load_all_dies support.
7646         (read_attribute_value): New arg reader.  Delete args abfd, cu.
7647         All callers updated.
7648         (read_attribute): New arg reader.  Delete args abfd, cu.
7649         All callers updated.
7650         (load_full_type_unit): Add assert.
7651         (read_signatured_type_reader): New function.
7652         (read_signatured_type): Rewrite.
7653         (free_stack_comp_unit): Remove call to age_cached_comp_units.
7654         (free_one_cached_comp_unit): Change target_cu arg to target_per_cu.
7655         All callers updated.  Set per_cu->cu = NULL after freeing it.
7656         (dwarf2_per_cu_offset_and_type): Renamed from dwarf2_offset_and_type.
7657         (per_cu_offset_and_type_hash): Renamed from offset_and_type_hash.
7658         (per_cu_offset_and_type_eq): Renamed from offset_and_type_eq.
7659         (set_die_type): Update.
7660         (get_die_type_at_offset): Update.
7661         (read_file_scope): Call prepare_one_comp_unit.
7662         (read_type_unit_scope): Ditto.
7663         (prepare_one_comp_unit): Set producer if present.
7664
7665 2012-04-28  Sergio Durigan Junior  <sergiodj@redhat.com>
7666
7667         * probe.c (compile_rx_or_error): Silence ARI warning about missing
7668          gettext function on `error'.
7669
7670 2012-04-27  Doug Evans  <dje@google.com>
7671
7672         * dwarf2read.c (dwarf2_read_index): Don't use index if symbol table
7673         is empty.
7674
7675 2012-04-27  Sergio Durigan Junior  <sergiodj@redhat.com>
7676             Tom Tromey  <tromey@redhat.com>
7677
7678         * breakpoint.c (struct breakpoint_objfile_data)
7679         <longjmp_searched>,<longjmp_probes>,<exception_searched>,
7680         <exception_probes>: New fields.
7681         (free_breakpoint_probes): New function.
7682         (create_longjmp_master_breakpoint): Prefer SystemTap probe over
7683         `_Unwind_DebugHook'.
7684         (create_exception_master_breakpoint): Likewise.
7685         (_initialize_breakpoint): Registering cleanup for SystemTap probes.
7686         * infrun.c: Including necessary header files for handling SystemTap
7687         probes.
7688         (handle_inferior_event): Handling longjmp breakpoint and exceptions
7689         via SystemTap probes.
7690         (check_exception_resume): Remove `func' argument.  Handle exception
7691         unwinding breakpoint set via a SystemTap probe.
7692         (insert_exception_resume_from_probe): New function.
7693
7694 2012-04-27  Sergio Durigan Junior  <sergiodj@redhat.com>
7695             Tom Tromey  <tromey@redhat.com>
7696             Jan Kratochvil  <jan.kratochvil@redhat.com>
7697
7698         * Makefile.in (SFILES): Add `probe' and `stap-probe'.
7699         (COMMON_OBS): Likewise.
7700         (HFILES_NO_SRCDIR): Add `probe'.
7701         * NEWS: Mention support for static and SystemTap probes.
7702         * amd64-tdep.c (amd64_init_abi): Initializing proper fields used by
7703         SystemTap probes' arguments parser.
7704         * arm-linux-tdep.c: Including headers needed to perform the parsing
7705         of SystemTap probes' arguments.
7706         (arm_stap_is_single_operand): New function.
7707         (arm_stap_parse_special_token): Likewise.
7708         (arm_linux_init_abi): Initializing proper fields used by SystemTap
7709         probes' arguments parser.
7710         * ax-gdb.c (require_rvalue): Removing static declaration.
7711         (gen_expr): Likewise.
7712         * ax-gdb.h (gen_expr): Declaring function.
7713         (require_rvalue): Likewise.
7714         * breakpoint.c: Include `gdb_regex.h' and `probe.h'.
7715         (bkpt_probe_breakpoint_ops): New variable.
7716         (momentary_breakpoint_from_master): Set the `probe' value.
7717         (add_location_to_breakpoint): Likewise.
7718         (break_command_1): Using proper breakpoint_ops according to the
7719         argument passed by the user in the command line.
7720         (bkpt_probe_insert_location): New function.
7721         (bkpt_probe_remove_location): Likewise.
7722         (bkpt_probe_create_sals_from_address): Likewise.
7723         (bkpt_probe_decode_linespec): Likewise.
7724         (tracepoint_probe_create_sals_from_address): Likewise.
7725         (tracepoint_probe_decode_linespec): Likewise.
7726         (tracepoint_probe_breakpoint_ops): New variable.
7727         (trace_command): Using proper breakpoint_ops according to the
7728         argument passed by the user in the command line.
7729         (initialize_breakpoint_ops): Initializing breakpoint_ops for
7730         static probes on breakpoints and tracepoints.
7731         * breakpoint.h (struct bp_location) <probe>: New field.
7732         * cli-utils.c (skip_spaces_const): New function.
7733         (extract_arg): Likewise.
7734         * cli-utils.h (skip_spaces_const): Likewise.
7735         (extract_arg): Likewise.
7736         * coffread.c (coff_sym_fns): Add `sym_probe_fns' value.
7737         * configure.ac: Append `stap-probe.o' to be generated when ELF
7738         support is present.
7739         * configure: Regenerate.
7740         * dbxread.c (aout_sym_fns): Add `sym_probe_fns' value.
7741         * elfread.c: Include `probe.h' and `arch-utils.h'.
7742         (probe_key): New variable.
7743         (elf_get_probes): New function.
7744         (elf_get_probe_argument_count): Likewise.
7745         (elf_evaluate_probe_argument): Likewise.
7746         (elf_compile_to_ax): Likewise.
7747         (elf_symfile_relocate_probe): Likewise.
7748         (stap_probe_key_free): Likewise.
7749         (elf_probe_fns): New variable.
7750         (elf_sym_fns): Add `sym_probe_fns' value.
7751         (elf_sym_fns_lazy_psyms): Likewise.
7752         (elf_sym_fns_gdb_index): Likewise.
7753         (_initialize_elfread): Initialize objfile cache for static
7754         probes.
7755         * gdb_vecs.h (struct probe): New forward declaration.
7756         (probe_p): New VEC declaration.
7757         * gdbarch.c: Regenerate.
7758         * gdbarch.h: Regenerate.
7759         * gdbarch.sh (stap_integer_prefix): New variable.
7760         (stap_integer_suffix): Likewise.
7761         (stap_register_prefix): Likewise.
7762         (stap_register_suffix): Likewise.
7763         (stap_register_indirection_prefix): Likewise.
7764         (stap_register_indirection_suffix): Likewise.
7765         (stap_gdb_register_prefix): Likewise.
7766         (stap_gdb_register_suffix): Likewise.
7767         (stap_is_single_operand): New function.
7768         (stap_parse_special_token): Likewise.
7769         (struct stap_parse_info): Forward declaration.
7770         * i386-tdep.c: Including headers needed to perform the parsing
7771         of SystemTap probes' arguments.
7772         (i386_stap_is_single_operand): New function.
7773         (i386_stap_parse_special_token): Likewise.
7774         (i386_elf_init_abi): Initializing proper fields used by SystemTap
7775         probes' arguments parser.
7776         * i386-tdep.h (i386_stap_is_single_operand): New function.
7777         (i386_stap_parse_special_token): Likewise.
7778         * machoread.c (macho_sym_fns): Add `sym_probe_fns' value.
7779         * mipsread.c (ecoff_sym_fns): Likewise.
7780         * objfiles.c (objfile_relocate1): Support relocation for static
7781         probes.
7782         * parse.c (prefixify_expression): Remove static declaration.
7783         (initialize_expout): Likewise.
7784         (reallocate_expout): Likewise.
7785         * parser-defs.h (initialize_expout): Declare function.
7786         (reallocate_expout): Likewise.
7787         (prefixify_expression): Likewise.
7788         * ppc-linux-tdep.c: Including headers needed to perform the parsing
7789         of SystemTap probes' arguments.
7790         (ppc_stap_is_single_operand): New function.
7791         (ppc_stap_parse_special_token): Likewise.
7792         (ppc_linux_init_abi): Initializing proper fields used by SystemTap
7793         probes' arguments parser.
7794         * probe.c: New file, for generic statically defined probe support.
7795         * probe.h: Likewise.
7796         * s390-tdep.c: Including headers needed to perform the parsing of
7797         SystemTap probes' arguments.
7798         (s390_stap_is_single_operand): New function.
7799         (s390_gdbarch_init): Initializing proper fields used by SystemTap
7800         probes' arguments parser.
7801         * somread.c (som_sym_fns): Add `sym_probe_fns' value.
7802         * stap-probe.c: New file, for SystemTap probe support.
7803         * stap-probe.h: Likewise.
7804         * symfile.h: Include `gdb_vecs.h'.
7805         (struct sym_probe_fns): New struct.
7806         (struct sym_fns) <sym_probe_fns>: New field.
7807         * symtab.c (init_sal): Initialize `probe' field.
7808         * symtab.h (struct probe): Forward declaration.
7809         (struct symtab_and_line) <probe>: New field.
7810         * tracepoint.c (start_tracing): Adjust semaphore on breakpoints
7811         locations.
7812         (stop_tracing): Likewise.
7813         * xcoffread.c (xcoff_sym_fns): Add `sym_probe_fns' value.
7814
7815 2012-04-27  Sergio Durigan Junior  <sergiodj@redhat.com>
7816             Tom Tromey  <tromey@redhat.com>
7817
7818         * ax-gdb.c (gen_expr): Clean up code to handle internal variables
7819         and to compile agent expressions.
7820         * infrun.c (siginfo_make_value): New argument `ignore'.
7821         (siginfo_funcs): New struct.
7822         (_initialize_infrun): New argument when calling
7823         `create_internalvar_type_lazy'.
7824         * thread.c (thread_id_make_value): New argument `ignore'.
7825         (thread_funcs): New struct.
7826         (_initialize_thread): New argument when calling
7827         `create_internalvar_type_lazy'.
7828         * tracepoint.c (sdata_make_value): New argument `ignore'.
7829         (sdata_funcs): New struct.
7830         (_initialize_tracepoint): New argument when calling
7831         `create_internalvar_type_lazy'.
7832         * value.c (make_value): New struct.
7833         (create_internalvar_type_lazy): New argument `data'.
7834         (compile_internalvar_to_ax): New function.
7835         (value_of_internalvar): Properly handling `make_value' case.
7836         (clear_internalvar): Likewise.
7837         (show_convenience): Adding `TRY_CATCH' block.
7838         * value.h (internalvar_make_value): Delete, replace by...
7839         (struct internalvar_funcs): ... this.
7840         (create_internalvar_type_lazy) <fun>: Delete argument.
7841         (create_internalvar_type_lazy) <funcs>, <data>: New arguments.
7842         (compile_internalvar_to_ax): New function.
7843         * windows-tdep.c (tlb_make_value): New argument `ignore'.
7844         (tlb_funcs): New struct.
7845         (_initialize_windows_tdep): New argument when calling
7846         `create_internalvar_type_lazy'.
7847
7848 2012-04-27  Mark Wielaard  <mjw@redhat.com>
7849
7850         * dwarf2read.c (dwarf2_get_pc_bounds): Check DW_AT_high_pc form to
7851         see whether it is an address or a constant offset from DW_AT_low_pc.
7852         (dwarf2_record_block_ranges): Likewise.
7853         (read_partial_die): Likewise.
7854
7855 2012-04-26  Mark Wielaard  <mjw@redhat.com>
7856
7857         * MAINTAINERS (Write After Approval): Add myself to the list.
7858
7859 2012-04-26  Maciej W. Rozycki  <macro@codesourcery.com>
7860
7861         * proc-utils.h (proc_prettyprint_signalset): New prototype.
7862         (proc_prettyprint_signal): Likewise.
7863         (proc_prettyprint_faultset): Likewise.
7864         (proc_prettyprint_fault): Likewise.
7865         (proc_prettyprint_actionset): Likewise.
7866         (proc_prettyprint_flags): Move to new proc-flags.c section.
7867         (proc_prettyfprint_flags): New prototype.
7868         * procfs.c (proc_nsysarg, proc_sysargs): Add prototypes.
7869         (proc_syscall, proc_cursig): Likewise.
7870         (proc_set_kill_on_last_close): Likewise.
7871         (proc_unset_kill_on_last_close): Likewise.
7872         (proc_set_watchpoint): Make static.
7873         (proc_delete_dead_threads): Likewise.
7874         (procfs_set_watchpoint): Likewise.
7875         (_initialize_procfs): Add prototype.
7876         * proc-events.c: Include proc-utils.h.
7877         (init_syscall_table): Make static.
7878         * proc-api.c (_initialize_proc_api): Add prototype.
7879         * proc-flags.c: Include proc-utils.h.
7880
7881 2012-04-26  Maciej W. Rozycki  <macro@codesourcery.com>
7882
7883         * configure.ac: Add AC_ARG_PROGRAM.
7884         * configure: Regenerate.
7885
7886 2012-04-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
7887
7888         Fix DW_AT_lower_bound defaults for DWARF-4+.
7889         * dwarf2read.c (read_subrange_type): Remove initialization of low and
7890         high.  New variable low_default_is_valid.  Implement DWARF-4+
7891         DW_AT_lower_bound defaults.  Print complaint for DW_AT_lower_bound with
7892         no default by the DWARF standard.
7893
7894 2012-04-26  Maciej W. Rozycki  <macro@mips.com>
7895             Maciej W. Rozycki  <macro@codesourcery.com>
7896
7897         * infrun.c (handle_inferior_event): Move the check for return
7898         trampolines ahead of the check for function trampolines.
7899         * mips-tdep.h (MIPS_S2_REGNUM, MIPS_GP_REGNUM): New macros.
7900         * mips-tdep.c (mips_str_mips16_call_stub): New variable.
7901         (mips_str_mips16_ret_stub): Likewise.
7902         (mips_str_call_fp_stub): Likewise.
7903         (mips_str_call_stub): Likewise.
7904         (mips_str_fn_stub): Likewise.
7905         (mips_str_pic): Likewise.
7906         (mips_in_frame_stub): New function.
7907         (mips_unwind_pc): Return the return address rather than the PC
7908         if the PC of an intermediate frame is inside a call thunk.
7909         (mips_is_stub_suffix): New function.
7910         (mips_is_stub_mode): Likewise.
7911         (mips_get_mips16_fn_stub_pc): Likewise.
7912         (mips_skip_mips16_trampoline_code): Update to handle all the
7913         currently generated stub types.  Don't recurse into __fn_stub
7914         thunks.  Remove heuristics to handle stubs beyond etext/_etext.
7915         Use cooked register accesses.
7916         (mips_in_return_stub): Reintroduce function.
7917         (mips_skip_trampoline_code): Traverse trampolines recursively.
7918         (mips_gdbarch_init): Handle MIPS16 return trampolines.
7919
7920 2012-04-26  Joel Brobecker  <brobecker@adacore.com>
7921
7922         GDB 7.4.1 released.
7923
7924 2012-04-26  Jonathan Larmour  <jifl@eCosCentric.com>
7925
7926         * arm-tdep.h (VFP_REGISTER_SIZE): Define.
7927         * features/arm-with-m-vfp-d16.xml: New file. Describes
7928         Cortex-M with VFPv4-sp-d16 FPU register layout.
7929         * features/Makefile (WHICH): Add arm-with-m-vfp-d16.
7930         * features/arm-with-m-vfp-d16.c: New. Generated from above.
7931         * arm-tdep.c: Include arm-with-m-vfp-d16.c.
7932         (arm-register_g_packet_guesses): Add vfp-d16 guess.
7933         (_initialise_arm_tdep): Initialize arm-with-m-vfp-d16 tdesc.
7934
7935 2012-04-25  Doug Evans  <dje@google.com>
7936
7937         * cli/cli-decode.c (print_doc_line): Use stream instead of
7938         current_uiout.
7939
7940 2012-04-25  Sergio Durigan Junior  <sergiodj@redhat.com>
7941
7942         * features/arm-with-iwmmxt.c: Regenerate.
7943         * features/arm-with-m-fpa-layout.c: Likewise.
7944         * features/arm-with-m.c: Likewise.
7945         * features/arm-with-neon.c: Likewise.
7946         * features/arm-with-vfpv2.c: Likewise.
7947         * features/arm-with-vfpv3.c: Likewise.
7948         * features/mips-dsp-linux.c: Likewise.
7949         * features/mips-linux.c: Likewise.
7950         * features/mips64-dsp-linux.c: Likewise.
7951         * features/mips64-linux.c: Likewise.
7952         * features/s390-linux32.c: Likewise.
7953         * features/s390-linux32v1.c: Likewise.
7954         * features/s390-linux32v2.c: Likewise.
7955         * features/s390-linux64.c: Likewise.
7956         * features/s390-linux64v1.c: Likewise.
7957         * features/s390-linux64v2.c: Likewise.
7958         * features/s390x-linux64.c: Likewise.
7959         * features/s390x-linux64v1.c: Likewise.
7960         * features/s390x-linux64v2.c: Likewise.
7961         * features/tic6x-c62x-linux.c: Likewise.
7962         * features/tic6x-c62x.c: Likewise.
7963         * features/tic6x-c64x-linux.c: Likewise.
7964         * features/tic6x-c64x.c: Likewise.
7965         * features/tic6x-c64xp-linux.c: Likewise.
7966         * features/tic6x-c64xp.c: Likewise.
7967         * target-descriptions.c: Only generate `field_type' and `type'
7968         variables when needed.
7969
7970 2012-04-25  Fredrik Hederstierna  <fredrikh.hederstierna@securitas-direct.com>
7971
7972         * cli/cli-cmds.c (cd_command): Use memmove instead of strcpy.
7973
7974 2012-04-25  Doug Evans  <dje@google.com>
7975
7976         Initial pass at Go language support.
7977         * NEWS: Mention Go.
7978         * Makefile.in (SFILES): Add go-exp.y, go-lang.c, go-typeprint.c,
7979         go-valprint.c.
7980         (COMMON_OBS): Add go-lang.o, go-val.print.o, go-typeprint.o.
7981         (YYFILES): Add go-exp.c.
7982         (YYOBJ): Add go-exp.o.
7983         (local-maintainer-clean): Delete go-exp.c.
7984         * defs.h (enum language): Add language_go.
7985         * dwarf2read.c: #include "go-lang.h".
7986         (fixup_go_packaging): New function.
7987         (process_full_comp_unit): Call it when processing Go CUs.
7988         (dwarf2_physname): Add Go support.
7989         (read_file_scope): Handle missing language spec for GNU Go.
7990         (set_cu_language): Handle DW_LANG_Go.
7991         * go-exp.y: New file.
7992         * go-lang.h: New file.
7993         * go-lang.c: New file.
7994         * go-typeprint.c: New file.
7995         * go-valprint.c: New file.
7996         * symtab.c: #include "go-lang.h".
7997         (symbol_set_language): Handle language_go.
7998         (symbol_find_demangled_name, symbol_set_names): Ditto.
7999         (symbol_natural_name, demangle_for_lookup, find_main_name): Ditto.
8000
8001 2012-04-24  Jim Meyering  <meyering@redhat.com>
8002
8003         avoid a few strncpy-induced buffer overruns
8004         * procfs.c (procfs_make_note_section): Be sure to NUL-terminate
8005         fname and psargs before trying to concatenate.
8006         * tui/tui-stack.c (tui_get_function_from_frame): NUL-terminate
8007         "name" before applying strchr.
8008
8009 2012-04-25  Siva Chandra Reddy  <sivachandra@google.com>
8010
8011         * CONTRIBUTE: Use unified diff instead of context diff when
8012         generating patches.
8013
8014 2012-04-24  Maciej W. Rozycki  <macro@codesourcery.com>
8015
8016         * mips-tdep.c (mips_about_to_return): Remove dead MIPS16 support
8017         code.  Handle JR.HB correctly.
8018
8019 2012-04-24  Maciej W. Rozycki  <macro@codesourcery.com>
8020
8021         * mips-tdep.c
8022         (is_mips16_addr, unmake_mips16_addr, make_mips16_addr): Group
8023         with the other MIPS16 helpers.
8024
8025 2012-04-24  Sergio Durigan Junior  <sergiodj@redhat.com>
8026
8027         * observer.sh: Conditionally declare `args', thus cleaning up
8028         unused instances of this variable.
8029
8030 2012-04-24  Yao Qi  <yao@codesourcery.com>
8031
8032         Revert this patch to allow breakpoint always-inserted
8033         in record target.
8034         2011-12-05  Pedro Alves  <pedro@codesourcery.com>
8035         * breakpoint.c: Include record.h.
8036         (breakpoints_always_inserted_mode): Return false when the record
8037         target is in use.
8038
8039         * breakpoint.c (iterate_over_bp_locations): New.
8040         * breakpoint.h: Declare.
8041         New typedef walk_bp_location_callback.
8042         * record.c (record_open): Call record_init_record_breakpoints.
8043         (record_sync_record_breakpoints): New.
8044         (record_init_record_breakpoints): New.
8045         * NEWS: Mention supporting breakpoint always-inserted mode in
8046         record target.
8047
8048 2012-04-24  Marc Khouzam  <marc.khouzam@ericsson.com>
8049
8050         * mi/mi-main.c (mi_cmd_execute): Choose a live thread not just
8051         any thread.
8052
8053 2012-04-24  Yao Qi  <yao@codesourcery.com>
8054
8055         * breakpoint.c (ep_is_catchpoint): Renamed to ...
8056         (is_catchpoint): ... it.
8057         (print_one_breakpoint_location): Caller update.
8058         * breakpoint.h: Update declaration.
8059
8060 2012-04-23  David S. Miller  <davem@davemloft.net>
8061
8062         * configure.tgt (sparc-*-linux*): Set build_gdbserver to yes.
8063
8064 2012-04-23  Tom Tromey  <tromey@redhat.com>
8065
8066         * buildsym.c (add_free_pendings): Remove.
8067         * buildsym.h (add_free_pendings): Remove.
8068
8069 2012-04-23  Doug Evans  <dje@google.com>
8070
8071         * dwarf2read.c (partial_die_full_name): Record DW_FORM_ref_addr in
8072         attr.u.unsnd instead of attr.u.addr.
8073         (read_attribute_value) Ditto for cases DW_FORM_ref_addr,
8074         DW_FORM_ref1, DW_FORM_ref2, DW_FORM_ref4, DW_FORM_reg8,
8075         DW_FORM_ref_udata.
8076         (dump_die_shallow): Update cases DW_FORM_ref_addr,
8077         DW_FORM_ref1, DW_FORM_ref2, DW_FORM_ref4.  Add cases DW_FORM_ref8,
8078         DW_FORM_ref_udata.
8079         (dwarf2_get_ref_die_offset): Use DW_UNSND for reference attributes.
8080
8081 2012-04-23  Maciej W. Rozycki  <macro@codesourcery.com>
8082
8083         * mips-tdep.c (mips_n32n64_return_value): Fix coding style.
8084         (mips_o32_return_value): Likewise.
8085         (mips_o64_return_value): Likewise.
8086
8087 2012-04-21  Paul Hilfinger  <hilfinger@adacore.com>
8088
8089         * ada-lang.c (ada_evaluate_subexp): Add cases for
8090         TYPE_CODE_INTERNAL_FUNCTION and for TYPE_GNU_IFUNC, following
8091         their treatment in eval.c.
8092
8093 2012-04-21  David S. Miller  <davem@davemloft.net>
8094
8095         * sparc-tdep.c (X_DISP10): Define.
8096         (sparc_analyze_control_transfer): Handle compare-and-branch.
8097
8098 2012-04-21  Jonathan Larmour  <jifl@eCosCentric.com>
8099
8100         * features/Makefile (WHICH): Add arm-with-m and arm-with-m-fpa-layout.
8101         * arm-tdep.c (arm_register_g_packet_guesses): Fix comment.
8102
8103 2012-04-20  Nigel Stephens  <nigel@mips.com>
8104             Maciej W. Rozycki  <macro@codesourcery.com>
8105
8106         * mips-tdep.c (mips_float_register_p): New function.
8107         (mips_convert_register_float_case_p): Use mips_float_register_p.
8108         (mips_register_type): Likewise.
8109         (mips_print_register): Likewise.
8110         (print_gp_register_row): Likewise.
8111         (mips_print_registers_info): Likewise.
8112
8113 2012-04-20  Shun-Yen Lu  <dark.asparagus@gmail.com>
8114
8115         * mips-tdep.c (mips_elf_make_msymbol_special): Fix identification
8116         of mips16 symbols.
8117
8118 2012-04-20  Andrew Pinski  <apinski@cavium.com>
8119
8120         * MAINTAINERS (Write After Approval): Add myself to the list.
8121
8122 2012-04-20  Sergio Durigan Junior  <sergiodj@redhat.com>
8123
8124         * MAINTAINERS: Update my e-mail address.
8125
8126 2012-04-20  Pedro Alves  <palves@redhat.com>
8127
8128         * acx_configure_dir.m4 (ACX_CONFIGURE_DIR): Handle absolute
8129         $srcdir.
8130         * configure: Regenerate.
8131
8132 2012-04-20  Sergio Durigan Junior  <sergiodj@redhat.com>
8133
8134         * cp-support.h: Include `gdb_vecs.h'.  Delete `const_char_ptr' VEC
8135         declaration.
8136         * gdb_vecs.h: Declare `const_char_ptr' VEC.
8137
8138 2012-04-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
8139
8140         Fix compilation compatibility with python-2.4
8141         * python/py-type.c (convert_field): Cast ADDRSTRING for
8142         PyObject_SetAttrString as non-const.  New comment.
8143
8144 2012-04-19  Tom Tromey  <tromey@redhat.com>
8145
8146         * top.c (quit_target): Use all_cleanups.
8147         * main.c (captured_command_loop): Use all_cleanups.
8148         * exceptions.c (throw_exception): Use all_cleanups.
8149
8150 2012-04-19  Pedro Alves  <palves@redhat.com>
8151
8152         * Makefile.in (GNULIB_BUILDDIR): New.
8153         (LIBGNU, INCGNU, GNULIB_H): Adjust.
8154         (SUBDIRS): Add $(GNULIB_BUILDDIR).
8155         (CLEANDIRS). Remove gnulib/import.
8156         (REQUIRED_SUBDIRS): Replace gnulib/import with $(GNULIB_BUILDDIR).
8157         (all-lib): Ditto.
8158         (distclean): Remove the $(GNULIB_BUILDDIR) directory.
8159         (gnulib/import/Makefile): Replace gnulib/import with
8160         $(GNULIB_BUILDDIR).  Set CONFIG_FILES to just Makefile.
8161         (ACLOCAL_AMFLAGS): Remove '-I gnulib/import/m4'.
8162         (aclocal_m4_deps): Remove the gnulib dependencies.  Add
8163         acx_configure_dir.m4.
8164         * acinclude.m4: Include acx_configure_dir.m4.
8165         * acx_configure_dir.m4: New file.
8166         * aclocal.m4: Regenerate.
8167         * configure.ac: Remove gl_EARLY, gl_INIT and AM_INIT_AUTOMAKE
8168         calls.  Configure gnulib using ACX_CONFIGURE_DIR.
8169         (GNULIB): New variable.
8170         (GNULIB_STDINT_H): Adjust.
8171         (AC_OUTPUT): Don't output gnulib/Makefile.
8172         * gdb/defs.h: Include build-gnulib/config.h.
8173         * aclocal.m4: Regenerate.
8174         * config.in: Regenerate.
8175         * configure: Regenerate.
8176
8177         * gnulib/Makefile.in: New file.
8178         * gnulib/configure.ac: New file.
8179         * gnulib/aclocal.m4: New file.
8180         * gnulib/config.in: New file.
8181         * gnulib/configure: New file.
8182         * gnulib/: Re-run gnulib-tool to adjust.
8183
8184 2012-04-19  Doug Evans  <dje@google.com>
8185
8186         * cleanups.h (struct cleanup): Move to cleanups.c.
8187         (make_cleanup_dtor_ftype): New typedef.
8188         (make_cleanup_dtor): Use it.
8189         (ALL_CLEANUPS): Replace with ...
8190         (all_cleanups): ... this.  Declare.  All uses updated.
8191         * cleanups.c: #include "gdb_assert.h".
8192         (sentinel_cleanup): New static global.
8193         (SENTINEL_CLEANUP): Define.
8194         (cleanup_chain, final_cleanup_chain): Initialize to SENTINEL_CLEANUP.
8195         (make_my_cleanup2): Assert result is non-NULL.
8196         (all_cleanups): New function.
8197         (save_my_cleanups): Initialize new chain to SENTINEL_CLEANUP instead
8198         of NULL.
8199
8200 2012-04-19  Pedro Alves  <palves@redhat.com>
8201
8202         * Makefile.in (HFILES_NO_SRCDIR): Remove gnulib/wchar.in.h.
8203         Adjust paths to gnulib imported files.
8204
8205 2012-04-19  Pedro Alves  <palves@redhat.com>
8206
8207         * gnulib/: Move whole directory ...
8208         * gnulib/import/: ... here, and re-rerun gnulib-tool to adjust.
8209         * Makefile.in (LIBGNU, INCGNU, GNULIB_H, CLEANDIRS)
8210         (REQUIRED_SUBDIRS, all-lib, gnulib/Makefile, ACLOCAL_AMFLAGS)
8211         (aclocal_m4_deps): Adjust.
8212         * aclocal.m4: Regenerate.
8213         * configure: Regenerate.
8214         * configure.ac: Adjust AC_OUTPUT output.
8215
8216 2012-04-19  Yao Qi  <yao@codesourcery.com>
8217
8218         * Makefile.in (SFILES): Add common/vec.c and remove vec.c.
8219         (vec.o): New rule.
8220         * vec.c: Move it ...
8221         * common/vec.c: ... here.
8222         * vec.h: Move it ...
8223         * common/vec.h: ... here.
8224
8225 2012-04-19  Yao Qi  <yao@codesourcery.com>
8226
8227         * gdb-code-style.el: New.
8228
8229 2012-04-18  Pedro Alves  <palves@redhat.com>
8230
8231         Update gnulib from latest git.
8232         (639ea5ae15e39fe48d43e04864b2997301e4b969)
8233
8234         * gnulib/Makefile.am: Update.
8235         * gnulib/dummy.c: Update.
8236         * gnulib/extra/arg-nonnull.h: Update.
8237         * gnulib/extra/c++defs.h: Update.
8238         * gnulib/extra/update-copyright: Update.
8239         * gnulib/extra/warn-on-use.h: Update.
8240         * gnulib/inttypes.in.h: Update.
8241         * gnulib/m4/00gnulib.m4: Update.
8242         * gnulib/m4/extensions.m4: Update.
8243         * gnulib/m4/gnulib-cache.m4: Update.
8244         * gnulib/m4/gnulib-common.m4: Update.
8245         * gnulib/m4/gnulib-comp.m4: Update.
8246         * gnulib/m4/gnulib-tool.m4: Update.
8247         * gnulib/m4/include_next.m4: Update.
8248         * gnulib/m4/inttypes-pri.m4: Update.
8249         * gnulib/m4/inttypes.m4: Update.
8250         * gnulib/m4/longlong.m4: Update.
8251         * gnulib/m4/memchr.m4: Update.
8252         * gnulib/m4/memmem.m4: Update.
8253         * gnulib/m4/mmap-anon.m4: Update.
8254         * gnulib/m4/multiarch.m4: Update.
8255         * gnulib/m4/onceonly.m4: Update.
8256         * gnulib/m4/stddef_h.m4: Update.
8257         * gnulib/m4/stdint.m4: Update.
8258         * gnulib/m4/string_h.m4: Update.
8259         * gnulib/m4/warn-on-use.m4: Update.
8260         * gnulib/m4/wchar_h.m4: Update.
8261         * gnulib/m4/wchar_t.m4: Update.
8262         * gnulib/m4/wint_t.m4: Update.
8263         * gnulib/memchr.c: Update.
8264         * gnulib/memmem.c: Update.
8265         * gnulib/stddef.in.h: Update.
8266         * gnulib/stdint.in.h: Update.
8267         * gnulib/str-two-way.h: Update.
8268         * gnulib/string.in.h: Update.
8269         * gnulib/wchar.in.h: Update.
8270
8271         * gnulib/extra/arg-nonnull.h: Delete.
8272         * gnulib/extra/c++defs.h: Delete.
8273         * gnulib/extra/warn-on-use.h: Delete.
8274         * gnulib/m4/wchar_h.m4: Delete.
8275         * gnulib/m4/wint_t.m4: Delete.
8276         * gnulib/wchar.in.h: Delete.
8277
8278         * gnulib/extra/snippets/arg-nonnull.h: New.
8279         * gnulib/extra/snippets/c++defs.h: New.
8280         * gnulib/extra/snippets/warn-on-use.h: New.
8281
8282         * aclocal.m4: Regenerate.
8283         * config.in: Regenerate.
8284         * configure: Regenerate.
8285         * gnulib/Makefile.in: Regenerate.
8286
8287 2012-04-18  Pedro Alves  <palves@redhat.com>
8288
8289         Reimport the update-copyright module from gnulib
8290         (250b80067c1e1d8faa0c42fb572f721975b929c5).
8291
8292         * configure: Regenerate.
8293         * gnulib/Makefile.am: Update.
8294         * gnulib/Makefile.in: Regenerate.
8295         * gnulib/extra/update-copyright: Update.
8296         * gnulib/m4/gnulib-cache.m4: Update.
8297         * gnulib/m4/gnulib-comp.m4: Update.
8298
8299 2012-04-18  Tristan Gingold  <gingold@adacore.com>
8300
8301         * configure.ac (aix): Put -lpthread into libs.
8302         * configure: Regenerate.
8303
8304 2012-04-18  Tom Tromey  <tromey@redhat.com>
8305
8306         * linespec.c (convert_linespec_to_sals): Don't use
8307         SYMBOL_OBJ_SECTION.
8308         (compare_msymbols): Arguments are minsym_and_objfile, not
8309         minimal_symbol*.  Don't use SYMBOL_OBJ_SECTION.
8310
8311 2012-04-18  Pedro Alves  <palves@redhat.com>
8312
8313         Revert gnulib/ part of:
8314         2011-01-01  Joel Brobecker  <brobecker@adacore.com>
8315         Copyright year update in most files (performed by copyright.sh).
8316
8317 2012-04-18  Jan Kratochvil  <jan.kratochvil@redhat.com>
8318
8319         Fix 64-bit constants on 32-bit hosts.
8320         * dwarf2read.c (read_unsigned_leb128): Change declaration return type
8321         from unsigned long to ULONGEST.
8322         (read_signed_leb128): Change declaration return type from long to
8323         LONGEST.
8324         (dwarf2_const_value_attr): Change declaration parameter value from long
8325         to LONGEST.
8326         (dwarf2_compute_name): Change variable value from long to LONGEST.
8327         (read_unsigned_leb128): Change return type, variable result and some
8328         casts from unsigned long to ULONGEST.
8329         (read_signed_leb128): Change return type, variable result and some
8330         casts from long to LONGEST.
8331         (dwarf2_const_value_data, dwarf2_const_value_attr): Change parameter
8332         value from long to LONGEST.
8333         (dwarf2_const_value): Change variable value from long to LONGEST.
8334         * symmisc.c (print_symbol): Change SYMBOL_VALUE format strings to use
8335         plongest and hex_string.
8336         * symtab.h (struct general_symbol_info): Change ivalue from long to
8337         LONGEST, remove the comment.
8338         * tracepoint.c (validate_actionline, collect_symbol, scope_info):
8339         Change SYMBOL_VALUE format strings to use plongest and hex_string.
8340
8341 2012-04-18  Siddhesh Poyarekar  <siddhesh@redhat.com>
8342
8343         PR symtab/7259:
8344         * ada-exp.y (convert_char_literal): Use TYPE_FIELD_ENUMVAL.
8345         * ada-lang.c (ada_discrete_type_high_bound)
8346         (ada_discrete_type_low_bound): Fix function comment.  Use
8347         TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
8348         (ada_identical_enum_types_p): Use TYPE_FIELD_ENUMVAL.
8349         (pos_atr, value_val_atr): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
8350         * ada-typeprint.c (print_enum_type): Change variable lastval to LONGEST.
8351         Use TYPE_FIELD_ENUMVAL.
8352         * ada-valprint.c (print_optional_low_bound, ada_print_scalar)
8353         (ada_val_print_1): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
8354         * c-typeprint.c (c_type_print_base): Move variable lastval to inner
8355         block, change it to LONGEST.  Use TYPE_FIELD_ENUMVAL for
8356         TYPE_CODE_ENUM.
8357         * coffread.c (coff_read_enum_type): Use SET_FIELD_ENUMVAL.
8358         * dwarf2read.c (process_enumeration_scope): Likewise.
8359         * gdb-gdb.py (TypeFlagsPrinter): Use field.enumval instead of
8360         field.bitpos.
8361         (class StructMainTypePrettyPrinter): Support also
8362         FIELD_LOC_KIND_ENUMVAL.
8363         * gdbtypes.c (get_discrete_bounds): Use TYPE_FIELD_ENUMVAL for
8364         TYPE_CODE_ENUM.
8365         (recursive_dump_type): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
8366         (copy_type_recursive): Support also FIELD_LOC_KIND_ENUMVAL.
8367         * gdbtypes.h (enum field_loc_kind): New FIELD_LOC_KIND_ENUMVAL.
8368         (struct main_type.flds_bnds.fields.loc): Adjust bitpos comment.  New
8369         field enumval.
8370         (struct main_type.flds_bnds.bields): Adjust loc_kind and bitsize to
8371         accommodate enumval.
8372         (struct call_site): Adjust loc_kind to accommodate enumval.
8373         (FIELD_ENUMVAL, FIELD_ENUMVAL_LVAL, SET_FIELD_ENUMVAL)
8374         (TYPE_FIELD_ENUMVAL): New macros.
8375         * m2-typeprint.c (m2_enum): Use TYPE_FIELD_ENUMVAL.
8376         * mdebugread.c (parse_symbol): Use TYPE_FIELD_ENUMVAL for
8377         TYPE_CODE_ENUM.
8378         * p-typeprint.c (pascal_type_print_base): Likewise.
8379         * python/lib/gdb/printing.py (class FlagEnumerationPrinter): Use
8380         enumval.
8381         * python/lib/gdb/types.py (make_enum_dict): Likewise.
8382         * python/py-type.c (convert_field): New variable addrstring.  Use
8383         TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
8384         (check_types_equal): Support also FIELD_LOC_KIND_ENUMVAL.
8385         * stabsread.c (read_enum_type): Use SET_FIELD_ENUMVAL.
8386         * typepint.c (print_type_scalar): Use TYPE_FIELD_ENUMVAL for
8387         TYPE_CODE_ENUM.
8388         * valprint.c (generic_val_print): Likewise.
8389
8390 2012-04-17  Doug Evans  <dje@google.com>
8391
8392         * dwarf2read.c (lookup_signatured_type): Return NULL instead of 0.
8393
8394         * dwarf2read.c: Whitespace fixes.
8395         (lookup_signatured_type): Tweak comment.
8396         (get_die_type_at_offset): Fix comment.
8397
8398 2012-04-17  Joel Brobecker  <brobecker@adacore.com>
8399
8400         * xcoffread.c (xcoff_secnum_to_sections): New function.
8401         (secnum_to_section, secnum_to_bfd_section): Reimplement
8402         using xcoff_secnum_to_sections.  Rename "secnum" parameter
8403         into "n_scnum".
8404         (RECORD_MINIMAL_SYMBOL): Delete.
8405         (record_minimal_symbol): New function.
8406         (scan_xcoff_symtab): Replace uses of RECORD_MINIMAL_SYMBOL
8407         by call to record_minimal_symbol and set misc_func_recorded
8408         to 1.  Set last_csect_sec to the XCOFF section index instead
8409         of GDB's section_offset index.  Update calls to
8410         prim_record_minimal_symbol_and_info to pass the BFD section
8411         as well.
8412
8413 2012-04-17  Joel Brobecker  <brobecker@adacore.com>
8414
8415         * xcoffread.c (read_xcoff_symtab): Delete variables
8416         last_csect_val and last_csect_sec and associated code.
8417
8418 2012-04-17  Doug Evans  <dje@google.com>
8419
8420         * cleanups.c (make_my_cleanup,make_my_cleanup2): Make static.
8421         (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto.
8422         * cleanups.h (make_my_cleanup,make_my_cleanup2): Delete
8423         (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Delete.
8424
8425         * cleanups.h: New file.
8426         * cleanups.c: New file.
8427         * Makefile.in (SFILES): Add cleanups.c.
8428         (HFILES_NO_SRCDIR): Add cleanups.h.
8429         (COMMON_OBS): Add cleanups.o.
8430         * defs.h (struct cleanup): Moved to cleanups.h.
8431         (do_cleanups,do_final_cleanups): Ditto.
8432         (discard_cleanups,discard_final_cleanups): Ditto
8433         (make_cleanup,make_cleanup_dtor,make_final_cleanup): Ditto.
8434         (save_cleanups,save_final_cleanups): Ditto.
8435         (restore_cleanups,restore_final_cleanups): Ditto.
8436         (null_cleanup): Ditto.
8437         (make_my_cleanup,make_my_cleanup2): Ditto.
8438         (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto.
8439         * utils.c (cleanup_chain,final_cleanup_chain): Moved to cleanups.c.
8440         (do_cleanups,do_final_cleanups): Ditto.
8441         (discard_cleanups,discard_final_cleanups): Ditto
8442         (make_cleanup,make_cleanup_dtor,make_final_cleanup): Ditto.
8443         (save_cleanups,save_final_cleanups): Ditto.
8444         (restore_cleanups,restore_final_cleanups): Ditto.
8445         (null_cleanup): Ditto.
8446         (make_my_cleanup,make_my_cleanup2): Ditto.
8447         (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto.
8448
8449         * utils.c (make_cleanup_freeargv): Use make_cleanup instead of
8450         make_my_cleanup.
8451         (make_cleanup_dyn_string_delete): Ditto.
8452         (make_cleanup_ui_file_delete): Ditto.
8453         (make_cleanup_ui_out_redirect_pop): Ditto.
8454         (make_cleanup_free_section_addr_info): Ditto.
8455         (make_cleanup_restore_integer): Ditto.
8456         (make_cleanup_unpush_target): Ditto.
8457         (make_cleanup_value_free_to_mark): Ditto.
8458         (make_cleanup_value_free): Ditto.
8459         (make_cleanup_free_so): Ditto.
8460
8461 2012-04-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
8462
8463         New option "set debug auto-load".
8464         * NEWS: New commands "set debug auto-load" and "show debug auto-load".
8465         * auto-load.c (debug_auto_load, show_debug_auto_load: New.
8466         (auto_load_safe_path_vec_update)
8467         (filename_is_in_auto_load_safe_path_vec): Call fprintf_unfiltered
8468         if DEBUG_AUTO_LOAD.
8469         (file_is_auto_load_safe): New parameters debug_fmt and ....
8470         Call fprintf_unfiltered if DEBUG_AUTO_LOAD.
8471         (source_gdb_script_for_objfile): Extend the file_is_auto_load_safe
8472         caller by explanatory string.
8473         (_initialize_auto_load): Register "set debug auto-load".
8474         * auto-load.h (file_is_auto_load_safe): New parameters debug_fmt
8475         and ....
8476         * linux-thread-db.c (try_thread_db_load_from_pdir_1)
8477         (try_thread_db_load_from_dir): Extend the file_is_auto_load_safe caller
8478         by explanatory string.
8479         * main.c (captured_main): Likewise.
8480         * python/py-auto-load.c (gdbpy_load_auto_script_for_objfile)
8481         (source_section_scripts): Likewise.
8482
8483 2012-04-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
8484
8485         New option "set auto-load safe-path".
8486         * NEWS: New commands "set auto-load safe-path"
8487         and "show auto-load safe-path".
8488         * auto-load.c: Include gdb_vecs.h, readline/tilde.h and completer.h.
8489         (auto_load_safe_path, auto_load_safe_path_vec)
8490         (auto_load_safe_path_vec_update, set_auto_load_safe_path)
8491         (show_auto_load_safe_path, add_auto_load_safe_path, filename_is_in_dir)
8492         (filename_is_in_auto_load_safe_path_vec, file_is_auto_load_safe): New.
8493         (source_gdb_script_for_objfile): New variable is_safe.  Call
8494         file_is_auto_load_safe.  Return if it is not.
8495         (struct loaded_script): New field loaded.
8496         (maybe_add_script): Add parameter loaded.  Initialize SLOT with it.
8497         (print_script): Use LOADED indicator instead of FULL_PATH.  Change
8498         output "Missing" to "No".
8499         (_initialize_auto_load): New variable cmd.  Initialize
8500         auto_load_safe_path.  Register "set auto-load safe-path",
8501         "show auto-load safe-path" and "add-auto-load-safe-path".
8502         * auto-load.h (maybe_add_script): Add parameter loaded.
8503         (file_is_auto_load_safe): New declaration.
8504         * config.in: Regenerate.
8505         * configure: Regenerate.
8506         * configure.ac: New parameters --with-auto-load-safe-path
8507         and --without-auto-load-safe-path.
8508         * linux-thread-db.c (try_thread_db_load_from_pdir_1)
8509         (try_thread_db_load_from_dir): Check file_is_auto_load_safe first.
8510         * main.c (captured_main): Check file_is_auto_load_safe for
8511         LOCAL_GDBINIT.
8512         * python/py-auto-load.c (gdbpy_load_auto_script_for_objfile): New
8513         variable is_safe.  Call file_is_auto_load_safe.  Return if it is not.
8514         (source_section_scripts): Call file_is_auto_load_safe.  Return if it is
8515         not.
8516
8517 2012-04-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
8518
8519         auto-load: Implementation.
8520         * NEWS: New descriptions for "info auto-load",
8521         "info auto-load gdb-scripts", "info auto-load python-scripts",
8522         "info auto-load local-gdbinit" and "info auto-load libthread-db".
8523         Deprecate "info auto-load-scripts", "set auto-load-scripts on|off"
8524         and "show auto-load-scripts".  New description for "set auto-load",
8525         "show auto-load", "set auto-load gdb-scripts",
8526         "show auto-load gdb-scripts", "set auto-load python-scripts",
8527         "show auto-load python-scripts", "set auto-load local-gdbinit",
8528         "show auto-load local-gdbinit", "set auto-load libthread-db" and
8529         "show auto-load libthread-db".
8530         * auto-load.c: Remove include python/python-internal.h.  Add includes
8531         exceptions.h, cli/cli-script.h, gdbcmd.h, cli/cli-decode.h and
8532         cli/cli-setshow.h.
8533         (GDB_AUTO_FILE_NAME, source_gdb_script_for_objfile)
8534         (auto_load_gdb_scripts, show_auto_load_gdb_scripts): New.
8535         (gdbpy_global_auto_load): Rename to ...
8536         (global_auto_load): ... here.
8537         (auto_load_local_gdbinit, auto_load_local_gdbinit_pathname)
8538         (auto_load_local_gdbinit_loaded, show_auto_load_local_gdbinit)
8539         (script_language_gdb, source_gdb_script_for_objfile): New.
8540         (struct loaded_script): New field language.
8541         (hash_loaded_script_entry, eq_loaded_script_entry): Calculate also
8542         LANGUAGE.
8543         (maybe_add_script): Add parameter language.  Drop redundant
8544         entry.full_path initialization.  Initialize entry.language and
8545         (*slot)->language.
8546         (auto_load_objfile_script): Change parameter suffix to language.
8547         Remove the call of maybe_add_script.
8548         Call language->source_script_for_objfile.
8549         (load_auto_scripts_for_objfile, struct collect_matching_scripts_data):
8550         New.
8551         (collect_matching_scripts): Adjust it for
8552         struct collect_matching_scripts_data.
8553         (auto_load_info_scripts_pattern_nl): New variable.
8554         (info_auto_load_scripts): Rename to ...
8555         (auto_load_info_scripts): ... here, add parameter language.  Adjust it
8556         for struct collect_matching_scripts_data.
8557         (info_auto_load_gdb_scripts, info_auto_load_local_gdbinit)
8558         (set_auto_load_cmd, auto_load_set_cmdlist_get, show_auto_load_cmd)
8559         (auto_load_show_cmdlist_get, info_auto_load_cmd)
8560         (auto_load_info_cmdlist_get): New.
8561         (_initialize_auto_load): Move add_info of "auto-load-scripts" to
8562         python/py-auto-load.c.  New installment for "set auto-load gdb-scripts",
8563         "info auto-load gdb-scripts", "set auto-load local-gdbinit" and
8564         "info auto-load local-gdbinit".
8565         * auto-load.h (struct script_language): New.
8566         (gdbpy_global_auto_load): Rename to ...
8567         (global_auto_load): ... here.
8568         (auto_load_local_gdbinit, auto_load_local_gdbinit_pathname)
8569         (auto_load_local_gdbinit_loaded): New declarations.
8570         (maybe_add_script): New parameter language.
8571         (auto_load_objfile_script): Change parameter suffix to language.
8572         (load_auto_scripts_for_objfile, auto_load_info_scripts_pattern_nl)
8573         (auto_load_info_scripts, auto_load_set_cmdlist_get)
8574         (auto_load_show_cmdlist_get, auto_load_info_cmdlist_get): New
8575         declarations.
8576         * linux-thread-db.c: Include auto-load.h and ctype.h.
8577         (auto_load_thread_db, show_auto_load_thread_db): New.
8578         (struct thread_db_info): New field filename.
8579         (delete_thread_db_info): Call xfree for FILENAME.
8580         (try_thread_db_load): Initialize FILENAME.
8581         (try_thread_db_load_from_pdir, try_thread_db_load_from_dir): Return
8582         if !AUTO_LOAD_THREAD_DB.
8583         (info_auto_load_libthread_db_compare, info_auto_load_libthread_db): New.
8584         (_initialize_thread_db): Install auto_load_thread_db
8585         as "set auto-load libthread-db" and install info_auto_load_libthread_db
8586         as "info auto-load libthread-db".
8587         * main.c (captured_main): Rename gdbpy_global_auto_load to
8588         global_auto_load.  Initialize AUTO_LOAD_LOCAL_GDBINIT_PATHNAME and
8589         AUTO_LOAD_LOCAL_GDBINIT_LOADED.
8590         (print_gdb_help): Extend the help for 'local init file'.
8591         * python/py-auto-load.c: Remove a comment about gdb scripts extension.
8592         (GDBPY_AUTO_SECTION_NAME): Extend the comment it is Python specific.
8593         (auto_load_scripts): Rename to ...
8594         (auto_load_python_scripts): ... here, update the comment.
8595         (gdbpy_load_auto_script_for_objfile): New declaration.
8596         (show_auto_load_python_scripts, script_language_python)
8597         (gdbpy_load_auto_script_for_objfile): New.
8598         (source_section_scripts): Refactor the code.
8599         (load_auto_scripts_for_objfile): Rename to ...
8600         (gdbpy_load_auto_scripts_for_objfile): ... here, update the
8601         auto_load_objfile_script caller, drop GDBPY_GLOBAL_AUTO_LOAD checking.
8602         (info_auto_load_python_scripts): New.
8603         (gdbpy_initialize_auto_load): New variables cmd and cmd_name.
8604         Rename "set auto-load-scripts" to "set auto-load python-scripts".
8605         Register "set auto-load-scripts" as its deprecated alias.  Register
8606         "info auto-load python-scripts".  Register "info auto-load-scripts" as
8607         its deprecated alias.
8608         (load_auto_scripts_for_objfile): Rename to ...
8609         (gdbpy_load_auto_scripts_for_objfile): ... here.
8610         * python/python.h (load_auto_scripts_for_objfile): Rename to ...
8611         (gdbpy_load_auto_scripts_for_objfile): ... here.
8612
8613 2012-04-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
8614
8615         auto-load: Move files.
8616         * Makefile.in (SFILES): Add auto-load.c.
8617         (HFILES_NO_SRCDIR): Add auto-load.h.
8618         (COMMON_OBS): Add auto-load.o.
8619         (distclean): Change .gdbinit for gdb-gdb.gdb.
8620         * auto-load.c: New file, with parts from python/py-auto-load.c.
8621         * auto-load.h: New file, with parts from python/python.h.
8622         * configure: Regenerate.
8623         * configure.ac (AC_OUTPUT): Change .gdbinit for gdb-gdb.gdb.
8624         * gdb-gdb.gdb.in: New file, renamed from gdbinit.in.
8625         * gdbinit.in: Remove file, rename it to gdb-gdb.gdb.in.
8626         * main.c: Include auto-load.h.
8627         * python/py-auto-load.c: Move include filenames.h, gdb_regex.h,
8628         command.h, observer.h and progspace.h to auto-load.c.  Add include
8629         auto-load.h.
8630         (gdbpy_global_auto_load, struct auto_load_pspace_info)
8631         (struct loaded_script, auto_load_pspace_data)
8632         (auto_load_pspace_data_cleanup, get_auto_load_pspace_data)
8633         (hash_loaded_script_entry, eq_loaded_script_entry)
8634         (init_loaded_scripts_info, get_auto_load_pspace_data_for_loading)
8635         (maybe_add_script): Move to auto-load.c.
8636         (source_section_scripts): Change maybe_add_script parameters passing,
8637         use script_not_found_warning_print.
8638         (clear_section_scripts, auto_load_objfile_script)
8639         (auto_load_new_objfile, loaded_script_ptr)
8640         (DEF_VEC_P (loaded_script_ptr), collect_matching_scripts, print_script)
8641         (sort_scripts_by_name, info_auto_load_scripts): Move to auto-load.c.
8642         (gdbpy_initialize_auto_load): Move auto_load_pspace_data,
8643         auto_load_new_objfile and info_auto_load_scripts initizations to
8644         auto-load.c.
8645         * python/python.h (gdbpy_global_auto_load): Move to auto-load.h.
8646
8647 2012-04-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
8648
8649         Code cleanup.
8650         * charset.c (find_charset_names): Remove variables ix and elt.
8651         Use free_char_ptr_vec.
8652         * elfread.c (build_id_to_debug_filename): New variables debugdir_vec,
8653         back_to and ix.  Use dirnames_to_char_ptr_vec.  Remove variable
8654         debugdir_end.  New variable debugdir_len.
8655         * gdb_vecs.h (free_char_ptr_vec, make_cleanup_free_char_ptr_vec)
8656         (dirnames_to_char_ptr_vec_append, dirnames_to_char_ptr_vec): New
8657         declarations.
8658         * progspace.c (clear_program_space_solib_cache): Remove variables ix
8659         and elt.  Use free_char_ptr_vec.
8660         * source.c (add_path): Remove variables argv, arg and argv_index.
8661         New variables dir_vec, back_to, ix and name.
8662         Use dirnames_to_char_ptr_vec_append.  Use freeargv instead of
8663         make_cleanup_freeargv.  Remove variable separator.  Simplify the code
8664         no longer expecting DIRNAME_SEPARATOR.
8665         (openp): Remove variable p, p1 and len.  New variables dir_vec,
8666         back_to, ix and dir.  Use dirnames_to_char_ptr_vec.  Simplify the code
8667         no longer expecting DIRNAME_SEPARATOR.
8668         * symfile.c (find_separate_debug_file): New variables debugdir_vec,
8669         back_to and ix.  Use dirnames_to_char_ptr_vec.  Remove variable
8670         debugdir_end.
8671         * utils.c (free_char_ptr_vec, do_free_char_ptr_vec)
8672         (make_cleanup_free_char_ptr_vec, dirnames_to_char_ptr_vec_append)
8673         (dirnames_to_char_ptr_vec): New functions.
8674
8675 2012-04-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
8676
8677         Code cleanup.
8678         * source.c (add_path): Remove always true conditional 'p == 0' and
8679         unindent its code block.
8680
8681 2012-04-17  Pedro Alves  <palves@redhat.com>
8682
8683         * gdbtypes.h (FIELD_BITPOS): Rename to ...
8684         (FIELD_BITPOS_LVAL): ... this.
8685         (FIELD_BITPOS): New.
8686         (SET_FIELD_BITPOS): Adjust to use FIELD_BITPOS_LVAL.
8687         * dwarf2read.c (dwarf2_add_field): Use SET_FIELD_BITPOS.
8688         * gdbtypes.c (append_composite_type_field_aligned): Adjust to use
8689         SET_FIELD_BITPOS.
8690         * gnu-v3-abi.c (build_gdb_vtable_type): Adjust to use
8691         SET_FIELD_BITPOS.
8692         * stabsread.c (read_cpp_abbrev, read_one_struct_field)
8693         (read_baseclasses): Adjust to use SET_FIELD_BITPOS.
8694         * target-descriptions.c (tdesc_gdb_type): Adjust to use
8695         SET_FIELD_BITPOS.
8696
8697 2012-04-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
8698
8699         Do not rely on FIELD_LOC_KIND_BITPOS being zero.
8700         * ada-lang.c (ada_template_to_fixed_record_type_1): Replace
8701         TYPE_FIELD_BITPOS used as lvalue by SET_FIELD_BITPOS.
8702         * gdbtypes.c (append_flags_type_flag): Likewise, twice.
8703         * jv-lang.c (java_link_class_type): Likewise, once.
8704         * stabsread.c (read_enum_type): Likewise.
8705
8706 2012-04-16  Yao Qi  <yao@codesourcery.com>
8707
8708         * common/agent.c (agent_run_command): Add one more parameter `len'.
8709         Update callers.
8710         * common/agent.h: Update declaration.
8711         * linux-nat.c (linux_child_static_tracepoint_markers_by_strid):
8712         Update.
8713         (linux_child_static_tracepoint_markers_by_strid): Ditto.
8714
8715 2012-04-14  Anton Gorenkov <xgsa@yandex.ru>
8716
8717         PR mi/13393
8718         * value.c (value_actual_type): New function.
8719         * value.h (value_actual_type): New declaration.
8720         * varobj.c (update_type_if_necessary): New function.
8721         (varobj_create): Call value_actual_type instead of
8722         value_type.
8723         (install_dynamic_child): distinct changed and type changed MI variable
8724         objects.
8725         (update_dynamic_varobj_children): Updated for install_dynamic_child
8726         change.  All callers updated.
8727         (varobj_update): Support for MI variable object type change if
8728         the value changed and RTTI is used to determine the type.
8729         (create_child_with_value): Call value_actual_type instead of
8730         value_type.
8731         (adjust_value_for_child_access): Extended with a new parameter which
8732         specify whether the given value should be casted to enclosing type.
8733         All callers updated.
8734
8735 2012-04-14  Yao Qi  <yao@codesourcery.com>
8736
8737         Import gnulib module inttypes from git
8738         (250b80067c1e1d8faa0c42fb572f721975b929c5)
8739         * Makefile.in (HFILES_NO_SRCDIR): Add gnulib/inttypes.in.h.
8740         (aclocal_m4_deps): Add gnulib/m4/inttypes.m4 and
8741         gnulib/m4/inttypes-pri.m4
8742         * aclocal.m4, config.in, configure: Regenerated.
8743         * gnulib/Makefile.am: Update.
8744         * gnulib/Makefile.in: Update.
8745         * gnulib/m4/gnulib-cache.m4: Update.
8746         * gnulib/m4/gnulib-comp.m4: Update.
8747         * gnulib/inttypes.in.h: New.
8748         * gnulib/m4/inttypes-pri.m4: New.
8749         * gnulib/m4/inttypes.m4: New.
8750
8751 2012-04-13  Luis Machado  <lgustavo@codesourcery.com>
8752
8753         * infrun.c (resume): Update PC address to the real PC after
8754         preparing to do displaced stepping.
8755
8756 2012-04-12  Doug Evans  <dje@google.com>
8757
8758         * dwarf2read.c (lookup_signatured_type): Remove arg "objfile", unused.
8759         All callers updated.
8760
8761 2012-04-12  Mark Kettenis  <kettenis@gnu.org>
8762
8763         * i386bsd-nat.c (_initialize_i386bsd_nat): Add missing prototype.
8764
8765 2012-04-12  Doug Evans  <dje@google.com>
8766
8767         * dwarf2read.c (create_all_type_units): Renamed from
8768         create_debug_types_hash_table.  All callers updated.
8769
8770         * dwarf2read.c (create_signatured_type_table_from_index): Rename
8771         local type_sig to sig_type, type_offset to type_offset_in_tu.
8772         (hash_signatured_type): Renamed from hash_type_signature,
8773         all callers updated.
8774         (eq_signatured_type): Renamed from eq_type_signature,
8775         all callers updated.
8776         (create_debug_types_hash_table): Rename local type_sig to sig_type.
8777         (process_enumeration_scope): Ditto.
8778         (lookup_signatured_type_at_offset): Ditto.
8779         (load_full_type_unit, read_signatured_type): Ditto.
8780
8781 2012-04-12  Yao Qi  <yao@codesourcery.com>
8782
8783         * remote.c (async_remote_interrupt): Correct function name in
8784         debug message.
8785         (async_remote_interrupt_twice): Ditto.
8786
8787 2012-04-11  Yuanhui Zhang  <asmwarrior@gmail.com>
8788
8789         * source.c (find_and_open_source): Consistently pass resulting
8790         full path through xfullpath.
8791
8792 2012-04-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
8793
8794         Provide more specific displaced-stepping memory error message.
8795         * infrun.c (displaced_step_prepare): New variable status.  Call
8796         target_read_memory instead of read_memory, provide more specific
8797         error message.
8798
8799 2012-04-11  Tristan Gingold  <gingold@adacore.com>
8800
8801         PR gdb/13901
8802         * darwin-nat.c (darwin_execvp): Revert previous patch.
8803
8804 2012-04-11  Tristan Gingold  <gingold@adacore.com>
8805
8806         PR gdb/13901
8807         * darwin-nat.c (darwin_resume_thread): Call darwin_set_sstep only
8808         in case of change.
8809
8810 2012-04-11  Tristan Gingold  <gingold@adacore.com>
8811
8812         * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Fix
8813         warning.
8814
8815 2012-04-11  Siva Chandra Reddy  <sivachandra@google.com>
8816
8817         New command 'explore' which helps explore values and types in
8818         scope.
8819         * NEWS: Add an entry about the new 'explore' command.
8820         * data-directory/Makefile.in: Add gdb/command/explore.py
8821         * python/lib/gdb/command/explore.py: Implemention of the 'explore'
8822         command using the GDB Python API.
8823
8824 2012-04-10  Maciej W. Rozycki  <macro@codesourcery.com>
8825
8826         * mips-tdep.c (mips_skip_pic_trampoline_code): Correct sign
8827         extension in jump target calculation.
8828
8829 2012-04-10  Maciej W. Rozycki  <macro@codesourcery.com>
8830
8831         * mips-tdep.c (mips32_next_pc): Handle JALX.
8832
8833 2012-04-10  Yao Qi  <yao@codesourcery.com>
8834
8835         * Makefile.in (gnulib/Makefile): Remove duplicated dependency.
8836
8837 2012-04-10  Yao Qi  <yao@codesourcery.com>
8838
8839         * Makefile.in (aclocal_m4_deps): Add gnulib/m4/gnulib-cache.m4
8840         and gnulib/m4/gnulib-tool.m4.
8841
8842 2012-04-10  Doug Evans  <dje@google.com>
8843
8844         * dwarf2read.c (dwarf2_per_cu_data). Clarify comment.
8845         (load_partial_dies): Clarify comment.
8846         (find_partial_die): Support rereading type units.
8847         Clarify CU handling, if we know offset is in CU, don't search for the
8848         containing CU.  Add comment regarding memory waste.
8849
8850 2012-04-10  H.J. Lu  <hongjiu.lu@intel.com>
8851
8852         * features/Makefile (WHICH): Add i386/x32, i386/x32-linux,
8853         i386/x32-avx and i386/x32-avx-linux.
8854         (i386/x32-expedite): New.
8855         (i386/x32-linux-expedite): Likewise.
8856         (i386/x32-avx-expedite): Likewise.
8857         (i386/x32-avx-linux-expedite): Likewise.
8858         ($(outdir)/i386/x32.dat): Likewise.
8859         ($(outdir)/i386/x32-linux.dat): Likewise.
8860         ($(outdir)/i386/x32-avx.dat): Likewise.
8861         ($(outdir)/i386/x32-avx-linux.dat): Likewise.
8862
8863         * features/i386/x32-avx-linux.xml: New file.
8864         * features/i386/x32-avx.xml: Likewise.
8865         * features/i386/x32-core.xml: Likewise.
8866         * features/i386/x32-linux.xml: Likewise.
8867         * features/i386/x32.xml: Likewise.
8868
8869         * features/i386/x32-avx-linux.c: New.  Generated.
8870         * features/i386/x32-avx.c: Likewise.
8871         * features/i386/x32-linux.c: Likewise.
8872         * features/i386/x32.c: Likewise.
8873         * regformats/i386/x32-avx-linux.dat: Likewise.
8874         * regformats/i386/x32-avx.dat: Likewise.
8875         * regformats/i386/x32-linux.dat: Likewise.
8876         * regformats/i386/x32.dat: Likewise.
8877
8878 2012-04-10  Tristan Gingold  <gingold@adacore.com>
8879
8880         * darwin-nat.c (darwin_kill_inferior): Always use the no ptrace
8881         code to kill the inferior.
8882
8883 2012-04-09  Mark Kettenis  <kettenis@gnu.org>
8884
8885         * ada-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
8886         defines.
8887         * c-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
8888         defines.
8889         * cp-name-parser.y (yyss, yysslim, yyssp, yystacksize, yyvs)
8890         (yyvsp): New defines.
8891         * f-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
8892         defines.
8893         * jv-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
8894         defines.
8895         * m2-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
8896         defines.
8897         * objc-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
8898         defines.
8899         * p-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
8900         defines.
8901
8902 2012-04-09  Mark Kettenis  <kettenis@gnu.org>
8903
8904         * sparc64-tdep.c (sparc64_store_arguments)
8905         (sparc64_store_arguments): Fix coding style.
8906
8907 2012-04-07  Mark Kettenis  <kettenis@gnu.org>
8908
8909         * sparc64-tdep.c (sparc64_store_arguments): Fix handling of
8910         complex floats, adjust some related comments and tighten a related
8911         assertion.
8912         (sparc64_extract_return_value): Handle complex floats.
8913
8914 2012-04-07  Doug Evans  <dje@google.com>
8915
8916         * dwarf2read.c (load_partial_dies): Change condition to assert.
8917
8918 2012-04-06  Doug Evans  <dje@google.com>
8919
8920         * amd64-tdep.c (amd64_analyze_prologue): Recognize both variations of
8921         "mov %rsp,%rbp".
8922
8923 2012-04-05  Kevin Buettner  <kevinb@redhat.com>
8924
8925         * v850-tdep.c (E_NUM_OF_V850_REGS, E_NUM_OF_V850E_REGS): Fix
8926         fencepost error.
8927         (v850_frame_cache): Use gdbarch_num_regs() instead of E_NUM_REGS.
8928         (v850_gdbarch_init): Set `num_regs' as appropriate for the
8929         architecture.
8930
8931 2012-04-05  Keith Seitz  <keiths@redhat.com>
8932
8933         * linespec.c (decode_compound): Remove.
8934         (enum offset_relative_sign): New enum.
8935         (struct line_offset): New struct.
8936         (struct linespec): New struct.
8937         (struct linespec_state): Move file_symtabs,
8938         user_filename, and user_function into struct linespec.
8939         Make result an anonymous struct holding vectors of
8940         symbolp and minsym_and_objfile_d.
8941         Add language member.
8942         (enum ls_token_type): New enum.
8943         (linespec_keywords): New array.
8944         (struct ls_token): New struct.
8945         (struct ls_parser): New struct.
8946         (linespec_lexer_lex_number): New function.
8947         (linespec_lexer_lex_keyword): New function.
8948         (is_ada_operator): New function.
8949         (skip_quote_char): New function.
8950         (copy_token_string): New function.
8951         (is_closing_quote_enclosed): New function.
8952         (find_parameter_list_end): New function.
8953         (linespec_lexer_lex_string): New function.
8954         (linespec_lexer_lex_one): New function.
8955         (linespec_lexer_consume_token): New function.
8956         (linespec_lexer_peek_token): New function.
8957         (cplusplus_error): Remove unused function.
8958         (find_methods): Update comment.
8959         (find_toplevel_char): Return const.
8960         (is_objc_method_format): Remove unused function.
8961         (find_toplevel_string): New function.
8962         (is_linespec_boundary): Remove.
8963         (symbol_not_found_error): New function.
8964         (find_method_overload_end): Remove function.
8965         (unexpected_linespec_error): New function.
8966         (keep_name_info): Remove.
8967         (linespec_parse_line_offset): New function.
8968         (linespec_parse_basic): New function.
8969         (canonicalize_linespec): New function.
8970         (decode_line_internal): Remove.
8971         (create_sals_line_offset): New function adapted from
8972         decode_all_digits.
8973         (convert_linespec_to_sals): New function.
8974         (parse_linespec): New function.
8975         (linespec_parser_new): New function.
8976         (linespec_state_destructor): Change parameter type to
8977         struct linespec_state *.
8978         Add language parameter.
8979         Remove freeing of moved members.
8980         (linespec_parser_delete): New function.
8981         (decode_line_full): Use parse_linespec and linespec_parser_new.
8982         (decode_line_1): Likewise.
8983         (decode_indirect): Rename to ...
8984         (linespec_expression_to_pc): ... this and rewrite
8985         to simply find CORE_ADDR, storing this result for later
8986         conversion to SALs.
8987         (locate_first_half): Remove.
8988         (deocde_objc): Add parameter LS.
8989         Initialize new struct collect_info members.
8990         Handle minimal symbols, too.
8991         (decode_compound): Delete.
8992         (lookup_prefix_sym): Rewrite.
8993         (compare_msymbols): New function.
8994         (find_method): Rewrite.
8995         Do not call cplusplus_error.
8996         (symtabs_from_filename): Rewrite.
8997         (collect_function_symbols): Delete.
8998         (find_function_symbols): Rewrite without ARGPTR-style
8999         processing.
9000         (decode_all_digits): Delete. (Rewritten as create_sals_line_offset.)
9001         (decode_dollar): Adapted and renamed to ...
9002         (linespec_parse_variable): ... this.
9003         (find_linespec_symbols): New function.
9004         (decode_label): Adapted and renamed to ...
9005         (find_label_symbols): ... this.
9006         (decode_digits_list_mode): Add and use LS argument.
9007         (decode_digits_ordinary): Likewise.
9008         (collect_symbols): Do not collect SALs, just symbols and msymbols.
9009         If in list mode, allow any symbol class.  Otherwise, only
9010         permit LOC_BLOCK symbols.
9011         (minsym_found): Update comments.
9012         (search_minsyms_for_name): Do not convert the matching symbol
9013         into a SAL.  Simply push the symbol and objfile into the
9014         result vector.
9015         (decode_variable): Delete. Contents adapted into
9016         find_linespec_symbols.
9017
9018         * cp-support.c (SKIP_SPACE): Remove.
9019         (operator_tokens): Remove unused global.
9020         (cp_validate_operator): Remove.
9021         * cp-support.h (cp_validate_operator): Remove declaration.
9022
9023 2012-04-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
9024
9025         * cp-valprint.c (cp_print_value_fields): Check valprint_check_validity
9026         for TYPE_VPTR_FIELDNO.
9027         * valprint.c (valprint_check_validity): Make it global, move the
9028         function comment ...
9029         * value.h (valprint_check_validity): ... to this new declaration.
9030
9031 2012-04-02  Tristan Gingold  <gingold@adacore.com>
9032
9033         * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Use
9034         the STATE32 api for i386 state.
9035         (i386_darwin_store_inferior_registers): Likewise.
9036
9037 2012-04-02  Tristan Gingold  <gingold@adacore.com>
9038
9039         * i386-darwin-tdep.c (i386_darwin_thread_state_reg_offset): Fix
9040         SS offset.
9041         * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Fix
9042         format_string.
9043
9044 2012-04-02  Tristan Gingold  <gingold@adacore.com>
9045
9046         PR gdb/13901
9047         * darwin-nat.c (darwin_execvp): Set binary preference.
9048
9049 2012-04-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
9050
9051         * NEWS (set breakpoint condition-evaluation): Use imperative mood.
9052
9053 2012-03-30  Tom Tromey  <tromey@redhat.com>
9054
9055         * python/python.c (gdbpy_decode_line): Move cleanup creation out
9056         of TRY_CATCH.  Fix error handling.
9057         * python/py-value.c (convert_value_from_python): Move 'old'
9058         declaration to innermost scope.
9059
9060 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
9061             Andrey Smirnov  <andrew.smirnov@gmail.com>
9062
9063         -Wshadow warning fix.
9064         * ada-lang.c (ada_make_symbol_completion_list): Rename parameters
9065         "wild_match" and "encoded" into "wild_match_p" and "encoded_p".
9066         Adjust code accordingly.
9067
9068 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
9069
9070         * ada-lang.c (symbol_completion_add): Rename parameter
9071         "encoded" into "encoded_p".  Ajust code and documentation
9072         accordingly.
9073
9074 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
9075             Andrey Smirnov  <andrew.smirnov@gmail.com>
9076
9077         -Wshadow warning fix.
9078         * ada-lang.c (symbol_completion_add): Rename parameter
9079         "wild_match" into wild_match_p.  Update code and documentation
9080         accordingly.
9081
9082 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
9083
9084         * ada-lang.c (symbol_completion_match): Rename parameter
9085         "encoded" into "encoded_p".  Ajust code and documentation
9086         accordingly.
9087
9088 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
9089             Andrey Smirnov  <andrew.smirnov@gmail.com>
9090
9091         -Wshadow warning fix.
9092         * ada-lang.c (symbol_completion_match): Rename parameter
9093         "wild_match" into "wild_match_p".  Adjust code and function
9094         documentation accordingly.
9095
9096 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
9097             Andrey Smirnov  <andrew.smirnov@gmail.com>
9098
9099         -Wshadow warning fix.
9100         * ada-lang.c (ada_lookup_encoded_symbol): Rename parameter
9101         "symbol_info" into "info".  Adjust code accordingly.
9102         (ada_lookup_symbol): Likewise.
9103
9104 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
9105
9106         * ada-lang.c (ada_lookup_symbol_list): Minor reformatting
9107         of this function's documentation.
9108
9109 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
9110             Andrey Smirnov  <andrew.smirnov@gmail.com>
9111
9112         -Wshadow warning fix.
9113         * ada-lang.c (ada_lookup_symbol_list): Rename "wild_match"
9114         variable into "wild_match_p".  Adjust code accordingly.
9115
9116 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
9117             Andrey Smirnov  <andrew.smirnov@gmail.com>
9118
9119         -Wshadow warning fix.
9120         * ada-lang.c (ada_add_local_symbols): Rename "wild_match"
9121         parameter into "wild_match_p".  Adjust code accordingly.
9122         Document this parameter in the function description.
9123
9124 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
9125             Andrey Smirnov  <andrew.smirnov@gmail.com>
9126
9127         -Wshadow warning fix.
9128         * ada-lang.c (add_symbols_from_enclosing_procs): Rename
9129         "wild_match" parameter to "wild_match_p" (-Wshadow).
9130
9131 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
9132
9133         * ada-lang.c (ada_lookup_simple_minsym): Remove trailing spaces
9134         in function documentation.
9135
9136 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
9137             Andrey Smirnov  <andrew.smirnov@gmail.com>
9138
9139         -Wshadow warning fix.
9140         * ada-lang.c (ada_lookup_simple_minsym): Rename wild_match local
9141         variable into wild_match_p.  Adjust code accordingly.
9142
9143 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
9144             Andrey Smirnov  <andrew.smirnov@gmail.com>
9145
9146         * ada-valprint.c (ada_val_print_1): Move the code handling
9147         TYPE_CODE_ENUM inside its own lexical block.  Declare
9148         variables len and val there, instead of in the function's
9149         top level block.  Avoid declaring deref_val again in a way
9150         that shadows another variable of the same name declared
9151         in one of the up-level blocks.  Just re-use the up-level
9152         variable instead.
9153
9154 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
9155
9156         * ada-lang.c (ada_lookup_encoded_symbol): Now returns void.
9157         Replace block_found argument by symbol_info.  Adjust
9158         implementation accordingly.  Add function documentation.
9159         (ada_lookup_symbol): Adjust to new ada_lookup_encoded_symbol.
9160         Fix documentation.
9161         * ada-lang.h (ada_lookup_encoded_symbol): Update declaration.
9162         * ada-exp.y (write_object_renaming): Adjust to new
9163         ada_lookup_encoded_symbol API.
9164
9165 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
9166
9167         * ada-lang.h (struct ada_symbol_info): Reformat.  Improve
9168         documentation.
9169
9170 2012-03-28  Rathish C  <rathish.c@kpitcummins.com>
9171
9172         * v850-tdep.c: Add the enum values for mpu and fpu registers.
9173         (v850_register_name): Add the mpu and fpu register names.
9174         (v850e_register_name): Add the mpu and fpu register names.
9175         (v850e2_register_name): New function.
9176         (v850_gdbarch_init): Add case for bfd_mach_v850e2 and
9177         bfd_mach_v850e2v3.
9178
9179 2012-03-28  Joel Brobecker  <brobecker@adacore.com>
9180
9181         * NEWS: Add entry for Ada varobj support.
9182
9183 2012-03-28  Joel Brobecker  <brobecker@adacore.com>
9184
9185         * varobj.c (default_value_is_changeable_p): New function,
9186         extracted from varobj_value_is_changeable_p.  Add declaration.
9187         (ada_value_is_changeable_p): New function, extracted from
9188         varobj_value_is_changeable_p.  Add declaration.
9189         (struct language_specific): New field "value_is_changeable_p".
9190         (languages): Add entries for new field.
9191         (varobj_create): Set language before calling install_new_value.
9192         (varobj_value_is_changeable_p): Reimplement to call the varobj's
9193         "value_is_changeable_p" language callback.
9194
9195 2012-03-28  Joel Brobecker  <brobecker@adacore.com>
9196
9197         * ada-varobj.h, ada-varobj.c: New files.
9198         * Makefile.in (SFILES): Add ada-varobj.c.
9199         (HFILES_NO_SRCDIR): Add ada-varobj.h.
9200         (COMMON_OBS): Add ada-varobj.o.
9201
9202 2012-03-28  Joel Brobecker  <brobecker@adacore.com>
9203
9204         * varobj.c (ada_value_has_mutated): Add declaration.  New function.
9205         (struct language_specific): New field "value_has_mutated".
9206         (languages): Set field "value_has_mutated" in each entry of array.
9207         (varobj_value_has_mutated): New function.
9208         (varobj_udpdate): Add handling of type mutation.
9209         (value_of_root): Add handling of type mutation.
9210         (ada_value_has_mutated): New function.
9211
9212 2012-03-28  Pedro Alves  <palves@redhat.com>
9213
9214         * ia64-linux-nat.c (supply_fpregset, ia64_linux_fetch_register):
9215         Always supply $fr0 as 0.0 and $fr1 as 1.0.
9216
9217 2012-03-28  Tom Tromey  <tromey@redhat.com>
9218
9219         * python/py-inferior.c (infpy_read_memory): Remove cleanups and
9220         explicitly free 'buffer' on exit paths.  Decref 'membuf_object'
9221         before returning.
9222
9223 2012-03-28  Tom Tromey  <tromey@redhat.com>
9224
9225         * .dir-locals.el: New file.
9226
9227 2012-03-28  Pedro Alves  <palves@redhat.com>
9228
9229         * ia64-linux-nat.c (u_offsets): Map IA64_EC_REGNUM to PT_AR_EC.
9230
9231 2012-03-28  Joel Brobecker  <brobecker@adacore.com>
9232
9233         * ia64-linux-nat.c (ia64_linux_fetch_register): Add special
9234         handling for r0.
9235
9236 2012-03-27  Pedro Alves  <palves@redhat.com>
9237
9238         Eliminate struct ui_stream.
9239
9240         * ui-out.h (struct ui_stream): Delete.
9241         (ui_out_field_stream): Adjust prototype.
9242         (ui_out_stream_new, ui_out_stream_delete)
9243         (make_cleanup_ui_out_stream_delete): Delete declarations.
9244         * ui-out.c (ui_out_field_stream): Change prototype to take a
9245         ui_file instead of a ui_stream.  Adjust.
9246         (ui_out_stream_new, ui_out_stream_delete, do_stream_delete)
9247         (make_cleanup_ui_out_stream_delete): Delete.
9248         * breakpoint.c (print_breakpoint_location)
9249         (print_one_detail_ranged_breakpoint, print_it_watchpoint): Use
9250         ui_file/mem_fileopen instead of ui_stream/ui_out_stream_new.
9251         * disasm.c (dump_insns): Ditto.
9252         (do_mixed_source_and_assembly, do_assembly_only): Adjust
9253         prototype.
9254         (gdb_disassembly): Use ui_file/mem_fileopen instead of
9255         ui_stream/ui_out_stream_new.
9256         * infcmd.c (print_return_value): Ditto.
9257         * osdata.c (info_osdata_command): Don't allocate a local
9258         ui_stream.
9259         * stack.c (print_frame_arg, print_frame_args, print_frame): Use
9260         ui_file/mem_fileopen instead of ui_stream/ui_out_stream_new.
9261         * tracepoint.c (print_one_static_tracepoint_marker): Don't
9262         allocate a local ui_stream.
9263         * mi/mi-cmd-stack.c (list_arg_or_local): Use ui_file/mem_fileopen
9264         instead of ui_stream/ui_out_stream_new.
9265         (list_args_or_locals): Don't allocate a local ui_stream.
9266         * mi/mi-main.c (get_register, mi_cmd_data_evaluate_expression)
9267         (mi_cmd_data_read_memory): Use ui_file/mem_fileopen instead of
9268         ui_stream/ui_out_stream_new.
9269         * cli/cli-setshow.c (do_setshow_command): Ditto.
9270
9271 2012-03-27  Oza Pawandeep  <oza.pawandeep@gmail.com>
9272
9273         * arm-linux-tdep.c (arm_linux_init_abi): Call
9274         set_gdbarch_process_record.  Initialize `arm_swi_record' field.
9275         * arm-tdep.c (arm_process_record): New function.
9276         (deallocate_reg_mem): New function.
9277         (decode_insn): New function.
9278         (thumb_record_branch): New function.
9279         (thumb_record_ldm_stm_swi(): New function.
9280         (thumb_record_misc): New function.
9281         (thumb_record_ld_st_stack): New function.
9282         (thumb_record_ld_st_imm_offset): New function.
9283         (thumb_record_ld_st_reg_offset(): New function.
9284         (thumb_record_add_sub_cmp_mov): New function.
9285         (thumb_record_shift_add_sub): New function.
9286         (arm_record_coproc_data_proc): New function.
9287         (arm_record_coproc): New function.
9288         (arm_record_b_bl): New function.
9289         (arm_record_ld_st_multiple): New function.
9290         (arm_record_ld_st_reg_offset): New function.
9291         (arm_record_ld_st_imm_offset): New function.
9292         (arm_record_data_proc_imm): New function.
9293         (arm_record_data_proc_misc_ld_str): New function.
9294         (arm_record_extension_space): New function.
9295         (arm_record_strx): New function.
9296         (sbo_sbz): New function.
9297         (struct insn_decode_record): New structure for arm insn record.
9298         (REG_ALLOC): New macro for reg allocations.
9299         (MEM_ALLOC): New macro for memory allocations.
9300         * arm-tdep.h (struct gdbarch_tdep): New field 'arm_swi_record'.
9301
9302 2012-03-27  Andreas Schwab  <schwab@linux-m68k.org>
9303
9304         * m68klinux-nat.c (fetch_register): Fix strict-aliasing violation.
9305         (store_register): Likewise.
9306
9307 2012-03-26  Oza Pawandeep  <oza.pawandeep@gmail.com>
9308
9309         * MAINTAINERS (Write After Approval): Add myself to the list.
9310
9311 2012-03-25  Jan Kratochvil  <jan.kratochvil@redhat.com>
9312
9313         * NEWS (set breakpoint condition-evaluation): Change "gdb" to "host".
9314         Describe also the option "auto".
9315
9316 2012-03-22  Richard Henderson  <rth@redhat.com>
9317
9318         * sparc-linux-nat.c (_initialize_sparc_linux_nat): Fix prototype.
9319         * sparc-nat.c (sparc_xfer_wcookie): Make static.
9320
9321 2012-03-22  Richard Henderson  <rth@redhat.com>
9322
9323         * jit.c (jit_read_code_entry): Compute alignment and offset of
9324         int64_t member before computing entry_size.
9325
9326 2012-03-22  Siva Chandra Reddy  <sivachandra@google.com>
9327
9328         Python scripting: Add new method Value.referenced_value to
9329         gdb.Value which can dereference pointer as well as reference
9330         values.
9331         * NEWS: Add entry under 'Python scripting' about the new method
9332         Value.referenced_value on gdb.Value objects.
9333         * python/py-value.c (valpy_referenced_value): New function
9334         defining a new method on gdb.Value objects which can dereference
9335         pointer and reference values.
9336
9337 2012-03-22  Siva Chandra Reddy  <sivachandra@google.com>
9338
9339         * MAINTAINERS (Write After Approval): Add myself to the list.
9340
9341 2012-03-21  Kevin Buettner  <kevinb@redhat.com>
9342
9343         * symtab.c (skip_prologue_sal): Change test to check for "main()"
9344         in addition to "main".
9345
9346 2012-03-21  Joel Brobecker  <brobecker@adacore.com>
9347
9348         * expression.h (op_name): Add declaration.
9349         * expprint.c (op_name): Remove declaration.  Make non-static.
9350         * ax-gdb.c (gen_expr): Use op_name instead of op_string.
9351
9352 2012-03-21  Thomas Schwinge  <thomas@codesourcery.com>
9353
9354         * amd64-linux-nat.c (amd64_linux_siginfo_fixup): Use siginfo_t instead
9355         of struct siginfo.
9356         * arm-linux-nat.c (arm_linux_stopped_data_address): Likewise.
9357         * ia64-linux-nat.c (ia64_linux_stopped_data_address): Likewise.
9358         * linux-nat.c (linux_nat_siginfo_fixup, siginfo_fixup)
9359         (linux_xfer_siginfo, linux_nat_set_siginfo_fixup)
9360         (linux_nat_get_siginfo): Likewise.
9361         * linux-nat.h (struct lwp_info, linux_nat_set_siginfo_fixup)
9362         (linux_nat_get_siginfo): Likewise.
9363         * linux-tdep.c (linux_get_siginfo_type): Likewise.
9364         * ppc-linux-nat.c (ppc_linux_stopped_data_address): Likewise.
9365         * procfs.c (gdb_siginfo_t): Likewise.
9366
9367 2012-03-21  Mike Frysinger  <vapier@gentoo.org>
9368
9369         * .gitignore: Ignore more files.
9370
9371 2012-03-20  Pedro Alves  <palves@redhat.com>
9372
9373         * remote.c (remote_start_remote): Clear `rs->starting_up' on early
9374         returns.
9375
9376 2012-03-20  Yao Qi  <yao@codesourcery.com>
9377
9378         * amd64-tdep.c (amd64_displaced_step_copy_insn): Complete missing "}" in
9379         comment.
9380
9381 2012-03-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
9382
9383         Code cleanupp: Use cu_offset and sect_offset compile time type checking.
9384         * dwarf2expr.c (add_piece, dwarf_get_base_type, execute_stack_op)
9385         (ctx_no_dwarf_call, ctx_no_get_base_type): Use cu_offset and
9386         sect_offset.
9387         * dwarf2expr.h (cu_offset, sect_offset): New types.
9388         (struct dwarf_expr_context_funcs) <dwarf_call>
9389         (struct dwarf_expr_context_funcs) <get_base_type>: Use cu_offset and
9390         sect_offset.
9391         (struct dwarf_expr_context) <len>: Improve the comment.
9392         (struct dwarf_expr_piece, ctx_no_dwarf_call, ctx_no_get_base_type): Use
9393         cu_offset and sect_offset.
9394         * dwarf2loc.c (per_cu_dwarf_call, dwarf_expr_dwarf_call)
9395         (dwarf_expr_get_base_type, needs_frame_dwarf_call)
9396         (dwarf2_compile_expr_to_ax, disassemble_dwarf_expression): Likewise.
9397         * dwarf2loc.h: Include dwarf2expr.h.
9398         (dwarf2_fetch_die_location_block, dwarf2_get_die_type): Use cu_offset
9399         and sect_offset.
9400         * dwarf2read.c (struct dwarf2_per_objfile) <debug_types_type_hash>:
9401         Improve the comment.
9402         (struct comp_unit_head, struct dwarf2_cu, struct dwarf2_per_cu_data)
9403         (struct signatured_type, struct line_header, struct partial_die_info)
9404         (struct die_info, find_partial_die, dwarf2_get_ref_die_offset)
9405         (lookup_signatured_type_at_offset, dwarf2_find_containing_comp_unit)
9406         (get_die_type_at_offset, create_cus_from_index)
9407         (create_signatured_type_table_from_index, dw2_get_file_names)
9408         (offset_in_cu_p, read_comp_unit_head, error_check_comp_unit_head)
9409         (read_and_check_comp_unit_head, read_and_check_type_unit_head)
9410         (create_debug_types_hash_table, process_psymtab_comp_unit)
9411         (load_partial_comp_unit, create_all_comp_units)
9412         (partial_die_parent_scope, partial_die_full_name, skip_one_die)
9413         (load_full_comp_unit, dwarf2_physname, read_import_statement)
9414         (inherit_abstract_dies, read_func_scope, read_call_site_scope)
9415         (dwarf2_add_member_fn, process_enumeration_scope, read_module_type)
9416         (read_typedef, die_hash, die_eq, read_full_die, dwarf2_read_abbrevs)
9417         (load_partial_dies, read_partial_die, find_partial_die_in_comp_unit)
9418         (find_partial_die, read_attribute_value, lookup_die_type)
9419         (dump_die_shallow, store_in_ref_table): Use cu_offset and sect_offset.
9420         (is_ref_attr): New function comment.
9421         (dwarf2_get_ref_die_offset): New function comment, new variable retval.
9422         Use cu_offset and sect_offset.
9423         (follow_die_offset, follow_die_ref, dwarf2_fetch_die_location_block)
9424         (dwarf2_get_die_type, follow_die_sig, lookup_signatured_type_at_offset)
9425         (load_full_type_unit, read_signatured_type, per_cu_header_read_in)
9426         (dwarf2_find_containing_comp_unit, struct dwarf2_offset_and_type)
9427         (offset_and_type_hash, offset_and_type_eq, set_die_type)
9428         (get_die_type_at_offset, partial_die_hash, partial_die_eq)
9429         (write_one_signatured_type, write_psymtabs_to_index): Use cu_offset and
9430         sect_offset.
9431
9432 2012-03-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
9433
9434         Code cleanup.
9435         * python/py-auto-load.c (source_section_scripts): New variable back_to.
9436         Turn fclose and xfree calls into make_cleanup_fclose and make_cleanup
9437         with xfree.
9438         (auto_load_objfile_script): Turn fclose into make_cleanup_fclose.
9439
9440 2012-03-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
9441
9442         * NEWS: Describe new options --init-command=FILE, -ix and
9443         --init-eval-command=COMMAND, -iex.
9444         * main.c (struct cmdarg): New enum items CMDARG_INIT_FILE and
9445         CMDARG_INIT_COMMAND.
9446         (captured_main): New enum items OPT_IX and OPT_IEX.  Add
9447         "init-command", "init-eval-command", "ix" and "iex" to the variable
9448         long_options.  Handle OPT_IX and OPT_IEX.  Process them from CMDARG_VEC.
9449         New comment for CMDARG_FILE and CMDARG_COMMAND processing.
9450         (print_gdb_help): Describe --init-command=FILE, -ix and
9451         --init-eval-command=COMMAND, -iex.
9452
9453 2012-03-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
9454
9455         Code cleanup.
9456         * main.c (struct cmdarg): Move it here from main.  Add more comments.
9457         (cmdarg_s, VEC (cmdarg_s)): New.
9458         (main): Move struct cmdarg from here.  New variables cmdarg_vec and
9459         cmdarg_p.  Remove variables cmdsize and ncmd and their initialization.
9460         Install cleanup for cmdarg_vec.  Update filling for options 'x' and
9461         'X'.  Replace cmdarg processing by cmdarg_vec processing.  Remove xfree
9462         of CMDARG.
9463
9464 2012-03-19  Tom Tromey  <tromey@redhat.com>
9465
9466         * gnu-v3-abi.c (gnuv3_print_vtable): Initialize 'result_vec'.
9467
9468 2012-03-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
9469
9470         PR symtab/13777
9471         * dwarf2read.c (process_full_comp_unit): Set LOCATIONS_VALID only for
9472         GCC >=4.5.
9473
9474 2012-03-16  Chris January  <chris.january@allinea.com>
9475
9476         * tui-tui.win.c (tui_resize_all): Use erase and clearok instead
9477         of clear.
9478
9479 2012-03-16  Chris January  <chris.january@allinea.com>
9480
9481         * source.c (add_path): Use memmove instead of strcpy because the
9482         strings overlap.
9483
9484 2012-03-16  Joel Brobecker  <brobecker@adacore.com>
9485
9486         * value.h (set_value_parent): Add declaration.
9487         * value.c (set_value_parent): New function.
9488         (value_address): If VALUE->PARENT is not NULL, then use it as
9489         the base address instead of VALUE->LOCATION.address.
9490         * ada-lang.c (ada_value_primitive_packed_val): Keep V's address
9491         the same as OBJ's address.  Adjust V's offset accordingly.
9492         Set V's parent.
9493
9494 2012-03-16  Gary Benson  <gbenson@redhat.com>
9495
9496         PR breakpoints/10738
9497         * dwarf2read.c (use_deprecated_index_sections): New global.
9498         (struct partial_die_info): New member may_be_inlined.
9499         (read_partial_die): Set may_be_inlined where appropriate.
9500         (add_partial_subprogram): Add partial symbols for partial
9501         DIEs that may be inlined.
9502         (new_symbol_full): Add inlined subroutines to the current
9503         scope.
9504         (write_psymtabs_to_index): Bump version number.
9505         (dwarf2_read_index): Read only version 6 indices unless
9506         use_deprecated_index_sections is set.
9507         * linespec.c (symbol_and_data_callback): New structure.
9508         (iterate_inline_only): New function.
9509         (iterate_over_all_matching_symtabs): New argument
9510         "include_inline".  If nonzero, also call the callback for
9511         symbols representing inlined subroutines.
9512         (lookup_prefix_sym): Pass extra argument to the above.
9513         (find_function_symbols): Likewise.
9514         (add_matching_symbols_to_info): Likewise.
9515         * NEWS: Mention that GDB can now set breakpoints on inlined
9516         functions.
9517
9518 2012-03-16  Pierre Muller  <muller@ics.u-strasbg.fr>
9519
9520         * p-typeprint.c (pascal_type_print_method_args):
9521         Fix display of parameter of methods.
9522
9523 2012-03-16  Pierre Muller  <muller@ics.u-strasbg.fr>
9524
9525         * amd64-windows-nat.c (_initialize_amd64_windows_nat):
9526         Add missing prototype.
9527
9528 2012-03-16  Yao Qi  <yao@codesourcery.com>
9529             Jan Kratochvil  <jan.kratochvil@redhat.com>
9530
9531         Fix false compilation warning.
9532         * gnu-v3-abi.c (print_one_vtable): Initialize ADDR.
9533
9534 2012-03-15  Jonathan Larmour  <jifl@eCosCentric.com>
9535             Pedro Alves  <pedro@codesourcery.com>
9536
9537         * arm-tdep.c: Include "remote.h" and "features/arm-with-m-fpa-layout.c".
9538         (arm_register_g_packet_guesses): New function.
9539         (arm_gdbarch_init): Don't force a target description with
9540         registers when the executable is detected as M-profile.  Instead
9541         set gdbarch->tdep->is_m.  Register `g' packet guesses.
9542         (_initialize_arm_tdep): Initialize the new target description.
9543         * features/arm-with-m-fpa-layout.xml: New description.
9544         * features/arm-with-m-fpa-layout.c: New, generated.
9545
9546 2012-03-15  Joel Brobecker  <brobecker@adacore.com>
9547
9548         * breakpoint.c (breakpoint_xfer_memory): Add assertion.
9549         Update function description.
9550         (insert_bp_location): Do not wipe bl->target_info out.
9551         * mem-break.c: #include "gdb_string.h".
9552         (default_memory_insert_breakpoint): Do not call target_read_memory
9553         with a pointer to the breakpoint's shadow_contents buffer.  Use
9554         a local buffer instead.
9555         * m32r-tdep.c (m32r_memory_insert_breakpoint): Ditto.
9556
9557 2012-03-15  Tom Tromey  <tromey@redhat.com>
9558
9559         * NEWS: Mention "info vtbl", not "info vtable".
9560         * cp-support.c (info_vtbl_command): Fix comment.
9561         (_initialize_cp_support): Fix text.
9562
9563 2012-03-15  Tom Tromey  <tromey@redhat.com>
9564
9565         * cp-valprint.c (cp_print_value_fields): Use
9566         print_function_pointer_address for vtable slot.
9567
9568 2012-03-15  Tom Tromey  <tromey@redhat.com>
9569
9570         * gnu-v3-abi.c (struct value_and_voffset): New.
9571         (hash_value_and_voffset, eq_value_and_voffset)
9572         (compare_value_and_voffset, compute_vtable_size)
9573         (print_one_vtable, gnuv3_print_vtable): New functions.
9574         (init_gnuv3_ops): Initialize 'print_vtable' field.
9575         * cp-support.c (info_vtbl_command): New function.
9576         (_initialize_cp_support): Add "info vtbl".
9577         * cp-abi.h (cplus_print_vtable): Declare.
9578         (struct cp_abi_ops) <print_vtable>: New field.
9579         * cp-abi.c (cplus_print_vtable): New function.
9580         * NEWS: Update.
9581
9582 2012-03-15  Tom Tromey  <tromey@redhat.com>
9583
9584         * d-lang.c (d_language_defn) <la_iterate_over_symbols>: Set to
9585         iterate_over_symbols.
9586
9587 2012-03-14  Doug Evans  <dje@google.com>
9588
9589         * dwarf2read.c (dwarf_stack_op_name): Add DW_OP_GNU_encoded_addr,
9590         DW_OP_GNU_parameter_ref.
9591
9592 2012-03-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
9593
9594         Fix double prompt of 'interpreter-exec mi'.
9595         * mi/mi-interp.c (mi_execute_command_input_handler): New prototype.
9596         (mi_interpreter_resume): use it.
9597         (mi_execute_command_input_handler): New function.
9598         * mi/mi-main.c (mi_execute_command): Move prompt printing to
9599         mi_execute_command_input_handler.
9600
9601 2012-03-13  Josh Matthews  <josh@joshmatthews.net>  (tiny change)
9602
9603         * darwin-nat-info.c (_initialize_darwin_info_commands): Add
9604         prototype.
9605         (darwin_debug_port_info): Make static.
9606         * darwin-nat.c (_initialize_darwin_inferior): Add prototype.
9607         * machoread.c (_initialize_machoread): Add prototype.
9608         * i386-darwin-nat.c (i386_darwin_dr_set, i386_darwin_dr_get)
9609         (i386_darwin_set_control, i386_darwin_get_control)
9610         i386_darwin_dr_set_addr, i386_darwin_get_addr)
9611         i386_darwin_get_status, i386_darwin_get_control):
9612         Comment out with HW_WATCHPOINT_NOT_YET_ENABLED macro.
9613
9614 2012-03-13  Joel Brobecker  <brobecker@adacore.com>
9615
9616         * ax-gdb.c (gen_usual_unary): Remove special handling of
9617         enum and bool types.
9618
9619 2012-03-13  Joel Brobecker  <brobecker@adacore.com>
9620
9621         * ax-gdb.c (gen_fetch): Add handling for TYPE_CODE_RANGE types.
9622
9623 2012-03-13  Joel Brobecker  <brobecker@adacore.com>
9624
9625         * aix-thread.c (supply_fprs): Make more consistent with fill_fprs.
9626
9627 2012-03-13  Chris January  <chris.january@allinea.com>
9628
9629         * aix-thread.c (fill_sprs): Store the floating point registers
9630         at the correct offsets into vals.
9631
9632 2012-03-13  Doug Evans  <dje@google.com>
9633
9634         * NEWS: Mention symbol-reloading has been deleted.
9635         * symfile.c (symbol_reloading): Delete.
9636         (show_symbol_reloading): Delete.
9637         (_initialize_symfile): Delete set/show symbol-reloading.
9638
9639         * dwarf2read.c (load_partial_comp_unit): Defer adding cu to
9640         read_in_chain until we have successfully read it in.
9641         (load_full_comp_unit): Ditto.
9642         (read_signatured_type): Add comment.
9643
9644 2012-03-13  Chris January  <chris.january@allinea.com>
9645
9646         * stabsread.c (fix_common_block): Change type of valu argument
9647         to CORE_ADDR.
9648
9649 2012-03-13  Chris January  <chris.january@allinea.com>
9650
9651         * rs6000-tdep.c (skip_prologue): Support the oril r29, r1, 0x0
9652         instruction.
9653
9654 2012-03-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
9655
9656         * common/linux-procfs.c (linux_proc_get_int): New, from
9657         linux_proc_get_tgid, change its LWPID type to pid_t, add parameter
9658         field.
9659         (linux_proc_get_tgid): Only call linux_proc_get_int.
9660         (linux_proc_get_tracerpid): New.
9661         (linux_proc_pid_has_state): New, from linux_proc_pid_is_zombie.
9662         (linux_proc_pid_is_stopped, linux_proc_pid_is_zombie): Only call
9663         linux_proc_pid_has_state.
9664         * common/linux-procfs.h (linux_proc_get_tracerpid): New declaration.
9665         * common/linux-ptrace.c: Include linux-procfs.h and buffer.h.
9666         (linux_ptrace_attach_warnings): New.
9667         * common/linux-ptrace.h (struct buffer, linux_ptrace_attach_warnings):
9668         New declaration.
9669         * linux-nat.c: Include exceptions.h, linux-ptrace.h and buffer.h.
9670         (linux_nat_attach): New variables ex, buffer, message and message_s.
9671         Wrap to_attach by TRY_CATCH and call linux_ptrace_attach_warnings.
9672
9673 2012-03-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
9674
9675         * Makefile.in (linux-ptrace.o): New.
9676         * common/linux-procfs.c (linux_proc_pid_is_zombie): New,
9677         from linux-nat.c.
9678         * common/linux-procfs.h (linux_proc_pid_is_zombie): New declaration.
9679         * common/linux-ptrace.c: New file.
9680         * config/alpha/alpha-linux.mh (NATDEPFILES): Add linux-ptrace.o.
9681         * config/arm/linux.mh: Likewise.
9682         * config/i386/linux.mh: Likewise.
9683         * config/i386/linux64.mh: Likewise.
9684         * config/ia64/linux.mh: Likewise.
9685         * config/m32r/linux.mh: Likewise.
9686         * config/m68k/linux.mh: Likewise.
9687         * config/mips/linux.mh: Likewise.
9688         * config/pa/linux.mh: Likewise.
9689         * config/powerpc/linux.mh: Likewise.
9690         * config/powerpc/ppc64-linux.mh: Likewise.
9691         * config/powerpc/spu-linux.mh: Likewise.
9692         * config/s390/s390.mh: Likewise.
9693         * config/sparc/linux.mh: Likewise.
9694         * config/sparc/linux64.mh: Likewise.
9695         * config/xtensa/linux.mh: Likewise.
9696         * linux-nat.c (linux_lwp_is_zombie): Remove, move it to
9697         common/linux-procfs.c.
9698         (wait_lwp): Rename linux_lwp_is_zombie to linux_proc_pid_is_zombie.
9699
9700 2012-03-13  Hui Zhu  <teawater@gmail.com>
9701             Pedro Alves  <palves@redhat.com>
9702
9703         * breakpoint.c (init_breakpoint_sal): New flags parameter.  Handle
9704         CREATE_BREAKPOINT_FLAGS_INSERTED.
9705         (create_breakpoint_sal, create_breakpoints_sal)
9706         (base_breakpoint_create_breakpoints_sal)
9707         (tracepoint_create_breakpoints_sal)
9708         (strace_marker_create_breakpoints_sal): New flags parameter.  Pass
9709         down.
9710         (break_command_1, handle_gnu_v3_exceptions, trace_command)
9711         (ftrace_command, strace_command): Adjust.
9712         (create_tracepoint_from_upload): Pass
9713         CREATE_BREAKPOINT_FLAGS_INSERTED.
9714         * breakpoint.h (enum breakpoint_create_flags): New.
9715         (create_breakpoint): New flags parameter.
9716         * mi/mi-cmd-break.c (mi_cmd_break_insert): Adjust.
9717         * python/py-breakpoint.c (bppy_init): Adjust.
9718         * python/py-finishbreakpoint.c (bpfinishpy_init): Adjust.
9719         * spu-tdep.c (spu_catch_start): Adjust.
9720
9721 2012-03-13  Pedro Alves  <palves@redhat.com>
9722             Hui Zhu  <teawater@gmail.com>
9723             Yao Qi  <yao@codesourcery.com>
9724
9725         * remote.c (struct remote_state): New field `starting_up'.
9726         (remote_start_remote): Set and clear it.
9727         (remote_can_download_tracepoint): If starting up, return false.
9728
9729 2012-03-13  Yao Qi  <yao@codesourcery.com>
9730
9731         * inferior.h (struct inferior): Remove fields any_syscall_count,
9732         syscalls_counts and total_syscalls_count.  Move them to new
9733         struct catch_syscall_inferior_data in breakpoint.c.
9734         * breakpoint.c: Call DEF_VEC_I(int).
9735         (struct catch_syscall_inferior_data): New.
9736         (get_catch_syscall_inferior_data): New.
9737         (catch_syscall_inferior_data_cleanup): New.
9738         (insert_catch_syscall): Update to access data in
9739         struct catch_syscall_inferior_data.
9740         (insert_catch_syscall): Likewise.
9741         (remove_catch_syscall): Likewise.
9742         (remove_catch_syscall): Likewise.
9743         (is_syscall_catchpoint_enabled): Likewise.
9744         (add_catch_command): Likewise.
9745         (_initialize_breakpoint): Register cleanup.
9746         * breakpoint.h: Removed DEF_VEC_I(int).
9747         * dwarf2loc.c: Call DEF_VEC_I(int).
9748         * mi/mi-main.c: Likewise.
9749
9750 2012-03-12  Mark Kettenis  <kettenis@gnu.org>
9751
9752         * inf-ptrace.c (inf_ptrace_post_attach): Make static.
9753
9754 2012-03-12  Chris January  <chris.january@allinea.com>
9755
9756         * aix-thread.c (_initialize_aix_thread): Add prototype.
9757         * rs6000-nat.c (_initialize_rs6000_nat): Ditto.
9758         * xcoffsolib.c (_initialize_xcoffsolib): Ditto.
9759
9760 2012-03-12  Joel Brobecker  <brobecker@adacore.com>
9761
9762         * amd64bsd-nat.c: Move #include of "amd64bsd-nat.h" after
9763         include of "amd64-nat.h".
9764
9765 2012-03-12  Tom Tromey  <tromey@redhat.com>
9766
9767         * buildsym.c (record_pending_block): Now static.
9768         * buildsym.h: (record_pending_block): Remove.
9769
9770 2012-03-12  Andreas Tobler  <andreast@fgznet.ch>
9771
9772         * amd64bsd-nat.c: Include amd64bsd-nat.h.
9773
9774 2012-03-09  Tom Tromey  <tromey@redhat.com>
9775
9776         * dwarf2read.c (struct dwarf2_cu) <checked_producer,
9777         producer_is_gxx_lt_4_6>: New fields.
9778         (producer_is_gxx_lt_4_6): Use and update producer cache fields.
9779
9780 2012-03-09  Tom Tromey  <tromey@redhat.com>
9781
9782         * dwarf2read.c (dwarf2_attr): Avoid tail-recursive call.
9783
9784 2012-03-08  Joel Brobecker  <brobecker@adacore.com>
9785
9786         * ravenscar-sparc-thread.c (_initialize_ravenscar_sparc): Add
9787         prototype.
9788
9789 2012-03-08  Joel Brobecker  <brobecker@adacore.com>
9790
9791         * ravenscar-thread.c (_initialize_ravenscar): Add prototype.
9792
9793 2012-03-08  Jan Kratochvil  <jan.kratochvil@redhat.com>
9794
9795         Fix -Wmissing-prototypes build.
9796         * arm-linux-nat.c (get_thread_id): Make it static.
9797         * xtensa-linux-nat.c (get_thread_id): Likewise.
9798
9799 2012-03-08  Joel Brobecker  <brobecker@adacore.com>
9800
9801         * server.c (process_point_options): If a conditional expression
9802         is found, only print a message if remote_debug is nonzero.
9803
9804 2012-03-08  Luis Machado  <lgustavo@codesourcery.com>
9805
9806         * ax-gdb.c (gen_fetch): Fail gracefully and use error instead
9807         of internal error for unknown/unsupported types.
9808
9809 2012-03-08  Jan Kratochvil  <jan.kratochvil@redhat.com>
9810
9811         Fix CU relative vs. absolute DIE offsets.
9812         * dwarf2loc.h (dwarf2_fetch_die_location_block): Rename parameter
9813         offset to offset_in_cu.
9814         * dwarf2read.c (process_enumeration_scope): Add CU offset to
9815         TYPE_OFFSET.
9816         (dwarf2_fetch_die_location_block): Rename parameter offset to
9817         offset_in_cu.  New variable offset, add CU offset to OFFSET_IN_CU.
9818
9819 2012-03-08  Jan Kratochvil  <jan.kratochvil@redhat.com>
9820
9821         * libunwind-frame.c: Rename to ...
9822         * ia64-libunwind-tdep.c: ... here.
9823         * libunwind-frame.h: Rename to ...
9824         * ia64-libunwind-tdep.h: ... here.
9825         * Makefile.in (HFILES_NO_SRCDIR): Rename libunwind-frame.h to
9826         ia64-libunwind-tdep.h.
9827         (ALLDEPFILES): Rename libunwind-frame.c to ia64-libunwind-tdep.c.
9828         * README (--with-libunwind): Rename to ...
9829         (--with-libunwind-ia64): ... here, note it is ia64 specific now.
9830         * config.in: Regenerate.
9831         * configure: Regenerate.
9832         * configure.ac: New option --with-libunwind-ia64, make the
9833         AS_HELP_STRING ia64 specific.  Deprecate option --with-libunwind.
9834         Remove AC_DEFINE for HAVE_LIBUNWIND.
9835         * ia64-libunwind-tdep.c: Make the file top comment ia64 specific.
9836         Rename libunwind-frame.h #include to ia64-libunwind-tdep.h.
9837         Rename libunwind-frame in the general comment.
9838         * ia64-libunwind-tdep.h: Make the file top comment ia64 specific.
9839         Rename symbol LIBUNWIND_FRAME_H to IA64_TDEP_LIBUNWIND_FRAME_H.
9840         Move forward declarations inside #ifndef.  Rename libunwind-frame in
9841         the general comment.
9842         * ia64-tdep.c: Rename libunwind-frame.h #include to
9843         ia64-libunwind-tdep.h.
9844         (ia64_gdb2uw_regnum, ia64_uw2gdb_regnum, ia64_is_fpreg)
9845         (ia64_libunwind_descr): Rename libunwind-frame to
9846         ia64-libunwind-tdep in these function comments.
9847         * ia64-tdep.h: Rename libunwind-frame.h #include to
9848         ia64-libunwind-tdep.h.
9849         * ia64-vms-tdep.c (ia64_vms_libunwind_descr): Rename libunwind-frame to
9850         ia64-libunwind-tdep in that data comment.
9851
9852 2012-03-08  Jan Kratochvil  <jan.kratochvil@redhat.com>
9853
9854         * libunwind-frame.h (struct frame_unwind): New declaration.
9855
9856 2012-03-08  Joel Brobecker  <brobecker@adacore.com>
9857
9858         * breakpoint.c (_initialize_breakpoint): Fix error in help of
9859         "set breakpoint condition-evaluation" command.
9860
9861 2012-03-08  Tristan Gingold  <gingold@adacore.com>
9862
9863         * sparc-stub.c: Move to stubs/
9864         * sh-stub.c: Likewise.
9865         * m68k-stub.c: Likewise.
9866         * m32r-stub.c: Likewise.
9867         * i386-stub.c: Likewise.
9868
9869 2012-03-08  Andreas Schwab  <schwab@linux-m68k.org>
9870
9871         * m68klinux-tdep.c (m68k_linux_init_abi): Register
9872         linux_get_siginfo_type.
9873
9874         * m68klinux-nat.c: Include "gdb_proc_service.h".
9875         (PTRACE_GET_THREAD_AREA): Define.
9876         (ps_get_thread_area): New function.
9877
9878 2012-03-08  Yao Qi  <yao@codesourcery.com>
9879
9880         * remote.c (remote_get_noisy_reply): Replace `sprintf' with
9881         `xsnprintf'.
9882         (remote_query_attached): Likewise.
9883         (remote_static_tracepoint_marker_at): Likewise.
9884         (remote_set_permissions): Likewise.
9885         (remote_detach_1, extended_remote_attach_1): Likewise.
9886         (send_g_packet, remote_vkill): Likewise.
9887         (extended_remote_disable_randomization): Likewise.
9888         (remote_add_target_side_condition): Likewise.
9889         (remote_insert_breakpoint): Likewise.
9890         (remote_remove_breakpoint): Likewise.
9891         (remote_insert_watchpoint): Likewise.
9892         (remote_remove_watchpoint): Likewise.
9893         (remote_insert_hw_breakpoint): Likewise.
9894         (remote_insert_hw_breakpoint): Likewise.
9895         (remote_remove_hw_breakpoint): Likewise.
9896         (remote_download_command_source): Likewise.
9897         (remote_download_tracepoint): Likewise.
9898         (remote_download_trace_state_variable): Likewise.
9899         (remote_disable_tracepoint): Likewise.
9900         (remote_trace_set_readonly_regions): Likewise.
9901         (remote_get_tracepoint_status): Likewise.
9902         (remote_trace_find): Likewise.
9903         (remote_get_trace_state_variable_value): Likewise.
9904         (remote_set_disconnected_tracing): Likewise.
9905         (remote_set_circular_trace_buffer): Likewise.
9906         (remote_get_min_fast_tracepoint_insn_len): Likewise.
9907         (remote_use_agent): Likewise.
9908         (remote_add_target_side_condition): Add one parameter BUF_SIZE.
9909         Update callers.
9910
9911 2012-03-07  Pedro Alves  <palves@redhat.com>
9912
9913         * NEWS: Mention QProgramSignals.
9914         * inferior.h (update_signals_program_target): Declare.
9915         * infrun.c: (update_signals_program_target): New.
9916         (handle_command): Update the target of the new program signals
9917         array changes.
9918         * remote.c (PACKET_QProgramSignals): New enum.
9919         (last_program_signals_packet): New global.
9920         (remote_program_signals): New.
9921         (remote_start_remote): Update the target with the program signals
9922         list.
9923         (remote_protocol_features): Add entry for QPassSignals.
9924         (remote_open_1): Free anc clear last_program_signals_packet.
9925         (init_remote_ops): Install remote_program_signals.
9926         * target.c (update_current_target): Adjust.
9927         (target_program_signals): New.
9928         * target.h (struct target_ops) <to_program_signals>: New field.
9929         (target_program_signals): Declare.
9930
9931 2012-03-07  Pedro Alves  <palves@redhat.com>
9932
9933         * NEWS: Add subtitle for new z0/z1 conditional breakpoint
9934         extensions.
9935
9936 2012-03-07  Andreas Schwab  <schwab@linux-m68k.org>
9937
9938         * m68klinux-nat.c (getregs_supplies): Make static.
9939         (getfpregs_supplies): Likewise.
9940         (have_ptrace_getregs): Likewise.
9941
9942 2012-03-06  Joel Brobecker  <brobecker@adacore.com>
9943
9944         * dwarf2read.c (dwarf2_get_die_type): Pass absolute offset
9945         in call to get_die_type_at_offset.
9946
9947 2012-03-06  Stan Shebs  <stan@codesourcery.com>
9948
9949         * mi/mi-cmd-break.c: Enforce coding standards, fix comments.
9950         * mi/mi-cmd-disas.c: Ditto.
9951         * mi/mi-cmd-env.c: Ditto.
9952         * mi/mi-cmd-file.c: Ditto.
9953         * mi/mi-cmd-stack.c: Ditto.
9954         * mi/mi-cmd-target.c: Ditto.
9955         * mi/mi-cmd-var.c: Ditto.
9956         * mi/mi-cmds.c: Ditto.
9957         * mi/mi-cmds.h: Ditto.
9958         * mi/mi-console.c: Ditto.
9959         * mi/mi-getopt.c: Ditto.
9960         * mi/mi-getopt.h: Ditto.
9961         * mi/mi-interp.c: Ditto.
9962         * mi/mi-main.c: Ditto.
9963         * mi/mi-out.c: Ditto.
9964         * mi/mi-parse.c: Ditto.
9965         * mi/mi-parse.h: Ditto.
9966         * mi/mi-symbol-cmds.c: Ditto.
9967
9968         * mi/mi-getopt.h: Move mi_opt struct up.
9969         * mi/mi-main.c (captured_mi_execute_command): Remove redundant
9970         return.
9971         * mi/mi-out.c (_initialize_mi_out): Remove empty initialize.
9972
9973 2012-03-06  Tom Tromey  <tromey@redhat.com>
9974
9975         * proc-service.c (ps_pglobal_lookup): Set the current program
9976         space.
9977
9978 2012-03-06  Pedro Alves  <palves@redhat.com>
9979
9980         * gregset.h [HAVE_SYS_PROCFS_H]: Include <sys/procfs.h>.
9981
9982 2012-03-05  Joel Brobecker  <brobecker@adacore.com>
9983
9984         * MAINTAINERS: List Maciej W. Rozycki as the mips maintainer.
9985
9986 2012-03-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
9987
9988         Code cleanup.
9989         * common/linux-osdata.c (linux_common_core_of_thread): New function
9990         comment.
9991         * linux-nat.c (linux_nat_wait_1): Replace linux_nat_core_of_thread_1
9992         call by linux_common_core_of_thread.
9993         (linux_nat_core_of_thread_1): Remove.
9994         * linux-nat.h (linux_nat_core_of_thread_1): Remove declaration.
9995         * linux-thread-db.c: Include linux-osdata.h.
9996         (update_thread_core): Replace linux_nat_core_of_thread_1 call by
9997         linux_common_core_of_thread.
9998
9999 2012-03-05  Tom Tromey  <tromey@redhat.com>
10000
10001         * value.c (value_primitive_field): Don't fetch contents for
10002         non-virtual bases.
10003
10004 2012-03-05  Tom Tromey  <tromey@redhat.com>
10005
10006         * jv-valprint.c (java_value_print): Correctly compute 'obj_addr'.
10007
10008 2012-03-05  Andreas Arnez  <arnez@linux.vnet.ibm.com>
10009
10010         * s390-nat.c: Include "gregset.h".
10011
10012 2012-03-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
10013
10014         * libunwind-frame.c (LIBUNWIND_SO): Change .7 to .8.
10015         [!LIBUNWIND_SO] (LIBUNWIND_SO_7): New #define.
10016         (libunwind_load): New variable so_error, use it for dlerror.  Try to
10017         load also LIBUNWIND_SO_7.
10018
10019 2012-03-05  Pedro Alves  <palves@redhat.com>
10020
10021         * i387-tdep.c (i387_supply_xsave): Assert the xsave section buffer
10022         is not NULL, and remove resulting dead code.
10023
10024 2012-03-05  Thomas Schwinge  <thomas@codesourcery.com>
10025
10026         * sh-tdep.c (sh_skip_prologue): Provide an upper limit on the function
10027         prologue to sh_analyze_prologue.
10028         (sh_analyze_prologue): Make better use of such an upper limit, and
10029         generally be more cautious about accessing memory.
10030
10031 2012-03-05  Tom Tromey  <tromey@redhat.com>
10032
10033         * ia64-vms-tdep.c (_initialize_ia64_vms_tdep): Rename from
10034         _initialize_ia64_hpux_tdep.
10035
10036 2012-03-05  Pedro Alves  <palves@redhat.com>
10037
10038         PR gdb/13766
10039
10040         * i387-tdep.c (i387_supply_xsave): If we have an xsave buffer, and
10041         the register state is clear, supply explicit zero, instead of
10042         marking the register unavailable.
10043
10044 2012-03-05  Tristan Gingold  <gingold@adacore.com>
10045
10046         * NEWS: Mention OpenVMS ia64 new target.
10047
10048 2012-03-05  Tristan Gingold  <gingold@adacore.com>
10049
10050         * ia64-tdep.h: Include libunwind-frame.h and libunwind-ia64.h.
10051         (ia64_unw_accessors, ia64_unw_rse_accessors)
10052         (ia64_libunwind_descr): Declare.
10053         * ia64-vms-tdep.c: New file.
10054         * ia64-tdep.c (ia64_unw_accessors, ia64_unw_rse_accessors)
10055         (ia64_libunwind_descr): Make them public.
10056         * configure.tgt: Add ia64-*-*vms*.
10057         * Makefile.in (ALL_64_TARGET_OBS): Add ia64-vms-tdep.o
10058         (ALLDEPFILES): Add ia64-vms-tdep.c
10059
10060 2012-03-05  Tristan Gingold  <gingold@adacore.com>
10061
10062         * target.h (target_object): Add TARGET_OBJECT_OPENVMS_UIB.
10063         * remote.c (PACKET_qXfer_uib): New enum value.
10064         (remote_protocol_features): Add entry for PACKET_qXfer_uib.
10065         (remote_xfer_partial): Handle TARGET_OBJECT_OPENVMS_UIB.
10066         (_initialize_remote): Call add_packet_config_cmd for
10067         xfer:uib packet.
10068
10069 2012-03-05  Tristan Gingold  <gingold@adacore.com>
10070
10071         * osabi.c (gdb_osabi_names): Add OpenVMS.
10072         (generic_elf_osabi_sniffer): Likewise.
10073         * defs.h (gdb_osabi): Add GDB_OSABI_OPENVMS.
10074
10075 2012-03-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
10076
10077         Removed unused code.
10078         * libunwind-frame.c (libunwind_frame_unwind)
10079         (libunwind_frame_base_address): Remove.
10080         * libunwind-frame.h (libunwind_frame_base_address): Remove declaration.
10081
10082 2012-03-04  Yao Qi  <yao@codesourcery.com>
10083
10084         * common/agent.c (gdb_connect_sync_socket): Add _ markup and
10085         remove trailing new line.
10086         (agent_run_command, agent_run_command): Add _ markup.
10087         (agent_capability_check): Likewise.
10088
10089 2012-03-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
10090
10091         * breakpoint.c (set_condition_evaluation_mode): Set
10092         CONDITION_EVALUATION_MODE unconditionally.
10093
10094 2012-03-03  Yao Qi  <yao@codesourcery.com>
10095
10096         * common/agent.c (agent_look_up_symbols): Add one parameter 'arg'.
10097         * common/agent.h: Update declaration.
10098         * inf-child.c (inf_child_use_agent): New.
10099         (inf_child_can_use_agent): New.
10100         (inf_child_target): Initialize fields `to_use_agent'
10101         and `to_can_use_agent'.
10102         * agent.c (agent_new_objfile): New.
10103         (_initialize_agent): Add agent_new_objfile to new_objfile
10104         observer.
10105
10106         * linux-nat.c (linux_child_static_tracepoint_markers_by_strid):
10107         New.
10108         (linux_target_install_ops): Initialize field
10109         `to_static_tracepoint_markers_by_strid'.
10110         * remote.c (free_current_marker): Move it to ...
10111         * tracepoint.c (free_current_marker): ... here.  New.
10112         (cleanup_target_stop): New.
10113         * tracepoint.h: Declare free_current_marker.
10114         * NEWS: Add one entry about `info static-tracepoint-marker'.
10115
10116 2012-03-03  Yao Qi  <yao@codesourcery.com>
10117
10118         * common/agent.c (agent_loaded_p): New.
10119         (agent_look_up_symbols): New global.
10120         * common/agent.h: Declare agent_loaded_p.
10121
10122 2012-03-03  Yao Qi  <yao@codesourcery.com>
10123
10124         * common/agent.c (struct ipa_sym_addresses) <addr_capability>: New.
10125         (agent_capability_check, agent_capability_invalidate): New.
10126         (symbol_list): New array element.
10127         * common/agent.h (enum agent_capa): New.
10128         * target.c (target_pre_inferior): Call agent_capability_invalidate.
10129
10130 2012-03-03  Yao Qi  <yao@codesourcery.com>
10131
10132         * target.h (struct target_ops) <to_use_agent>: New field.
10133         (struct target_ops) <to_can_use_agent>: New field.
10134         (target_use_agent, target_can_use_agent): New macro.
10135         * target.c (update_current_target): Update.
10136         * remote.c: New enum `PACKET_QAgent'.
10137         (remote_protocol_features): Add a new element.
10138         (remote_use_agent, remote_can_use_agent): New.
10139         (init_remote_ops): Initialize field `can_use_agent' with
10140         remote_can_use_agent.  Intiailize field `use_agent' with
10141         remote_use_agent.
10142         * common/agent.c (use_agent): New global.
10143         * common/agent.h: Declare it.
10144         * tracepoint.c (info_static_tracepoint_markers_command): Add
10145         comment.
10146         * Makefile.in (SFILES): Add common/agent.c and agent.c.
10147         (COMMON_OBS): Add common/agent.o and agent.o
10148         (common-agent.o): New rule.
10149         * agent.c: New.
10150
10151 2012-03-03  Yao Qi  <yao@codesourcery.com>
10152
10153         * common/agent.c: New.
10154         * common/agent.h: New.
10155         * configure.ac: Add `sys/socket.h' and `sys/un.h' to
10156         AC_CHECK_HEADERS.
10157         * configure, configh.in: Regenerated.
10158
10159 2012-03-02  Kevin Buettner  <kevinb@redhat.com>
10160
10161         * sh-tdep.c (sh_frame_cache): Don't fetch the FPSCR register
10162         unless it exists for this architecture.
10163
10164 2012-03-02  Joel Brobecker  <brobecker@adacore.com>
10165
10166         * language.h (struct language_defn): New "method" la_read_var_value.
10167         * findvar.c: #include "language.h".
10168         (default_read_var_value): Renames read_var_value.  Rewrite
10169         function description.
10170         (read_var_value): New function.
10171         * value.h (default_read_var_value): Add prototype.
10172         * ada-lang.c (ada_read_renaming_var_value, ada_read_var_value):
10173         New functions.
10174         (ada_language_defn): Add entry for la_read_var_value.
10175         * c-lang.c, d-lang.c, f-lang.c, jv-lang.c, language.c,
10176         * m2-lang.c, objc-lang.c, opencl-lang.c, p-lang.c: Update
10177         language_defn structures to add entry for new la_read_var_value
10178         field.
10179
10180 2012-03-02  Tom Tromey  <tromey@redhat.com>
10181             Pedro Alves  <palves@redhat.com>
10182
10183         PR breakpoints/13776:
10184         * breakpoint.c (breakpoint_init_inferior): Delete step-resume
10185         breakpoints.
10186         (delete_longjmp_breakpoint_at_next_stop): New.
10187         * breakpoint.h (delete_longjmp_breakpoint_at_next_stop): Declare.
10188         * target.c (generic_mourn_inferior): Call mark_breakpoints_out
10189         before deleting the inferior.  Add comments.
10190         * thread.c (clear_thread_inferior_resources): Don't delete lonjmp
10191         breakpoints immediately, but only on next stop.  Move that code
10192         next to where we mark other breakpoints for deletion.
10193
10194 2012-03-02  Joel Brobecker  <brobecker@adacore.com>
10195
10196         * mips-linux-nat.c (mips_linux_read_description): Add missing i18n
10197         marker.
10198         * mips-tdep.c (mips_linux_reg_names): Improve comment to avoid ARI
10199         violation.
10200
10201 2012-03-02  Pedro Alves  <palves@redhat.com>
10202
10203         * linux-thread-db.c (attach_thread): Avoid in_thread_list call.
10204
10205 2012-03-02  Ulrich Weigand  <uweigand@de.ibm.com>
10206
10207         Fix -Wmissing-prototypes build.
10208         * ppc-linux-nat.c (ppc_linux_get_hwcap): Make static.
10209         * remote-sim.c (gdbsim_has_all_memory): Likewise.
10210         (gdbsim_has_memory): Likewise.
10211
10212 2012-03-02  Yao Qi  <yao@codesourcery.com>
10213
10214         Fix -Wmissing-prototypes build.
10215         * charset.c (phony_iconv_open): Make static.
10216         (phony_iconv_close, phony_iconv): Likewise.
10217         * i386-linux-nat.c (_initialize_i386_linux_nat): New prototype.
10218         * i386-windows-nat.c (_initialize_i386_windows_nat): New
10219         prototype.
10220         * mingw-hdep.c (_initialize_mingw_hdep): New prototype.
10221         * ser-mingw.c (create_select_thread): Make static.
10222         * windows-termcap.c (tgetent): New prototype.
10223         (tgetnum, tgetflag, tgetstr, tputs, tgoto): Likewise.
10224
10225 2012-03-02  Zhang Yuanhui  <asmwarrior@gmail.com>
10226
10227         Fix -Wmissing-prototypes build.
10228         * windows-nat.c (dll_symbol_command, ctrl_c_handler): Make them static.
10229         (_initialize_windows_nat, _initialize_check_for_gdb_ini)
10230         (_initialize_loadable): New prototypes.
10231
10232 2012-03-02  Doug Evans  <dje@google.com>
10233
10234         * dwarf2read.c (load_full_comp_unit): Remove unnecessary reading of
10235         abbrev table, read_comp_unit will do it.
10236
10237 2012-03-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
10238
10239         Fix -Wmissing-prototypes build.
10240         * alpha-tdep.c (alpha_deal_with_atomic_sequence): Make it static.
10241         * amd64-darwin-tdep.c (_initialize_amd64_darwin_tdep): New prototype.
10242         * amd64-windows-tdep.c (_initialize_amd64_windows_tdep): Likewise.
10243         * arm-symbian-tdep.c (arm_symbian_skip_trampoline_code): Make it static.
10244         (_initialize_arm_symbian_tdep): New prototype.
10245         * arm-wince-tdep.c (arm_wince_skip_main_prologue): Make it static.
10246         * i386-darwin-tdep.c (_initialize_i386_darwin_tdep): New prototype.
10247         * i386-linux-tdep.c (i386_linux_displaced_step_copy_insn): Make it
10248         static.
10249         * lm32-tdep.c (_initialize_lm32_tdep): New prototype.
10250         * microblaze-linux-tdep.c (_initialize_microblaze_linux_tdep): New
10251         prototype.
10252         * microblaze-tdep.c (microblaze_debug, microblaze_fetch_instruction)
10253         (microblaze_skip_prologue, microblaze_frame_cache): Make them static.
10254         * mips-linux-tdep.c (mips_linux_regset_from_core_section): Make it
10255         static.
10256         * moxie-tdep.c (moxie_process_record): Likewise.
10257         * remote-mips.c (mips_can_use_watchpoint, mips_insert_watchpoint)
10258         (mips_remove_watchpoint, mips_stopped_by_watchpoint): Make them static.
10259         * rl78-tdep.c (rl78_breakpoint_from_pc): Make it static.
10260         (_initialize_rl78_tdep): New prototype.
10261         * rx-tdep.c (rx_breakpoint_from_pc): Make it static.
10262         (_initialize_rx_tdep): New prototype.
10263         * solib-darwin.c (darwin_in_dynsym_resolve_code): Make it static.
10264         (_initialize_darwin_solib): New prototype.
10265         * solib-spu.c: Include solib-spu.h.
10266         (_initialize_spu_solib): New prototype.
10267         * spu-multiarch.c (_initialize_spu_multiarch): New prototype.
10268         * tic6x-tdep.c (tic6x_analyze_prologue, tic6x_skip_prologue)
10269         (tic6x_breakpoint_from_pc, tic6x_frame_unwind_cache)
10270         (tic6x_software_single_step): Make it static.
10271         (_initialize_tic6x_tdep): New prototype.
10272
10273 2012-03-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
10274
10275         Fix -Wmissing-prototypes build.
10276         * cris-tdep.c (cris_can_use_hardware_watchpoint)
10277         (cris_region_ok_for_watchpoint, cris_stopped_data_address): Remove.
10278
10279 2012-03-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
10280
10281         Fix -Wmissing-prototypes build.
10282         * frv-tdep.c (frv_check_watch_resources, frv_stopped_data_address)
10283         (frv_have_stopped_data_address): Remove.
10284
10285 2012-03-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
10286
10287         Fix -Wmissing-prototypes build.
10288         * Makefile.in (HFILES_NO_SRCDIR): Add sh64-tdep.h.
10289         * sh-tdep.c: Include sh64-tdep.h.
10290         * sh-tdep.h (sh64_gdbarch_init, sh64_show_regs): Remove declarations.
10291         * sh64-tdep.c: Include sh64-tdep.h.
10292         * sh64-tdep.h: New file.
10293
10294 2012-03-01  Maciej W. Rozycki <macro@codesourcery.com>
10295
10296         * mips-tdep.c (mips32_scan_prologue): Correct indentation.
10297
10298 2012-03-01  Maciej W. Rozycki  <macro@codesourcery.com>
10299
10300         * mips-tdep.c (mips_gdbarch_init): Only set pc_regnum and
10301         sp_regnum once the gdbarch_init_osabi hook has been called.
10302
10303 2012-03-01  Maciej W. Rozycki  <macro@codesourcery.com>
10304
10305         * mips-tdep.c (mips32_bc1_pc): New function.
10306         (mips32_next_pc): Handle BC1ANY2F, BC1ANY2T, BC1ANY4F, BC1ANY4T,
10307         BPOSGE32 and BPOSGE64 instructions.
10308         (deal_with_atomic_sequence): Likewise.
10309         (mips32_instruction_has_delay_slot): Likewise.
10310
10311 2012-03-01  Maciej W. Rozycki  <macro@mips.com>
10312             Chris Dearman  <chris@mips.com>
10313             Maciej W. Rozycki  <macro@codesourcery.com>
10314             Joseph Myers  <joseph@codesourcery.com>
10315
10316         * features/mips-dsp.xml: New file.
10317         * features/mips64-dsp.xml: New file.
10318         * features/mips-dsp-linux.xml: New file.
10319         * features/mips64-dsp-linux.xml: New file.
10320         * features/Makefile (WHICH): Add mips-dsp-linux and
10321         mips64-dsp-linux.
10322         (mips-dsp-expedite, mips64-dsp-expedite): New variables.
10323         * features/mips-dsp-linux.c: New file.
10324         * features/mips64-dsp-linux.c: New file.
10325         * regformats/mips-dsp-linux.dat: New file.
10326         * regformats/mips64-dsp-linux.dat: New file.
10327         * mips-linux-nat.c (mips_linux_register_addr): Handle DSP
10328         registers.
10329         (mips64_linux_register_addr): Likewise.
10330         (mips64_linux_regsets_fetch_registers): Likewise.
10331         (mips64_linux_regsets_store_registers): Likewise.
10332         (mips64_linux_fetch_registers): Update call to
10333         mips64_linux_regsets_fetch_registers.
10334         (mips64_linux_store_registers): Update call to
10335         mips64_linux_regsets_store_registers.
10336         (mips_linux_read_description): Probe for DSP registers.
10337         (_initialize_mips_linux_nat): Call initialize_tdesc_mips_dsp_linux
10338         and initialize_tdesc_mips64_dsp_linux.
10339         * mips-linux-tdep.c (supply_gregset, mips64_supply_gregset):
10340         Remove padding of no longer used embedded register slots.
10341         * mips-linux-tdep.h (DSP_BASE, DSP_CONTROL): New macros.
10342         (MIPS_RESTART_REGNUM): Redefine enum value.
10343         * mips-tdep.c (mips_generic_reg_names): Remove trailing null
10344         strings.
10345         (mips_tx39_reg_names): Likewise.
10346         (mips_linux_reg_names): New array of register names for Linux
10347         targets.
10348         (mips_register_name): Check for a null pointer in
10349         mips_processor_reg_names and return an empty string.
10350         (mips_register_type): Exclude embedded registers for the IRIX
10351         and Linux ABIs.
10352         (mips_pseudo_register_type): Likewise.  Use dynamic numbers to
10353         refer to FP registers, LO, HI, BadVAddr, Cause and PC.  Handle
10354         DSP registers.
10355         (mips_stab_reg_to_regnum): Handle DSP accumulators.
10356         (mips_dwarf_dwarf2_ecoff_reg_to_regnum): Likewise.
10357         (mips_gdbarch_init): Likewise.  Initialize internal register
10358         indices for the Linux ABI.  Use dynamic numbers to refer to
10359         registers, as applicable, while parsing the target description.
10360         * mips-tdep.h (struct mips_regnum): Add dspacc/dspctl offsets.
10361
10362 2012-03-01  Joel Brobecker  <brobecker@adacore.com>
10363
10364         * frame.h (read_frame_register_unsigned): Fix typo in function
10365         description.
10366
10367 2012-03-01  Pedro Alves  <palves@redhat.com>
10368
10369         * jit-reader.in [!__cplusplus]
10370         (GDB_DECLARE_GPL_COMPATIBLE_READER): Add missing backslash.
10371
10372 2012-03-01  Pedro Alves  <palves@redhat.com>
10373
10374         * configure.ac (build_warnings): Add -Wmissing-prototypes.
10375         * configure: Regenerate.
10376
10377 2012-03-01  Pedro Alves  <palves@redhat.com>
10378
10379         * amd64-linux-tdep.c (amd64_linux_record_signal): Make static.
10380         * breakpoint.c (create_exception_master_breakpoint, trace_command)
10381         (ftrace_command, strace_command): Make static.
10382         * d-lang.c (_initialize_d_language): Declare.
10383         * dwarf2expr.c (_initialize_dwarf2expr): Declare.
10384         * dwarf2loc.c (_initialize_dwarf2loc):
10385         * dwarf2read.c (process_psymtab_comp_unit): Make static.
10386         * exec.c (exec_get_section_table): Make static.
10387         * i386-linux-tdep.c (i386_linux_record_signal): Make static.
10388         * infcmd.c (ensure_valid_thread, ensure_not_tfind_mode): Make static.
10389         * inferior.c (remove_inferior_command, add_inferior_command)
10390         (clone_inferior_command): Make static.
10391         * linux-nat.c (linux_nat_thread_address_space)
10392         (linux_nat_core_of_thread): Make static.
10393         * linux-tdep.c (_initialize_linux_tdep): Declare.
10394         * objc-lang.c (_initialize_objc_lang): Declare.
10395         * opencl-lang.c (builtin_opencl_type, opencl_language_arch_info):
10396         Make static.
10397         (_initialize_opencl_language): Declare.
10398         * record.c (_initialize_record): Declare.
10399         * remote.c (demand_private_info, remote_get_tib_address)
10400         (remote_supports_cond_tracepoints)
10401         (remote_supports_fast_tracepoints, remote_get_tracepoint_status):
10402         Make static.
10403         * skip.c (_initialize_step_skip): Declare.
10404         * symtab.c (skip_prologue_using_lineinfo): Make static.
10405         * tracepoint.c (delete_trace_state_variable)
10406         (trace_variable_command, delete_trace_variable_command)
10407         (get_uploaded_tsv, find_matching_tracepoint_location)
10408         (find_matching_tsv, create_tsv_from_upload, get_traceframe_info):
10409         Make static.
10410         * value.c (pack_unsigned_long): Make static.
10411         * varobj.c (varobj_ensure_python_env): Make static.
10412         * windows-tdep.c (_initialize_windows_tdep): Declare.
10413         * xml-syscall.c (make_cleanup_free_syscalls_info): Make static.
10414
10415 2012-03-01  Pedro Alves  <palves@redhat.com>
10416
10417         * linux-tdep.c (linux_has_shared_address_space): Make static.  Add
10418         gdbarch parameter.
10419         (linux_init_abi): Install it as has_shared_address_space gdbarch
10420         callback.
10421
10422 2012-03-01  Pedro Alves  <palves@redhat.com>
10423
10424         * observer.c (observer_test_first_notification_function)
10425         (observer_test_second_notification_function)
10426         (observer_test_third_notification_function): Add declarations.
10427
10428 2012-03-01  Pedro Alves  <palves@redhat.com>
10429
10430         * common/signals.c (default_target_signal_to_host)
10431         (default_target_signal_from_host): Move ...
10432         * arch-utils.c: ... here.
10433         * arch-utils.h (default_target_signal_to_host)
10434         (default_target_signal_from_host): Declare.
10435
10436         * common/signals.c (target_signal_from_command): Move ...
10437         * infrun.c: ... here.
10438         * inferior.h (target_signal_from_command): Declare.
10439         * target.h (target_signal_from_command)
10440         (default_target_signal_from_host, default_target_signal_to_host):
10441         Delete declarations.
10442
10443         * common/signals.c (_initialize_signals): Delete.
10444
10445 2012-03-01  Pedro Alves  <palves@redhat.com>
10446
10447         * jit-reader.in (plugin_is_GPL_compatible): Add declarations for
10448         both __cplusplus and !__cplusplus.
10449
10450 2012-03-01  Pedro Alves  <palves@redhat.com>
10451
10452         * psymtab.c (find_and_open_source): Delete declaration.
10453         * source.c (find_and_open_source): Move comment ...
10454         * source.h (find_and_open_source): ... to this new declaration.
10455
10456 2012-03-01  Pedro Alves  <palves@redhat.com>
10457
10458         * inline-frame.c: Include inline-frame.h.
10459
10460 2012-03-01  Pedro Alves  <palves@redhat.com>
10461
10462         * tui/tui-data.c (set_gen_win_origin): Delete.
10463         * tui/tui-data.h (tui_set_gen_win_origin): Delete declaration.
10464         * tui/tui-regs.c (tui_last_reg_element_no_in_line): Delete.
10465
10466 2012-03-01  Pedro Alves  <palves@redhat.com>
10467
10468         * remote.c (encode_actions): Delete declaration.
10469         * tracepoint.c (encode_actions): Make extern.
10470         * tracepoint.h (encode_actions): Declare.
10471
10472 2012-03-01  Pedro Alves  <palves@redhat.com>
10473
10474         * python/py-breakpoint.c: Include python.h.
10475         * python/py-continueevent.c (create_continue_event_object): Make
10476         static.
10477         * python/py-lazy-string.c (stpy_get_type): Make static.
10478         * python/py-newobjfileevent.c (create_new_objfile_event_object):
10479         Make static.
10480         * python/py-utils.c (unicode_to_target_python_string): Make
10481         static.
10482         * python/py-value.c: Include python.h.
10483
10484 2012-03-01  Pedro Alves  <palves@redhat.com>
10485
10486         * inferior.c (delete_threads_of_inferior): Delete.
10487
10488 2012-03-01  Pedro Alves  <palves@redhat.com>
10489
10490         Import fallback definitions from glibc.
10491
10492         * gdb_proc_service.h [!HAVE_PROC_SERVICE_H] (struct
10493         ps_prochandle): Forward declare.
10494         (ps_err_e): Use glibc's comments.
10495         [!HAVE_PROC_SERVICE_H] (ps_pdread, ps_pdwrite, ps_ptread)
10496         (ps_ptwrite, ps_lgetregs, ps_lsetregs, ps_lgetfpregs)
10497         (ps_lsetfpregs, ps_getpid, ps_get_thread_area, ps_pglobal_lookup)
10498         (ps_pstop, ps_pcontinue, ps_lstop, ps_lcontinue, ps_lgetxregsize)
10499         (ps_lgetxregs, ps_lsetxregs, ps_plog): Declare.
10500         (struct ps_prochandle): Adjust comment.
10501
10502 2012-03-01  Pedro Alves  <palves@redhat.com>
10503
10504         * ada-lang.c (ada_modulus_from_name): Delete.
10505         * ada-lex.l (lexer_init): Make static.
10506
10507 2012-03-01  Pedro Alves  <palves@redhat.com>
10508
10509         PR gdb/13767
10510
10511         * frame.c (read_frame_register_unsigned): New.
10512         * frame.h (read_frame_register_unsigned): Declare.
10513         * i387-tdep.c (print_i387_status_word): New parameter `status_p'.
10514         Handle it.
10515         (print_i387_control_word): New parameter `control_p'.  Handle it.
10516         (i387_print_float_info): Handle unavailable float registers.
10517
10518 2012-03-01  Keith Seitz  <keiths@redhat.com>
10519
10520         * linespec.c (decode_line_2): Sort the list of methods
10521         alphabetically before presenting the user with a selection
10522         menu.
10523
10524 2012-03-01  Doug Evans  <dje@google.com>
10525
10526         * dwarf2read.c (dwarf2_cu): Remove unused members has_form_ref_addr,
10527         has_namespace_info.
10528         (dwarf2_read_abbrevs): Remove corresponding initialization.
10529
10530 2012-03-01  Scott J. Goldman <scottjg@vmware.com>
10531
10532         * NEWS: Mention new python command class gdb.COMMAND_USER.
10533         * cli/cli-cmds.c (show_user): Print error when used on a python
10534         command.
10535         (init_cli_cmds): Update documentation strings for "show user" and
10536         "set/show max-user-call-depth" to clarify that it does not apply to
10537         python commands.
10538         * python/py-cmd.c (cmdpy_init): Treat class_user as a valid class in
10539         error check.
10540         (gdbpy_initialize_commands): Add COMMAND_USER as a constant in
10541         gdb python api.
10542         * top.c (execute_command): Only execute a user-defined command as a
10543         legacy macro if c->user_commands is set.
10544
10545 2012-03-01  Tom Tromey  <tromey@redhat.com>
10546
10547         * valprint.h (struct generic_val_print_decorations): New.
10548         (generic_val_print): Declare.
10549         * valprint.c (generic_val_print): New function.
10550         * p-valprint.c (p_decorations): New global.
10551         (pascal_val_print) <TYPE_CODE_REF, TYPE_CODE_ENUM,
10552         TYPE_CODE_FLAGS, TYPE_CODE_FUNC, TYPE_CODE_RANGE, TYPE_CODE_INT,
10553         TYPE_CODE_FLT, TYPE_CODE_VOID, TYPE_CODE_ERROR, TYPE_CODE_UNDEF,
10554         TYPE_CODE_BOOL, TYPE_CODE_CHAR>: Call generic_val_print.
10555         * m2-valprint.c (m2_decorations): New global.
10556         (m2_val_print) <TYPE_CODE_REF, TYPE_CODE_ENUM, TYPE_CODE_FUNC,
10557         TYPE_CODE_BOOL, TYPE_CODE_RANGE, TYPE_CODE_INT, TYPE_CODE_CHAR,
10558         TYPE_CODE_FLT, TYPE_CODE_METHOD, TYPE_CODE_VOID, TYPE_CODE_UNDEF,
10559         TYPE_CODE_ERROR>: Call generic_val_print.
10560         * f-valprint.c (f_decorations): New global.
10561         (f_val_print): Use print_function_pointer_address.
10562         <TYPE_CODE_REF, TYPE_CODE_FUNC, TYPE_CODE_CHAR, TYPE_CODE_FLAGS,
10563         TYPE_CODE_FLT, TYPE_CODE_VOID, TYPE_CODE_ENUM, TYPE_CODE_RANGE,
10564         TYPE_CODE_BOOL, TYPE_CODE_COMPLEX, TYPE_CODE_UNDEF>: Call
10565         generic_val_print.
10566         * c-valprint.c (c_decorations): New global.
10567         (c_val_print) <TYPE_CODE_MEMBERPTR, TYPE_CODE_REF, TYPE_CODE_ENUM,
10568         TYPE_CODE_FLAGS, TYPE_CODE_FUNC, TYPE_CODE_METHOD, TYPE_CODE_BOOL,
10569         TYPE_CODE_RANGE, TYPE_CODE_CHAR, TYPE_CODE_FLT,
10570         TYPE_CODE_DECFLOAT, TYPE_CODE_VOID, TYPE_CODE_ERROR,
10571         TYPE_CODE_UNDEF, TYPE_CODE_COMPLEX>: Call generic_val_print.
10572         * ada-valprint.c (ada_val_print_1) <TYPE_CODE_FLAGS>: Remove
10573         case.
10574
10575 2012-03-01  Tom Tromey  <tromey@redhat.com>
10576
10577         * valprint.c (val_print): Update.
10578         * p-valprint (pascal_val_print): Return void.
10579         * p-lang.h (pascal_val_print): Return void.
10580         * m2-valprint.c (m2_val_print): Return void.
10581         * m2-lang.h (m2_val_print): Return void.
10582         * language.h (struct language_defn) <la_val_print>: Return void.
10583         * language.c (unk_lang_val_print): Return void.
10584         * jv-valprint.c (java_val_print): Return void.
10585         * jv-lang.h (java_val_print): Return void.
10586         * f-valprint.c (f_val_print): Return void.
10587         * f-lang.h (f_val_print): Return void.
10588         * d-valprint.c (d_val_print): Return void.
10589         (dynamic_array_type): Update.
10590         * d-lang.h (d_val_print): Return void.
10591         * c-valprint.c (c_val_print): Return void.
10592         * c-lang.h (c_val_print): Return void.
10593         * ada-valprint.c (ada_vada_val_print, ada_val_print_1): Return
10594         void.
10595         * ada-lang.h (ada_val_print): Return void.
10596
10597 2012-03-01  Tom Tromey  <tromey@redhat.com>
10598
10599         * value.h (val_print): Return void.
10600         * valprint.c (val_print): Return void.
10601
10602 2012-03-01  Tom Tromey  <tromey@redhat.com>
10603
10604         * value.h (common_val_print): Return void.
10605         * valprint.c (common_val_print): Return void.
10606
10607 2012-03-01  Tom Tromey  <tromey@redhat.com>
10608
10609         * value.h (value_print): Return void.
10610         * valprint.c (value_print): Return void.
10611         * p-valprint.c (pascal_value_print): Return void.
10612         * p-lang.h (pascal_value_print): Return void.
10613         * language.h (struct language_defn) <la_value_print>: Return
10614         void.
10615         * language.c (unk_lang_value_print): Return void.
10616         * jv-valprint.c (java_value_print): Return void.
10617         * jv-lang.h (java_value_print): Return void.
10618         * f-valprint.c (c_value_print): Don't declare.
10619         Include c-lang.h.
10620         * c-valprint.c (c_value_print): Return void.
10621         * c-lang.h (c_value_print): Return void.
10622         * ada-valprint.c (ada_value_print): Return void.
10623         * ada-lang.h (ada_value_print): Return void.
10624
10625 2012-03-01  Tom Tromey  <tromey@redhat.com>
10626
10627         * value.c (value_primitive_field): Handle virtual base classes.
10628
10629 2012-03-01  Tom Tromey  <tromey@redhat.com>
10630
10631         * gdbtypes.h (struct vbase): Remove.
10632
10633 2012-03-01  Tom Tromey  <tromey@redhat.com>
10634
10635         * c-valprint.c (print_function_pointer_address): Move...
10636         * valprint.c: ... here.  Make non-static.
10637         * m2-valprint.c (print_function_pointer_address): Remove.
10638         * valprint.h (print_function_pointer_address): Declare.
10639
10640 2012-03-01  Joel Brobecker  <brobecker@adacore.com>
10641
10642         * NEWS: Document the fact that one can provide a condition when
10643         creating an Ada exception catchpoint.
10644
10645 2012-03-01  Tom Tromey  <tromey@redhat.com>
10646
10647         * valprint.c (val_print_type_code_flags): Fix placement of
10648         trailing brace.
10649
10650 2012-03-01  Joel Brobecker  <brobecker@adacore.com>
10651
10652         * copyright.py (MULTILINE_COMMENT_PREFIXES): Delete.
10653         (update_files): Do not set MULTILINE_COMMENT_PREFIXES
10654         environment variable before calling update-copyright.
10655
10656 2012-03-01  Joel Brobecker  <brobecker@adacore.com>
10657
10658         * gnulib/extra/update-copyright: Update to the latest from
10659         gnulib's git repository.
10660         * copyright.py: Set UPDATE_COPYRIGHT_USE_INTERVALS environment
10661         variable to 2 instead of 1.
10662
10663 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
10664
10665         * varobj.c (c_value_of_variable): Remove dead code.
10666
10667 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
10668
10669         * ada-lex.p (processId): Do not modify already encoded IDs.
10670         Update function documentation.
10671
10672 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
10673
10674         * ada-lang.h (ada_find_renaming_symbol): Replace parameter
10675         "name" with "struct symbol *name_sym".
10676         * ada-exp.y (write_var_or_type): Update call to
10677         ada_find_renaming_symbol.
10678         "name" with "struct symbol *name_sym". Adjust Implementation
10679         accordingly.  Adjust the function documentation.
10680
10681 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
10682
10683         * ada-lang.h (ada_find_any_symbol, ada_find_any_type): Delete.
10684         * ada-lang.c (ada_find_any_type): Add advance declaration.
10685         Make static.  Replace ada_find_any_symbol by
10686         ada_find_any_type_symbol.
10687         (ada_find_any_type_symbol): Renames ada_find_any_symbol.
10688         Improve function description.  Make static.
10689         (ada_find_renaming_symbol, find_old_style_renaming_symbol):
10690         Replace ada_find_any_symbol by ada_find_any_type_symbol.
10691
10692 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
10693
10694         * ada-lang.c (struct tag_args): Delete.
10695         (ada_get_tsd_type): Function body moved up in source file.
10696         (ada_tag_name_1, ada_tag_name_2): Delete.
10697         (ada_get_tsd_from_tag): New function.
10698         (ada_tag_name_from_tsd): New function.
10699         (ada_tag_name): Use a TRY_CATCH block instead of catch_errors
10700         to determine the tag name.
10701
10702 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
10703
10704         * ada-lang.h (ada_get_decoded_value, ada_get_decoded_type): Add
10705         declaration.
10706         * ada-lang.c (ada_get_decoded_value, ada_get_decoded_type): New
10707         function.
10708
10709 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
10710
10711         * ada-lang.c (ada_is_ignored_field): Rewrite wrong comment.
10712
10713 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
10714
10715         * ada-lang.c (ada_lookup_symbol_list): Only cache the result of
10716         full searches.
10717
10718 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
10719
10720         * ada-lang.c (constrained_packed_array_type): If there is a
10721         parallel XA type, use it to determine the array index type.
10722
10723 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
10724
10725         * ada-valprint.c (ada_val_print_1): If our value is a reference
10726         to an array descriptor, dereference it before converting it
10727         to a simple array.
10728
10729 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
10730
10731         * ada-lang.c (ada_to_fixed_value): Call unwrap_value before
10732         creating fixed value.
10733         (ada_value_ind, ada_coerce_ref, assign_component)
10734         (ada_evaluate_subexp): Remove call to unwrap_value before
10735         call to ada_to_fixed_value.
10736
10737 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
10738
10739         * ada-lang.c (to_fixed_array_type): Set result's type name.
10740
10741 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
10742
10743         * ada-lang.c (catch_ada_exception_command_split): Add new
10744         argument cond_string.  Add support for condition at end of
10745         "catch exception" commands.
10746         (ada_decode_exception_location): Add new argument cond_string.
10747         Update call to catch_ada_exception_command_split.
10748         (create_ada_exception_catchpoint): Add new argument cond_string.
10749         Set the breakpoint condition if needed.
10750         (catch_ada_exception_command): Update call to
10751         ada_decode_exception_location.
10752         (ada_decode_assert_location): Add function documentation.
10753         Add support for condition at end of "catch assert" command.
10754         (catch_assert_command): Update calls to ada_decode_assert_location
10755         and create_ada_exception_catchpoint.
10756
10757 2012-02-29  Jan Kratochvil  <jan.kratochvil@redhat.com>
10758
10759         Fix disp-step-syscall.exp: fork: single step over fork.
10760         * i386-linux-tdep.c (-i386_linux_get_syscall_number): Rename to ...
10761         (i386_linux_get_syscall_number_from_regcache): ... here, new function
10762         comment, change parameters gdbarch and ptid to regcache.  Remove
10763         parameter regcache, initialize gdbarch from regcache here.
10764         (i386_linux_get_syscall_number, i386_linux_displaced_step_copy_insn):
10765         New functions.
10766         (i386_linux_init_abi): Install i386_linux_displaced_step_copy_insn
10767         instead.
10768         * i386-tdep.c (i386_syscall_p): Check also for 'sysenter' and
10769         'syscall'.  Make the 'int' check more strict.
10770
10771 2012-02-29  Jan Kratochvil  <jan.kratochvil@redhat.com>
10772
10773         Fix reverse mode for syscall on AMD CPUs in 32-bit mode.
10774         * i386-linux-tdep.c (i386_linux_intx80_sysenter_record): Rename to ...
10775         (i386_linux_intx80_sysenter_syscall_record): ... here.
10776         (i386_linux_init_abi): Initialize also I386_SYSCALL_RECORD.
10777         Use the renamed function name.
10778
10779 2012-02-29  Jan Kratochvil  <jan.kratochvil@redhat.com>
10780
10781         * arm-linux-tdep.c (arm_linux_copy_svc): Reset stale FRAME.
10782         * breakpoint.c (until_break_command): Likewise.
10783         * elfread.c (elf_gnu_ifunc_resolver_stop): Likewise.
10784         * infcall.c (call_function_by_hand): Likewise.
10785         * infcmd.c (finish_forward): Likewise.
10786         * infrun.c (insert_exception_resume_breakpoint): Likewise.
10787
10788 2012-02-28  Tristan Gingold  <gingold@adacore.com>
10789
10790         * ada-tasks.c (ada_tasks_inferior_data_sniffer): Rework code to
10791         avoid variable assignments inside condition.
10792
10793 2012-02-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
10794
10795         Fix static analysis issue found by cppcheck.
10796         * microblaze-tdep.c (microblaze_extract_return_value): Fix
10797         uninitialized BUF for size 2.
10798
10799 2012-02-27  Chris Dearman  <chris@mips.com>
10800             Nathan Froyd  <froydnj@codesourcery.com>
10801             Maciej W. Rozycki  <macro@codesourcery.com>
10802
10803         * mips-tdep.c (mips32_instruction_has_delay_slot): New function.
10804         (mips16_instruction_has_delay_slot): Likewise.
10805         (mips_segment_boundary): Likewise.
10806         (mips_adjust_breakpoint_address): Likewise.
10807         (mips_gdbarch_init): Use mips_adjust_breakpoint_address.
10808
10809 2012-02-27  Maciej W. Rozycki  <macro@mips.com>
10810             Maciej W. Rozycki  <macro@codesourcery.com>
10811
10812         * infrun.c (handle_inferior_event): Don't proceed through
10813         shared library trampolines if stepping at the machine
10814         instruction level.
10815
10816 2012-02-27  Maciej W. Rozycki  <macro@codesourcery.com>
10817
10818         * mips-linux-tdep.c (mips_linux_init_abi): Set num_pseudo_regs
10819         too.
10820
10821 2012-02-27  Thomas Schwinge  <thomas@codesourcery.com>
10822
10823         * sh-tdep.c (sh_make_stub_cache, sh_stub_this_id)
10824         (sh_stub_unwind_sniffer): New functions.
10825         (sh_stub_unwind): New variable.
10826         (sh_gdbarch_init): Wire everything.
10827
10828 2012-02-27  Pedro Alves  <palves@redhat.com>
10829
10830         * linux-nat.c (pid_is_stopped): Delete, moved to common/.
10831         (linux_nat_post_attach_wait): Adjust to use
10832         linux_proc_pid_is_stopped.
10833         * common/linux-procfs.h (linux_proc_pid_is_stopped): Declare.
10834         * common/linux-procfs.c (linux_proc_pid_is_stopped): New function,
10835         based on pid_is_stopped from both linux-nat.c and
10836         gdbserver/linux-low.c, and renamed.
10837
10838 2012-02-24  Maciej W. Rozycki  <macro@codesourcery.com>
10839
10840         * remote.c (remote_watchpoint_addr_within_range): New function.
10841         (init_remote_ops): Use it.
10842
10843 2012-02-24  Maciej W. Rozycki  <macro@codesourcery.com>
10844
10845         * target.h (target_watchpoint_addr_within_range): Document macro.
10846
10847 2012-02-24  Pedro Alves  <palves@redhat.com>
10848
10849         * stack.c (set_last_displayed_sal): Issue internal_error instead
10850         of warning, and issue it after clearing the last displayed sal.
10851
10852 2012-02-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
10853             Pedro Alves  <palves@redhat.com>
10854
10855         * breakpoint.c (until_break_command): Install breakpoints after
10856         all frame manipulations.
10857
10858 2012-02-24  Luis Machado  <lgustavo@codesourcery.com>
10859
10860         * remote.c (remote_supports_cond_breakpoints): New forward
10861         declaration.
10862         (remote_add_target_side_condition): New function.
10863         (remote_insert_breakpoint): Add target-side breakpoint
10864         conditional if supported.
10865         (remote_insert_hw_breakpoint): Likewise.
10866         (init_remote_ops): Set to_supports_evaluation_of_breakpoint_conditions
10867         hook.
10868
10869         * target.c (update_current_target): Inherit
10870         to_supports_evaluation_of_breakpoint_conditions.
10871         Default to_supports_evaluation_of_breakpoint_conditions to return_zero.
10872
10873         * target.h (struct target_ops)
10874         <to_supports_evaluation_of_breakpoint_conditions>: New field.
10875         (target_supports_evaluation_of_breakpoint_conditions): New #define.
10876
10877         * breakpoint.c (get_first_locp_gte_addr): New forward declaration.
10878         (condition_evaluation_both, condition_evaluation_auto,
10879         condition_evaluation_host, condition_evaluation_target,
10880         condition_evaluation_enums, condition_evaluation_mode_1,
10881         condition_evaluation_mode): New static globals.
10882         (translate_condition_evaluation_mode): New function.
10883         (breakpoint_condition_evaluation_mode): New function.
10884         (gdb_evaluates_breakpoint_condition_p): New function.
10885         (ALL_BP_LOCATIONS_AT_ADDR): New helper macro.
10886         (mark_breakpoint_modified): New function.
10887         (mark_breakpoint_location_modified): New function.
10888         (set_condition_evaluation_mode): New function.
10889         (show_condition_evaluation_mode): New function.
10890         (bp_location_compare_addrs): New function.
10891         (get_first_location_gte_addr): New helper function.
10892         (set_breakpoint_condition): Free condition bytecode if locations
10893         has become unconditional.  Call mark_breakpoint_modified (...).
10894         (condition_command): Call update_global_location_list (1) for
10895         breakpoints.
10896         (breakpoint_xfer_memory): Use is_breakpoint (...).
10897         (is_breakpoint): New function.
10898         (parse_cond_to_aexpr): New function.
10899         (build_target_condition_list): New function.
10900         (insert_bp_location): Handle target-side conditional
10901         breakpoints and call build_target_condition_list (...).
10902         (update_inserted_breakpoint_locations): New function.
10903         (insert_breakpoint_locations): Handle target-side conditional
10904         breakpoints.
10905         (bpstat_check_breakpoint_conditions): Add comment.
10906         (bp_condition_evaluator): New function.
10907         (bp_location_condition_evaluator): New function.
10908         (print_breakpoint_location): Print information on where the condition
10909         will be evaluated.
10910         (print_one_breakpoint_location): Likewise.
10911         (init_bp_location): Call mark_breakpoint_location_modified (...) for
10912         breakpoint location.
10913         (force_breakpoint_reinsertion): New functions.
10914         (update_global_location_list): Handle target-side breakpoint
10915         conditions.
10916         Reinsert locations that are already inserted if conditions have
10917         changed.
10918         (bp_location_dtor): Free agent expression bytecode.
10919         (disable_breakpoint): Call mark_breakpoint_modified (...).
10920         Call update_global_location_list (...) with parameter 1 for breakpoints.
10921         (disable_command): Call mark_breakpoint_location_modified (...).
10922         Call update_global_location_list (...) with parameter 1 for breakpoints.
10923         (enable_breakpoint_disp): Call mark_breakpoint_modified (...).
10924         (enable_command): mark_breakpoint_location_modified (...).
10925         (_initialize_breakpoint): Update documentation and add
10926         condition-evaluation breakpoint subcommand.
10927
10928         * breakpoint.h: Include ax.h.
10929         (condition_list): New data structure.
10930         (condition_status): New enum.
10931         (bp_target_info) <cond_list>: New field.
10932         (bp_location) <condition_changed, cond_bytecode>: New fields.
10933         (is_breakpoint): New prototype.
10934
10935 2012-02-24  Luis Machado  <lgustavo@codesourcery.com>
10936
10937         * remote.c (remote_state) <cond_breakpoints>: New field.
10938         (PACKET_ConditionalBreakpoints): New enum.
10939         (remote_cond_breakpoint_feature): New function.
10940         (remote_protocol_features): Add new ConditionalBreakpoints entry.
10941         (remote_supports_cond_breakpoints): New function.
10942         (_initialize_remote): Add new packet configuration for
10943         target-side conditional breakpoints.
10944
10945 2012-02-24  Luis Machado  <lgustavo@codesourcery.com>
10946
10947         * NEWS: Mention target-side conditional breakpoint support,
10948         new condition-evaluation breakpoint subcommand and remote
10949         packet extensions.
10950
10951 2012-02-24  Luis Machado  <lgustavo@codesourcery.com>
10952
10953         * breakpoint.c (bp_location_compare): Sort by pspace before sorting by
10954         number.
10955
10956 2012-02-24  Thomas Schwinge  <thomas@codesourcery.com>
10957
10958         * sh-tdep.c (sh_skip_prologue): Use skip_prologue_using_sal.
10959         (after_prologue): Remove.
10960
10961 2012-02-23  Tom Tromey  <tromey@redhat.com>
10962
10963         * jv-valprint.c (java_val_print): Remove dead code.
10964
10965 2012-02-23  Tristan Gingold  <gingold@adacore.com>
10966
10967         * ada-tasks.c (struct ada_tasks_inferior_data): Add
10968         known_tasks_element and known_tasks_length fields.
10969         (read_known_tasks_array): Change argument type.  Use pointer type
10970         and number of elements from DATA.  Adjust.
10971         (read_known_tasks_list): Likewise.
10972         (get_known_tasks_addr): Remove.
10973         (ada_set_current_inferior_known_tasks_addr): Renamed to ...
10974         (ada_tasks_inferior_data_sniffer): ... this.  Use symtab for element
10975         type and array length.  Merge former get_known_tasks_addr code.
10976
10977 2012-02-23  Jan Kratochvil  <jan.kratochvil@redhat.com>
10978
10979         PR backtrace/13716
10980         * infcmd.c (finish_forward): New variable frame_id, initialize it, use
10981         it after set_momentary_breakpoint.
10982
10983 2012-02-22  Sterling Augustine  <saugustine@google.com>
10984
10985         PR 13689:
10986         * breakpoint.c (watchpoint_exp_is_constant): Add UNOP_CAST to switch.
10987
10988 2012-02-22  Gary Benson  <gbenson@redhat.com>
10989
10990         * dwarf2read.c (dwarf2_read_index): Correct misspelling.
10991         (find_slot_in_mapped_hash): Likewise.
10992
10993 2012-02-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
10994
10995         PR build/13638
10996         * configure.ac (MAKEINFO): Replace AC_CHECK_PROG by AC_ARG_VAR.
10997         (MAKEINFOFLAGS): Replace static string by AC_ARG_VAR.
10998         * configure: Regenerate.
10999
11000 2012-02-21  Tristan Gingold  <gingold@adacore.com>
11001             Pedro Alves  <palves@redhat.com>
11002
11003         * ia64-tdep.c: Do not include libunwind-ia64.h.
11004         * libunwind-frame.h: Remove #ifdef HAVE_LIBUNWIND_H guard.
11005         Include libunwind-ia64.h instead of libunwind.h.
11006         * configure.ac (--with-libunwind, $enable_libunwind): Don't check
11007         for libunwind.h existence.
11008         * configure, config.in: Regenerate.
11009
11010 2012-02-21  Anton Gorenkov  <xgsa@yandex.ru>
11011
11012         * c-valprint.c (c_value_print): Use value_rtti_indirect_type
11013         instead of value_rtti_target_type.
11014         * eval.c (evaluate_subexp_standard): Use value_rtti_indirect_type
11015         instead of value_rtti_target_type.
11016         * typeprint.c (whatis_exp): Use value_rtti_indirect_type instead of
11017         value_rtti_target_type.
11018         * valops.c (value_ind): Extract function readjust_indirect_value_type.
11019         (value_rtti_target_type): Rename to ...
11020         (value_rtti_indirect_type): ... here and make it indirect.  Update
11021         function comment.
11022         * value.c (readjust_indirect_value_type): New function.
11023         (coerce_ref): Support for enclosing type setting for references
11024         with readjust_indirect_value_type.
11025         * value.h (readjust_value_type): New declaration.
11026         (value_rtti_target_type): Rename to ...
11027         (value_rtti_indirect_type): ... here.
11028
11029 2012-02-21  Anton Gorenkov  <xgsa@yandex.ru>
11030
11031         * MAINTAINERS (Write After Approval): Add myself to the list.
11032
11033 2012-02-20  Doug Evans  <dje@google.com>
11034
11035         * objfiles.c (add_to_objfile_sections): Remove outdated comments.
11036         Rename objfile_p_char parameter to objfilep.
11037         (build_objfile_section_table): Result is now void.  All callers
11038         updated.
11039         * objfiles.h (struct objfile): Tweak comments, whitespace.
11040         (build_objfile_section_table): Update.
11041
11042         * elfread.c (elf_symfile_segments): Fix warning text.
11043
11044 2012-02-20  Tom Tromey  <tromey@redhat.com>
11045
11046         PR gdb/13498:
11047         * dwarf2read.c (dw2_expand_symtabs_matching): Only visit a
11048         particular set of file names once.
11049         (dw2_map_symbol_filenames): Likewise.
11050
11051 2012-02-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
11052
11053         Code cleanup.
11054         * main.c (write_files): Remove the declaration.
11055         (external_editor_command): Move the declaration ...
11056         [GDBTK] (external_editor_command): ... here.  Fix the comment.
11057
11058 2012-02-20  Tom Tromey  <tromey@redhat.com>
11059
11060         * dwarf2read.c (dw2_map_symtabs_matching_filename): Remove
11061         extraneous block.
11062
11063 2012-02-20  Tristan Gingold  <gingold@adacore.com>
11064
11065         * darwin-nat.h (enum darwin_msg_state): Add comments.
11066
11067 2012-02-20  Tristan Gingold  <gingold@adacore.com>
11068
11069         * amd64-darwin-tdep.c (x86_darwin_init_abi_64): Fix jb_pc_offset
11070         value.
11071
11072 2012-20-18  Joel Brobecker  <brobecker@adacore.com>
11073
11074         * breakpoint.c (watchpoint_exp_is_const): Add missing empty line
11075         between function description and implementation.
11076
11077 2012-02-17  Tom Tromey  <tromey@redhat.com>
11078
11079         PR python/12070:
11080         * python/py-event.c (event_object_getset): New global.
11081         (event_object_type): Reference it.
11082         * python/py-type.c (field_object_getset): New global.
11083         (field_object_type): Reference it.
11084         * python/python-internal.h (gdb_py_generic_dict): Declare.
11085         * python/py-utils.c (gdb_py_generic_dict): New function.
11086
11087 2012-02-17  Tristan Gingold  <gingold@adacore.com>
11088
11089         * solib-darwin.c (darwin_current_sos): Check magic and filetype
11090
11091 2012-02-17  Thomas Schwinge  <thomas@codesourcery.com>
11092
11093         * sh-tdep.c (sh_is_renesas_calling_convention): Fix handling of
11094         TYPE_CALLING_CONVENTION annotation.
11095
11096 2012-02-16  Kevin Buettner  <kevinb@redhat.com>
11097
11098         * MAINTAINERS: Add rx to target ISA section.
11099         * Makefile.in (ALL_TARGET_OBS): Add rx-tdep.o.
11100         (ALLDEPFILES): Add rx-tdep.c.
11101
11102 2012-02-16  Tom Tromey  <tromey@redhat.com>
11103
11104         * symfile.c (symbol_file_add_main_1): Use inferior's
11105         symfile_flags.
11106         * solib.c (solib_read_symbols): Use inferior's symfile_flags.
11107         * linux-nat.c (linux_child_follow_fork): Set symfile_flags on
11108         inferior.
11109         * infrun.c (handle_vfork_child_exec_or_exit): Set symfile_flags on
11110         inferior.
11111         (follow_exec): Use inferior's symfile_flags.
11112         * inferior.h (struct inferior) <symfile_flags>: New field.
11113
11114 2012-02-16  Mike Frysinger  <vapier@gentoo.org>
11115
11116         PR gdb/9734:
11117         * remote-sim.c (gdbsim_create_inferior): Call error() when
11118         sim_create_inferior() fails.
11119
11120 2012-02-16  Josh Matthews  <josh@joshmatthews.net>
11121
11122         * machoread.c: Initialize nbr_syms to avoid warnings-as-errors failure.
11123
11124 2012-02-16  Tom Tromey  <tromey@redhat.com>
11125
11126         PR c++/13653:
11127         * thread.c (struct current_thread_cleanup) <was_removable>: New
11128         field.
11129         (restore_current_thread_cleanup_dtor): Restore 'removable' field.
11130         (make_cleanup_restore_current_thread): Initialize new field.
11131
11132 2012-02-15  Kevin Buettner  <kevinb@redhat.com>
11133
11134         * MAINTAINERS: Add rl78 to target ISA section.
11135         * Makefile.in (ALL_TARGET_OBS): Add rl78-tdep.o.
11136         (ALLDEPFILES): Add rl78-tdep.c.
11137         * NEWS: Mention rl78 as a new target.
11138
11139 2012-02-15  Aleksandar Ristovski  <aristovski@qnx.com>
11140
11141         * frame.c (find_frame_sal): Initialize sal->pspace field from frame
11142         data.
11143         * stack.c (set_last_displayed_sal): Validate that PSPACE is not NULL.
11144
11145 2012-02-15  Tom Tromey  <tromey@redhat.com>
11146
11147         PR gdb/12659:
11148         * infcmd.c (registers_info): Print just the current register's
11149         name.
11150
11151 2012-02-15  Tom Tromey  <tromey@redhat.com>
11152
11153         * python/py-symbol.c (sympy_value): Use _().
11154
11155 2012-02-15  Pedro Alves  <palves@redhat.com>
11156
11157         * remote.c (remote_detach_1, extended_remote_attach_1): Tweak
11158         output to be like native targets'.
11159         (remote_pid_to_str): Special case the null ptid.
11160
11161 2012-02-14  Stan Shebs  <stan@codesourcery.com>
11162
11163         * NEWS: Mention enable count command.
11164         * breakpoint.h (struct breakpoint): New field enable_count.
11165         * breakpoint.c (enable_breakpoint_disp): Add count argument.
11166         (enable_breakpoint): Add arg to call.
11167         (struct disp_data): New struct.
11168         (do_enable_breakpoint_disp): Interp arg as disp_data and unpack.
11169         (do_map_enable_once_breakpoint): Create a struct and pass it.
11170         (do_map_enable_delete_breakpoint): Ditto.
11171         (do_map_enable_count_breakpoint): New function.
11172         (enable_count_command): New function.
11173         (bpstat_stop_status): Decrement enable_count.
11174         (print_one_breakpoint_location): Report enable count.
11175         (_initialize_breakpoint): Add enable count command.
11176
11177 2012-02-14  Kevin Buettner  <kevinb@redhat.com>
11178
11179         * rl78-tdep.c (reggroups.h): Include.
11180         (RL78_RAW_BANK0_R0_REGNUM, RL78_RAW_BANK0_R1_REGNUM)
11181         (RL78_RAW_BANK0_R2_REGNUM, RL78_RAW_BANK0_R3_REGNUM)
11182         (RL78_RAW_BANK0_R4_REGNUM, RL78_RAW_BANK0_R5_REGNUM)
11183         (RL78_RAW_BANK0_R6_REGNUM, RL78_RAW_BANK0_R7_REGNUM)
11184         (RL78_RAW_BANK1_R0_REGNUM, RL78_RAW_BANK1_R1_REGNUM)
11185         (RL78_RAW_BANK1_R2_REGNUM, RL78_RAW_BANK1_R3_REGNUM)
11186         (RL78_RAW_BANK1_R4_REGNUM, RL78_RAW_BANK1_R5_REGNUM)
11187         (RL78_RAW_BANK1_R6_REGNUM, RL78_RAW_BANK1_R7_REGNUM)
11188         (RL78_RAW_BANK2_R0_REGNUM, RL78_RAW_BANK2_R1_REGNUM)
11189         (RL78_RAW_BANK2_R2_REGNUM, RL78_RAW_BANK2_R3_REGNUM)
11190         (RL78_RAW_BANK2_R4_REGNUM, RL78_RAW_BANK2_R5_REGNUM)
11191         (RL78_RAW_BANK2_R6_REGNUM, RL78_RAW_BANK2_R7_REGNUM)
11192         (RL78_RAW_BANK3_R0_REGNUM, RL78_RAW_BANK3_R1_REGNUM)
11193         (RL78_RAW_BANK3_R2_REGNUM, RL78_RAW_BANK3_R3_REGNUM)
11194         (RL78_RAW_BANK3_R4_REGNUM, RL78_RAW_BANK3_R5_REGNUM)
11195         (RL78_RAW_BANK3_R6_REGNUM, RL78_RAW_BANK3_R7_REGNUM): Add to
11196         beginning of register list.
11197         (RL78_BANK0_R0_REGNUM, RL78_BANK0_R1_REGNUM, RL78_BANK0_R2_REGNUM)
11198         (RL78_BANK0_R3_REGNUM, RL78_BANK0_R4_REGNUM, RL78_BANK0_R5_REGNUM)
11199         (RL78_BANK0_R6_REGNUM, RL78_BANK0_R7_REGNUM, RL78_BANK1_R0_REGNUM)
11200         (RL78_BANK1_R1_REGNUM, RL78_BANK1_R2_REGNUM, RL78_BANK1_R3_REGNUM)
11201         (RL78_BANK1_R4_REGNUM, RL78_BANK1_R5_REGNUM, RL78_BANK1_R6_REGNUM)
11202         (RL78_BANK1_R7_REGNUM, RL78_BANK2_R0_REGNUM, RL78_BANK2_R1_REGNUM)
11203         (RL78_BANK2_R2_REGNUM, RL78_BANK2_R3_REGNUM, RL78_BANK2_R4_REGNUM)
11204         (RL78_BANK2_R5_REGNUM, RL78_BANK2_R6_REGNUM, RL78_BANK2_R7_REGNUM)
11205         (RL78_BANK3_R0_REGNUM, RL78_BANK3_R1_REGNUM, RL78_BANK3_R2_REGNUM)
11206         (RL78_BANK3_R3_REGNUM, RL78_BANK3_R4_REGNUM, RL78_BANK3_R5_REGNUM)
11207         (RL78_BANK3_R6_REGNUM, RL78_BANK3_R7_REGNUM): Move these into
11208         the pseudo registers.  Rearrange other pseudo registers too so
11209         that the bank registers appear at the end.
11210         (rl78_register_type): Account for the fact that the byte sized
11211         bank registers are now pseudo-registers.
11212         (rl78_register_name): Rearrange the register name array.  Make
11213         initial set of raw banked registers inaccessible.
11214         (rl78_register_reggroup_p, rl78_register_sim_regno): New functions.
11215         (rl78_pseudo_register_read, rl78_pseudo_register_write): Add
11216         case for copying bytes back and forth between raw and pseudo
11217         versions of the banked registers.  Update other cases to reflect
11218         the changed names.
11219         (rl78_return_value): Update to account for changed names of
11220         raw registers.
11221         (rl78_gdbarch_init): Register rl78_register_reggroup_p() and
11222         rl78_register_sim_regno().
11223
11224 2012-02-14  Kevin Buettner  <kevinb@redhat.com>
11225
11226         * rl78-tdep.c (rl78_skip_prologue): Make `const' the type of
11227         the name parameter being passed to find_pc_partial_function().
11228
11229 2012-02-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
11230
11231         * MAINTAINERS: Step down from being ia64 target maintainer.
11232
11233 2012-02-12  Jan Kratochvil  <jan.kratochvil@redhat.com>
11234
11235         * ppc-linux-nat.c (fetch_register, store_register): Fix GCC aliasing
11236         compilation warning.
11237
11238 2012-02-12  Jan Kratochvil  <jan.kratochvil@redhat.com>
11239
11240         Fix crash on loaded shlibs without loaded exec_bfd.
11241         * exec.c (exec_files_info): Do not crash on NULL EXEC_BFD.
11242         (set_section_command): Replace exec_bfd by p->bfd.
11243
11244 2012-02-10  Tom Tromey  <tromey@redhat.com>
11245
11246         * linespec.c (decode_line_internal): Skip symtabs_from_filename
11247         when we have a C++ qualified name.
11248
11249 2012-02-10  Pedro Alves  <palves@redhat.com>
11250
11251         * inferior.c (inferior_pid_to_str): New.
11252         (print_inferior, inferior_command): Use it.
11253
11254 2012-02-10  Pedro Alves  <palves@redhat.com>
11255
11256         * configure.ac (HAVE_ELF test): Put the old CFLAGS at the end of
11257         the test CFLAGS.
11258         * configure: Regenerate.
11259
11260 2012-02-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
11261
11262         * linespec.c (decode_line_internal): Fix comment correctness.
11263
11264 2012-02-09  Valery Khromov  <valery.khromov@gmail.com>
11265
11266         PR gdb/12953
11267         * Makefile.in (HFILES_NO_SRCDIR): Add amd64bsd-nat.h.
11268         * amd64bsd-nat.c: Add support for debug registers (adapted from
11269         i386bsd-nat.c).
11270         [HAVE_PT_GETDBREGS] (amd64bsd_dr_get, amd64bsd_dr_set)
11271         (amd64bsd_dr_set_control, amd64bsd_dr_set_addr)
11272         (amd64bsd_dr_get_addr, amd64bsd_dr_get_status)
11273         (amd64bsd_dr_get_control): New functions.
11274         * amd64bsd-nat.h: New file (adapted from i386bsd-nat.h).
11275         * amd64fbsd-nat.c: Include "amd64bsd-nat.h", "i386-nat.h".
11276         [HAVE_PT_GETDBREGS] (_initialize_amd64fbsd_nat): Add hardware
11277         watchpoints initialization.
11278         * config/i386/fbsd64.mh (NATDEPFILES): Add i386-nat.o.
11279
11280 2012-02-09  Jan Kratochvil  <jan.kratochvil@redhat.com>
11281
11282         * gdb-gdb.py (StructMainTypePrettyPrinter) <struct_field_img>: Print
11283         flds_bnds.fields.
11284         (StructMainTypePrettyPrinter) <bounds_img>: Print flds_bnds.bounds.
11285
11286 2012-02-09  Jan Kratochvil  <jan.kratochvil@redhat.com>
11287
11288         * breakpoint.c (bp_location_compare): Fix comment.  Reindent the code.
11289
11290 2012-02-08  Joel Brobecker  <brobecker@adacore.com>
11291
11292         * language.h (symbol_name_cmp_ftype): Renames
11293         symbol_name_match_p_ftype.
11294         (struct language_defn)[la_get_symbol_name_cmp]: Renames
11295         la_get_symbol_name_match_p.
11296         * ada-lang.c (ada_get_symbol_name_cmp): Renames
11297         ada_get_symbol_name_match_p.  Update comment.
11298         (ada_language_defn)[la_get_symbol_name_cmp]: Update value.
11299         * linespec.c (struct symbol_matcher_data)[symbol_name_cmp]:
11300         Renames symbol_name_match_p.  Update field type.
11301         (iterate_name_matcher, iterate_over_all_matching_symtabs): Adjust.
11302         * c-lang.c, d-lang.c, f-lang.c, jv-lang.c, m2-lang.c, objc-lang.c,
11303         opencl-lang.c, p-lang.c: Replace "la_get_symbol_name_match_p" by
11304         "la_get_symbol_name_cmp" in comments.
11305         * language.c: Likewise.
11306
11307 2012-02-08  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
11308
11309         * amd64-sol2-tdep.c (amd64_sol2_gregset_reg_offset): Correct
11310         %eflags offset.
11311         * i386-sol2-nat.c (amd64_sol2_gregset64_reg_offs)
11312         (amd64_sol2_gregset32_reg_offs): Likewise.
11313
11314 2012-02-08  Joel Brobecker  <brobecker@adacore.com>
11315
11316         * solib-darwin.c (darwin_bfd_open): Make sure that the filename
11317         of the returned BFD is allocated by GDB.
11318
11319 2012-02-07  Tom Tromey  <tromey@redhat.com>
11320
11321         PR python/12027:
11322         * python/python-internal.h (frame_object_type): Declare.
11323         * python/py-symbol.c (sympy_needs_frame): New function.
11324         (sympy_value): New function.
11325         (symbol_object_getset): Add "needs_frame".
11326         (symbol_object_methods): Add "value".
11327         * python/py-frame.c (frame_object_type): No longer static.
11328
11329 2012-02-07  Tom Tromey  <tromey@redhat.com>
11330
11331         PR python/13599:
11332         * python/py-symbol.c (sympy_line): New function.
11333         (symbol_object_getset): Add "line".
11334
11335 2012-02-07  Tom Tromey  <tromey@redhat.com>
11336
11337         * charset.c (find_charset_names): Check 'in' against NULL.
11338
11339 2012-02-06  Doug Evans  <dje@google.com>
11340
11341         * gdbtypes.h (struct main_type): Change type of name,tag_name,
11342         and fields.name members from char * to const char *.  All uses updated.
11343         (struct cplus_struct_type): Change type of fn_fieldlists.name member
11344         from char * to const char *.  All uses updated.
11345         (type_name_no_tag): Update.
11346         (lookup_unsigned_typename, lookup_signed_typename): Update.
11347         * gdbtypes.c (type_name_no_tag): Change result type
11348         from char * to const char *.  All callers updated.
11349         (lookup_unsigned_typename, lookup_signed_typename): Change type of
11350         name parameter from char * to const char *.
11351         * symtab.h (struct cplus_specific): Change type of demangled_name
11352         member from char * to const char *.  All uses updated.
11353         (struct general_symbol_info): Change type of name and
11354         mangled_lang.demangled_name members from char * to const char *.
11355         All uses updated.
11356         (symbol_get_demangled_name, symbol_natural_name): Update.
11357         (symbol_demangled_name, symbol_search_name): Update.
11358         * symtab.c (symbol_get_demangled_name): Change result type
11359         from char * to const char *.  All callers updated.
11360         (symbol_natural_name, symbol_demangled_name): Ditto.
11361         (symbol_search_name): Ditto.
11362         (completion_list_add_name): Change type of symname,sym_text,
11363         text,word parameters from char * to const char *.
11364         (completion_list_objc_symbol): Change type of sym_text,
11365         text,word parameters from char * to const char *.
11366         * ada-lang.c (find_struct_field): Change type of name parameter
11367         from char * to const char *.
11368         (encoded_ordered_before): Similarly for N0,N1 parameters.
11369         (old_renaming_is_invisible): Similarly for function_name parameter.
11370         (ada_type_name): Change result type from char * to const char *.
11371         All callers updated.
11372         * ada-lang.h (ada_type_name): Update.
11373         * buildsym.c (hashname): Change type of name parameter
11374         from char * to const char *.
11375         * buildsym.h (hashname): Update.
11376         * dbxread.c (end_psymtab): Change type of include_list parameter
11377         from char ** to const char **.
11378         * dwarf2read.c (determine_prefix): Change result type
11379         from char * to const char *.  All callers updated.
11380         * f-lang.c (find_common_for_function): Change type of name, funcname
11381         parameters from char * to const char *.
11382         * f-lang.c (find_common_for_function): Update.
11383         * f-valprint.c (list_all_visible_commons): Change type of funcname
11384         parameters from char * to const char *.
11385         * gdbarch.sh (static_transform_name): Change type of name parameter
11386         and result from char * to const char *.
11387         * gdbarch.c: Regenerate.
11388         * gdbarch.h: Regenerate.
11389         * i386-sol2-tdep.c (i386_sol2_static_transform_name): Change type
11390         of name parameter from char * to const char *.
11391         * jv-lang.c (java_primitive_type_from_name): Ditto.
11392         (java_demangled_signature_length): Similarly for signature parameter.
11393         (java_demangled_signature_copy): Ditto.
11394         (java_demangle_type_signature): Ditto.
11395         * jv-lang.h (java_primitive_type_from_name): Update.
11396         (java_demangle_type_signature): Update.
11397         * objc-lang.c (specialcmp): Change type of a,b parameters
11398         from char * to const char *.
11399         * p-lang.c (is_pascal_string_type): Change type of arrayname parameter
11400         from char * to const char *.  All callers updated.
11401         * p-lang.h (is_pascal_string_type): Update.
11402         * solib-frv.c (find_canonical_descriptor_in_load_object): Change type
11403         of name parameter from char * to const char *.
11404         * sparc-sol2-tdep.c (sparc_sol2_static_transform_name): Ditto.
11405         * utils.c (fprintf_symbol_filtered): Ditto.
11406         * defs.h (fprintf_symbol_filtered): Update.
11407         * sparc-tdep.h (sparc_sol2_static_transform_name): Update.
11408         * stabsread.h (end_psymtab): Update.
11409         * stack.c (find_frame_funname): Change type of funname parameter
11410         from char ** to const char **.
11411         * stack.h (find_frame_funname): Update.
11412         * typeprint.c (type_print): Change type of varstring parameter
11413         from char * to const char *.
11414         * value.h (type_print): Update.
11415         * xcoffread.c (xcoff_start_psymtab): Change type of filename parameter
11416         from char * to const char *.  All callers updated.
11417         (xcoff_end_psymtab): Change type of include_list parameter
11418         from char ** to const char **.  All callers updated.
11419         (swap_sym): Similarly for name parameter.  All callers updated.
11420         * coffread.c (patch_type): Add (char*) cast to xfree parameter.
11421         Use xstrdup.
11422         (process_coff_symbol): Use xstrdup.
11423         * stabsread.c (stabs_method_name_from_physname): Renamed from
11424         update_method_name_from_physname.  Change result type from void
11425         to char *.  All callers updated.
11426         (read_member_functions): In has_destructor case, store name in objfile
11427         obstack instead of malloc space.  In !has_stub case, fix mem leak.
11428
11429 2012-02-06  Luca Pizzamiglio  <luca.pizzamiglio@gmail.com>
11430
11431         * configure: Rebuild.
11432         * configure.ac: Put -L../bfd and -L../libiberty at the front of
11433         LDFLAGS.
11434
11435 2012-02-03  Kevin Buettner  <kevinb@redhat.com>
11436
11437         * configure.tgt (rl78-*-elf): New target.
11438         * rl78-tdep.c: New file.
11439
11440 2012-02-03  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
11441
11442         * remote.c (remote_rcmd): Use getpkt_sane to detect timeout
11443         and continue the loop.  Add QUIT statement.
11444
11445 2012-02-03  Tom Tromey  <tromey@redhat.com>
11446
11447         PR gdb/13596:
11448         * solib.h (gdb_bfd_lookup_symbol_from_symtab): Rename from
11449         bfd_lookup_symbol_from_symtab.
11450         * solib-pa64.c (pa64_solib_create_inferior_hook): Use
11451         gdb_bfd_lookup_symbol_from_symtab.
11452
11453 2012-02-03  Joel Brobecker  <brobecker@adacore.com>
11454
11455         * mi/mi-cmd-stack.c (list_args_or_locals): For argument symbols,
11456         use SYMBOL_LINKAGE_NAME to find the corresponding non-argument
11457         symbol.  Add assertion that sym2 is never NULL.
11458
11459 2012-02-02  Doug Evans  <dje@google.com>
11460
11461         * blockframe.c (find_pc_partial_function_gnu_ifunc): Change type of
11462         "name" parameter to const char ** from char **.  All callers updated.
11463         (find_pc_partial_function): Ditto.
11464         (cache_pc_function_name): Change type to const char * from char *.
11465         * symtab.h ((find_pc_partial_function_gnu_ifunc): Update.
11466         (find_pc_partial_function): Update.
11467         * alpha-tdep.h (struct gdbarch_tdep, member pc_in_sigtramp): Change
11468         type of "name" parameter to const char * from char *.
11469         All uses updated.
11470         * arch-utils.c (generic_in_solib_return_trampoline): Change
11471         type of "name" parameter to const char * from char *.
11472         * arch-utils.h (generic_in_solib_return_trampoline): Update.
11473         * frv-linux-tdep.c (frv_linux_pc_in_sigtramp): Change
11474         type of "name" parameter to const char * from char *.
11475         * gdbarch.sh (in_solib_return_trampoline): Ditto.
11476         * gdbarch.c: Regenerate.
11477         * gdbarch.h: Regenerate.
11478         * hppa-hpux-tdep.c (hppa_hpux_in_solib_return_trampoline): Update.
11479         * rs6000-tdep.c (rs6000_in_solib_return_trampoline): Update.
11480         * m32r-linux-tdep.c (m32r_linux_pc_in_sigtramp): Change
11481         type of "name" parameter to const char * from char *.
11482         * skip.c (skip_function_pc): Ditto.
11483         * sparc-sol2-tdep.c (sparc_sol2_pc_in_sigtramp): Ditto.
11484         * sparc-tdep.h (sparc_sol2_pc_in_sigtramp): Update.
11485         * sparc64fbsd-tdep.c (sparc64fbsd_pc_in_sigtramp): Ditto.
11486         * sparc64nbsd-tdep.c (sparc64nbsd_pc_in_sigtramp): Ditto.
11487         * sparc64obsd-tdep.c (sparc64obsd_pc_in_sigtramp): Ditto.
11488         * sparcnbsd-tdep.c (sparc32nbsd_pc_in_sigtramp): Ditto.
11489         * sparcobsd-tdep.c (sparc32obsd_pc_in_sigtramp): Ditto.
11490         * nbsd-tdep.c (nbsd_pc_in_sigtramp): Similary for "func_name".
11491         * nbsd-tdep.h (nbsd_pc_in_sigtramp): Update.
11492
11493 2012-02-02  Pedro Alves  <palves@redhat.com>
11494
11495         * remote.c (remote_get_min_fast_tracepoint_insn_len): Return 0 if
11496         the current inferior has no execution.  Make sure the current
11497         remote process matches gdb's current inferior.
11498
11499 2012-02-02  Tom Tromey  <tromey@redhat.com>
11500
11501         PR gdb/13405:
11502         * tui/tui-win.c (parse_scrolling_args): Don't write to possibly
11503         read-only memory.
11504
11505 2012-02-02  Tom Tromey  <tromey@redhat.com>
11506
11507         PR gdb/9307:
11508         * symtab.c (lookup_language_this): Set block_found.
11509
11510 2012-02-01  Tom Tromey  <tromey@redhat.com>
11511
11512         PR gdb/13431:
11513         * jit.c (struct jit_inferior_data): Rewrite.
11514         (struct jit_objfile_data): New.
11515         (get_jit_objfile_data): New function.
11516         (add_objfile_entry): Update.
11517         (jit_read_descriptor): Return int.  Replace descriptor_addr
11518         argument with inf_data.  Update.  Don't call error.
11519         (jit_breakpoint_re_set_internal): Reorder logic.  Update.  Look up
11520         descriptor here.
11521         (jit_inferior_init): Don't look up descriptor.  Don't call error.
11522         (jit_reset_inferior_data_and_breakpoints)
11523         (jit_inferior_created_observer): Remove.
11524         (jit_inferior_exit_hook): Update.
11525         (jit_executable_changed_observer): Remove.
11526         (jit_event_handler): Update.
11527         (free_objfile_data): Reset inferior data if needed.
11528         (_initialize_jit): Update.
11529
11530 2012-02-01  Tom Tromey  <tromey@redhat.com>
11531
11532         * jit.c (bfd_open_from_target_memory): Move higher in file.
11533
11534 2012-02-01  Tristan Gingold  <gingold@adacore.com>
11535
11536         * libunwind-frame.c (libunwind_load): Display message if dlopen
11537         failed.
11538
11539 2012-02-01  Gary Benson  <gbenson@redhat.com>
11540
11541         * symtab.h (symbol_found_callback_ftype): New typedef.
11542         (iterate_over_symbols): Use the above.
11543         * symtab.c (iterate_over_symbols): Likewise.
11544         * language.h (language_defn->la_iterate_over_symbols): Likewise.
11545         * ada-lang.c (ada_iterate_over_symbols): Likewise.
11546         * linespec.c (iterate_over_all_matching_symtabs): Likewise.
11547         (iterate_name_matcher): Document return values.
11548         (collect_one_symbol): Likewise.
11549         (collect_function_symbols): Likewise.
11550         (collect_symbols): Likewise.
11551
11552 2012-02-01  Tom Tromey  <tromey@redhat.com>
11553
11554         * ada-lang.c (resolve_subexp): Update.
11555         (ada_lookup_symbol_list): Add 'full_search' argument.
11556         (ada_iterate_over_symbols): Pass 0 as full_search argument to
11557         ada_lookup_symbol_list.
11558         (ada_lookup_encoded_symbol): Update.
11559         (get_var_value): Update.
11560         * ada-exp.y (block_lookup): Update.
11561         (write_var_or_type): Update.
11562         (write_name_assoc): Update.
11563         * ada-lang.h (ada_lookup_symbol_list): Update.
11564
11565 2012-01-31  Tom Tromey  <tromey@redhat.com>
11566
11567         * language.h (struct language_defn) <la_iterate_over_symbols>: Fix
11568         comment.
11569
11570 2012-01-31  Doug Evans  <dje@google.com>
11571
11572         * symtab.h: Remove outdated comment.
11573         (SYMBOL_MATCHES_NATURAL_NAME): Delete.
11574
11575 2012-02-01  Josh Matthews  <josh@joshmatthews.net>  (tiny change)
11576
11577         Fix build error in Darwin port.
11578         * i386-darwin-nat.c: Include i386-nat.h.
11579
11580 2012-01-30  Tom Tromey  <tromey@redhat.com>
11581
11582         PR breakpoints/13568:
11583         * dwarf2read.c (dwarf_decode_macro_bytes): Add 'include_hash'
11584         argument.  Check for recursive includes.
11585         (dwarf_decode_macros): Create an include hash.
11586
11587 2012-01-30  Michael Eager  <eager@eagercon.com>
11588
11589         * configure.tgt (powerpc-*-linux*): Add glibc-tdep.o.
11590         * ppc-linux-tdep.c: Include glibc-tdep.h.
11591         (powerpc32_plt_stub, powerpc32_plt_stub_so): Add PLT stub templates.
11592         (powerpc_linux_in_plt_stub): New function.
11593         (powerpc_linux_in_dynsym_resolve_code): New function.
11594         (ppc_skip_trampoline_code): New function.
11595         (ppc_linux_init_abi): Use PPC specific functions rather than generic.
11596         Use glibc_skip_solib_resolver.
11597
11598 2012-01-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
11599
11600         Code cleanup: Make 1440 bytes of data segment read-only.
11601         * arch-utils.c (endian_enum): Make it const char *const [].
11602         * arm-tdep.c (fp_model_strings, arm_abi_strings, arm_mode_strings):
11603         Likewise.
11604         * breakpoint.c (always_inserted_enums): Likewise.
11605         * cli/cli-cmds.c (script_ext_enums): Likewise.
11606         * cli/cli-decode.c (add_setshow_enum_cmd, complete_on_enum): Make the
11607         enumlist parameter const char *const *.
11608         * cli/cli-decode.h (struct cmd_list_element): Make the enums field
11609         const char *const *.
11610         * command.h (complete_on_enum, add_setshow_enum_cmd): Make the enumlist
11611         parameter const char *const *.
11612         * cris-tdep.c (cris_modes): Make it const char *const [].
11613         * filesystem.c (target_file_system_kinds): Likewise.
11614         * i386-tdep.c (valid_flavors, valid_conventions): Likewise.
11615         * infrun.c (follow_fork_mode_kind_names, follow_exec_mode_names)
11616         (can_use_displaced_stepping_enum, scheduler_enums)
11617         (exec_direction_names): Likewise.
11618         * language.c (_initialize_language): Make the type_or_range_names and
11619         case_sensitive_names variables const char *const [].
11620         * mips-tdep.c (mips_abi_strings): Make it const char *const [].
11621         * python/python.c (python_excp_enums): Likewise.
11622         * remote.c (interrupt_sequence_modes): Likewise.
11623         * rs6000-tdep.c (powerpc_vector_strings): Likewise.
11624         * serial.c (logbase_enums): Likewise.
11625         * sh-tdep.c (sh_cc_enum): Likewise.
11626         * stack.c (print_frame_arguments_choices, print_entry_values_choices):
11627         Likewise.
11628         * symtab.c (multiple_symbols_modes): Likewise.
11629         * tui/tui-win.c (tui_border_kind_enums, tui_border_mode_enums):
11630         Likewise.
11631         * utils.c (internal_problem_modes): Likewise.
11632
11633 2012-01-27  Jan Kratochvil  <jan.kratochvil@redhat.com>
11634
11635         Fix the 2012-01-26 regression by la_get_symbol_name_match_p.
11636         * linespec.c (iterate_name_matcher): Negate the SYMBOL_NAME_MATCH_P
11637         result.
11638
11639 2012-01-27  Doug Evans  <dje@google.com>
11640
11641         * configure.ac (with_python): Fix absolute path handling for win32.
11642         * configure: Regenerate.
11643
11644 2012-01-26  Doug Evans  <dje@google.com>
11645
11646         * symtab.c: Whitespace cleanup, no code changes.
11647
11648         * symtab.c (lookup_symbol_in_language): Improve comment.
11649         (lookup_symbol_aux): Fix comment.
11650
11651         * psymtab.c (add_psymbol_to_list): Result is now "void".
11652         * psympriv.h (add_psymbol_to_list): Update.
11653
11654         * dwarf2read.c (add_partial_symbol): Delete local psym, unused.
11655
11656 2012-01-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
11657
11658         Do not open script filenames twice.
11659         * cli/cli-cmds.c (source_script_from_stream): Pass to
11660         source_python_script also STREAM.
11661         * python/py-auto-load.c (source_section_scripts): Pass to
11662         source_python_script_for_objfile also STREAM.
11663         (auto_load_objfile_script): Pass to source_python_script_for_objfile
11664         also INPUT.
11665         * python/python-internal.h (source_python_script_for_objfile): New
11666         parameter file, rename parameter file to filename.
11667         * python/python.c (python_run_simple_file): Call PyRun_SimpleFile
11668         instead if !_WIN32.  Update the function comment.
11669         (source_python_script, source_python_script_for_objfile)
11670         (source_python_script): New parameter file, rename parameter file to
11671         filename.  Pass FILENAME to python_run_simple_file.
11672         * python/python.h (source_python_script): New parameter file, rename
11673         parameter file to filename.
11674
11675 2012-01-26  Pedro Alves  <palves@redhat.com>
11676
11677         * corelow.c (core_has_fake_pid): Delete.
11678         (core_close): Delete references to `core_has_fake_pid'.
11679         (add_to_thread_list): Adjust to mark the inferior's pid as fake.
11680         (core_open): Delete references to `core_has_fake_pid'.
11681         (core_pid_to_str): Adjust to check inferior->fake_pid_p instead of
11682         the removed global.
11683
11684 2012-01-26  Joel Brobecker  <brobecker@adacore.com>
11685
11686         * symfile.h (struct quick_symbol_functions) [expand_symtabs_matching]:
11687         Remove language parameter from name_matcher.  Adjust the comment.
11688         * symtab.c (search_symbols_name_matches, expand_partial_symbol_name):
11689         Remove language parameter.
11690         * ada-lang.c (ada_expand_partial_symbol_name): Likewise.
11691         * linespec.c (iterate_name_matcher): Likewise.
11692         * dwarf2read.c (dw2_expand_symtabs_matching): Adjust type of
11693         name_matcher.  Adjust call accordingly.
11694         * psymtab.c (expand_symtabs_matching_via_partial): Likewise.
11695         (maintenance_check_symtabs): Adjust type of parameter "fun".
11696         * psymtab.h (maintenance_check_symtabs): Likewise.
11697
11698 2012-01-26  Joel Brobecker  <brobecker@adacore.com>
11699
11700         * language.h (symbol_name_match_p_ftype): New typedef.
11701         (struct language_defn): Replace field la_symbol_name_compare
11702         by la_get_symbol_name_match_p.
11703         * ada-lang.c (ada_get_symbol_name_match_p): New function.
11704         (ada_language_defn): Use it.
11705         * linespec.c (struct symbol_matcher_data): New type.
11706         (iterate_name_matcher): Rewrite.
11707         (iterate_over_all_matching_symtabs): Pass a pointer to
11708         a symbol_matcher_data struct to expand_symtabs_matching
11709         instead of just the lookup name.
11710         * c-lang.c, d-lang.c, jv-lang.c, m2-lang.c, objc-lang.c,
11711         opencl-lang.c, p-lang.c, language.c: Delete field
11712         la_symbol_name_compare, and replace by NULL for new field
11713         la_get_symbol_name_match_p.
11714         * symfile.h (struct quick_symbol_functions): Update comment.
11715
11716 2012-01-25  Tom Tromey  <tromey@redhat.com>
11717
11718         * breakpoint.c (bpstat_stop_status): Check 'breakpoint_at' before
11719         dereferencing.
11720
11721 2012-01-24  Tom Tromey  <tromey@redhat.com>
11722
11723         PR symtab/12406:
11724         * solib.c (update_solib_list): Update the program space's
11725         added_solibs and deleted_solibs fields.
11726         * progspace.h (struct program_space) <added_solibs,
11727         deleted_solibs>: New fields.
11728         (clear_program_space_solib_cache): Declare.
11729         * progspace.c (release_program_space): Call
11730         clear_program_space_solib_cache.
11731         (clear_program_space_solib_cache): New function.
11732         * infrun.c (handle_inferior_event) <TARGET_WAITKIND_LOADED>: Call
11733         bpstat_stop_status.  Use handle_solib_event.
11734         * breakpoint.c: Include gdb_regex.h.
11735         (print_solib_event): New function.
11736         (bpstat_print): Use print_solib_event.
11737         (bpstat_stop_status): Add special case for bp_shlib_event.
11738         (handle_solib_event): New function.
11739         (bpstat_what): Use handle_solib_event.
11740         (struct solib_catchpoint): New.
11741         (dtor_catch_solib, insert_catch_solib, remove_catch_solib)
11742         (breakpoint_hit_catch_solib, check_status_catch_solib)
11743         (print_it_catch_solib, print_one_catch_solib)
11744         (print_mention_catch_solib, print_recreate_catch_solib): New
11745         functions.
11746         (catch_solib_breakpoint_ops): New global.
11747         (catch_load_or_unload, catch_load_command_1)
11748         (catch_unload_command_1): New functions.
11749         (internal_bkpt_check_status): Add special case for
11750         bp_shlib_event.
11751         (internal_bkpt_print_it): Use print_solib_event.
11752         (initialize_breakpoint_ops): Initialize
11753         catch_solib_breakpoint_ops.
11754         (_initialize_breakpoint): Register "catch load" and "catch
11755         unload".
11756         * breakpoint.h (handle_solib_event): Declare.
11757         * NEWS: Add entry for "catch load" and "catch unload".
11758
11759 2012-01-24  Tom Tromey  <tromey@redhat.com>
11760
11761         * ada-lang.c: Include gdb_vecs.h.
11762         * charset.c: Include gdb_vecs.h.
11763         * tracepoint.h: Include gdb_vecs.h.
11764         * gdb_vecs.h: New file.
11765
11766 2012-01-24  Pedro Alves  <pedro@codesourcery.com>
11767
11768         * breakpoint.c (breakpoint_hit_catch_fork)
11769         (breakpoint_hit_catch_vfork, breakpoint_hit_catch_syscall)
11770         (breakpoint_hit_catch_exec): Make use of the `ws' argument.
11771         * infrun.c (inferior_has_forked, inferior_has_vforked)
11772         (inferior_has_execd, inferior_has_called_syscall): Delete.
11773         (handle_syscall_event): Get syscall_number from the execution
11774         control state's wait status.
11775         (wait_for_inferior): Don't clear syscall_number.
11776
11777 2012-01-24  Pedro Alves  <palves@redhat.com>
11778
11779         * breakpoint.c (bpstat_check_location, bpstat_stop_status,
11780         pc_at_non_inline_function): Add `ws' parameter, and pass it down.
11781         (breakpoint_hit_catch_fork, breakpoint_hit_catch_vfork)
11782         (breakpoint_hit_catch_syscall, breakpoint_hit_catch_exec): Add
11783         `ws' parameter.
11784         (breakpoint_hit_ranged_breakpoint): Add `ws' parameter.  Return
11785         false for events other than TARGET_SIGNAL_TRAP.
11786         (breakpoint_hit_watchpoint, base_breakpoint_breakpoint_hit):
11787         Add `ws' parameter.
11788         (bkpt_breakpoint_hit): Add `ws' parameter.  Return false for
11789         events other than TARGET_SIGNAL_TRAP.
11790         (tracepoint_breakpoint_hit): Add `ws' parameter.
11791         * breakpoint.h (struct breakpoint_ops) <breakpoint_hit>: Add `ws'
11792         parameter.
11793         (bpstat_stop_status): Same.
11794         (pc_at_non_inline_function): Same.
11795         * infrun.c (handle_syscall_event, handle_inferior_event): Adjust
11796         to pass the current event's waitstatus to bpstat_stop_status
11797         and pc_at_non_inline_function.
11798
11799 2012-01-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
11800
11801         Code cleanup.
11802         * cli/cli-cmds.c (source_script_from_stream): Never fclose STREAM.
11803         Update the function comment for it.
11804         (source_script_with_search): Call make_cleanup_fclose for STREAM.
11805         * cli/cli-script.c (script_from_file): Do not call make_cleanup_fclose
11806         for STREAM.
11807
11808 2012-01-24  Pedro Alves  <palves@redhat.com>
11809
11810         * breakpoint.c (bpstat_stop_status): Moving clearing print_it
11811         outside `bs->stop' block.
11812         (bpstat_what): Rework bp_shlib_event handling.
11813         (internal_bkpt_check_status): If the breakpoint is a
11814         bp_shlib_event, then set bs->stop and bs->print if
11815         stop_on_solib_events is set.
11816
11817 2012-01-24  Gary Benson  <gbenson@redhat.com>
11818
11819         Delete #if 0'd out code.
11820         * stack.c (print_frame_label_vars): Remove.
11821         (catch_info): Likewise.
11822         (_initialize_stack): Remove "info catch" command.
11823         * NEWS: Mention the above.
11824
11825 2012-01-24  Pedro Alves  <palves@redhat.com>
11826
11827         * remote.c (remote_add_inferior): New `fake_pid_p' parameter.  Use
11828         it.
11829         (remote_notice_new_inferior): If the remote end doesn't support
11830         the multiprocess extensions, then the PID is fake.
11831         (add_current_inferior_and_thread): New.
11832         (remote_start_remote): Use it.
11833         (extended_remote_attach_1): Adjust.
11834         (extended_remote_create_inferior_1): Use
11835         add_current_inferior_and_thread.
11836
11837 2012-01-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
11838
11839         Fix watchpoints to be specific for each inferior.
11840         * breakpoint.c (watchpoint_in_thread_scope): Verify also
11841         current_program_space.
11842         * i386-nat.c (i386_inferior_data_cleanup): New.
11843         (i386_inferior_data_get): Replace variable inf_data_local by an
11844         inferior_data call.
11845         (i386_use_watchpoints): Initialize i386_inferior_data.
11846         * linux-nat.c (linux_nat_iterate_watchpoint_lwps): Use INFERIOR_PTID
11847         specific iterate_over_lwps.
11848
11849 2012-01-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
11850
11851         Fix watchpoints across inferior fork.
11852         * amd64-linux-nat.c (update_debug_registers_callback): Update the
11853         comment for linux_nat_iterate_watchpoint_lwps.
11854         (amd64_linux_dr_set_control, amd64_linux_dr_set_addr): Use
11855         linux_nat_iterate_watchpoint_lwps.
11856         (amd64_linux_prepare_to_resume): New comment on Linux kernel.
11857         * i386-linux-nat.c (update_debug_registers_callback): Update the
11858         comment for linux_nat_iterate_watchpoint_lwps.
11859         (i386_linux_dr_set_control, i386_linux_dr_set_addr): Use
11860         linux_nat_iterate_watchpoint_lwps.
11861         (i386_linux_prepare_to_resume): New comment on Linux kernel.
11862         * i386-nat.c: Include inferior.h.
11863         (dr_mirror): Remove.
11864         (i386_inferior_data, struct i386_inferior_data)
11865         (i386_inferior_data_get): New.
11866         (i386_debug_reg_state): Use i386_inferior_data_get.
11867         (i386_cleanup_dregs, i386_update_inferior_debug_regs)
11868         (i386_insert_watchpoint, i386_remove_watchpoint)
11869         (i386_stopped_data_address, i386_insert_hw_breakpoint)
11870         (i386_remove_hw_breakpoint): New variable state, use
11871         i386_debug_reg_state instead of DR_MIRROR.
11872         * linux-nat.c (delete_lwp): New declaration.
11873         (num_lwps): Move here from downwards.
11874         (delete_lwp_cleanup): New.
11875         (linux_child_follow_fork): Create new child_lp, call
11876         linux_nat_new_thread and linux_nat_prepare_to_resume before calling
11877         PTRACE_DETACH.
11878         (num_lwps): Move upwards.
11879         (linux_nat_iterate_watchpoint_lwps): New.
11880         * linux-nat.h (linux_nat_iterate_watchpoint_lwps_ftype): New.
11881         (linux_nat_iterate_watchpoint_lwps_ftype): New declaration.
11882
11883 2012-01-24  Joel Brobecker  <brobecker@adacore.com>
11884
11885         GDB 7.4 released.
11886
11887 2012-01-23  Pedro Alves  <palves@redhat.com>
11888
11889         * top.c (caution): Rename to ...
11890         (confirm): ... this.
11891         (show_caution): Rename to ...
11892         (show_confirm): ... this.
11893         (quit_cover): Adjust.
11894         (init_main): Adjust.
11895         * top.h (caution): Rename to ...
11896         (confirm): ... this.
11897         * utils.c (internal_vproblem, defaulted_query): Adjust.
11898
11899 2012-01-23  Pedro Alves  <palves@redhat.com>
11900
11901         * top.c (caution): Update comment.
11902         (execute_command): Don't consider the current value of `caution'.
11903
11904 2012-01-23  Jan Kratochvil  <jan.kratochvil@redhat.com>
11905
11906         * cli/cli-cmds.c (find_and_open_script): Handle failure of fdopen.
11907
11908 2012-01-23  Ulrich Weigand  <ulrich.weigand@linaro.org>
11909
11910         * inf-child.c: Include "gdb_stat.h" instead of <sys/stat.h>.
11911         * linux-tdep.c (linux_info_proc): Avoid ARI coding style warning.
11912         * target.c (target_fileio_pwrite): Remove buffer address from
11913         debug output.
11914         (target_fileio_pread): Likewise.
11915
11916 2012-01-20  Ulrich Weigand  <ulrich.weigand@linaro.org>
11917
11918         * NEWS: Document remote "info proc" and "generate-core-file".
11919
11920 2012-01-20  Ulrich Weigand  <ulrich.weigand@linaro.org>
11921
11922         * gdbarch.sh (find_memory_regions): New callback.
11923         * gdbarch.c, gdbarch.h: Regenerate.
11924
11925         * gcore.c (gcore_memory_sections): Try gdbarch find_memory_regions
11926         callback before falling back to target method.
11927
11928         * linux-nat.c (read_mapping, linux_nat_find_memory_regions): Remove.
11929         (linux_target_install_ops): No longer install it.
11930
11931         * linux-tdep.c (linux_find_memory_regions): New function.
11932         (linux_init_abi): Install it.
11933
11934 2012-01-20  Ulrich Weigand  <ulrich.weigand@linaro.org>
11935
11936         * gdbarch.sh (make_corefile_notes): New architecture callback.
11937         * gdbarch.c: Regenerate.
11938         * gdbarch.h: Likewise.
11939
11940         * gcore.c (write_gcore_file): Try gdbarch_make_corefile_notes
11941         before target_make_corefile_notes.  If NULL is returned, the
11942         target does not support core file generation.
11943
11944         * linux-nat.c: Include "linux-tdep.h".
11945         (find_signalled_thread, find_stop_signal): Remove.
11946         (linux_nat_do_thread_registers): Likewise.
11947         (struct linux_nat_corefile_thread_data): Likewise.
11948         (linux_nat_corefile_thread_callback): Likewise.
11949         (iterate_over_spus): Likewise.
11950         (struct linux_spu_corefile_data): Likewise.
11951         (linux_spu_corefile_callback): Likewise.
11952         (linux_spu_make_corefile_notes): Likewise.
11953         (linux_nat_collect_thread_registers): New function.
11954         (linux_nat_make_corefile_notes): Replace contents by call to
11955         linux_make_corefile_notes passing linux_nat_collect_thread_registers
11956         as native-only callback.
11957
11958         * linux-tdep.h: Include "bfd.h".
11959         (struct regcache): Add forward declaration.
11960         (linux_collect_thread_registers_ftype): New typedef.
11961         (linux_make_corefile_notes): Add prototype.
11962         * linux-tdep.c: Include "gdbthread.h", "gdbcore.h", "regcache.h",
11963         "regset.h", and "elf-bfd.h".
11964         (find_signalled_thread, find_stop_signal): New functions.
11965         (linux_spu_make_corefile_notes): Likewise.
11966         (linux_collect_thread_registers): Likewise.
11967         (struct linux_corefile_thread_data): New data structure.
11968         (linux_corefile_thread_callback): New funcion.
11969         (linux_make_corefile_notes): Likewise.
11970         (linux_make_corefile_notes_1): Likewise.
11971         (linux_init_abi): Install it.
11972
11973 2012-01-20  Ulrich Weigand  <ulrich.weigand@linaro.org>
11974
11975         * gdbarch.sh (info_proc): New callback.
11976         * gdbarch.c, gdbarch.h: Regenerate.
11977
11978         * infcmd.c (info_proc_cmd_1): Try gdbarch info_proc callback
11979         before falling back to the target info_proc callback.
11980
11981         * linux-nat.c: Do not include "cli/cli-utils.h".
11982         (linux_nat_info_proc): Remove.
11983         (linux_target_install_ops): No longer install it.
11984
11985         * linux-tdep.c: Include "cli/cli-utils.h" and <ctype.h>.
11986         (read_mapping): New function.
11987         (linux_info_proc): Likewise.
11988         (linux_init_abi): Install it.
11989
11990 2012-01-20  Ulrich Weigand  <ulrich.weigand@linaro.org>
11991
11992         * defs.h (enum info_proc_what): Moved here from linux-nat.c
11993         * infcmd.c: (info_proc_cmd_1): New function.
11994         (info_proc_cmd): New function, moved here from equivalent routine
11995         orignally in linux-nat.c.
11996         (info_proc_cmd_mappings): Likewise.
11997         (info_proc_cmd_stat): Likewise.
11998         (info_proc_cmd_status): Likewise.
11999         (info_proc_cmd_cwd): Likewise.
12000         (info_proc_cmd_cmdline): Likewise.
12001         (info_proc_cmd_exe): Likewise.
12002         (info_proc_cmd_all): Likewise.
12003         (_initialize_infcmd): Install "info proc" command and subcommands.
12004
12005         * target.h (struct target_ops): Add to_info_proc.
12006         (target_info_proc): Add prototype.
12007         * target.c (target_info_proc): New function.
12008
12009         * procfs.c (procfs_info_proc): Add prototype.
12010         (info_proc_cmd): Rename into ...
12011         (procfs_info_proc): ... this.  Update argument types as appropriate
12012         for a to_info_proc implementation.  Handle "what" argument.
12013         (procfs_target): Install procfs_info_proc.
12014         (_initialize_procfs): No longer install "info proc" command.
12015
12016         * linux-nat.c: (enum info_proc_what): Remove.
12017         (linux_nat_info_proc_cmd_1): Rename into ...
12018         (linux_nat_info_proc): ... this.  Update argument types as appropriate
12019         for a to_info_proc implementation.
12020         (linux_nat_info_proc_cmd): Remove.
12021         (linux_nat_info_proc_cmd_mappings): Likewise.
12022         (linux_nat_info_proc_cmd_stat): Likewise.
12023         (linux_nat_info_proc_cmd_status): Likewise.
12024         (linux_nat_info_proc_cmd_cwd): Likewise.
12025         (linux_nat_info_proc_cmd_cmdline): Likewise.
12026         (linux_nat_info_proc_cmd_exe): Likewise.
12027         (linux_nat_info_proc_cmd_all): Likewise.
12028         (linux_target_install_ops): Install linux_nat_info_proc.
12029         (_initialize_linux_nat): No longer install "info proc" command
12030         and subcommands.
12031
12032 2012-01-20  Ulrich Weigand  <ulrich.weigand@linaro.org>
12033
12034         * configure.ac [AC_CHECK_FUNCS]: Check for readlink.
12035         * config.in, configure: Regenerate.
12036
12037         * target.h (struct target_ops): Add to_fileio_readlink.
12038         (target_fileio_readlink): Add prototype.
12039         * target.c (target_fileio_readlink): New function.
12040
12041         * inf-child.c: Conditionally include <sys/param.h>.
12042         (inf_child_fileio_readlink): New function.
12043         (inf_child_target): Install it.
12044
12045         * remote.c (PACKET_vFile_readlink): New enum value.
12046         (remote_hostio_readlink): New function.
12047         (init_remote_ops): Install it.
12048         (_initialize_remote): Handle vFile:readlink packet type.
12049
12050 2012-01-20  Pedro Alves  <palves@redhat.com>
12051             Ulrich Weigand  <ulrich.weigand@linaro.org>
12052
12053         * configure.ac [AC_CHECK_FUNCS]: Check for pread and pwrite.
12054         * config.in, configure: Regenerate.
12055
12056         * target.h (struct target_ops): Add to_fileio_open, to_fileio_pwrite,
12057         to_fileio_pread, to_fileio_close, to_fileio_unlink.
12058         (target_fileio_open): Add prototype.
12059         (target_fileio_pwrite): Likewise.
12060         (target_fileio_pread): Likewise.
12061         (target_fileio_close): Likewise.
12062         (target_fileio_unlink): Likewise.
12063         (target_fileio_read_alloc): Likewise.
12064         (target_fileio_read_stralloc): Likewise.
12065
12066         * target.c: Include "gdb/fileio.h".
12067         (target_read_stralloc): Accept trailing, but not embedded NUL bytes.
12068         (default_fileio_target): New function.
12069         (target_fileio_open): Likewise.
12070         (target_fileio_pwrite): Likewise.
12071         (target_fileio_pread): Likewise.
12072         (target_fileio_close): Likewise.
12073         (target_fileio_unlink): Likewise.
12074         (target_fileio_close_cleanup): Likewise.
12075         (target_fileio_read_alloc_1): Likewise.
12076         (target_fileio_read_alloc): Likewise.
12077         (target_fileio_read_stralloc): Likewise.
12078
12079         * inf-child.c: Include "gdb/fileio.h", <sys/types.h>, <sys/stat.h>,
12080         <fcntl.h>, and <unistd.h>.
12081         (inf_child_fileio_open_flags_to_host): New function.
12082         (inf_child_errno_to_fileio_error): Likewise.
12083         (inf_child_fileio_open): Likewise.
12084         (inf_child_fileio_pwrite): Likewise.
12085         (inf_child_fileio_pread): Likewise.
12086         (inf_child_fileio_close): Likewise.
12087         (inf_child_fileio_unlink): Likewise.
12088         (inf_child_target): Install to_fileio routines.
12089
12090         * remote.c (init_remote_ops): Install to_fileio routines.
12091
12092 2012-01-20  Pedro Alves  <palves@redhat.com>
12093             Ulrich Weigand  <ulrich.weigand@linaro.org>
12094
12095         * remote.c (remote_multi_process_p): Only check for multi-process
12096         protocol feature, do not check for extended protocol.
12097         (remote_supports_multi_process): Check for extended protocol here.
12098         (set_general_process): Likewise.
12099         (extended_remote_kill): Likewise.
12100         (remote_pid_to_str): Likewise.
12101         (remote_query_supported): Always query multiprocess mode.
12102
12103 2012-01-20  Pedro Alves  <palves@redhat.com>
12104             Ulrich Weigand  <ulrich.weigand@linaro.org>
12105
12106         * inferior.h (struct inferior): Add fake_pid_p.
12107         * inferior.c (exit_inferior_1): Clear fake_pid_p.
12108         * remote.c (remote_start_remote): Set fake_pid_p if we have to use
12109         magic_null_ptid since the remote side doesn't provide a real PID.
12110
12111 2012-01-19  Tom Tromey  <tromey@redhat.com>
12112
12113         * NEWS: Combine the two Python sections.
12114
12115 2012-01-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
12116
12117         * target.h (target_close): Update comment on the target's unpush state.
12118
12119 2012-01-19  Pedro Alves  <palves@redhat.com>
12120
12121         * linux-nat.c (linux_nat_close): Call linux_nat_is_async_p and
12122         linux_nat_async directly instead of going through the target
12123         vector.
12124         * target.c (unpush_target): Close target after unpushing it, not
12125         before.
12126
12127 2012-01-19  Gary Benson  <gbenson@redhat.com>
12128
12129         * mdebugread.c (sort_blocks): Replace integer constants with ones
12130         derived from FIRST_LOCAL_BLOCK.
12131
12132 2012-01-18  Paul Pluzhnikov  <ppluzhnikov@google.com>
12133             Jan Kratochvil  <jan.kratochvil@redhat.com>
12134
12135         PR gdb/9538
12136         * symfile.c (find_separate_debug_file): New function.
12137         (terminate_after_last_dir_separator): Likewise.
12138         (find_separate_debug_file_by_debuglink): Also try realpath.
12139         * configure.ac (AC_CHECK_FUNCS): Add lstat.
12140         * configure: Regenerate.
12141         * config.in: Regenerate.
12142
12143 2012-01-18  Doug Evans  <dje@google.com>
12144
12145         * Makefile.in (TARGET_SYSTEM_ROOT, TARGET_SYSTEM_ROOT_DEFINE): Delete.
12146         (main.o): Remove rule.
12147         * configure.ac (BINDIR): Define with AC_DEFINE_DIR.
12148         (--with-sysroot): Rewrite.
12149         * configure: Regenerate.
12150         * config.in: Regenerate.
12151
12152 2012-01-18  Sergio Durigan Junior  <sergiodj@redhat.com>
12153
12154         * parse.c (initialize_expout): New function.
12155         (reallocate_expout): Likewise.
12156         (parse_exp_in_context): Use `initialize_expout' and
12157         `reallocate_expout' when appropriate.
12158
12159 2012-01-18  Pedro Alves  <palves@redhat.com>
12160
12161         * record.c (struct record_breakpoint, record_breakpoint_p)
12162         (record_breakpoints): New.
12163         (record_insert_breakpoint, record_remove_breakpoint): Manage
12164         record breakpoints list.  Only remove breakpoints from the
12165         inferior if they had been inserted there in the first place.
12166
12167 2012-01-17  Doug Evans  <dje@google.com>
12168
12169         * linespec.c (decode_line_internal): Don't call symtabs_from_filename
12170         if we know we don't have a file name to look for.
12171
12172 2012-01-17  Pedro Alves  <palves@redhat.com>
12173
12174         * dwarf2-frame.c (dwarf2_frame_cfa): Throw NOT_AVAILABLE_ERROR, if
12175         the frame's stop reason is UNWIND_UNAVAILABLE.
12176
12177 2012-01-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
12178
12179         Fix compilation error.
12180         * m2-exp.y (yyerror): Use ANSI C prototype.
12181
12182 2012-01-16  Sergio Durigan Junior  <sergiodj@redhat.com>
12183
12184         * f-exp.y (parse_number): Convert prototype from K&R to ANSI C.
12185         (growbuf_by_size): Likewise.
12186         (yyerror): Likewise.
12187         * m2-exp.y (make_qualname): Remove function (was #if 0'ed).
12188         (modblock): Remove variable (was #if 0'ed).
12189         (parse_number): Convert prototype from K&R to ANSI C.
12190         (yyerror): Likewise.
12191         * objc-exp.y (parse_number): Likewise.
12192         (yyerror): Likewise.
12193         (yylex): Remove #if 0'ed code.
12194         * p-exp.y (uptok): Convert prototype from K&R to ANSI C.
12195         (yyerror): Likewise.
12196
12197 2012-01-16  Tom Tromey  <tromey@redhat.com>
12198
12199         * NEWS: Add item.
12200         * symtab.h (compare_filenames_for_search): Declare.
12201         * symtab.c (compare_filenames_for_search): New function.
12202         (iterate_over_some_symtabs): Use it.
12203         * symfile.h (struct quick_symbol_functions)
12204         <map_symtabs_matching_filename>: Change spec.
12205         * psymtab.c (partial_map_symtabs_matching_filename): Use
12206         compare_filenames_for_search.  Update for new spec.
12207         * dwarf2read.c (dw2_map_symtabs_matching_filename): Use
12208         compare_filenames_for_search.  Update for new spec.
12209         * breakpoint.c (clear_command): Use compare_filenames_for_search.
12210
12211 2012-01-16  Tom Tromey  <tromey@redhat.com>
12212
12213         PR python/13281:
12214         * gdbtypes.h (TYPE_FLAG_ENUM): New macro.
12215         (struct main_type) <flag_flag_enum>: New field.
12216         * dwarf2read.c (process_enumeration_scope): Detect "flag" enums.
12217         * NEWS: Add entries.
12218         * c-valprint.c (c_val_print) <TYPE_CODE_ENUM>: Handle "flag"
12219         enums.
12220         * python/lib/gdb/printing.py (_EnumInstance): New class.
12221         (FlagEnumerationPrinter): Likewise.
12222
12223 2012-01-16  Sergio Durigan Junior  <sergiodj@redhat.com>
12224
12225         * breakpoint.c (create_sals_from_address_default): New function.
12226         (create_breakpoints_sal_default): Likewise.
12227         (decode_linespec_default): Likewise.
12228         (is_marker_spec): Removed.
12229         (strace_marker_p): New function.
12230         (init_breakpoint_sal): Using `strace_marker_p' instead of
12231         `is_marker_spec'.
12232         (create_breakpoint): Call method `create_sals_from_address' from
12233         breakpoint_ops, replacing code that created SALs conditionally
12234         on the type of the breakpoint.  Call method `create_breakpoints_sal',
12235         replacing code that created breakpoints conditionally on the type
12236         wanted.
12237         (base_breakpoint_create_sals_from_address): New function.
12238         (base_breakpoint_create_breakpoints_sal): Likewise.
12239         (base_breakpoint_decode_linespec): Likewise.
12240         (base_breakpoint_ops): Add methods
12241         `base_breakpoint_create_sals_from_address',
12242         `base_breakpoint_create_breakpoints_sal' and
12243         `base_breakpoint_decode_linespec'.
12244         (bkpt_create_sals_from_address): New function.
12245         (bkpt_create_breakpoints_sal): Likewise.
12246         (bkpt_decode_linespec): Likewise.
12247         (tracepoint_create_sals_from_address): Likewise.
12248         (tracepoint_create_breakpoints_sal): Likewise.
12249         (tracepoint_decode_linespec): Likewise.
12250         (strace_marker_create_sals_from_address): Likewise.
12251         (strace_marker_create_breakpoints_sal): Likewise.
12252         (strace_marker_decode_linespec): Likewise.
12253         (strace_marker_breakpoint_ops): New variable.
12254         (addr_string_to_sals): Remove `marker_spec'.  Call method
12255         `decode_linespec' from breakpoint_ops, replacing code that decoded
12256         an address string into a SAL.  Use `strace_marker_p' instead of
12257         `marker_spec'.
12258         (strace_command): Decide whether we are dealing with a static
12259         tracepoint with marker or not.  Use the appropriate breakpoint_ops.
12260         (initialize_breakpoint_ops): Initialize new fields of breakpoint_ops.
12261         * breakpoint.h (linespec_result, linespec_sals): New forward
12262         declarations.
12263         (breakpoint_ops) <create_sals_from_address>,
12264         <create_breakpoints_sal>, <decode_linespec>: New methods.
12265
12266 2012-01-14  Doug Evans  <dje@google.com>
12267
12268         * NEWS: Update text for "maint set python print-stack".
12269         It is deprecated in gdb 7.4 and deleted in 7.5.
12270
12271 2012-01-13  Eli Zaretskii  <eliz@gnu.org>
12272
12273         * gdb_curses.h (MOUSE_MOVED) [__MINGW32__]: Undefine before
12274         including curses.h.
12275
12276 2012-01-12  Jan Kratochvil  <jan.kratochvil@redhat.com>
12277
12278         * configure: Regenerate.
12279         * config.in: Regenerate.
12280
12281 2012-01-12  Keith Seitz  <keiths@redhat.com>
12282
12283         PR mi/10586
12284         * varobj.c (ANONYMOUS_STRUCT_NAME): Define.
12285         (ANONYMOUS_UNION_NAME): Define.
12286         (is_path_expr_parent): New function.
12287         (get_path_expr_parent): New function.
12288         (is_anonymous_child): New function.
12289         (create_child_with_value): If the child is anonymous and without
12290         a name, assign an object name to it.
12291         (c_describe_child): Use get_path_expr_parent to determine
12292         the parent expression.
12293         If there field represents an anonymous struct or union and
12294         has no name, set an appropriate display name and expression.
12295         (cplus_describe_child): Likewise.
12296
12297 2012-01-12  Pedro Alves  <palves@redhat.com>
12298
12299         * i386-tdep.c (i386_frame_cache_1): Also mark the frame base as
12300         available when %ebp is found to be zero (outermost).
12301
12302 2012-01-11  Andreas Tobler  <andreast@fgznet.ch>
12303
12304         * common/gdb_assert.h (gdb_static_assert): Rename static_assert to
12305         an internal gdb_static_assert.
12306         * mi/mi-common.c: Rename static_assert to gdb_static_assert.
12307
12308 2012-01-11  Tom Tromey  <tromey@redhat.com>
12309
12310         PR gdb/9598:
12311         * breakpoint.c (_initialize_breakpoint): Fix help for "catch
12312         catch" and "catch throw".
12313
12314 2012-01-11  Paul Hilfinger  <hilfingr@adacore.com>
12315
12316         * blockframe.c (block_innermost_frame): Start search from selected
12317         frame, if present, or otherwise the current frame.
12318
12319         * c-exp.y (variable): Update innermost_block for
12320         'block COLONCOLON NAME' clause.
12321         * m2-exp.y (variable): Ditto.
12322         * objc-exp.y (variable): Ditto.
12323
12324 2012-01-10  Tom Tromey  <tromey@redhat.com>
12325
12326         PR python/13199:
12327         * python/python.c (finish_python_initialization): Set sys.argv.
12328
12329 2012-01-10  Doug Evans  <dje@google.com>
12330
12331         * dwarf2read.c (dwarf_decode_lines): Remove arg "abfd".  New arg
12332         "want_line_info".  All callers updated.
12333         (dwarf_decode_lines_1): New function.
12334         (handle_DW_AT_stmt_list): Add function comment.
12335         New arg "want_line_info".  All callers updated.
12336         (read_file_scope,read_type_unit_scope): Move comment from
12337         handle_DW_AT_stmt_list to here.
12338
12339 2012-01-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
12340
12341         Fix regression after libiberty/ update for GCC PR 6057 and others.
12342         * c-exp.y (operator) <OPERATOR DELETE>
12343         (operator) <OPERATOR DELETE '[' ']'>: Add trailing space.
12344         * cp-name-parser.y (fill_comp, make_operator, make_dtor)
12345         (make_builtin_type, make_name): New variable i, add gdb_assert.
12346         (operator) <OPERATOR NEW>: Update ARGS to 3.
12347         (operator) <OPERATOR DELETE>: Add trailing space.
12348         (operator) <OPERATOR NEW '[' ']'>: Update ARGS to 3.
12349         (operator) <OPERATOR DELETE '[' ']'>: Add trailing space.
12350         * cp-support.c (cp_canonicalize_string): Check NULL from
12351         cp_comp_to_string, call warning and return.
12352
12353 2012-01-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
12354
12355         Fix duplicate .o files after omitting libbfd.a.
12356         * Makefile.in (ALL_TARGET_OBS): Remove corelow.o.
12357         (SFILES): Add corelow.c.
12358         (COMMON_OBS): Add corelow.o.
12359         (ALLDEPFILES): Remove corelow.c.
12360         * config/alpha/alpha-linux.mh (NATDEPFILES): Remove corelow.o.
12361         * config/alpha/alpha-osf3.mh: Likewise.
12362         * config/alpha/fbsd.mh: Likewise.
12363         * config/arm/nbsdaout.mh: Likewise.
12364         * config/arm/nbsdelf.mh: Likewise.
12365         * config/i386/i386gnu.mh: Likewise.
12366         * config/ia64/hpux.mh: Likewise.
12367         * config/ia64/linux.mh: Likewise.
12368         * config/m32r/linux.mh: Likewise.
12369         * config/m68k/linux.mh: Likewise.
12370         * config/mips/irix5.mh: Likewise.
12371         * config/mips/irix6.mh: Likewise.
12372         * config/pa/hpux.mh: Likewise.
12373         * config/pa/linux.mh: Likewise.
12374         * config/powerpc/aix.mh: Likewise.
12375         * config/sparc/linux.mh: Likewise.
12376         * config/sparc/linux64.mh: Likewise.
12377         * config/sparc/sol2.mh: Likewise.
12378         * config/vax/vax.mh: Likewise.
12379         * configure.tgt (alpha*-*-freebsd* alpha*-*-kfreebsd*-gnu)
12380         (alpha*-*-netbsd*, alpha*-*-knetbsd*-gnu, alpha*-*-openbsd*)
12381         (am33_2.0*-*-linux*, arm*-wince-pe, arm*-*-mingw32ce*, arm*-*-linux*)
12382         (arm*-*-openbsd*, cris*, frv-*-*, hppa*-*-hpux*, hppa*-*-netbsd*)
12383         (hppa*-*-openbsd*, i[34567]86-*-dicos*, i[34567]86-*-freebsd*)
12384         (i[34567]86-*-kfreebsd*-gnu, i[34567]86-*-netbsd*)
12385         (i[34567]86-*-knetbsd*-gnu, i[34567]86-*-openbsd*, i[34567]86-*-nto*)
12386         (i[34567]86-*-solaris2.1[0-9]*, x86_64-*-solaris2.1[0-9]*)
12387         (i[34567]86-*-solaris*, i[34567]86-*-linux*, i[34567]86-*-cygwin*)
12388         (i[34567]86-*-mingw32*, m68*-*-netbsd*, m68*-*-knetbsd*-gnu)
12389         (m68*-*-openbsd*, m88*-*-openbsd*, microblaze*-linux-*)
12390         (microblaze*-*-linux*, mips*-*-linux*, mips*-*-netbsd*)
12391         (mips*-*-knetbsd*-gnu, mips64*-*-openbsd*, powerpc-*-netbsd*)
12392         (powerpc-*-knetbsd*-gnu, powerpc-*-openbsd*, powerpc-*-linux*)
12393         (powerpc64-*-linux*, s390*-*-*, score-*-*, sh*-*-linux*)
12394         (sh*-*-netbsdelf*, sh*-*-knetbsd*-gnu, sh*-*-openbsd*)
12395         (sparc*-*-freebsd*, sparc*-*-kfreebsd*-gnu, sparc-*-netbsd*)
12396         (sparc-*-knetbsd*-gnu, sparc64-*-netbsd*, sparc64-*-knetbsd*-gnu)
12397         (sparc-*-openbsd*, sparc64-*-openbsd*, tic6x-*-*linux, vax-*-netbsd*)
12398         (vax-*-knetbsd*-gnu, vax-*-openbsd*, x86_64-*-dicos*, x86_64-*-linux*)
12399         (x86_64-*-freebsd*, x86_64-*-kfreebsd*-gnu, x86_64-*-netbsd*)
12400         (x86_64-*-knetbsd*-gnu, x86_64-*-openbsd*, xtensa*-*-linux*): Remove
12401         corelow.o from gdb_target_obs.
12402         * corefile.c (core_target): Update the comment on NULL value.
12403         (core_file_command): Replace error by gdb_assert on CORE_TARGET.
12404         * corelow.c (sniff_core_bfd): Call error instead of warning on zero
12405         MATCHES.  Drop YUMMY set on NULL.
12406         (core_close): Do not call exit_inferior_silent on zero PID.  Do not
12407         reclaim CORE_DATA if it is already NULL.
12408
12409 2012-01-09  Doug Evans  <dje@google.com>
12410
12411         * gdbtypes.c (safe_parse_type): Initialize type to keep gcc happy.
12412         * varobj.c (varobj_set_value): Initialize val,value to keep gcc happy.
12413
12414 2012-01-09  Keith Seitz  <keiths@redhat.com>
12415
12416         * breakpoint.c (wrapper.h): Don't include.
12417
12418 2012-01-09  Keith Seitz  <keiths@redhat.com>
12419
12420         * Makefile.in (SFILES): Remove wrapper.c.
12421         (HFILES_NO_SRCDIR): Remove wrapper.h.
12422         (COMMON_OBS): Remove wrapper.o.
12423         * cli/cli-interp.c: Don't inlude wrapper.h.
12424         * corelow.c: Likewise.
12425         (core_open): Replace gdb_target_find_new_threads with
12426         TRY_CATCH around target_find_new_threads.
12427         * eval.c (fetch_subexp_value): Likewise for value_fetch_lazy.
12428         * gdbtypes.c (safe_parse_type): Likewise for parse_and_eval_type.
12429         * varobj.c (varobj_create): Likewise for parse_exp_1 and
12430         evaluate_expression.
12431         (varobj_set_value): Likewise for evaluate_expression and
12432         value_assign.
12433         (install_new_variable): Likewise for value_fetch_lazy.
12434         (adjust_value_for_child_access): Likewise for value_ind.
12435         (c_describe_child): Likewise for value_subscript and
12436         value_ind.
12437         (c_value_of_root): Likewise for evaluate_expression.
12438         * wrapper.c: Remove.
12439         * wrapper.h: Remove.
12440
12441 2012-01-09  Doug Evans  <dje@google.com>
12442
12443         * dwarf2read.c (read_and_check_comp_unit_head): Renamed from
12444         partial_read_comp_unit_head.  Replace "buffer", "buffer_size" and
12445         "abfd" args with "section".  All callers updated.
12446         Error checking code moved ...
12447         (error_check_comp_unit_head): ... here.  New function.
12448         (read_and_check_type_unit_head): Renamed from read_type_unit_head.
12449         Delete arg "abfd".  New arg "type_offset".  All callers updated.
12450         (create_debug_types_hash_table): Simplify by using
12451         read_and_check_type_unit_head.
12452
12453         * parser-defs.h (namecopy): Delete.
12454         * parse.c (namecopy, namecopy_size): Move into copy_name.
12455
12456 2012-01-09  Jan Kratochvil  <jan.kratochvil@redhat.com>
12457
12458         Partially fix duplicate .o files after omitting libbfd.a.
12459         * config/alpha/alpha-osf3.mh (NATDEPFILES): Remove solib.o.
12460         * config/i386/nbsdaout.mh (NATDEPFILES): Remove solib.o.
12461         * config/i386/obsdaout.mh (NATDEPFILES): Remove solib.o.
12462         * config/m68k/nbsdaout.mh (NATDEPFILES): Remove solib.o.
12463         * config/m68k/obsd.mh (NATDEPFILES): Remove solib.o.
12464         * config/powerpc/aix.mh (NATDEPFILES): Remove xcoffread.o.
12465         * config/vax/nbsdaout.mh (NATDEPFILES): Remove solib.o.
12466
12467 2012-01-09  Pedro Alves  <palves@redhat.com>
12468
12469         * MAINTAINERS: Update my email address.
12470
12471 2012-01-08  Doug Evans  <dje@google.com>
12472
12473         * dwarf2read.c (dwarf2_per_objfile): Rename n_type_comp_units to
12474         n_type_units.  Rename type_comp_units to all_type_units.
12475         All uses updated.
12476         (add_signatured_type_cu_to_table): Renamed from
12477         add_signatured_type_cu_to_list.  All callers updated.
12478
12479         * gdbtypes.h (struct cplus_struct_type): Delete member
12480         nfn_fields_total.  All uses removed.
12481
12482 2012-01-06  Doug Evans  <dje@google.com>
12483
12484         * dwarf2read.c: Move FIXME from dwarf2_build_psymtabs_hard
12485         to top of file.
12486         (dwarf2_find_comp_unit): Delete.
12487         (process_psymtab_comp_unit): Make result "void".
12488         Delete args buffer, info_ptr, buffer_size, and replace with
12489         "section".  All callers updated.
12490         (dwarf2_build_psymtabs_hard): Simplify.
12491
12492 2012-01-06  Sergio Durigan Junior  <sergiodj@redhat.com>
12493             Thiago Jung Bauermann  <bauerman@br.ibm.com>
12494
12495         * ada-lang.c (ada_exception_name_addr): Add `volatile' keyword
12496         before `struct gdb_exception'.
12497         * breakpoint.c (update_global_location_list_nothrow)
12498         (update_breakpoint_locations, enable_breakpoint_disp): Likewise.
12499         * cp-abi.c (value_rtti_type): Likewise.
12500         * cp-support.c (cp_validate_operator): Likewise.
12501         * infrun.c (insert_exception_resume_breakpoint)
12502         (check_exception_resume, keep_going): Likewise.
12503         * mi-interp.c (mi_breakpoint_created)
12504         (mi_breakpoint_modified): Likewise.
12505         * rs6000-aix-tdep.c (rs6000_convert_from_func_ptr_addr): Likewise.
12506         * solib-ia64-hpux.c (ia64_hpux_at_dld_breakpoint_p)
12507         (ia64_hpux_handle_dld_breakpoint_1): Likewise.
12508
12509 2012-01-05  Doug Evans  <dje@google.com>
12510
12511         * dwarf2read.c (statement_prologue): Delete, unused.
12512
12513         * dwarf2read.c (dwarf2_per_cu_addr_size): Make result type an int.
12514         * dwarf2loc.h (dwarf2_per_cu_addr_size): Update.
12515
12516         * dwarf2read.c (comp_unit_header): Delete, unused.
12517
12518 2012-01-05  Ulrich Weigand  <uweigand@de.ibm.com>
12519
12520         * configure.tgt [s390*-*-*] (gdb_target_obs): Add corelow.o.
12521         * config/s390/s390.mh (NATDEPFILES): Remove corelow.o.
12522
12523 2012-01-05  Khoo Yit Phang  <khooyp@cs.umd.edu>
12524
12525         * infrun.c (normal_stop): Don't skip calling the normal_stop
12526         observers if the thread was doing a multi-step, but stopped for
12527         some reason other than stepping.
12528
12529 2012-01-05  Pedro Alves  <alves.ped@gmail.com>
12530
12531         * cli/cli-decode.h: Add comments.
12532         (CMD_LIST_AMBIGUOUS): Moved to command.h
12533         (add_cmd, add_alias_cmd, add_prefix_cmd, add_abbrev_prefix_cmd)
12534         (set_cmd_cfunc, set_cmd_sfunc, set_cmd_completer, cmd_cfunc_eq)
12535         (set_cmd_context, get_cmd_context, lookup_cmd, lookup_cmd_1)
12536         (deprecate_cmd, deprecated_cmd_warning, lookup_cmd_composition)
12537         (add_com, add_com_alias, add_info, add_info_alias)
12538         (complete_on_cmdlist, complete_on_enum, help_list): Remove
12539         declarations.
12540         * command.h: Add and adjust comments.
12541         (CMD_LIST_AMBIGUOUS): Moved here.
12542         (help_cmd, help_cmd_list): Delete declarations.
12543
12544 2012-01-04  Doug Evans  <dje@google.com>
12545
12546         * dwarf2read.c (dwarf2_read_abbrevs): Delete arg "abfd".
12547         All callers updated.
12548         (load_full_type_unit): Renamed from read_signatured_type_at_offset.
12549         Replace all arguments with "per_cu".  All callers updated.
12550
12551         * dwarf2read.c (dwarf2_per_cu_data): Remove outdated comment.
12552
12553         * dwarf2read.c (init_one_comp_unit): Delete arg "objfile".
12554         New arg "per_cu".  All callers updated.
12555
12556         Delete #if 0'd out code.
12557         * language.c (binop_result_type): Delete.
12558         (simple_type, ordered_type, same_type, integral_type): Delete.
12559         (numeric_type, character_type, string_type, boolean_type): Delete.
12560         (float_type, structured_type): Delete.
12561         * language.h: Update.
12562
12563 2012-01-04  Tom Tromey  <tromey@redhat.com>
12564
12565         * python/py-value.c (valpy_binop): Initialize 'res_val'.
12566
12567 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
12568
12569         * corefile.c (close_exec_file): Delete.
12570         (reopen_exec_file): Remove commented out code that seems related
12571         to close_exec_file, which is being deleted here.
12572         * inferior.h (close_exec_file): Delete.
12573         * fork-child.c (fork_inferior): Remove call to fork_inferior.
12574
12575 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
12576
12577         * ada-lang.c: #include "cli/cli-utils.h".
12578         (get_selections): Use skip_spaces.
12579         (ada_get_next_arg): Use skip_spaces and skip_to_space.
12580         (catch_ada_exception_command_split): Use skip_spaces.
12581         (ada_decode_assert_location): Likewise.
12582
12583 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
12584
12585         * linespec.c (decode_line_internal): Check for C++ or Java
12586         compound constructs only if the current language is C, C++
12587         or Java.
12588
12589 2012-01-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
12590
12591         Revert:
12592         2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
12593                     Joel Brobecker  <brobecker@adacore.com>
12594         Fix regression for gdb.cp/gdb2495.exp with gcc-4.7.
12595         * arch-utils.c (displaced_step_at_entry_point): Incrase BP_LEN skip to
12596         3 times.
12597         * infcall.c (call_function_by_hand) <AT_SYMBOL>: Move it upwards and
12598         fall through into AT_ENTRY_POINT.
12599         (call_function_by_hand) <AT_ENTRY_POINT>: New variable bp_len.  Adjust
12600         DUMMY_ADDR with it.
12601         * ppc-linux-tdep.c (ppc_linux_displaced_step_location): Increase
12602         PPC_INSN_SIZE skip to 3 times.
12603
12604 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
12605
12606         * linespec.c (add_minsym): Preserve function descriptors.
12607
12608 2012-01-04  Ulrich Weigand  <uweigand@de.ibm.com>
12609
12610         * breakpoint.c (all_locations_are_pending): Consider locations
12611         in program spaces executing during startup pending as well.
12612
12613 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
12614
12615         Copyright year update in most files of the GDB Project.
12616
12617 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
12618
12619         * copyright.sh: Delete.
12620         * copyright.py: Rewrite.
12621
12622 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
12623
12624         * gnulib/extra/update-copyright: New file, imported from gnulib.
12625
12626 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
12627
12628         * README (Copyright and License Notices): New section.
12629
12630 2012-01-03  Tom Tromey  <tromey@redhat.com>
12631
12632         PR python/12533:
12633         * python/py-value.c (valpy_dereference, valpy_get_address
12634         valpy_get_dynamic_type, valpy_lazy_string, valpy_do_cast)
12635         (valpy_getitem, valpy_call, valpy_binop, valpy_negative)
12636         (valpy_absolute, valpy_richcompare): Free intermediate values.
12637
12638 2011-01-03  Joel Brobecker  <brobecker@adacore.com>
12639
12640         * ada-lang.c: Reformat the copyright notice.
12641
12642 2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
12643
12644         * Makefile.in (ALL_TARGET_OBS): Remove solib-target.o.
12645         * configure.tgt (arm*-wince-pe, arm*-*-mingw32ce*, arm*-*-symbianelf*)
12646         (i[34567]86-*-dicos*, i[34567]86-*-cygwin*, i[34567]86-*-mingw32*)
12647         (x86_64-*-dicos*, x86_64-*-mingw*): Remove solib-target.o.
12648         Revert this part of:
12649         2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
12650         Build gdb directly from *.o files not using libgdb.a.
12651         * Makefile.in (COMMON_OBS): Remove solib-target.o.
12652
12653 2012-01-02  Joel Brobecker  <brobecker@adacore.com>
12654
12655         * gdb/common/gdb_thread_db.h, gdb/dbxread.c, gdb/environ.c,
12656         gdb/gcore.h, gdb/rs6000-tdep.h, gdb/s390-nat.c, gdb/tic6x-tdep.c:
12657         Reformat the copyright header.
12658
12659 2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
12660
12661         Revert this part of:
12662         2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
12663         Remove the gdbtui binary.
12664         * gdb.c (main): Remove args.interpreter_p initialization.
12665         * main.c (captured_main): Set INTERPRETER_P directly by INTERP_CONSOLE.
12666         * main.h (struct captured_main_args): Remove interpreter_p.
12667
12668 2012-01-02  Joel Brobecker  <brobecker@adacore.com>
12669
12670         * config/djgpp/fnchange.lst: Add entry for ChangeLog-2011.
12671
12672 2012-01-02  Joel Brobecker  <brobecker@adacore.com>
12673
12674         * top.c (print_gdb_version): Update copyright year.
12675
12676 2012-01-02  Yao Qi  <yao@codesourcery.com>
12677
12678         * inf-ptrace.c (inf_ptrace_xfer_partial): Reindent.
12679
12680 2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
12681             Joel Brobecker  <brobecker@adacore.com>
12682
12683         Fix regression for gdb.cp/gdb2495.exp with gcc-4.7.
12684         * arch-utils.c (displaced_step_at_entry_point): Incrase BP_LEN skip to
12685         3 times.
12686         * infcall.c (call_function_by_hand) <AT_SYMBOL>: Move it upwards and
12687         fall through into AT_ENTRY_POINT.
12688         (call_function_by_hand) <AT_ENTRY_POINT>: New variable bp_len.  Adjust
12689         DUMMY_ADDR with it.
12690         * ppc-linux-tdep.c (ppc_linux_displaced_step_location): Increase
12691         PPC_INSN_SIZE skip to 3 times.
12692
12693 2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
12694
12695         * amd64-linux-nat.c (update_debug_registers_callback): New comment on
12696         the return value.
12697         * i386-linux-nat.c (update_debug_registers_callback): Likewise.
12698
12699 2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
12700
12701         Build gdb directly from *.o files not using libgdb.a.
12702         * Makefile.in (SUBDIR_TUI_OBS): Remove duplicate tui.o.
12703         (COMMON_OBS): Remove solib-target.o.
12704         (LIBGDB_OBS, libgdb.a): Move it before the gdb$(EXEEXT) rule.
12705         (gdb$(EXEEXT)): Replace libgdb.a with $(LIBGDB_OBS).
12706         (LIBGDB_OBS, libgdb.a): Move it above.
12707         * configure.tgt (alpha*-*-linux*, alpha*-*-freebsd*)
12708         (alpha*-*-kfreebsd*-gnu, alpha*-*-netbsd*, alpha*-*-knetbsd*-gnu)
12709         (alpha*-*-openbsd*, am33_2.0*-*-linux*, arm*-wince-pe)
12710         (arm*-*-mingw32ce*, arm*-*-linux*, arm*-*-netbsd*, arm*-*-knetbsd*-gnu)
12711         (arm*-*-openbsd*, cris*, frv-*-*, hppa*-*-hpux*, hppa*-*-linux*)
12712         (hppa*-*-netbsd*, hppa*-*-openbsd*, i[34567]86-*-darwin*)
12713         (i[34567]86-*-dicos*, i[34567]86-*-freebsd*, i[34567]86-*-kfreebsd*-gnu)
12714         (i[34567]86-*-netbsd*, i[34567]86-*-knetbsd*-gnu, i[34567]86-*-openbsd*)
12715         (i[34567]86-*-nto*, i[34567]86-*-solaris2.1[0-9]*)
12716         (x86_64-*-solaris2.1[0-9]*, i[34567]86-*-solaris*, i[34567]86-*-linux*)
12717         (i[34567]86-*-gnu*, ia64-*-linux*, m32r*-*-linux*, m68*-*-linux*)
12718         (m68*-*-netbsd*, m68*-*-knetbsd*-gnu, m68*-*-openbsd*)
12719         (microblaze*-linux-*, microblaze*-*-linux*, mips*-sgi-irix5*)
12720         (mips*-sgi-irix6*, mips*-*-linux*, mips*-*-netbsd*)
12721         (mips*-*-knetbsd*-gnu, mips64*-*-openbsd*, powerpc-*-netbsd*)
12722         (powerpc-*-knetbsd*-gnu, powerpc-*-openbsd*, powerpc-*-aix*, rs6000-*-*)
12723         (powerpc-*-linux*, powerpc64-*-linux*, powerpc*-*-*, s390*-*-*)
12724         (sh*-*-linux*, sh*-*-netbsdelf*, sh*-*-knetbsd*-gnu, sh*-*-openbsd*)
12725         (sparc-*-linux*, sparc64-*-linux*, sparc*-*-freebsd*)
12726         (sparc*-*-kfreebsd*-gnu, sparc-*-netbsd*, sparc-*-knetbsd*-gnu)
12727         (sparc64-*-netbsd*, sparc64-*-knetbsd*-gnu, sparc-*-openbsd*)
12728         (sparc64-*-openbsd*, sparc-*-solaris2.[0-6], sparc-*-solaris2.[0-6].*)
12729         (sparc-*-solaris2*, sparcv9-*-solaris2*, sparc64-*-solaris2*)
12730         (vax-*-netbsd*, vax-*-knetbsd*-gnu, x86_64-*-darwin*, x86_64-*-dicos*)
12731         (x86_64-*-linux*, x86_64-*-freebsd*, x86_64-*-kfreebsd*-gnu)
12732         (x86_64-*-netbsd*, x86_64-*-knetbsd*-gnu, x86_64-*-openbsd*)
12733         (xtensa*-*-linux*, xtensa*): Remove solib.o from gdb_target_obs.
12734
12735 2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
12736
12737         Remove the gdbtui binary.
12738         * .gitignore (/gdbtui): Remove.
12739         * Makefile.in (TUI): Remove.
12740         (SUBDIR_TUI_OBS): Remove tui-main.o.
12741         (SUBDIR_TUI_SRCS): Remove tui/tui-main.c.
12742         (all-tui, install-tui, uninstall-tui, $(TUI)$(EXEEXT), clean-tui)
12743         (tui-main.o): Remove.
12744         (all_object_files): Remove tui-main.o.
12745         * NEWS: New note for the gdbtui removal.
12746         * configure: Rebuilt.
12747         * configure.ac: No longer add all-tui, clean-tui, install-tui and
12748         uninstall-tui to CONFIG_ALL, CONFIG_CLEAN, CONFIG_INSTALL and
12749         CONFIG_UNINSTALL respectively.
12750         * gdb.c (main): Remove args.interpreter_p initialization.
12751         * main.c (captured_main): Set INTERPRETER_P directly by INTERP_CONSOLE.
12752         * main.h (struct captured_main_args): Remove interpreter_p.
12753         * tui/tui-main.c: Remove.
12754
12755 2012-01-01  Doug Evans  <dje@google.com>
12756
12757         * dwarf2read.c (dwarf2_compute_name): Simplify objfile references.
12758         (dwarf2_physname, read_import_statement): Ditto.
12759         (read_call_site_scope, dwarf2_record_block_ranges): Ditto.
12760         (process_structure_scope read_subroutine_type): Ditto.
12761         (read_typedef, load_partial_dies, read_partial_die): Ditto.
12762         (find_partial_die, dwarf_decode_lines, lookup_die_type): Ditto.
12763         (dwarf2_fetch_die_location_block): Ditto.
12764         (dwarf_decode_macros, dwarf2_symbol_mark_computed): Ditto.
12765
12766         * dwarf2read.c (read_signatured_type): Delete `objfile' arg.
12767         All callers updated.
12768         (load_full_comp_unit, queue_comp_unit, process_queue): Ditto.
12769         (dw2_do_instantiate_symtab, dw2_instantiate_symtab): Ditto.
12770         (process_psymtab_comp_unit, load_partial_comp_unit): Ditto.
12771
12772         * dwarf2read.c (load_cu): Move assert to more useful location.
12773
12774         * dwarf2read.c (free_heap_comp_unit): Renamed from free_one_comp_unit.
12775         All callers updated.
12776
12777         * dwarf2read.c (dwarf2_per_objfile): Add comment.
12778         (dwarf2_elf_names): Minor reformat.
12779         (dwarf2_per_cu_data): Tweak comment.
12780         (dwarf2_read_section): Fix comment.
12781         (create_all_comp_units): Fix comment.
12782         (load_full_comp_unit): Fix comment.
12783         (process_full_comp_unit): Fix comment.
12784         (read_signatured_type): Fix comment.
12785
12786 For older changes see ChangeLog-2011.
12787 \f
12788 Local Variables:
12789 mode: change-log
12790 left-margin: 8
12791 fill-column: 74
12792 version-control: never
12793 coding: utf-8
12794 End: