gdb/
[external/binutils.git] / gdb / ChangeLog
1 2012-12-15  Yao Qi  <yao@codesourcery.com>
2             Doug Evans  <dje@google.com>
3
4         * common/queue.h: New.
5
6 2012-12-15  Yao Qi  <yao@codesourcery.com>
7
8         * breakpoint.c (print_one_breakpoint_location): Display the
9         state of 'installed' of each non-pending location of a tracepoint
10         in both CLI and MI.
11         (download_tracepoint_locations): Notify 'breakpoint-modified'
12         observer if any tracepoint location is downloaded.
13         * tracepoint.c (start_tracing): Likewise.
14         (merge_uploaded_tracepoints): Record all modified
15         tracepoints and notify 'breakpoint-modified' observer for them.
16
17         * NEWS: Mention the change for CLI and MI.
18
19 2012-12-15  Yao Qi  <yao@codesourcery.com>
20
21         * breakpoint.c (download_tracepoint_locations): Iterate over
22         ALL_TRACEPOINTS first and then iterate over locations of
23         each tracepoint.
24
25 2012-12-14  Pierre Muller  <muller@sourceware.org>
26             Pedro Alves  <palves@redhat.com>
27
28         * solib-target.c (solib_target_current_sos): Remove 'const'
29         qualifier from type of library_document local variable to be
30         able to free it and avoid a memory leak.
31         Use cleanup chain to avoid leak even if exceptino is generated.
32
33 2012-12-14  Tom Tromey  <tromey@redhat.com>
34
35         PR c++/8888:
36         * symtab.c (lookup_symbol_aux): If constructor is found, consider
37         returning the type instead.
38         * c-exp.y (classify_name): Check STRUCT_DOMAIN if a constructor is
39         found.
40
41 2012-12-14  Tom Tromey  <tromey@redhat.com>
42
43         Partial fix for PR c++/14160:
44         * c-typeprint.c (c_type_print_base): Use TYPE_FN_FIELD_CONSTRUCTOR.
45         * dwarf2read.c (dwarf2_is_constructor): New function.
46         (dwarf2_add_member_fn): Use it.
47         * gnu-v3-abi.c (gnuv3_pass_by_reference): Use
48         TYPE_FN_FIELD_CONSTRUCTOR.
49         * jv-typeprint.c (java_type_print_base): Use
50         TYPE_FN_FIELD_CONSTRUCTOR.
51         * gdbtypes.h (struct fn_field) <is_constructor>: New field.
52         <dummy>: Shrink.
53         (TYPE_FN_FIELD_CONSTRUCTOR): New macro.
54
55 2012-12-14  Tom Tromey  <tromey@redhat.com>
56
57         * c-exp.y (block, variable, name_not_typename, lex_one_token,
58         classify_name): Update.
59         * c-valprint.c (c_val_print): Update.
60         * f-exp.y (yylex): Update.
61         * go-exp.y (package_name_p, classify_packaged_name)
62         (classify_name): Update.
63         * jv-exp.y (push_variable): Update.
64         * m2-exp.y (variable): Update.
65         * mi/mi-cmd-stack.c (list_args_or_locals): Update.
66         * p-exp.y (block, variable, yylex): Update.
67         * p-valprint.c (pascal_val_print): Update.
68         * parse.c (write_dollar_variable): Update.
69         * printcmd.c (address_info): Update.
70         * python/py-symbol.c (gdbpy_lookup_symbol): Update.
71         * symtab.c (lookup_symbol_aux, lookup_symbol_in_language)
72         (lookup_symbol): Change type of 'is_a_field_of_this'.
73         (check_field): Add 'is_a_field_of_this' argument.
74         * symtab.h (struct field_of_this_result): New.
75         (lookup_symbol, lookup_symbol_in_language): Update.
76
77 2012-12-14  Tom Tromey  <tromey@redhat.com>
78
79         * symtab.c (check_field): Now static.  Move from...
80         * valops.c (check_field): ... here.  Remove.
81         * value.h (check_field): Don't declare.
82
83 2012-12-14  Tom Tromey  <tromey@redhat.com>
84
85         * NEWS: Mention "info proc" and core files.
86         * corelow.c (core_info_proc): New function.
87         (init_core_ops): Set to_info_proc.
88         * gdbarch.c, gdbarch.h: Rebuild.
89         * gdbarch.sh (core_info_proc): New method.
90         * infcmd.c (info_proc_cmd_1): Invoke target_info_proc first.
91         * linux-tdep.c (linux_core_info_proc_mappings)
92         (linux_core_info_proc): New functions.
93         (linux_find_memory_region_ftype): New typedef.
94         (linux_find_memory_regions_full): New function, from
95         linux_find_memory_regions.
96         (struct linux_find_memory_regions_data): New.
97         (linux_find_memory_regions_thunk): New function.
98         (linux_find_memory_regions): Rewrite.
99         (struct linux_make_mappings_data): New.
100         (linux_make_mappings_callback)
101         (linux_make_mappings_corefile_notes): New functions.
102         (linux_make_corefile_notes): Call linux_make_mappings_corefile_notes.
103         (linux_init_abi): Call set_gdbarch_core_info_proc.
104         * target.c (target_info_proc): Return 'int'.
105         * target.h (target_info_proc): Update.
106
107 2012-12-14  Pierre Muller  <muller@sourceware.org>
108
109         * windows-nat.c (windows_xfer_shared_libraries): Avoid
110         memory leak when OFFSET >= LEN_AVAIL.
111
112 2012-12-13  Tom Tromey  <tromey@redhat.com>
113
114         * solib-svr4.c (enable_break): Use SECT_OFF_TEXT.
115
116 2012-12-13  Tom Tromey  <tromey@redhat.com>
117
118         * acinclude.m4 (CY_AC_C_WORKS): Remove.
119
120 2012-12-13  Pierre Muller  <muller@sourceware.org>
121
122         * coff-pe-read.c (pe_text_section_offset): Increase size of sname
123         local variable and zero terminate it to avoid possible problems
124         in strcmp.
125
126 2012-12-13  Pedro Alves  <palves@redhat.com>
127
128         * coff-pe-read.c: Include coff/internal.h.
129         (read_pe_exported_syms): Use SCNNMLEN instead of hardcoded 8.
130         Null terminate buffer explicitly instead of memset the whole
131         buffer.
132
133 2012-12-13  Pierre Muller  <muller@sourceware.org>
134
135         * coff-pe-read.c (IMAGE_SCN_CNT_TEXT, IMAGE_SCN_CNT_INITIALIZED_DATA)
136         (IMAGE_SCN_CNT_UNINITIALIZED_DATA): Remove useless checks
137         for already defined macros.
138
139 2012-12-13  Pierre Muller  <muller@sourceware.org>
140
141         * coff-pe-read.h (pe_text_section_offset): Declare new function.
142         * coff-pe-read.c (debug_coff_pe_read): New static variable.
143         (struct read_pe_section_data): Add section_name field.
144         (IMAGE_SCN_CNT_CODE): New macro, if not already defined.
145         (IMAGE_SCN_CNT_INITIALIZED_DATA): Ditto.
146         (IMAGE_SCN_CNT_UNINITIALIZED_DATA): Ditto.
147         (get_pe_section_index): New function.
148         (struct pe_sections_info): New type.
149         (get_section_vmas): Use new struct pe_sections_info.
150         (add_pe_exported_sym): Handle unnamed exported function.
151         (add_pe_forwarded_sym): New function.
152         (read_pe_truncate_name): Truncate at last dot.
153         (pe_as16): New function.
154         (read_pe_exported_syms): Use ordinal of function to
155         retrieve correct RVA address of function and handle
156         forwarded symbol.
157         (pe_text_section_offset): New function.
158         (show_debug_coff_pe_read): New function.
159         (_initialize_coff_pe_read): New function adding
160         'set/show debug coff_pe_read' commands.
161
162         * windows-tdep.c (windows_xfer_shared_library): Use
163         pe_text_section_offset function instead of possibly wrong
164         0x1000 constant for .text sextion offset.
165
166 2012-12-13  Pedro Alves  <palves@redhat.com>
167
168         * gdbarch.sh (do_read): Set IFS to blank.
169
170 2012-12-12  Mircea Gherzan  <mircea.gherzan@intel.com>
171
172         * NEWS: Mention the -catch-load/-catch-unload MI commands.
173
174 2012-12-12  Mircea Gherzan  <mircea.gherzan@intel.com>
175
176         * Makefile.in (SUBDIR_MI_OBS): Add mi-cmd-catch.o.
177         (SUBDIR_MI_SRCS): Add mi/mi-cmd-catch.c.
178         * breakpoint.c (add_solib_catchpoint): New function that
179         can be used by both CLI and MI, factored out from
180         catch_load_or_unload.
181         (catch_load_or_unload): Strip it down and make it use the
182         new add_solib_catchpoint.
183         * breakpoint.h (add_solib_catchpoint): Declare it.
184         * mi/mi-cmd-break.h: New file.
185         * mi/mi-cmd-break.c: Include mi-cmd-break.h.
186         (setup_breakpoint_reporting): New function used for both
187         catchpoints and breakpoints.
188         (mi_cmd_break_insert): Use setup_breakpoint_reporting.
189         * mi/mi-cmd-catch.c: New file.
190         * mi/mi-cmds.c (mi_cmds): Add the handlers for -catch-load
191         and -catch-unload.
192         * mi/mi-cmds.h: Declare the handlers for -catch-load and
193         -catch-unload.
194
195 2012-11-28  Tom Tromey  <tromey@redhat.com>
196
197         * dbxread.c (read_dbx_symtab): Update.
198         (end_psymtab, dbx_psymtab_to_symtab_1, dbx_psymtab_to_symtab)
199         (read_ofile_symtab): Add 'objfile' argument.
200         * dwarf2read.c (process_psymtab_comp_unit_reader)
201         (build_type_psymtabs_reader): Update.
202         (dwarf2_psymtab_to_symtab): Add 'objfile' argument.
203         * mdebugread.c (mdebug_psymtab_to_symtab): Add 'objfile'
204         argument.
205         (parse_procedure, parse_partial_symbols): Update.
206         (psymtab_to_symtab_1): Add 'objfile' argument.
207         * psympriv.h (struct partial_symtab) <objfile>: Remove.
208         <read_symtab>: Add 'objfile' argument.
209         (sort_pst_symbols, discard_psymtab): Update.
210         * psymtab.c (partial_map_expand_apply): Update.
211         (find_pc_sect_psymtab_closer): Add 'objfile' argument.
212         (find_pc_sect_psymtab, find_pc_sect_symtab_from_partial): Update.
213         (find_pc_sect_psymbol): Add 'objfile' argument.
214         (lookup_symbol_aux_psymtabs): Update.
215         (match_partial_symbol, lookup_partial_symbol, psymtab_to_symtab):
216         Add 'objfile' argument.
217         (find_last_source_symtab_from_partial, dump_psymtab)
218         (dump_psymtabs_for_objfile, read_symtabs_for_function)
219         (expand_partial_symbol_tables, read_psymtabs_with_filename)
220         (find_symbol_file_from_partial, map_matching_symbols_psymtab)
221         (expand_symtabs_matching_via_partial): Update.
222         (sort_pst_symbols): Add 'objfile' argument.
223         (allocate_psymtab): Update.
224         (discard_psymtab): Add 'objfile' argument.
225         (maintenance_info_psymtabs, maintenance_check_symtabs): Update.
226         * stabsread.h (end_psymtab): Update.
227         * xcoffread.c (this_symtab_objfile): New global.
228         (process_linenos, enter_line_range, xcoff_next_symbol_text):
229         Update.
230         (read_xcoff_symtab): Add 'objfile' argument.
231         (read_symbol, read_symbol_lineno): Update.
232         (xcoff_psymtab_to_symtab_1, xcoff_psymtab_to_symtab)
233         (xcoff_end_psymtab): Add 'objfile' argument.
234         (scan_xcoff_symtab): Update.
235
236 2012-12-12  Paul Koning  <paul_koning@dell.com>
237
238         Add support for Python 3.
239         * NEWS: Mention Python 3 support.
240         * varobj.c (value_get_print_value): Use
241         python_string_to_target_string.
242         * python/py-block.c: Use PyVarObject_HEAD_INIT in initialization
243         of type objects.
244         * python/py-breakpoint.c: Ditto.
245         * python/py-cmd.c:  Ditto.
246         * python/py-event.c: Ditto.
247         * python/py-event.h: Ditto.
248         * python/py-evtregistry.c: Ditto.
249         * python/py-finishbreakpoint.c: Ditto.
250         * python/py-frame.c: Ditto.
251         * python/py-function.c: Ditto.
252         * python/py-infthread.c: Ditto.
253         * python/py-lazy-string.c: Ditto.
254         * python/py-progspace.c: Ditto.
255         * /python/py-symbol.c: Ditto.
256         * python/py-evts.c:  (gdbpy_initialize_py_events): Add module
257         initialization for Python 3.
258         * python/py-inferior.c: Use PyVarObject_HEAD_INIT in initialization
259         of type objects.
260         (infpy_read_memory): Return memoryview object if Python 3.
261         (infpy_write_memory): Use "s*" operand parsing code for Python 3.
262         (infpy_search_memory): Ditto.
263         (get_buffer): New function for Python 3.
264         * python/py-objfile.c: Use PyVarObject_HEAD_INIT in initialization
265         of type objects.
266         (objfpy_dealloc): Use Py_TYPE to call tp_free.
267         * python/py-param.c: Use PyVarObject_HEAD_INIT in initialization
268         of type objects.
269         (get_attr): Use PyUnicode_CompareWithASCIIString if Python 3.
270         (set_attr): Ditto.
271         * python/py-prettyprint.c (print_string_repr): use PyBytes methods
272         instead of PyString methods if Python 3.
273         (print_children): Skip push_dummy_python_frame call if Python 3.
274         * python/py-symtab.c: Use PyVarObject_HEAD_INIT in initialization
275         of type objects.
276         (salpy_dealloc): Use Py_TYPE to call tp_free.
277         * python/py-type.c: Use PyVarObject_HEAD_INIT in initialization
278         of type objects.
279         (field_dealloc): Use Py_TYPE to call tp_free.
280         (typy_dealloc): Ditto.
281         (type_object_as_number): Adjust struct initializations for
282         differences in layout for Python 2 vs. Python 3.
283         * python/py-utils.c (python_string_to_unicode): Omit non-Unicode
284         string case for Python 3.
285         (unicode_to_encoded_python_string): Shorten code (no functional
286         change).
287         (python_string_to_target_python_string): Comment that in Python 3
288         returned value is a Python "bytes" type.
289         (gdbpy_is_string): Omit non-Unicode string check in Python 3.
290         (gdb_py_object_from_longest): Omit non-long integer case in Python
291         3.
292         (gdb_py_object_from_ulongest): Ditto.
293         * python/py-value.c: Use PyVarObject_HEAD_INIT in initialization
294         of type objects.
295         (valpy_dealloc): Use Py_TYPE to call tp_free.
296         (valpy_int): Omit function if Python 3.
297         (convert_value_from_python): Use "%S" format (Python object as a
298         string) if Python 3.
299         (value_object_as_number): Adjust struct initializations for
300         differences in layout for Python 2 vs. Python 3.
301         * python/python-config.py: Adjust syntax for Python 3
302         compatibility.
303         Include "sys.abiflags" string as part of python library name, if
304         that attribute exists (Python 3).
305         * python/python-internal.h (IS_PY3): Define if Python 3.
306         (Py_TPFLAGS_HAVE_ITER, Py_TPFLAGS_CHECKTYPES): Define with
307         placeholder value if Python 3.
308         (PyInt_Check, PyInt_FromLong, PyInt_AsLong, PyString_FromString,
309         PyString_Decode, PyString_FromFormat, PyString_Check): Define as
310         analogous Python 3 API function if Python 3.
311         (PyVarObject_HEAD_INIT): Define if not already defined.
312         (Py_TYPE): Ditto.
313         * python/python.c (eval_python_command): Omit Py_FlushLine call if
314         Python 3.
315         Check return values of all Python API calls for error.
316         Supply dummy "python" and "python-interactive" commands if Python
317         initialization failed.
318         (_initialize_python): Convert argc to wchar_t** if Python 3.
319         Add module initialization for Python 3.
320         (finish_python_initialization): Pass wchar_t * argument to
321         PySys_SetPath if Python 3.
322         * python/lib/gdb/__init__.py: Define "reload" if Python 3.
323         (_GdbFile): New class for common output file behavior.
324         (GdbOutFile): Subclass from _GdbFile.
325         (GdbOutputErrorFile): Ditto.
326         (auto_load_packages): Adjust syntax for Python 3 compatibility.
327         * python/lib/gdb/printing.py: Define basestr and int if Python 3.
328         * python/lib/gdb/prompt.py: Use sorted() function rather than
329         sort() method.
330         * python/lib/gdb/command/explore.py: Define raw_input if Python 3.
331         Adjust syntax for Python 3 compatibility.
332         * python/lib/gdb/command/pretty_printers.py: Use sorted() function
333         rather than sort() method.
334         Adjust syntax for Python 3 compatibility.
335         * python/lib/gdb/command/type_printers.py: Ditto.
336         * doc/gdb.texinfo (Inferior.read_memory): Mention that the return
337         value is a memoryview object if Python 3.
338
339 2012-12-12  Tom Tromey  <tromey@redhat.com>
340
341         * coffread.c (coff_objfile_data_key): New global.
342         (coff_symfile_init): Use set_objfile_data.
343         (coff_symfile_read): Use objfile_data.
344         (coff_symfile_finish): Don't free deprecated_sym_private.
345         (coff_free_info): New function.
346         (_initialize_coffread): Initialize coff_objfile_data_key.
347         * mdebugread.c (pending_list): Update comment.
348         * objfiles.h (struct objfile) <deprecated_sym_private>: Remove.
349         * symfile.c (reread_symbols): Don't mention
350         deprecated_sym_private.
351         * xcoffread.c (xcoff_objfile_data_key): New global.
352         (XCOFF_DATA): New macro.
353         (process_linenos, enter_line_range, xcoff_next_symbol_text)
354         (read_xcoff_symtab, coff_getfilename, read_symbol_lineno): Use
355         XCOFF_DATA.
356         (xcoff_new_init) Use set_objfile_data.
357         (xcoff_symfile_finish): Don't free deprecated_sym_private.
358         (init_stringtab, swap_sym, scan_xcoff_symtab)
359         (xcoff_get_toc_offset, xcoff_initial_scan): Use XCOFF_DATA.
360         (xcoff_free_info): New function.
361         (_initialize_xcoffread): Initialize xcoff_objfile_data_key.
362
363 2012-12-12  Mircea Gherzan  <mircea.gherzan@intel.com>
364
365         * MAINTAINERS (Write After Approval): Add "Mircea Gherzan".
366
367 2012-12-12  Tom Tromey  <tromey@redhat.com>
368
369         * coffread.c (coff_symfile_init): Use set_objfile_data.
370         (coff_symfile_read): Use DBX_SYMFILE_INFO.
371         * dbxread.c (dbx_objfile_data_key): New global.
372         (dbx_symfile_init): Use set_objfile_data.
373         (dbx_symfile_finish): Don't free deprecated_sym_stab_info.
374         (dbx_free_symfile_info): New function.
375         (coffstab_build_psymtabs, elfstab_build_psymtabs): Use
376         DBX_SYMFILE_INFO.
377         (stabsect_build_psymtabs): Use set_objfile_data.
378         (_initialize_dbxreadb): Initialize dbx_objfile_data_key.
379         * elfread.c (elf_symtab_read): Use DBX_SYMFILE_INFO,
380         set_objfile_data.
381         (free_elfinfo): Use DBX_SYMFILE_INFO.
382         (elf_symfile_finish): Don't free deprecated_sym_stab_info.
383         (elfstab_offset_sections): Use DBX_SYMFILE_INFO.
384         * gdb-stabs.h (dbx_objfile_data_key): Declare.
385         (DBX_SYMFILE_INFO): Rewrite to use objfile_data.
386         * objfiles.h (struct objfile) <deprecated_sym_stab_info>: Remove.
387         * somread.c (som_symfile_finish): Don't free
388         deprecated_sym_stab_info.
389
390 2012-12-12  Joel Brobecker  <brobecker@adacore.com>
391
392         * gdbarch.sh (software_single_step): Remove trailing space in
393         comment (gdbarch.h is already correct).
394
395 2012-12-11  Tom Tromey  <tromey@redhat.com>
396
397         * dwarf2read.c (dwarf2_get_dwz_file): Set 'dwz_file'.
398
399 2012-12-11  Tom Tromey  <tromey@redhat.com>
400
401         * dsrec.c (report_transfer_performance): Don't declare.
402         (load_srec): Use gettimeofday, print_transfer_performance.
403         * symfile.c (report_transfer_performance): Remove.
404
405 2012-12-11  Pedro Alves  <pedro@codesourcery.com>
406             Pedro Alves  <palves@redhat.com>
407
408         * procfs.c (procfs_make_note_section) [NEW_PROC_API]: Output a
409         NT_PSTATUS note.
410         * sol2-tdep.c (sol2_core_pid_to_str): Print process IDs
411         differently from LWP IDs.
412
413 2012-12-11  Pedro Alves  <palves@redhat.com>
414
415         * configure.ac (detect type of /proc): Remove Unixware handling.
416         * configure: Regenerate.
417         * proc-api.c (ioctl_table) [PIOCLSTATUS]: Don't mention Unixware.
418         (ioctl_table) [PCRESET]: Remove entry.
419         * proc-events.c (SYS_lwp_create, SYS_lwp_exit, SYS_lwp_wait)
420         (SYS_lwp_self, SYS_lwp_info, SYS_lwp_private, SYS_lwp_kill)
421         (SYS_lwp_suspend, SYS_lwp_continue): Don't define.
422         * proc-why.c (pr_why_table) [PR_SUSPENDED]: Don't mention Unixware.
423         * procfs.c: Remove all UNIXWARE guarded code, and all traces of
424         Unixware in comments throughout.
425         * i386-tdep.c (i386_svr4_sigtramp_p): Don't match _sigacthandler,
426         and remove mention of Unixware.
427
428 2012-12-10  Doug Evans  <dje@google.com>
429
430         * dwarf2read.c (dwarf2_cu): Enhance comment.
431         (dwarf2_get_pc_bounds): Only add ranges_base for DIEs that live in
432         the DWO file.
433         (dwarf2_record_block_ranges): Ditto.
434
435         * dwarf2read.c (create_dwo_in_dwp): Tweak comment.
436
437         * symtab.c (find_pc_sect_symtab): Add comment.
438
439 2012-12-10  Tom Tromey  <tromey@redhat.com>
440
441         * defs.h: Don't check for definition of LONGEST.
442         (min, max): Remove duplicates.
443
444 2012-12-10  Tom Tromey  <tromey@redhat.com>
445
446         * dwarf2read.c (dwarf2_fetch_die_loc_sect_off): New function.
447         (dwarf2_fetch_die_loc_cu_off): Rename from
448         dwarf2_fetch_die_location_block.  Rewrite to use
449         dwarf2_fetch_die_loc_sect_off.
450         * dwarf2loc.h (dwarf2_fetch_die_loc_sect_off): Declare.
451         (dwarf2_fetch_die_loc_cu_off): Rename.
452         * dwarf2loc.c (indirect_pieced_value): Use
453         dwarf2_fetch_die_loc_sect_off.
454         * dwarf2expr.h (struct dwarf_expr_context) <len, data>: Update
455         comment.
456         (struct dwarf_expr_piece) <v.ptr.die>: Now a sect_offset.
457         * dwarf2expr.c (add_piece): Update.
458         (execute_stack_op) <DW_OP_GNU_implicit_pointer>: Update comment.
459
460 2012-12-10  Tom Tromey  <tromey@redhat.com>
461
462         * buildsym.c (struct pending_block): Move from buildsym.h.
463         (pending_blocks): Likewise; now static.
464         (pending_block_obstack): New global.
465         (free_pending_blocks): Free blocks.
466         (record_pending_block): Use pending_block_obstack.
467         * buildsym.h (struct pending_block): Move definition to
468         buildsym.c.
469         (pending_blocks): Don't declare.
470
471 2012-12-10  Pedro Alves  <palves@redhat.com>
472
473         * solib-svr4.c (svr4_solib_create_inferior_hook) [_SCO_DS]: Remove
474         dead SCO code, and adjust function description comment.
475
476 2012-12-09  Jan Kratochvil  <jan.kratochvil@redhat.com>
477
478         * configure.ac (CC_HAS_LONG_LONG): Replace by AC_MSG_ERROR.
479         * defs.h (LONGEST, ULONGEST): Remove conditionalization for
480         CC_HAS_LONG_LONG.
481         * dwarf2-frame.c (DW64_CIE_ID): Likewise.
482         * dwarf2read.c (extract_cu_value): Remove the function.
483         (create_cus_from_index_list): Make the return type void, inline the
484         extract_cu_value caller, include new gdb_static_assert.
485         (create_cus_from_index): Make the return type void, update the function
486         comment, update the create_cus_from_index_list caller.
487         (create_signatured_type_table_from_index): Make the return type void,
488         inline the extract_cu_value caller, include new gdb_static_assert.
489         (dwarf2_read_index): Update the create_cus_from_index and
490         create_signatured_type_table_from_index caller.
491         * printcmd.c (ui_printf): Remove conditionalizations for
492         CC_HAS_LONG_LONG.
493         * config.in: Regenerate.
494         * configure: Regenerate.
495
496 2012-12-09  Jan Kratochvil  <jan.kratochvil@redhat.com>
497
498         * dwarf2read.c (struct dwarf2_cu): New field producer_is_gcc_lt_4_3.
499         Update the comment for checked_producer.
500         (check_producer): New forward declaration.
501         (producer_is_gcc_lt_4_3): New function.
502         (find_file_and_directory): Simulate *COMP_DIR only for gcc < 4.3.
503         (check_producer): Initialize also PRODUCER_IS_GCC_LT_4_3.
504
505 2012-12-07  Tom Tromey  <tromey@redhat.com>
506
507         * ada-lang.c (ada_make_symbol_completion_list): Add 'code'
508         argument, assertion.
509         * c-exp.y (typebase): Add completion productions.
510         * completer.c (expression_completer): Handle tag completion.
511         * expression.h (parse_expression_for_completion): Add argument.
512         * f-lang.c (f_make_symbol_completion_list): Add 'code'
513         argument.
514         * language.h (struct language_defn)
515         <la_make_symbol_completion_list>: Add 'code' argument.
516         * parse.c (expout_tag_completion_type, expout_completion_name):
517         New globals.
518         (mark_struct_expression): Add assertion.
519         (mark_completion_tag): New function.
520         (parse_exp_in_context): Initialize new globals.
521         (parse_expression_for_completion): Add 'code' argument.  Handle
522         tag completion.
523         * parser-defs.h (mark_completion_tag): Declare.
524         * symtab.c (default_make_symbol_completion_list_break_on): Add
525         'code' argument.  Update.
526         (default_make_symbol_completion_list): Add 'code' argument.
527         (make_symbol_completion_list): Update.
528         (make_symbol_completion_type): New function.
529         * symtab.h (default_make_symbol_completion_list_break_on)
530         (default_make_symbol_completion_list): Update.
531         (make_symbol_completion_type): Declare.
532
533 2012-12-07  Tom Tromey  <tromey@redhat.com>
534
535         * expression.h (parse_expression_for_completion): Rename
536         from parse_field_expression.
537         (parse_completion): Rename from in_parse_field.
538         * c-exp.y (lex_one_token): Update.
539         * completer.c (expression_completer): Update.
540         * go-exp.y (lex_one_token): Update.
541         * p-exp.y (yylex): Update.
542         * parse.c (parse_completion): Rename from in_parse_field.
543         (parse_exp_in_context): Update.
544         (parse_expression_for_completion): Rename from
545         parse_field_expression.  Update.
546
547 2012-12-07  Tom Tromey  <tromey@redhat.com>
548
549         * typeprint.c (_initialize_typeprint): Set completer
550         for "whatis" and "ptype".
551
552 2012-12-07  Joel Brobecker  <brobecker@adacore.com>
553
554         * copyright.py (NOT_FSF_LIST): Remove duplicate entry
555         "sim/common/cgen-fpu.h".  Remove invalid entries
556         "sim/common/sim-fpu.c" and "sim/mn10300/sim-main.h",
557         which actually have an FSF copyright header.
558
559 2012-12-07  Joel Brobecker  <brobecker@adacore.com>
560
561         * osf-share/AT386/cma_thread_io.h: Delete.
562         * osf-share/HP800/cma_thread_io.h: Delete.
563         * osf-share/README: Delete.
564         * osf-share/RIOS/cma_thread_io.h: Delete.
565         * osf-share/cma_attr.h: Delete.
566         * osf-share/cma_deb_core.h: Delete.
567         * osf-share/cma_debug_client.h: Delete.
568         * osf-share/cma_errors.h: Delete.
569         * osf-share/cma_handle.h: Delete.
570         * osf-share/cma_init.h: Delete.
571         * osf-share/cma_list.h: Delete.
572         * osf-share/cma_mutex.h: Delete.
573         * osf-share/cma_sched.h: Delete.
574         * osf-share/cma_semaphore_defs.h: Delete.
575         * osf-share/cma_sequence.h: Delete.
576         * osf-share/cma_stack.h: Delete.
577         * osf-share/cma_stack_int.h: Delete.
578         * osf-share/cma_tcb_defs.h: Delete.
579         * osf-share/cma_util.h: Delete.
580         * Makefile.in (HFILES_NO_SRCDIR): Remove entries for the files
581         in osf-share.
582         * config/djgpp/fnchange.lst: Remove osf-share/cma_stack_int.h entry.
583         * contrib/ari/gdb_find.sh: Remove handling of osf-share.
584         * copyright.sh (NOT_FSF_LIST): Remove "gdb/osf-share" entry.
585
586 2012-12-06  Pedro Alves  <palves@redhat.com>
587             Tom Tromey  <tromey@redhat.com>
588
589         * valops.c (value_cast): Move TYPE_CODE_VOID case earlier.
590
591 2012-12-06  Jens Elmenthaler <jens.elmenthaler@advantest.com>
592
593         PR mi/14741:
594         * mi/mi-cmd-var.c (varobj_update_one): Take value of
595         attribute "dynamic" and "displayhint" from printed child,
596         not the root variable.
597
598 2012-12-06  Joel Brobecker  <brobecker@adacore.com>
599
600         * aix-thread.c (getthrds): Fix type of 4th parameter.
601         (get_signaled_thread): Change type of variable ktid to tid_t.
602
603 2012-12-06  Hui Zhu  <hui_zhu@mentor.com>
604
605         * dwarf2loc.c (dwarf_expr_frame_base): Add check for the return
606         value of get_frame_block.
607
608 2012-12-05  Pierre Muller  <muller@sourceware.org>
609
610         Avoid memory leaks on struct cmd_list_element.doc field.
611         * cli/cli-decode.c (add_alias_cmd): Make a copy of doc field
612         if flags contains DOC_ALLOCATED.
613         (add_setshow_cmd_full): Add DOC_ALLOCATED to set and show
614         flags.
615         (delete_cmd): Handle DOC_ALLOCATED flag.
616         * cli/cli-decode.h (DOC_ALLOCATED): New macro for use
617         in flags filed of struct cmd_list_element.
618         (struct cmd_list_element): Document new flag item.
619
620 2012-12-04  Doug Evans  <dje@google.com>
621
622         * symmisc.c: Whitespace fixes.
623
624 2012-12-04  Karthik Bhat  <kv.bhat@samsung.com>
625
626         * i386-tdep.c (i386_skip_prologue): Using symbol table
627         to find the end of prologue for clang compiled binaries.
628         * amd64-tdep.c (amd64_skip_prologue): Using symbol table
629         to find the end of prologue for clang compiled binaries.
630
631 2012-12-03  Doug Evans  <dje@google.com>
632
633         * dwarf2read.c (struct dwarf2_per_objfile): Clarify comment.
634         (dw2_find_symbol_file): Delete unused local file_data.
635
636 2012-12-03  Tom Tromey  <tromey@redhat.com>
637
638         * ada-exp.y (write_object_renaming, write_var_or_type)
639         (write_ambiguous_var, write_var_from_sym): Make blocks const.
640         * ada-lang.c (replace_operator_with_call)
641         (find_old_style_renaming_symbol): Make blocks const.
642         * ada-lang.h (ada_find_renaming_symbol): Update.
643         (struct ada_symbol_info) <block>: Now const.
644         * breakpoint.c (watch_command_1): Update.
645         * breakpoint.h (struct watchpoint) <exp_valid_block,
646         cond_exp_valid_block>: Now const.
647         * c-exp.y (classify_inner_name, classify_name): Make block
648         argument const.
649         * expprint.c (print_subexp_standard) <OP_VAR_VALUE>: Make 'b'
650         const.
651         * expression.h (innermost_block, parse_exp_1): Update.
652         (union exp_element) <block>: Now const.
653         * gdbtypes.c (lookup_template_type, lookup_enum, lookup_union)
654         (lookup_struct): Make block argument const.
655         * gdbtypes.h (lookup_template_type): Update.
656         * go-exp.y (classify_name, classify_packaged_name)
657         (package_name_p): Make block argument const.
658         * objc-lang.c (lookup_struct_typedef): Make block argument const.
659         * objc-lang.h (lookup_struct_typedef): Update.
660         * parse.c (parse_exp_in_context, parse_exp_1)
661         (write_exp_elt_block): Make block arguments const.
662         (expression_context_block, innermost_block): Now const.
663         * parser-defs.h (write_exp_elt_block): Update.
664         (expression_context_block, innermost_block, block_found): Now
665         const.
666         * printcmd.c (struct display) <block>: Now const.
667         * symtab.h (lookup_struct, lookup_union, lookup_enum): Update.
668         * valops.c (address_of_variable): Make block argument const.
669         * value.h (value_of_variable): Update.
670         * varobj.c (struct varobj_root) <valid_block>: Now const.
671
672 2012-11-30  Yao Qi  <yao@codesourcery.com>
673
674         * breakpoint.c (print_one_breakpoint_location): Indent code.
675
676 2012-11-30  Yao Qi  <yao@codesourcery.com>
677
678         * breakpoint.c (print_one_breakpoint_location): Combine two
679         blocks handling 'hit count' together.
680
681 2012-11-30  Yao Qi  <yao@codesourcery.com>
682
683         * infrun.c (error_is_running, ensure_not_running): Move them
684         to ...
685         * infcmd.c (error_is_running, ensure_not_running): ... here.
686         Make them 'static'.
687         * inferior.h: Remove declarations of error_is_running and
688         ensure_not_running.
689
690 2012-11-30  Yao Qi  <yao@codesourcery.com>
691
692         * tic6x-linux-tdep.c (tic6x_register_sigcontext_offset): Don't
693         check REGNUM >= 0.
694
695 2012-11-30  Yao Qi  <yao@codesourcery.com>
696
697         * infrun.c: Make the declaration of 'init_infwait_state'
698         static.
699         (init_infwait_state): Make it 'static'.
700
701 2012-11-29  Ulrich Weigand  <uweigand@de.ibm.com>
702
703         * python/python.c (finalize_python): Cast unused PyGILState_Ensure
704         return value to void to avoid compiler warning.
705
706 2012-11-29  Ulrich Weigand  <uweigand@de.ibm.com>
707
708         * opencl-lang.c (opencl_print_type): New function.
709         (opencl_language_arch_info): Install it.
710
711 2012-11-29  Tom Tromey  <tromey@redhat.com>
712
713         * contrib/ari/gdb_ari.sh: Remove rules for xasprintf and
714         xvasprintf.
715         * common/common-utils.c (xasprintf, xvasprintf): Remove.
716         * common/common-utils.h (xasprintf, xvasprintf): Remove.
717
718 2012-11-29  Jerome Guitton  <guitton@adacore.com>
719
720         * ada-lang.c (ada_is_interface_tag): New function.
721         (ada_is_ignored_field): Add interface tags to the list
722         of ignored fields.
723
724 2012-11-29  Jerome Guitton  <guitton@adacore.com>
725
726         * ada-lang.h (ada_tag_value_at_base_address): New function
727         declaration.
728         * ada-lang.c (is_ada95_tag, ada_tag_value_at_base_address):
729         New functions.
730         (ada_to_fixed_type_1, ada_evaluate_subexp): Let ada_tag_base_address
731         relocate the class-wide value if need be.
732         (ada_value_struct_elt, ada_value_ind, ada_coerce_ref):
733         Let ada_tag_value_at_base_address relocate the class-wide access/ref
734         before dereferencing it.
735         * ada-valprint.c (ada_val_print_1): Relocate to base address
736         before displaying the content of an interface-wide ref.
737
738 2012-11-29  Jerome Guitton  <guitton@adacore.com>
739
740         * ada-lang.c (ada_evaluate_subexp): Unwrap only in EVAL_NORMAL.
741
742 2012-11-29  Joel Brobecker  <brobecker@adacore.com>
743
744         GDB 7.5.1 released.
745
746 2012-11-29  Yao Qi  <yao@codesourcery.com>
747             Tom Tromey  <tromey@redhat.com>
748
749         * eval.c (evaluate_subexp_standard): Get the correct pointer
750         type for TYPE_CODE_MEMBERPTR.
751
752 2012-11-28  Edjunior Machado  <emachado@linux.vnet.ibm.com>
753
754         * rs6000-tdep.c (gdb_print_insn_powerpc): Remove info->mach checking,
755         since now it is being done by binutils' powerpc_init_dialect().
756
757 2012-11-28  Tom Tromey  <tromey@redhat.com>
758
759         PR gdb/14290:
760         * solib-darwin.c (gdb_bfd_mach_o_fat_extract): New function.
761         (darwin_solib_get_all_image_info_addr_at_init, darwin_bfd_open):
762         Use it.
763         * gdb_bfd.h (gdb_bfd_mark_parent): Declare.
764         * gdb_bfd.c (gdb_bfd_mark_parent): New function.
765         (gdb_bfd_openr_next_archived_file): Use it.
766
767 2012-11-28  Markus Metzger <markus.t.metzger@intel.com>
768
769         * configure.ac: Check for linux/perf_event.h.
770         * config.in: Regenerated.
771         * configure: Regenerated.
772
773 2012-11-28  Yao Qi  <yao@codesourcery.com>
774
775         * breakpoint.c (_initialize_breakpoint): Call add_alias_cmd to
776         abbreviate 'delete tracepoints' to 'delete tr'.
777         * corefile.c (_initialize_core): Call add_alias_cmd to
778         abbreviate 'set gnutarget' to 'set g'.
779         * value.c (_initialize_values): Call add_alias_cmd to abbreviate
780         'show convenience' to 'show conv'.
781
782 2012-11-27  Joel Brobecker  <brobecker@adacore.com>
783
784         * sparc-sol2-nat.c (supply_gregset): Fix first parameter in
785         call to sparc_supply_fpregset.
786         (fill_fpregset): Fix first parameter in call to
787         sparc_collect_fpregset.
788
789 2012-11-27  Daniel Jacobowitz  <dan@codesourcery.com>
790             Kazu Hirata  <kazu@codesourcery.com>
791             Yao Qi  <yao@codesourcery.com>
792
793         * objfiles.c (init_entry_point_info): Call
794         gdbarch_convert_from_func_ptr_addr and
795         gdbarch_addr_bits_remove here ...
796         (entry_point_address_query): ... instead of here.
797         * solib-svr4.c (exec_entry_point): Call
798         gdbarch_addr_bits_remove.
799         * symfile.c (generic_load): Call gdbarch_addr_bits_remove on
800         the entry address.
801
802 2012-11-27  Daniel Jacobowitz  <dan@codesourcery.com>
803             Yao Qi  <yao@codesourcery.com>
804
805         * eval.c (evaluate_subexp_standard): Add handling of
806         TYPE_CODE_MEMBERPTR when calling functions.  Correct the
807         result of ptype for calling a TYPE_CODE_METHODPTR.
808
809 2012-11-27  Yao Qi  <yao@codesourcery.com>
810
811         * symtab.c (symtab_symbol_info): Fix a -Wformat-extra-args
812         warning.
813         Add i18n markup.
814
815 2012-11-26  Alexander Larsson  <alexl@redhat.com>
816             Jan Kratochvil  <jan.kratochvil@redhat.com>
817             Tom Tromey  <tromey@redhat.com>
818
819         * NEWS: Mention mini debuginfo feature.
820         * minidebug.c: New file.
821         * configure.ac: Check for lzma.
822         * configure, config.in: Rebuild.
823         * Makefile.in (LIBLZMA): New variable.
824         (CLIBS): Include LIBLZMA.
825         (SFILES): Mention minidebug.c.
826         (COMMON_OBS): Mention minidebug.o.
827         * symfile.c (read_symbols): New function.
828         (syms_from_objfile, reread_symbols): Call it.
829         * symfile.h (find_separate_debug_file_in_section): Declare.
830
831 2012-11-26  Keith Seitz  <keiths@redhat.com>
832
833         * exec.c (exec_file_attach): Move cleanup after verifying that
834         memory has in fact been allocated.
835
836 2012-11-26  Tom Tromey  <tromey@redhat.com>
837
838         * ada-lang.c (user_select_syms): Use SYMBOL_SYMTAB.
839         * dwarf2read.c (dw2_find_symbol_file, fixup_go_packaging): Use
840         SYMBOL_SYMTAB.
841         * skip.c (skip_info): Use SYMBOL_SYMTAB.
842
843 2012-11-26  Maxime Villard  <rustyBSD@gmx.fr>
844             Pedro Alves  <palves@redhat.com>
845
846         * common/linux-osdata.c (linux_xfer_osdata_fds): Decrease buffer
847         size parameter passed to readlink by one byte.
848         * fbsd-nat.c (fbsd_pid_to_exec_file): Ditto.
849         * linux-nat.c (linux_child_pid_to_exec_file): Ditto.
850         * nbsd-nat.c (nbsd_pid_to_exec_file): Ditto.
851         * inf-child.c (inf_child_fileio_readlink): Decrease local buffer's
852         size by one byte.
853
854 2012-11-26  Yao Qi  <yao@codesourcery.com>
855
856         * f-valprint.c (f77_create_arrayprint_offset_tbl): Remove
857         extraneous parentheses.
858
859 2012-11-26  Yao Qi  <yao@codesourcery.com>
860
861         * remote.c (remote_start_remote): Typo fix.
862
863 2012-11-23  David S. Miller  <davem@davemloft.net>
864
865         * sparc-tdep.h (struct sparc_fpregset): New data structure.
866         (sparc32_sunos4_fpregset, sparc32_bsd_fpregset,
867         sparc32_sol2_fpregset): Declare new globals.
868         (sparc32_supply_fpregset, sparc32_collect_fpregset): Add new
869         'fpregset' argument.
870         * sparc64-tdep.h (sparc64_supply_fpregset,
871         sparc64_collect_fpregset): Likewise.
872         (sparc64_sol2_fpregset, sparc64_bsd_fpregset): Declare new
873         globals.
874         * sparc-nat.h (struct sparc_fpregset): Add forward declaration.
875         (sparc_fpregset): Declare new global.
876         (sparc_supply_fpregset, sparc_collect_fpregset): Add new
877         'fpregset' argument.
878         * sparc-linux-nat.c (supply_fpregset): Pass sparc_fpregset down
879         into handler.
880         (fill_fpregset): Likewise.
881         (_initialize_sparc_linux_nat): Set sparc_fpregset to
882         sparc32_bsd_fpregset.
883         * sparc-linux-tdep.c (sparc32_linux_supply_core_fpregset): Pass
884         sparc32_bsd_fpregset down into handler.
885         (sparc32_linux_collect_core_fpregset): Likewise.
886         * sparc-nat.c (sparc_fpregset): Define.
887         (sparc_supply_fpregset): Add 'fpregset' argument.
888         (sparc_collect_fpregset): Likewise.
889         (sparc_fetch_inferior_registers): Pass sparc_fpregset down
890         into fpregset handler.
891         (sparc_store_inferior_registers): Likewise.
892         (_initialize_sparc_nat): Set sparc_fpregset to
893         sparc32_sunos4_fpregset if NULL.
894         * sparc-sol2-nat.c (supply_gregset): Pass sparc_sol2_fpregset
895         down into handler.
896         (fill_fpregset): Likewise.
897         * sparc-sol2-tdep.c (sparc32_sol2_fpregset): Define.
898         * sparc-tdep.c (sparc32_supply_fpregset): Add fpregset arg and
899         use it to compute offsets.
900         (sparc32_collect_fpregset): Likewise.
901         (sparc32_sunos4_fpregset, sparc32_bsd_fpregset): Define.
902         * sparc64-linux-nat.c (supply_fpregset): Pass sparc64_bsd_fpregset
903         down into handler.
904         (fill_fpregset): Likewise.
905         * sparc64-linux-tdep.c (sparc64_linux_supply_core_fpregset):
906         Likewise.
907         (sparc64_linux_collect_core_fpregset): Likewise.
908         * sparc64-sol2-tdep.c (sparc64_sol2_fpregset): Define.
909         * sparc64-tdep.c (sparc64_supply_fpregset): Add fpregset arg and
910         use it to compute offsets.
911         (sparc64_collect_fpregset): Likewise.
912         (sparc64_bsd_fpregset): Define.
913         * sparc64fbsd-tdep.c (sparc64fbsd_supply_fpregset): Padd
914         sparc64_bsd_fpregset down into handler.
915         (sparc64fbsd_collect_fpregset): Likewise.
916         * sparc64nbsd-nat.c (sparc64nbsd_supply_fpregset): Add fpregset arg
917         and pass sparc{32,64}_bsd_fpregset down into handler.
918         (sparc64nbsd_collect_fpregset): Likewise.
919         * sparc64nbsd-tdep.c (sparc64nbsd_supply_fpregset): Pass
920         sparc64_bsd_fpregset down into handler.
921         * sparc64obsd-tdep.c (sparc64obsd_supply_gregset): Likewise.
922         * sparcnbsd-nat.c (_initialize_sparcnbsd_nat): Set sparc_fpregset
923         to sparc32_bsd_fpregset.
924         * sparcnbsd-tdep.c (sparc32nbsd_supply_gregset): Pass
925         sparc32_bsd_fpregset down into sparc32_supply_fpregset.
926         (sparc32nbsd_supply_fpregset): Likewise.
927
928 2012-11-21  Tom Tromey  <tromey@redhat.com>
929
930         * gdbtypes.h (struct cplus_struct_type) <localtype_ptr>: Remove
931         field.
932         (TYPE_LOCALTYPE_PTR, TYPE_LOCALTYPE_FILE, TYPE_LOCALTYPE_LINE):
933         Remove.
934         * c-typeprint.c (c_type_print_base): Update.
935
936 2012-11-21  Yao Qi  <yao@codesourcery.com>
937
938         PR tdep/7438
939         * gdbarch.sh (smash_text_address): Remove.
940         * gdbarch.c, gdbarch.h: Regenerate.
941         * arm-tdep.c (arm_smash_text_address): Remove.
942         (arm_gdbarch_init): Don't call set_gdbarch_smash_text_address.
943         * hppa-tdep.c (hppa_smash_text_address): Remove.
944         (hppa_addr_bits_remove): Rename from hppa_smash_text_address.
945         (hppa_gdbarch_init): Don't call set_gdbarch_smash_text_address.
946         Caller update.
947         * coffread.c (coff_symtab_read): Caller update.
948         * dbxread.c (process_one_symbol): Likewise.
949         * elfread.c (record_minimal_symbol): Likewise.
950         * somread.c (som_symtab_read): Likewise.
951
952 2012-11-20  Pierre Muller  <muller@sourceware.org>
953
954         ARI fixes: sprintf rule.
955         Replace sprintf function calls for char arrays by
956         calls to xsnprintf calls.
957         * arm-tdep.c (arm_push_dummy_call): Replace sprintf by xsnprintf.
958         (arm_dwarf_reg_to_regnum, arm_return_value): Ditto.
959         (arm_neon_quad_read, arm_pseudo_read): Ditto.
960         (arm_neon_quad_write, arm_pseudo_write): Ditto.
961         * breakpoint.c (condition_completer): Ditto.
962         (create_tracepoint_from_upload): Ditto.
963         * dwarf2read.c (file_full_name): Ditto.
964         * gcore.c (gcore_command): Ditto.
965         * gnu-nat.c (proc_string, gnu_pid_to_str): Ditto.
966         * go32-nat.c (go32_sysinfo): Ditto.
967         * interps.c (interp_set): Ditto.
968         * m32c-tdep.c (make_types): Ditto.
969         * ppc-linux-nat.c (fetch_register, store_register): Ditto.
970         * remote-m32r-sdi.c (m32r_open): Ditto.
971         * sol-thread.c (td_err_string): Ditto.
972         (td_state_string, solaris_pid_to_str): Ditto.
973         * symtab.c (gdb_mangle_name): Ditto.
974         * cli/cli-script.c (execute_control_command): Ditto.
975         (define_command, document_command): Ditto.
976         * tui/tui-io.c (tui_rl_display_match_list): Ditto.
977         * tui/tui-stack.c (tui_make_status_line): Ditto.
978         * tui/tui-win.c (tui_update_gdb_sizes): Ditto.
979
980 2012-11-20  Mike Frysinger  <vapier@gentoo.org>
981
982         * cli/cli-decode.c (complete_on_cmdlist): Add a fourth arg and check
983         it when looking at ptr->func.
984         * command.h (complete_on_cmdlist): Add a fourth arg.
985         * completer.c (complete_line_internal): Add local ignore_help_classes,
986         and set it to 1 when reason is not handle_help.  Pass this down to
987         lookup_cmd_1 and complete_on_cmdlist.
988
989 2012-11-20  Tom Tromey  <tromey@redhat.com>
990
991         * completer.c (count_struct_fields): Remove.
992         (expression_completer): Don't call count_struct_fields.
993
994 2012-11-20  Pedro Alves  <palves@redhat.com>
995
996         * annotate.c (breakpoints_changed): Rename to ...
997         (annotate_breakpoints_changed): ... this.
998         (annotate_stopped, breakpoint_changed): Adjust caller.
999         * annotate.h (breakpoints_changed): Rename to ...
1000         (annotate_breakpoints_changed): ... this.
1001         * breakpoint.c (set_breakpoint_condition, breakpoint_set_commands)
1002         (do_map_commands_command, init_raw_breakpoint, clear_command)
1003         (set_ignore_count, enable_breakpoint_disp): Adjust callers.
1004
1005 2012-11-20  David S. Miller  <davem@davemloft.net>
1006
1007         * common/linux-osdata.c (get_number_of_cpu_cores): Delete.
1008         (linux_xfer_osdata_processes): Fetch _SC_NPROCESSORS_ONLN via
1009         sysconf.
1010         (get_cores_used_by_process): Update comment.
1011
1012 2012-11-20  Yao Qi  <yao@codesourcery.com>
1013
1014         * objfiles.c (init_entry_point_info): Remove trailing spaces.
1015
1016 2012-11-20  Yao Qi  <yao@codesourcery.com>
1017
1018         * infrun.c (handle_inferior_event): Pass 'saved_singlestep_ptid'
1019         to deprecated_context_hook.
1020
1021 2012-11-19  Yao Qi  <yao@codesourcery.com>
1022
1023         * infrun.c (infwait_state): Add static.
1024
1025 2012-11-16  Keith Seitz  <keiths@redhat.com>
1026
1027         PR c++/13615
1028         * cp-namespace.c (cp_lookup_symbol_in_namespace): Add SEARCH
1029         parameter and pass it to lookup_symbol_file.
1030         (cp_lookup_symbol_imports): Tell cp_lookup_symbol_in_namespace
1031         to search base classes.
1032         (cp_lookup_symbol_namespace): Likewise.
1033         (lookup_namespace_scope): Likewise.
1034         (lookup_symbol_file): Add SEARCH parameter.
1035         If SEARCH is non-zero and no symbol is found, lookup the class
1036         and call cp_lookup_nested_symbol.
1037         (find_symbol_in_baseclass): New function.
1038         (cp_lookup_nested_symbol): Do not let
1039         cp_lookup_symbol_in_namespace search through base classes.
1040         Do that later when there is no global symbol match.
1041
1042 2012-11-16  Doug Evans  <dje@google.com>
1043
1044         * main.c (gdb_datadir_provided): New static global.
1045         (get_init_files): If --data-directory is provided,
1046         and SYSTEM_GDBINIT lives in data-directory, look for it there.
1047         * NEWS: Mention it.
1048
1049 2012-11-15  Pierre Muller  <muller@sourceware.org>
1050
1051         ARI fixes: move gdb_wait and gdb_stat headers to common subdirectory.
1052         * gdb_stat.h: Delete. Moved to common directory.
1053         * common/gdb_stat.h: New file.
1054         * gdb_wait.h: Delete. Moved to common directory.
1055         * common/gdb_wait.h: New file.
1056         * Makefile.in (H_FILES_NO_SRC): Adapt to new header
1057         location.
1058         * contrib/ari/gdb_ari.sh (wait.h rule): Adapt to new gdb_wait.h
1059         location.
1060         (stat.h rule): Adapt to new gdb_stat.h location.
1061         * common/linux-osdata.c: Include "gdb_stat.h" header instead of
1062         <sys/stat.h> header.
1063         * common/linux-ptrace.c: Include "gdb_wait.h" header instead of
1064         <sys/wait.h> header.
1065
1066 2012-11-15  Pierre Muller  <muller@sourceware.org>
1067
1068         * configure.ac (AC_HEADER_STAT): Remove.
1069         * gdb_stat.h (STAT_MACROS_BROKEN): Remove macro use
1070         and corresponding code.
1071         * configure: Regenerate.
1072         * config.in: Regenerate.
1073
1074 2012-11-15  Pierre Muller  <muller@sourceware.org>
1075
1076         ARI xasprintf rule fixes.
1077         * dwarf2read.c (create_dwo_in_dwp): Use xstrprintf function
1078         instead of xasprintf.
1079         (open_and_init_dwp_file): Ditto.
1080
1081 2012-11-14  Luis Machado  <lgustavo@codesourcery.com>
1082
1083         * value.c (value_actual_type): Check for TYPE_CODE_STRUCT
1084         target types.
1085
1086 2012-11-14  Tom Tromey  <tromey@redhat.com>
1087
1088         * configure, config.in: Rebuild.
1089         * configure.ac: Don't check for ctype.h, time.h.
1090         * expprint.c: Don't use HAVE_CTYPE_H.
1091
1092 2012-11-13  Tom Tromey  <tromey@redhat.com>
1093
1094         * gdbarch.h, gdbarch.c: Rebuild.
1095         * gdbarch.sh (set_target_gdbarch): Rename from
1096         deprecated_target_gdbarch_select_hack.
1097         * arch-utils.c (gdbarch_update_p): Update.
1098         (set_gdbarch_from_file): Update.
1099
1100 2012-11-14  Pierre Muller  <muller@sourceware.org>
1101
1102         * MAINTAINERS (Responsible Maintainers/misc): Add myself
1103         as responsible of contrib/ari directory.
1104
1105 2012-11-14  Daniel Jacobowitz  <dan@codesourcery.com>
1106             Yao Qi  <yao@codesourcery.com>
1107
1108         * arm-tdep.c (arm_addr_bits_remove): Do not adjust the low
1109         bit of EXC_RETURN.
1110         (arm_m_exception_cache, arm_m_exception_this_id)
1111         (arm_m_exception_prev_register, arm_m_exception_unwind_sniffer)
1112         (arm_m_exception_unwind): New.
1113         (arm_gdbarch_init): Register arm_m_exception_unwind.
1114
1115 2012-11-13  Giuseppe Montalto  <giuseppe.montalto@st.com>
1116
1117         * mi/mi-main.c (mi_cmd_data_write_memory): Handle additional
1118         parameter COUNT, for pattern filling of memory regions.
1119         * NEWS: Mention it.
1120
1121 2012-11-13 Markus Metzger <markus.t.metzger@intel.com>
1122
1123         * disasm.h (DISASSEMBLY_FILENAME): New macro.
1124         * disasm.c (do_mixed_source_and_assembly): Pass filename flag on
1125         to print_source_lines ().
1126         * symtab.h (PRINT_SOURCE_LINES_FILENAME): New print source lines
1127         flag.
1128         * source.c (print_source_lines_base): Prefix source line with
1129         filename if PRINT_SOURCE_LINES_FILENAME flag is set.
1130
1131 2012-11-13 Markus Metzger <markus.t.metzger@intel.com>
1132
1133         * symtab.h (print_source_lines_flags): New enum.
1134         * source.c (print_source_lines_base): Change noerror to flags.
1135         (print_source_lines): Change noerror to flags.
1136
1137 2012-11-13  Pierre Muller  <muller@sourceware.org>
1138
1139         ARI fixes: Avoid sprintf function use rule.
1140         * charset.c (convert_between_encodings): Use xsnprintf.
1141         * cli-out.c (cli_field_int): Likewise.
1142         * cp-namespace.c (cp_lookup_nested_symbol): Likewise.
1143         * expprint.c (op_name_standard): Likewise.
1144         * frv-tdep.c (set_variant_num_gprs): Likewise.
1145         (set_variant_num_fprs): Likewise.
1146         * m68hc11-tdep.c (m68hc11_initialize_register_info): Likewise.
1147         * nto-tdep.c (nto_find_and_open_solib): Likewise.
1148         (nto_init_solib_absolute_prefix): Likewise.
1149         * source.c (init_source_path): Likewise.
1150         (print_source_lines_base): Likewise.
1151         * valprint.c (print_wchar): Likewise.
1152         * mi/mi-out.c (mi_field_int): Likewise.
1153         windows-nat.c (windows_pid_to_exec_file): Likewise.
1154         (windows_create_inferior): Likewise.
1155         (_initialize_check_for_gdb_ini): Likewise.
1156
1157 2012-11-12  Joel Brobecker  <brobecker@adacore.com>
1158
1159         * frame.h (deprecated_frame_register_read): Renames
1160         frame_register_read.
1161         * frame.c (deprecated_frame_register_read): Renames
1162         frame_register_read.  Update all callers.
1163         * i386-tdep.c: Update all callers of frame_register_read.
1164         * infcmd.c: Likewise.
1165         * jit.c: Likewise.
1166         * mips-tdep.c: Likewise.
1167         * mt-tdep.c: Likewise.
1168         * sh64-tdep.c: Likewise.
1169
1170 2012-11-12  Joel Brobecker  <brobecker@adacore.com>
1171
1172         * frame.h (frame_register_read): Remove FIXME comment.
1173         * frame.c (frame_register_read): Add suggestion explaining
1174         which function to use in place of this one.
1175
1176 2012-11-12  Tom Tromey  <tromey@redhat.com>
1177
1178         * python/python.c (start_type_printers): Initialize 'result_obj'.
1179
1180 2012-11-12  Tom Tromey  <tromey@redhat.com>
1181
1182         * NEWS: Update.
1183         * data-directory/Makefile.in (PYTHON_FILES): Add
1184         type_printers.py.
1185         * python/lib/gdb/command/type_printers.py: New file.
1186         * python/lib/gdb/command/types.py (TypePrinter): New class.
1187         (_get_some_type_recognizers, get_type_recognizers,
1188         apply_type_recognizers, register_type_printer): New
1189         functions.
1190         * python/py-objfile.c (objfile_object) <type_printers>: New
1191         field.
1192         (objfpy_dealloc): Decref new field.
1193         (objfpy_new): Set new field.
1194         (objfpy_get_type_printers, objfpy_set_type_printers): New
1195         functions.
1196         (objfile_to_objfile_object): Set new field.
1197         (objfile_getset): Add "type_printers".
1198         * python/py-progspace.c (pspace_object) <type_printers>: New
1199         field.
1200         (pspy_dealloc): Decref new field.
1201         (pspy_new): Set new field.
1202         (pspy_get_type_printers, pspy_set_type_printers): New functions.
1203         (pspace_to_pspace_object): Set new field.
1204         (pspace_getset): Add "type_printers".
1205         * python/python.c (start_type_printers, apply_type_printers,
1206         free_type_printers): New functions.
1207         (_initialize_python): Set gdb.type_printers.
1208         * python/python.h (start_type_printers, apply_type_printers,
1209         free_type_printers): Declare.
1210         * typeprint.c (type_print_raw_options, default_ptype_flags):
1211         Update for new fields.
1212         (do_free_global_table, create_global_typedef_table,
1213         find_global_typedef): New functions.
1214         (find_typedef_in_hash): Use find_global_typedef.
1215         (whatis_exp): Use create_global_typedef_table.  Change cleanup
1216         handling.
1217         * typeprint.h (struct type_print_options) <global_typedefs,
1218         global_printers>: New fields.
1219
1220 2012-11-12  Tom Tromey  <tromey@redhat.com>
1221
1222         * c-typeprint.c (find_typedef_for_canonicalize,
1223         print_name_maybe_canonical): New functions.
1224         (c_print_type): Look up type name.
1225         (cp_type_print_derivation_info): Add flags argument.  Use
1226         print_name_maybe_canonical.
1227         (cp_type_print_method_args): Add wrapping.
1228         (c_type_print_varspec_prefix): Use print_name_maybe_canonical.
1229         (c_type_print_template_args): New function.
1230         (c_type_print_base): Change wrapping.  Use
1231         print_name_maybe_canonical.
1232         <TYPE_CODE_STRUCT>: Possibly create a typedef hash, and do
1233         type name lookups.
1234         * gdbtypes.c (types_equal): No longer static.
1235         * gdbtypes.h (types_equal): Declare.
1236         * typeprint.c (type_print_raw_options, default_ptype_flags):
1237         Update.
1238         (struct typedef_hash_table): New.
1239         (hash_typedef_field, eq_typedef_field,
1240         recursively_update_typedef_hash, add_template_parameters,
1241         create_typedef_hash, free_typedef_hash, do_free_typedef_hash,
1242         make_cleanup_free_typedef_hash, copy_typedef_hash_element,
1243         copy_typedef_hash, find_typedef_in_hash): New functions.
1244         * typeprint.h (struct type_print_options) <local_typedefs>:
1245         New field.
1246         (recursively_update_typedef_hash, add_template_parameters,
1247         create_typedef_hash, free_typedef_hash,
1248         make_cleanup_free_typedef_hash, copy_typedef_hash,
1249         find_typedef_in_hash): Declare.
1250
1251 2012-11-12  Tom Tromey  <tromey@redhat.com>
1252
1253         * cp-support.c (inspect_type,
1254         replace_typedefs_qualified_name, replace_typedefs): Add
1255         finder, data arguments.  Call as needed.
1256         (cp_canonicalize_string_full): New function.
1257         (cp_canonicalize_string_no_typedefs): Rewrite.
1258         * cp-support.h (canonicalization_ftype): New typedef.
1259         (cp_canonicalize_string_full): Declare.
1260
1261 2012-11-12  Tom Tromey  <tromey@redhat.com>
1262
1263         * NEWS: Update.
1264         * c-typeprint.c (c_type_print_base): Handle print_method and
1265         print_typedefs flags.
1266         * gdbcmd.h (setprinttypelist, showprinttypelist): Declare.
1267         * python/py-type.c (typy_str): Use LA_PRINT_TYPE and raw
1268         options.
1269         * typeprint.c (type_print_raw_options, default_ptype_flags):
1270         Update for new field.s
1271         (whatis_exp): Parse flags.  Use LA_PRINT_TYPE.
1272         (setprinttypelist, showprinttypelist, print_methods,
1273         print_typedefs): New globals.
1274         (set_print_type, show_print_type, set_print_type_methods,
1275         show_print_type_methods, set_print_type_typedefs,
1276         show_print_type_typedefs): New functions.
1277         (_initialize_typeprint): Update documentation.  Add "print
1278         type methods" and "print type typedefs" parameters.
1279         * typeprint.h (struct type_print_options) <print_methods,
1280         print_typedefs>: New fields.
1281
1282 2012-11-12  Tom Tromey  <tromey@redhat.com>
1283
1284         * c-typeprint.c (cp_type_print_method_args): Add flags
1285         argument.  Call c_print_type, not type_print.
1286         (c_type_print_base): Call c_print_type, not type_print.
1287         Update.
1288
1289 2012-11-12  Tom Tromey  <tromey@redhat.com>
1290
1291         * ada-lang.c (user_select_syms, ada_print_subexp): Pass flags
1292         to type-printing functions.
1293         * ada-lang.h (ada_print_type): Add argument.
1294         * ada-typeprint.c (print_array_type, print_variant_clauses,
1295         print_variant_part, print_selected_record_field_types,
1296         print_record_field_types, print_unchecked_union_type,
1297         print_func_type, ada_print_type): Add flags argument.
1298         (ada_print_typedef): Update.
1299         * c-exp.y (OPERATOR conversion_type_id): Update.
1300         * c-lang.h (c_print_type, c_type_print_base): Update.
1301         * c-typeprint.c (c_print_type, c_type_print_varspec_prefix,
1302         c_type_print_modifier, c_type_print_args,
1303         c_type_print_varspec_suffix, c_type_print_base): Add flags
1304         argument.
1305         * cp-valprint.c (cp_print_class_member): Update.
1306         * dwarf2read.c (dwarf2_compute_name): Update.
1307         * f-lang.h (f_print_type): Add argument.
1308         * f-typeprint.c (f_print_type): Add flags argument.
1309         * gnu-v3-abi.c (gnuv3_print_method_ptr): Update.
1310         * go-lang.h (go_print_type): Add argument.
1311         * go-typeprint.c (go_print_type): Add flags argument.
1312         * jv-lang.h (java_print_type): Add argument.
1313         * jv-typeprint.c (java_type_print_base, java_print_type): Add
1314         flags argument.
1315         * language.c (unk_lang_print_type): Add flags argument.
1316         * language.h (struct language_defn) <la_print_type>: Add flags
1317         argument.
1318         (LA_PRINT_TYPE): Likewise.
1319         * m2-lang.h (m2_print_type): Add argument.
1320         * m2-typeprint.c (m2_print_type, m2_range, m2_typedef,
1321         m2_array, m2_pointer, m2_ref, m2_procedure, m2_long_set,
1322         m2_unbounded_array, m2_record_fields): Add flags argument.
1323         * p-lang.h (pascal_print_type, pascal_type_print_base,
1324         pascal_type_print_varspec_prefix): Add argument.
1325         * p-typeprint.c (pascal_print_type,
1326         pascal_type_print_varspec_prefix, pascal_print_func_args,
1327         pascal_type_print_varspec_suffix, pascal_type_print_base): Add
1328         flags argument.
1329         * symmisc.c (print_symbol): Update.
1330         * typeprint.c (type_print_raw_options, default_ptype_flags):
1331         New globals.
1332         (type_print): Update.
1333         * typeprint.h (struct type_print_options): New.
1334         (type_print_raw_options): Declare.
1335         (c_type_print_varspec_suffix, c_type_print_args): Add argument.
1336
1337 2012-11-10  Keith Seitz  <keiths@redhat.com>
1338
1339         * breakpoint.c (clear_command): Add cleanup for
1340         sals.sals if an argument is given.
1341
1342         * linespec.c (parse_linespec): Do cleanups after
1343         parsing a convenience variable.
1344
1345 2012-11-10  Keith Seitz  <keiths@redhat.com>
1346
1347         PR gdb/14288
1348         * c-valprint.c (c_val_print): For character arrays
1349         with "print null" option on, print ellipses if
1350         the output is truncated and the next character is not \000.
1351         * valprint.c (MAX_WCHARS): Define.
1352         (WCHAR_BUFLEN): Likewise.
1353         (WCHAR_BUFLEN_MAX): Likewise.
1354         (struct converted_character): New structure.
1355         (count_next_character): New function.
1356         (print_converted_chars_to_obstack): New function.
1357         (generic_printstr): Rewrite using count_next_character
1358         and print_converted_chars_to_obstack.
1359
1360 2012-11-10  Stephane Carrez  <Stephane.Carrez@gmail.com>
1361
1362         * tui/tui.c (tui_rl_command_key): Switch to TUI_ONE_COMMAND_MODE
1363         while executing the gdb command.
1364         (tui_rl_startup_hook): Do not switch back to TUI_SINGLE_KEY_MODE if we
1365         are called from prompt_for_continue.
1366         * tui/tui-io.c (tui_redisplay_readline): Likewise.
1367
1368 2012-11-10  Stephane Carrez  <Stephane.Carrez@gmail.com>
1369
1370         PR tui/9584
1371
1372         * tui/tui.c (tui_rl_command_key): Do not call execute_command
1373         but insert the command to execute in readline's buffer.
1374
1375 2012-11-09  Tom Tromey  <tromey@redhat.com>
1376
1377         * gdbarch.sh (target_gdbarch): Remove macro.
1378         (get_target_gdbarch): Rename to target_gdbarch.
1379         * gdbarch.c, gdbarch.h: Rebuild.
1380         * ada-tasks.c, aix-thread.c, amd64-linux-nat.c, arch-utils.c,
1381         arm-tdep.c, auxv.c, breakpoint.c, bsd-uthread.c, corefile.c,
1382         darwin-nat-info.c, dcache.c, dsrec.c, exec.c, fbsd-nat.c,
1383         filesystem.c, gcore.c, gnu-nat.c, i386-darwin-nat.c, i386-nat.c,
1384         ia64-vms-tdep.c, inf-ptrace.c, infcmd.c, jit.c, linux-nat.c,
1385         linux-tdep.c, linux-thread-db.c, m32r-rom.c, memattr.c,
1386         mep-tdep.c, microblaze-tdep.c, mips-linux-nat.c,
1387         mips-linux-tdep.c, mips-tdep.c, monitor.c, moxie-tdep.c,
1388         nto-procfs.c, nto-tdep.c, ppc-linux-nat.c, proc-service.c,
1389         procfs.c, progspace.c, ravenscar-thread.c, record.c,
1390         remote-m32r-sdi.c, remote-mips.c, remote-sim.c, remote.c,
1391         rl78-tdep.c, rs6000-nat.c, rx-tdep.c, s390-nat.c, sol-thread.c,
1392         solib-darwin.c, solib-dsbt.c, solib-frv.c, solib-ia64-hpux.c,
1393         solib-irix.c, solib-pa64.c, solib-som.c, solib-spu.c,
1394         solib-sunos.c, solib-svr4.c, solib.c, spu-linux-nat.c,
1395         spu-multiarch.c, spu-tdep.c, symfile-mem.c, symfile.c, symtab.c,
1396         target-descriptions.c, target.c, target.h, tracepoint.c,
1397         windows-nat.c, windows-tdep.c, xcoffsolib.c, cli/cli-dump.c,
1398         common/agent.c, mi/mi-interp.c, python/py-finishbreakpoint.c,
1399         python/py-inferior.c, python/python.c: Update.
1400
1401 2012-11-09  Andrew Burgess  <aburgess@broadcom.com>
1402
1403         * source.c (print_source_lines_base): Add fullname field giving
1404         full path to file in mi output.
1405         * NEWS: Mention the new fullname field.
1406
1407 2012-11-09  Yao Qi  <yao@codesourcery.com>
1408
1409         * NEWS: Mention the fix to the ambiguity of 'fo' command.
1410
1411 2012-11-09  Pedro Alves  <palves@redhat.com>
1412
1413         PR gdb/14306
1414
1415         * infrun.c: Include target-descriptions.h.
1416         (follow_exec): Fetch new target description.
1417
1418 2012-11-09  Yao Qi  <yao@codesourcery.com>
1419
1420         * i386-tdep.c (i386_analyze_frame_setup): Handle opcode
1421         0x8d (lea).
1422
1423 2012-11-09  Yao Qi  <yao@codesourcery.com>
1424
1425         * breakpoint.c: Declare set_tracepoint_count.
1426         (install_breakpoint): Call set_tracepoint_count if B is a
1427         tracepoint.
1428         (trace_command): Don't call set_tracepoint_count.  Re-indent.
1429         (strace_command, ftrace_command):
1430         (create_tracepoint_from_upload): Likewise.
1431
1432 2012-11-09  Pedro Alves  <palves@redhat.com>
1433
1434         * gdbarch.sh (target_gdbarch) <gdbarch.h>: Reimplement as macro.
1435         (get_target_gdbarch) <gdbarch.h>: New function.
1436         (startup_gdbarch) <gdbarch.h>: Declare.
1437         <gdbarch.c> (target_gdbarch): Delete.
1438         <gdbarch.c> (deprecated_target_gdbarch_select_hack): Set the
1439         current inferior's gdbarch.
1440         <gdbarch.c> (get_target_gdbarch): New function.
1441         * inferior.c: Include target-descriptions.h.
1442         (free_inferior): Free target description info.
1443         (add_inferior_with_spaces): Set the inferior's initial
1444         architecture.
1445         (clone_inferior_command): Copy the original inferior's target
1446         description if it was user specified.
1447         (initialize_inferiors): Add comment.
1448         * inferior.h (struct target_desc_info): Forward declare.
1449         (struct inferior) <gdbarch>: New field.
1450         * linux-nat.c: Include target-descriptions.h.
1451         (linux_child_follow_fork): Copy the parent's architecture and
1452         target description to the child.
1453         * target-descriptions.c: Include inferior.h.
1454         (struct target_desc_info): New structure, holding the equivalents
1455         of ...
1456         (target_desc_fetched, current_target_desc)
1457         (target_description_filename): ... these removed globals.
1458         (get_tdesc_info, target_desc_info_from_user_p)
1459         (copy_inferior_target_desc_info, target_desc_info_free): New.
1460         (target_desc_fetched, current_target_desc)
1461         (target_description_filename): Reimplemented as convenience
1462         macros.
1463         (tdesc_filename_cmd_string): New global.
1464         (set_tdesc_filename_cmd): Copy the string manipulated by the "set
1465         tdescs filename ..." commands to the per-inferior equivalent.
1466         (show_tdesc_filename_cmd): Get the value to show from the
1467         per-inferior description filename.
1468         (_initilize_target_descriptions): Change the "set/show tdesc
1469         filename" commands' variable.
1470         * target-descriptions.h (struct target_desc, struct target_desc_info)
1471         (struct inferior): Forward declare.
1472         (target_find_description, target_clear_description)
1473         (target_current_description): Adjust comments.
1474         (copy_inferior_target_desc_info, target_desc_info_free)
1475         (target_desc_info_from_user_p). Declare.
1476
1477 2012-11-08  Stephane Carrez  <Stephane.Carrez@gmail.com>
1478
1479         * tui/tui-hooks.c (tui_about_to_proceed): New function.
1480         (tui_target_wait_hook): Remove.
1481         (tui_install_hooks): Install the about_to_proceed observer.
1482         (tui_remove_hooks): And remove it here.
1483
1484 2012-11-08  Tom Tromey  <tromey@redhat.com>
1485
1486         * linux-tdep.c (linux_make_siginfo_note): New function.
1487         (linux_make_corefile_notes): Use it.
1488         * corelow.c (get_core_siginfo): New function.
1489         (core_xfer_partial) <TARGET_OBJECT_SIGNAL_INFO>: New case.
1490
1491 2012-11-08  Tom Tromey  <tromey@redhat.com>
1492
1493         PR gdb/14704:
1494         * gdb_bfd.c (gdb_bfd_ref): Set BFD_DECOMPRESS.
1495         (zlib_decompress_section): Remove.
1496         (gdb_bfd_map_section): Only check for compressed section
1497         in mmap case.  Use bfd_get_full_section_contents.
1498         * osabi.c (check_note): Add 'sectsize' argument.  Read
1499         section data.
1500         (generic_elf_osabi_sniff_abi_tag_sections): Don't read
1501         section data.  Update for check_note change.
1502         * xcoffread.c (xcoff_initial_scan): Use
1503         bfd_get_full_section_contents.
1504         * py-auto-load.c (auto_load_section_scripts): Use
1505         bfd_get_full_section_contents.
1506         * contrib/cc-with-tweaks.sh: Add -Z option.
1507
1508 2012-11-08  Tom Tromey  <tromey@redhat.com>
1509
1510         * python/py-bpevent.c: Include defs.h.
1511         * python/py-continueevent.c: Include defs.h.
1512         * python/py-event.c: Include defs.h.
1513         * python/py-event.h: Don't include defs.h.
1514         * python/py-events.h: Don't include defs.h.
1515         * python/py-evts.c: Include defs.h.
1516         * python/py-exitedevent.c: Include defs.h.
1517         * python/py-newobjfileevent.c: Include defs.h.
1518         * python/py-signalevent.c: Include defs.h.
1519         * python/py-stopevent.c: Include defs.h.
1520         * python/py-threadevent.c: Include defs.h.
1521
1522 2012-11-08  Pierre Muller  <muller@sourceware.org>
1523
1524         * update-web-ari.sh (print_heading): Add number of files
1525         checked.
1526         (nb_files): New variable counting the number of sources
1527         files found by gdb_find.sh script.
1528         (debug_awk): New variable to allow extra debug output.
1529         (indexes): Add more information if DEBUG_AWK is set.
1530
1531 2012-11-08  Edjunior Machado  <emachado@linux.vnet.ibm.com>
1532
1533         * ppc-linux-tdep.c (ppc64_standard_linkage1, ppc64_standard_linkage2,
1534         ppc64_standard_linkage3): Mark ld r11 instructions as optional,
1535         following the change in PLT call stubs on linker.
1536
1537 2012-11-08  Pierre Muller  <muller@sourceware.org>
1538
1539         * contrib/ari/gdb_ari.sh (LANG, LC_ALL): Use 'C' instead of 'c'
1540         as default language.
1541         (AWK): Use = instead of == for sh test to avoid warning.
1542         (Linux rule): Correct [:digit] into [[:digit:]].
1543         (__func__ rule): Adapt to "gdb_assert.h" move to common subdirectory.
1544         (vasprintf rule): Adapt to common subdirectory moves.
1545         (xasprintf rule): Idem.
1546         (xvasprintf rule): Idem.
1547         (var_boolean rule): Accept occurence in == or != test.
1548
1549         * contrib/ari/gdb_find.sh: Also prune gdbtk directory.
1550
1551 2012-11-08  Stephane Carrez  <Stephane.Carrez@gmail.com>
1552
1553         * tui/tui-hooks.c (tui_inferior_exit): New function.
1554         (tui_detach_hook): Remove.
1555         (tui_install_hooks): Install the inferior exit observer.
1556         (tui_remove_hooks): Remove it.
1557
1558 2012-11-08  Yao Qi  <yao@codesourcery.com>
1559
1560         PR gdb/14777.
1561         * source.c (_initialize_source): Call add_com_alias to abbreviate
1562         'forward-search' as 'fo'.
1563
1564 2012-11-07  Pedro Alves  <palves@redhat.com>
1565
1566         * arm-tdep.c: Make defs.h be the first include.
1567         * coff-pe-read.c: Ditto.
1568         * gnu-nat.c: Ditto.
1569         * go32-nat.c: Ditto.
1570         * i386-nat.c: Ditto.
1571         * ppcnbsd-nat.c: Ditto.
1572         * ada-varobj.h: Don't include defs.h.
1573         * i386-darwin-tdep.h: Ditto.
1574         * i386-nat.h: Ditto.
1575
1576 2012-11-07  Pedro Alves  <palves@redhat.com>
1577
1578         * MAINTAINERS: New FSF-appointed maintainers replace the Steering
1579         Committee.
1580
1581 2012-11-07  Pierre Muller  <muller@sourceware.org>
1582
1583         * common/linux-osdata.c (dirent.h): ARI fix: Remove.
1584         File already uses "gdb_dirent.h" header.
1585
1586 2012-11-07  Yao Qi  <yao@codesourcery.com>
1587
1588         * breakpoint.c (get_tracepoint_by_number): Remove 'extern int
1589         tracepoint_count'.
1590
1591 2012-11-06  Tom Tromey  <tromey@redhat.com>
1592
1593         * target.h (inferior_has_forked, inferior_has_vforked)
1594         (inferior_has_execd, inferior_has_called_syscall): Remove
1595         declarations.
1596
1597 2012-11-06  Pierre Muller  <muller@sourceware.org>
1598
1599         * remote.c (remote_insert_hw_breakpoint): ARI fix,
1600         add missing internalization markup.
1601
1602 2012-11-06  Pedro Alves  <palves@redhat.com>
1603
1604         PR gdb/14810
1605
1606         * breakpoint.c (bpstat_stop_status): Skip disabled locations.
1607
1608 2012-11-06  Pierre Muller  <muller@sourceware.org>
1609
1610         * contrib/ari/create-web-ari-in-src.sh: Avoid problem if script
1611         is not executable.
1612
1613 2012-11-05  Joel Brobecker  <brobecker@adacore.com>
1614
1615         * gnulib/update-gnulib.sh: New script.
1616
1617 2012-11-05  Stephane Carrez  <Stephane.Carrez@gmail.com>
1618
1619         * MAINTAINERS: Update my email address.
1620
1621 2012-11-05  Tom Tromey  <tromey@redhat.com>
1622
1623         * frame.c (put_frame_register): Don't use temporary buffer.
1624
1625 2012-11-05  Pedro Alves  <palves@redhat.com>
1626
1627         * inferior.c (exit_inferior_1): Clear 'vfork_parent' in the vfork
1628         child.  Clear 'pending_detach'.
1629         * infrun.c (handle_vfork_child_exec_or_exit): Clear
1630         'pending_detach' in the vfork parent.
1631
1632 2012-11-05  Doug Evans  <dje@google.com>
1633
1634         Add support for DWP files.  http://gcc.gnu.org/wiki/DebugFissionDWP
1635         * contrib/cc-with-tweaks.sh: Add -p parameter to invoke dwp.
1636         * dwarf2read.c: #include "elf-bfd.h".
1637         (struct dwarf2_per_objfile): New members dwp_checked, dwp_file.
1638         (dwop_section_names): Renamed from dwo_section names.  All uses
1639         updated.  Add entries for .debug_cu_index, .debug_tu_index.
1640         (struct dwo_file): Rename dwo_name to name, dwo_bfd to dbfd.
1641         All uses updated.
1642         (struct dwp_sections): New type.
1643         (struct virtual_dwo_sections): New type.
1644         (struct dwp_hash_table): New type.
1645         (struct dwp_file): New type.
1646         (init_cutu_and_read_dies): Ensure DWO info/types section has been
1647         read in.  Handle DWOs coming from DWP files.
1648         (lookup_dwo_file_slot): New function.
1649         (dwarf2_locate_dwo_sections): Move definition closer to use.
1650         (create_dwo_debug_info_hash_table_reader): Renamed from
1651         create_debug_info_hash_table_reader.  All callers updated.
1652         (create_dwo_debug_info_hash_table): Renamed from
1653         create_debug_info_hash_table.  All callers updated.
1654         (create_dwp_hash_table): New function.
1655         (locate_virtual_dwo_sections, create_dwo_in_dwp): New functions.
1656         (lookup_dwo_in_dwp): New function.
1657         (try_open_dwop_file): Renamed from try_open_dwo_file.  New parameter
1658         is_dwp.  All callers updated.
1659         (open_dwop_file): Renamed from open_dwo_file.  All callers updated.
1660         (open_and_init_dwo_file): Renamed from init_dwo_file.
1661         All callers updated.
1662         (lookup_dwo_file): Delete.
1663         (dwarf2_locate_dwp_sections): New function.
1664         (hash_dwp_loaded_cutus, eq_dwp_loaded_cutus): New functions.
1665         (allocate_dwp_loaded_cutus_table): New function.
1666         (open_and_init_dwp_file): New function.
1667         (lookup_dwo_cutu): New function.
1668         (lookup_dwo_comp_unit, lookup_dwo_type_unit): Call it.
1669
1670 2012-11-03  Yao Qi  <yao@codesourcery.com>
1671
1672         Fix PR gdb/14617.
1673         * breakpoint.c (trace_pass_set_count): Call
1674         observer_notify_breakpoint_modified instead of
1675         observer_notify_tracepoint_modified.
1676         * mi/mi-cmd-break.c (mi_cmd_break_passcount): Likewise.
1677
1678 2012-11-02  Tom Tromey  <tromey@redhat.com>
1679
1680         * breakpoint.c (catch_syscall_completer): Pass 'word' as second
1681         argument to complete_on_enum.
1682
1683 2012-11-02  Tom Tromey  <tromey@redhat.com>
1684
1685         * configure: Rebuild.
1686         * configure.ac (build_warnings): Add -Wempty-body.
1687         * m68k-tdep.c (m68k_gdbarch_init): Remove empty 'if'.
1688         * remote.c (handle_notification): Use braces for empty 'else' body.
1689         * s390-tdep.c (s390_analyze_prologue): Use braces for empty
1690         'else' body.
1691         * sh64-tdep.c (sh64_push_dummy_call): Use braces for empty
1692         'else' body.
1693         * solib-som.c (som_relocate_section_addresses): Use braces
1694         for empty 'else' body.
1695         * ui-file.c (stdio_file_write): Use braces for empty 'if' body.
1696         (stdio_file_write_async_safe, stdio_file_fputs): Likewise.
1697
1698 2012-11-02  Pedro Alves  <palves@redhat.com>
1699
1700         PR gdb/14766
1701
1702         * infrun.c (handle_inferior_event)
1703         <TARGET_WAITKIND_EXITED/TARGET_WAITKIND_SIGNALLED>: Switch to
1704         null_ptid before handling a vfork child exec or exit.  Switch to
1705         the event ptid afterwards.
1706
1707 2012-11-02  Yao Qi  <yao@codesourcery.com>
1708
1709         * std-operator.def: Remove OP_LABELED.
1710         * eval.c: Remove the declaration of 'get_label'.
1711         (get_label): Remove.
1712         (evaluate_struct_tuple): Remove code handling OP_LABELED.
1713         Update comment.
1714         Remove local variable 'variantno' and related code.
1715         Replace 'substruct_type' with 'struct_type'.  Replace 'subfieldno'
1716         with 'fieldno'.
1717         * expprint.c (print_subexp_standard): Likewise.
1718         (dump_subexp_body_standard): Likewise.
1719         * parse.c (operator_length_standard): Likewise.
1720
1721 2012-11-01  Pierre Muller  <muller@ics.u-strasbg.fr>
1722
1723         Incorporate ARI web page generator into GDB sources.
1724         * contrib/ari/create-web-ari-in-src.sh: New file.
1725         * contrib/ari/gdb_ari.sh: New file.
1726         * contrib/ari/gdb_find.sh: New file.
1727         * contrib/ari/update-web-ari.sh: New file.
1728
1729 2012-10-31  Tom Tromey  <tromey@redhat.com>
1730
1731         * gdbarch.c: Rebuild.
1732         * gdbarch.sh: Remove references to gdbarch_swap.
1733         * corelow.c (core_open): Remove obsolete comment.
1734
1735 2012-10-31  Andrew Burgess  <aburgess@broadcom.com>
1736
1737         PR cli/14772
1738         * c-typeprint.c (c_print_type): Don't print a space for vector
1739         types, this is handled within the suffix.
1740         (c_type_print_varspec_suffix): Add a space to vector suffix.
1741
1742 2012-10-26  Pedro Alves  <palves@redhat.com>
1743
1744         * amd64-tdep.c (amd64_relocate_instruction): Use
1745         store_unsigned_integer instead of memcpy.
1746         * i386-tdep.c (i386_relocate_instruction): Ditto.
1747
1748 2012-10-26  Pedro Alves  <palves@redhat.com>
1749
1750         * infrun.c (handle_inferior_event): Merge handling of
1751         TARGET_WAITKIND_EXITED and TARGET_WAITKIND_SIGNALLED into a single
1752         switch case.
1753
1754 2012-10-26  Pedro Alves  <palves@redhat.com>
1755
1756         * infrun.c (handle_inferior_event) <TARGET_WAITKIND_SIGNALLED>:
1757         Remove comment.
1758
1759 2012-10-26  Pedro Alves  <palves@redhat.com>
1760
1761         * target.c (target_waitstatus_to_string): Handle
1762         TARGET_WAITKIND_VFORK_DONE.
1763
1764 2012-10-26  Pedro Alves  <palves@redhat.com>
1765
1766         * infrun.c (handle_inferior_event): Print TARGET_WAITKIND_VFORKED
1767         as "TARGET_WAITKIND_VFORKED", not "TARGET_WAITKIND_FORKED".
1768
1769 2012-10-24  Tristan Gingold  <gingold@adacore.com>
1770
1771         * ravenscar-sparc-thread.c (ravenscar_sparc_fetch_registers):
1772         Add comments.
1773
1774 2012-10-24  Joel Brobecker  <brobecker@adacore.com>
1775
1776         * ravenscar-thread.c (ravenscar_wait): Only update the list
1777         of threads and inferior_ptid if the inferior is still alive.
1778
1779 2012-10-24  Joel Brobecker  <brobecker@adacore.com>
1780
1781         * ada-lang.c (is_known_support_routine): Use lbasename when
1782         matching the symtab's filename against
1783         known_runtime_file_name_patterns.
1784
1785 2012-10-24  Joel Brobecker  <brobecker@adacore.com>
1786
1787         * ada-lang.c (ada_same_array_size_p): New function.
1788         (ada_promote_array_of_integrals): New function.
1789         (coerce_for_assign): Add handling of arrays where the elements
1790         are integrals of a smaller size than the size of the target
1791         array element type.
1792
1793 2012-10-24  Joel Brobecker  <brobecker@adacore.com>
1794
1795         * doublest.c (convert_doublest_to_floatformat): Fix comparison
1796         against maximum exponent value.
1797
1798 2012-10-24  Joel Brobecker  <brobecker@adacore.com>
1799
1800         * ada-lang.h (ADA_KNOWN_RUNTIME_FILE_NAME_PATTERNS): Add entry for
1801         "unwind-seh.c".
1802
1803 2012-10-24  Joel Brobecker  <brobecker@adacore.com>
1804
1805         * ada-lang.c (ada_template_to_fixed_record_type_1): Do not
1806         strip typedef layer when computing the fixed type's field type,
1807         only when computing its size.
1808
1809 2012-10-24  Mark Kettenis  <kettenis@gnu.org>
1810
1811         PR gdb/12783
1812         * i386-tdep.c (i386_return_value): Handle complex double and long
1813         double.
1814
1815 2012-10-24  Joel Brobecker  <brobecker@adacore.com>
1816
1817         * windows-nat.c (windows_create_inferior) [!__CYGWIN__]:
1818         New local variable args_len.
1819         Quote the name of the executable when computing the command line.
1820
1821 2012-10-23  Mark Kettenis  <kettenis@gnu.org>
1822
1823         PR gdb/12796
1824         PR gdb/12798
1825         PR gdb/12800
1826         * amd64-tdep.h (enum amd64_regnum): Add AMD64_ST1_REGNUM and
1827         AMD64_FTAG_REGNUM.
1828         * amd64-tdep.c (amd64_classify): Classify complex types.
1829         (amd64_return_value): Handle the COMPLEX_X87 class.
1830
1831 2012-10-23  Joel Brobecker  <brobecker@adacore.com>
1832
1833         * rs6000-aix-tdep.c (rs6000_aix_auto_wide_charset): New function.
1834         (rs6000_aix_init_osabi): Set auto_wide_charset gdbarch method.
1835
1836 2012-10-23  Joel Brobecker  <brobecker@adacore.com>
1837
1838         * amd64-windows-tdep.c (amd64_windows_auto_wide_charset): New
1839         function.
1840         (amd64_windows_init_abi): Set auto_wide_charset gdbarch method
1841         to amd64_windows_auto_wide_charset.
1842
1843 2012-10-23  Yao Qi  <yao@codesourcery.com>
1844
1845         * event-top.c (mark_async_signal_handler_wrapper): Remove.
1846         * event-top.h: Remove its declaration.
1847         (async_request_quit): Call mark_async_signal_handler instead of
1848         mark_async_signal_handler_wrapper.
1849         (async_do_nothing, async_disconnect): Likewise.
1850         (async_stop_sig): Likewise.
1851         * remote.c (handle_remote_sigint): Likewise.
1852         (handle_remote_sigint_twice): Likewise.
1853
1854 2012-10-23  Yao Qi  <yao@codesourcery.com>
1855
1856         * event-top.c (sigint_token, sighup_token): Replace 'void *'
1857         with 'static struct async_signal_handler *'.
1858         (sighup_token, sigquit_token, sigstp_token): Likewise.
1859
1860 2012-10-22  Ali Anwar  <ali_anwar@codesourcery.com>
1861
1862         * gdbarch.sh (function_list): Use 'pstring' when printing
1863         a variable which could return NULL.
1864         * gdbarch.c: Regenerate.
1865
1866 2012-10-10  Joel Brobecker  <brobecker@adacore.com>
1867             Tom Tromey  <tromey@redhat.com>
1868
1869         * rs6000-aix-tdep.c (rs6000_aix_osabi_sniffer): Replace
1870         inneffective if condition by gdb assertion.  Add function
1871         description comment.
1872
1873 2012-10-19  Joel Brobecker  <brobecker@adacore.com>
1874
1875         * parser-defs.h (struct exp_descriptor): Document constraint
1876         on return value for "op_name" callbacks.
1877
1878 2012-10-18  Tom Tromey  <tromey@redhat.com>
1879
1880         * tracepoint.c (print_one_static_tracepoint_marker): Constify.
1881         * symtab.c (iterate_over_some_symtabs): Constify.
1882         * source.h (symtab_to_fullname): Return 'const char *'.
1883         * source.c (symtab_to_fullname): Return 'const char *'.
1884         * python/py-symtab.c (stpy_fullname): Constify.
1885         * cli/cli-cmds.c (edit_command): Constify.
1886         * breakpoint.c (print_breakpoint_location)
1887         (update_static_tracepoint): Constify.
1888
1889 2012-10-18  Tom Tromey  <tromey@redhat.com>
1890
1891         * breakpoint.c (compare_breakpoints): Fix comparison.
1892
1893 2012-10-18  Tom Tromey  <tromey@redhat.com>
1894
1895         * valprint.c (generic_emit_char, generic_printstr): Pass size of
1896         gdb_wchar_t to convert_between_encodings.
1897
1898 2012-10-17  Yao Qi  <yao@codesourcery.com>
1899
1900         * breakpoint.c (invalidate_bp_value_on_memory_change): Add one
1901         more parameter 'inferior'.
1902         * corefile.c (write_memory_with_notification): Caller update.
1903
1904         * mi/mi-cmd-var.c: Include "mi-main.h".
1905         (mi_cmd_var_assign): Set mi_suppress_notification.data_write_memory
1906         to 1 and restore it later.
1907         * mi/mi-cmds.c (mi_cmd mi_cmds): Update for "data-write-memory"
1908         and "data-write-memory-bytes.
1909         * mi/mi-interp.c: Include objfiles.h.
1910         (mi_interpreter_init): Call observer_attach_memory_changed.
1911         (mi_memory_changed): New.
1912         * mi/mi-main.h (struct mi_suppress_notification) <memory>:
1913         New field.
1914
1915         * NEWS: Mention new MI notification "memory-changed".
1916
1917 2012-10-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
1918
1919         * dwarf2loc.c (dwarf_expr_reg_to_entry_parameter): Remove comment.
1920
1921 2012-10-15  Doug Evans  <dje@google.com>
1922
1923         New option -nh: inhibit loading of ~/.gdbinit.
1924         * NEWS: Mention -nh.
1925         * main.c (captured_main): Recognize and process -nh.
1926         (print_gdb_help): Mention -nh.
1927         * gdb.1: Mention -nh.  Remove erroneous docs on -nx behavior.
1928
1929 2012-10-15  H.J. Lu  <hongjiu.lu@intel.com>
1930
1931         PR backtrace/14646
1932         PR gdb/14647
1933         * i386-tdep.h (gdbarch_tdep): Remove sp_regnum_from_eax and
1934         pc_regnum_from_eax.
1935         * i386-tdep.c (i386_gdbarch_init): Don't use sp_regnum_from_eax
1936         nor pc_regnum_from_eax.
1937         * amd64-tdep.c (amd64_x32_init_abi): Don't set sp_regnum_from_eax
1938         nor pc_regnum_from_eax.
1939
1940 2012-10-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
1941
1942         Fix entry values resolving in inlined frames.
1943         * dwarf2loc.c (dwarf_expr_reg_to_entry_parameter): Move func_addr,
1944         gdbarch and caller_frame initialization later.  Skip INLINE_FRAME
1945         entries of FRAME.
1946
1947 2012-10-15  Joel Brobecker  <brobecker@adacore.com>
1948
1949         * configure.ac: Build with -DMS_WIN64 if building with Python
1950         enabled using GCC on amd64-windows.
1951         * configure: Regenerate.
1952
1953 2012-10-15  Tom Tromey  <tromey@redhat.com>
1954
1955         PR python/14635:
1956         * python/py-symtab.c (del_objfile_sal): Set 'symtab' field
1957         to Py_None.
1958
1959 2012-10-15  Tom Tromey  <tromey@redhat.com>
1960
1961         PR python/14634:
1962         * python/py-symbol.c (sympy_dealloc): Check for NULL symbol.
1963
1964 2012-10-11  Andrew Burgess  <aburgess@broadcom.com>
1965
1966         * remote-sim.c (gdbsim_create_inferior): Call init_thread_list to
1967         reset thread numbering back to 1.
1968
1969 2012-10-11  Doug Evans  <dje@google.com>
1970
1971         PR breakpoints/14643.
1972         * linespec.c (struct ls_parser): New member keyword_ok.
1973         (linespec_lexer_lex_string): Add comment.
1974         (linespec_lexer_lex_one): Ignore keywords if it's the wrong place
1975         for one.
1976         (parse_linespec): Set keyword_ok.
1977
1978 2012-10-10  Doug Evans  <dje@google.com>
1979
1980         * dwarf2read.c (process_psymtab_comp_unit_reader): Remove duplicate
1981         "0x" prefix on address in log message.
1982
1983         * dwarf2read.c (read_1_byte): Add const to buf parameter.
1984         (read_1_signed_byte, read_2_bytes, read_2_signed_bytes): Ditto.
1985         (read_4_bytes, read_4_signed_bytes, read_8_bytes): Ditto.
1986         (lookup_dwo_file): Add const to dwo_name parameter.
1987         (lookup_dwo_comp_unit, lookup_dwo_type_unit): Ditto.
1988
1989 2012-10-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
1990
1991         Fix crash during stepping on ppc32.
1992         * ppc-linux-tdep.c (powerpc_linux_in_dynsym_resolve_code): Test NULL
1993         SYM.
1994
1995 2012-10-03  Doug Evans  <dje@google.com>
1996
1997         PR symtab/14601
1998         * buildsym.c (buildsym_init): Reset using_directives to NULL.
1999
2000 2012-10-02  Andrew Burgess  <aburgess@broadcom.com>
2001
2002         * remote-sim.c (dump_mem): Always dump buffer contents, zero fill
2003         output and use uint32_t not long to ensure 4 byte size.
2004
2005 2012-10-02  Joel Brobecker  <brobecker@adacore.com>
2006
2007         * rs6000-nat.c (add_vmap): Set "last" to "next" after having
2008         unref'ed it.
2009
2010 2012-10-01  Andrew Burgess  <aburgess@broadcom.com>
2011
2012         * target.c (simple_search_memory): Include access length in
2013         warning message.
2014
2015 2012-09-28  Nathan Miller  <nathanm2@us.ibm.com>
2016             Edjunior Machado  <emachado@linux.vnet.ibm.com>
2017
2018         PR gdb/13989
2019         * solib.c (solib_find): Prevent GDB from loading native libraries when
2020         debugging a cross-target corefile.
2021
2022 2012-09-28  selven  <pcthegreat@gmail.com>
2023
2024         Make definition match declaration.
2025
2026         * regcache.c (regcache_register_status): Change return type to
2027         enum register_status.
2028
2029 2012-09-28  Yao Qi  <yao@codesourcery.com>
2030
2031         * mi/mi-main.c (mi_cmd_data_write_memory): Call
2032         write_memory_with_notification instead of write_memory.
2033         (mi_cmd_data_write_memory_bytes): Call write_memory_with_notification
2034         instead of target_write_memory.
2035
2036 2012-09-28  Yao Qi  <yao@codesourcery.com>
2037
2038         * mi/mi-main.c (mi_cmd_data_write_memory_bytes): Emit error
2039         when the length of content is not an even number.
2040
2041 2012-09-27  Tom Tromey  <tromey@redhat.com>
2042
2043         Fix https://bugzilla.redhat.com/show_bug.cgi?id=849357
2044         * cp-valprint.c (cp_print_value_fields): Use get_vptr_fieldno.
2045
2046 2012-09-27  Joel Brobecker  <brobecker@adacore.com>
2047
2048         * sol-thread.c (sol_thread_fetch_registers)
2049         (sol_thread_store_registers): Delete commented out code.
2050
2051 2012-09-27  Joel Brobecker  <brobecker@adacore.com>
2052
2053         * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
2054         Move these functions to sparc-sol-thread.c.
2055         * sparc-sol-thread.c: New file.
2056         * configure.ac: Add sparc-sol-thread.o to CONFIG_OBS and
2057         sparc-sol-thread.c to CONFIG_SRCS for sparc-solaris native
2058         configurations.
2059         * configure: Regenerate.
2060
2061 2012-09-27  Joel Brobecker  <brobecker@adacore.com>
2062
2063         * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
2064         Remove commented-out code.
2065
2066 2012-09-27  Joel Brobecker  <brobecker@adacore.com>
2067
2068         * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
2069         Enable this code for sparc hosts only.
2070
2071 2012-09-27  Joel Brobecker  <brobecker@adacore.com>
2072
2073         * procfs.h (procfs_find_LDT_entry): Add declaration.
2074         * sol-thread.c (ps_lgetLDT): Delete local declaration of
2075         function procfs_find_LDT_entry.
2076
2077 2012-09-27  Joel Brobecker  <brobecker@adacore.com>
2078
2079         * procfs.c (proc_get_LDT_entry): Make static.
2080
2081 2012-09-27  Joel Brobecker  <brobecker@adacore.com>
2082
2083         * procfs.c (proc_find_memory_regions): Fix declaration.
2084
2085 2012-09-27  Siddhesh Poyarekar  <siddhesh@redhat.com>
2086
2087         * amd64-tdep.c (amd64_return_value): Revert previous change
2088         that used TYPE_LENGTH directly.
2089         * bfin-tdep.c (bfin_extract_return_value): Likewise.
2090         (bfin_store_return_value): Likewise.
2091         * cris-tdep.c (cris_store_return_value): Likewise.
2092         (cris_extract_return_value): Likewise.
2093         * h8300-tdep.c (h8300_extract_return_value): Likewise.
2094         * hppa-tdep.c (hppa64_return_value): Likewise.
2095         * lm32-tdep.c (lm32_store_return_value): Likewise.
2096         * microblaze-tdep.c (microblaze_store_return_value): Likewise.
2097         * spu-tdep.c (spu_value_from_register): Likewise.
2098         * vax-tdep.c (vax_return_value): Likewise.
2099
2100 2012-09-27  Siddhesh Poyarekar  <siddhesh@redhat.com>
2101
2102         * gdbtypes.c (lookup_array_range_type): Expand parameters
2103         LOW_BOUND and HIGH_BOUND to LONGEST.
2104         (lookup_string_range_type): Likewise.
2105         * gdbtypes.h (lookup_array_range_type): Likewise.
2106         (lookup_string_range_type): Likewise.
2107         * valops.c (value_cstring): Expand parameter LEN to ssize_t.
2108         Expand HIGHBOUND to ssize_t.
2109         (value_string): Likewise.
2110         * value.h (value_cstring): Expand parameter LEN to ssize_t.
2111         (value_string): Likewise.
2112
2113 2012-09-27  Yao Qi  <yao@codesourcery.com>
2114
2115         PR breakpoints/13898
2116         * breakpoint.h (tracepoint_breakpoint_ops): Forward declaration.
2117         * mi/mi-cmd-break.c (mi_cmd_break_insert): Set breakpoint_ops
2118         per breakpoint type.
2119
2120 2012-09-26  Pierre Muller  <muller@ics.u-strasbg.fr>
2121
2122         * procfs.c: Add gdb_bfd header.
2123         * rs6000-nat.c: Likewise.
2124         * solib-pa64.c: Likewise.
2125         * spu-linux-nat.c: Likewise.
2126         * windows-nat.c: Likewise.
2127
2128 2012-09-26  Tom Tromey  <tromey@redhat.com>
2129
2130         * f-lang.h (BLANK_COMMON_NAME_LOCAL): Remove.
2131
2132 2012-09-26  Tom Tromey  <tromey@redhat.com>
2133
2134         * dwarf2read.c (mark_common_block_symbol_computed): New function.
2135         (read_common_block): Handle child DIEs with
2136         DW_AT_data_member_location.
2137         (new_symbol_full): Add special case for common blocks.
2138
2139 2012-09-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
2140             Tom Tromey  <tromey@redhat.com>
2141
2142         * dwarf2read.c (read_common_block): Rewrite.
2143         (new_symbol_full): Handle DW_TAG_common_block.
2144         * f-lang.c (head_common_list, find_common_for_function):
2145         Remove.
2146         * f-lang.h (struct common_entry, struct saved_f77_common,
2147         SAVED_F77_COMMON, SAVED_F77_COMMON_PTR, COMMON_ENTRY,
2148         COMMON_ENTRY_PTR, head_common_list, find_common_for_function,
2149         BLANK_COMMON_NAME_LOCAL): Remove.
2150         (struct common_block): New.
2151         * f-valprint.c (list_all_visible_commons): Remove.
2152         (info_common_command_for_block): New function.
2153         (info_common_command): Use it.
2154         * stack.c (iterate_over_block_locals): Special case for
2155         COMMON_BLOCK_DOMAIN.
2156         * symtab.h (enum domain_enum_tag) <COMMON_BLOCK_DOMAIN>: New
2157         constant.
2158         (struct general_symbol_info) <value.common_block>: New field.
2159         (SYMBOL_VALUE_COMMON_BLOCK): New define.
2160
2161 2012-09-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
2162             Tom Tromey  <tromey@redhat.com>
2163
2164         * f-lang.c (allocate_saved_bf_node,
2165         allocate_saved_function_node, allocate_saved_f77_common_node,
2166         allocate_common_entry_node, tail_common_list, current_common,
2167         saved_bf_list, saved_bf_list_end, current_head_bf_list,
2168         tmp_bf_ptr, add_common_block, add_common_entry,
2169         find_first_common_named, patch_common_entries,
2170         patch_all_commons_by_name, ADD_BF_SYMNUM, clear_bf_list,
2171         global_remote_debug, get_bf_for_fcn, saved_function_list,
2172         saved_function_list_end, clear_function_list, struct saved_fcn,
2173         struct saved_bf_symnum, SAVED_FUNCTION, SAVED_FUNCTION_PTR,
2174         SAVED_BF, SAVED_BF_PTR): Remove.
2175         * f-lang.h (tail_common_list, current_common,
2176         UNINITIALIZED_SECNUM, COMMON_NEEDS_PATCHING,
2177         BLANK_COMMON_NAME_ORIGINAL, BLANK_COMMON_NAME_MF77,
2178         DEFAULT_UPPER_BOUND, DEFAULT_LOWER_BOUND, real_main_name,
2179         real_main_c_value): Remove.
2180         * f-valprint.c (there_is_a_visible_common_named): Remove.
2181
2182 2012-09-26  Andrew Burgess  <aburgess@broadcom.com>
2183
2184         * breakpoint.c (update_global_location_list): Ignore previous
2185         duplicate status of a breakpoint when starting a new scan for
2186         duplicate breakpoints.
2187
2188 2012-09-26  Karthik Bhat  <kv.bhat@samsung.com>
2189         PR breakpoints/14419
2190         * arm-tdep.c (arm_skip_prologue): Extending producer check to
2191         support LLVM compiler.
2192
2193 2012-09-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
2194
2195         * amd64-tdep.c (amd64_return_value): Use TYPE_LENGTH directly.
2196         * bfin-tdep.c (bfin_extract_return_value): Likewise.
2197         (bfin_store_return_value): Likewise.
2198         * cris-tdep.c (cris_store_return_value): Likewise.
2199         (cris_extract_return_value): Likewise.
2200         * h8300-tdep.c (h8300_extract_return_value): Likewise.
2201         * hppa-tdep.c (hppa64_return_value): Likewise.
2202         * lm32-tdep.c (lm32_store_return_value): Likewise.
2203         * microblaze-tdep.c (microblaze_store_return_value): Likewise.
2204         * spu-tdep.c (spu_value_from_register): Likewise.
2205         * vax-tdep.c (vax_return_value): Likewise.
2206
2207 2012-09-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
2208
2209         * breakpoint.c (invalidate_bp_value_on_memory_change): Expand
2210         parameter LEN to ssize_t.
2211
2212 2012-09-25  Siddhesh Poyarekar  <siddhesh@redhat.com>
2213
2214         * ada-valprint.c (ada_val_print_1): Eliminate single-use
2215         variable LEN.
2216         * alpha-tdep.c (alpha_extract_return_value): Use TYPE_LENGTH
2217         directly.
2218         (alpha_store_return_value): Likewise.
2219         * amd64-tdep.c (amd64_classify_aggregate): Likewise.
2220         (amd64_push_arguments): Likewise.
2221         * ax-gdb.c (gen_trace_static_fields): Likewise.
2222         (gen_traced_pop): Likewise.
2223         * bfin-tdep.c (bfin_push_dummy_call): Likewise.
2224         * breakpoint.c (update_watchpoint): Likewise.
2225         * findcmd.c (parse_find_args): Use local variable for type
2226         instead of length.
2227         * findvar.c (default_read_var_value): Use TYPE_LENGTH directly.
2228         * h8300-tdep.c (h8300h_extract_return_value): Likewise.
2229         (h8300_store_return_value): Likewise.
2230         * i386-darwin-tdep.c (i386_darwin_push_dummy_call): Likewise.
2231         Use i386_darwin_arg_type_alignment directly.
2232         * infcall.c (call_function_by_hand): Use TYPE_LENGTH directly.
2233         * lm32-tdep.c (lm32_push_dummy_call): Likewise.
2234         * m68hc11-tdep.c (m68hc11_push_dummy_call): Likewise.
2235         (m68hc11_extract_return_value): Likewise.
2236         * mep-tdep.c (mep_push_dummy_call): Likewise.
2237         * printcmd.c (float_type_from_length): Likewise.
2238         * s390-tdep.c (s390_value_from_register): Likewise.
2239         * stack.c (read_frame_arg): Likewise.
2240         * tracepoint.c (encode_actions_1): Likewise.
2241         * valops.c (value_fetch_lazy): Use local variable for type
2242         instead of length.  Use TYPE_LENGTH directly.
2243         * value.c (value_contents_equal): Use TYPE_LENGTH directly.
2244
2245 2012-09-25  Joel Brobecker  <brobecker@adacore.com>
2246
2247         * symtab.c (skip_prologue_sal): Fix typo in comment.
2248
2249 2012-09-25  Joel Brobecker  <brobecker@adacore.com>
2250
2251         * linespec.c (create_sals_line_offset): Fix typo in comment.
2252
2253 2012-09-25  Siddhesh Poyarekar  <siddhesh@redhat.com>
2254
2255         * c-typeprint.c (c_type_print_varspec_suffix): Remove cast and
2256         use plongest to print the array size.
2257
2258 2012-09-24  Siddhesh Poyarekar  <siddhesh@redhat.com>
2259
2260         * m2-typeprint.c (m2_enum): Expand LASTVAL to LONGEST.
2261         * p-valprint.c (pascal_type_print_base): Likewise.
2262
2263 2012-09-22  Yao Qi  <yao@codesourcery.com>
2264
2265         * remote.c (remote_get_trace_status): Remove setting default
2266         values of fields of 'ts'.
2267
2268 2012-09-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
2269
2270         Fix internal error on canonicalization of clang types.
2271         * cp-name-parser.y (operator): New comment at make_operator call for
2272         new, delete, new[] and delete[].
2273         (exp): Use "sizeof ".  Add new comment at make_operator call.
2274
2275 2012-09-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
2276
2277         Fix disassemble without parameters in tailcall frame.
2278         * cli/cli-cmds.c (disassemble_current_function): Use
2279         get_frame_address_in_block.
2280
2281 2012-09-21  Tom Tromey  <tromey@redhat.com>
2282
2283         * c-typeprint.c (c_type_print_base) <TYPE_CODE_STRUCT,
2284         TYPE_CODE_UNION>: Unify, removing a goto.
2285
2286 2012-09-21  Tom Tromey  <tromey@redhat.com>
2287
2288         * c-typeprint.c (cp_type_print_derivation_info): Fix comment.
2289
2290 2012-09-21  Andrew Burgess  <aburgess@broadcom.com>
2291
2292         * findvar.c (read_frame_register_value): Mark the result value as
2293         optimized out if any of the input registers have been optimized out.
2294
2295 2012-09-21  Andreas Schwab  <schwab@linux-m68k.org>
2296
2297         * python/python.c (finalize_python): Only define if HAVE_PYTHON.
2298
2299 2012-09-21  Siddhesh Poyarekar  <siddhesh@redhat.com>
2300
2301         * eval.c (evaluate_subexp_standard): Eliminate single-use
2302         variable LOWER.
2303
2304 2012-09-21  Yao Qi  <yao@codesourcery.com>
2305
2306         * mi/mi-interp.c: Declare mi_record_changed.
2307         (mi_interpreter_init): Call observer_attach_record_changed.
2308         (mi_record_changed): New.
2309         * record.c (record_open): Call observer_notify_record_changed.
2310         (cmd_record_stop): Call observer_notify_record_changed.
2311         * NEWS: Mention it.
2312
2313 2012-09-20  Tom Tromey  <tromey@redhat.com>
2314
2315         * NEWS: Update.
2316         * python/python.c (finalize_python): New function.
2317         (_initialize_python): Make a final cleanup.
2318
2319 2012-09-19  Doug Evans  <dje@google.com>
2320
2321         * buildsym.h (param_symbols): Delete, unused.
2322         (context_stack): Delete member "params", unused.
2323         * buildsym.c (push_context): Update.
2324         * dwarf2read.c (read_func_scope): Update.
2325
2326 2012-09-19  Thomas Schwinge  <thomas@codesourcery.com>
2327
2328         * sh-tdep.c (sh_register_convert_to_virtual)
2329         (sh_register_convert_to_raw): Add a gdbarch parameter.  Update
2330         all callers.  Just do a memcpy if not the little-endian case.
2331
2332         * h8300-tdep.c (h8300_gdbarch_init): Invoke
2333         set_gdbarch_double_format and set_gdbarch_long_double_format.
2334         * m68hc11-tdep.c (m68hc11_gdbarch_init): Invoke
2335         set_gdbarch_double_format.
2336         * sh-tdep.c (sh_gdbarch_init): Likewise.
2337
2338         * NEWS: Document the removal of SH's 'regs' command.
2339         * sh-tdep.c (_initialize_sh_tdep): Remove the deprecated 'regs'
2340         command.
2341
2342 2012-09-18  Sergio Durigan Junior  <sergiodj@redhat.com>
2343
2344         * infcmd.c (_initialize_infcmd): Register `j' as an alias for
2345         `jump'.
2346
2347 2012-09-18  Joel Brobecker  <brobecker@adacore.com>
2348
2349         * linespec.c (iterate_over_all_matching_symtabs): Use the correct
2350         language when iterating over symbols.
2351
2352 2012-09-18  Yao Qi  <yao@codesourcery.com>
2353
2354         * mi/mi-interp.c: Declare mi_tsv_created and mi_tsv_deleted.
2355         (mi_interpreter_init): Call observer_attach_tsv_created and
2356         observer_attach_tsv_deleted.
2357         (mi_tsv_created, mi_tsv_deleted): New.
2358         * tracepoint.c (delete_trace_state_variable): Call
2359         observer_notify_tsv_deleted.
2360         (trace_variable_command): Call observer_notify_tsv_created.
2361         (delete_trace_variable_command): Call
2362         observer_notify_tsv_deleted.
2363         (create_tsv_from_upload): Call observer_notify_tsv_created.
2364         * NEWS: Mention it.
2365
2366 2012-09-18  Yao Qi  <yao@codesourcery.com>
2367
2368         * tracepoint.c (tfind_1): Call observer_notify_traceframe_changed
2369         if traceframe changed.
2370         * mi/mi-cmds.c (mi_cmd mi_cmds): Adjust for command
2371         "trace-find".
2372         * mi/mi-interp.c: Declare 'mi_traceframe_changed'.
2373         (mi_interpreter_init): Hook mi_traceframe_changed to observer
2374         'traceframe_changed'.
2375         (mi_traceframe_changed): New.
2376         * mi/mi-main.h (struct mi_suppress_notification) <traceframe>:
2377         New field.
2378         * NEWS: Mention the new MI notification.
2379
2380 2012-09-17  Mike Wrighton  <wrighton@codesourcery.com>
2381
2382         * MAINTAINERS (Write After Approval): Add "Mike Wrighton".
2383
2384 2012-09-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
2385
2386         * common/linux-ptrace.c: Change __i386__ to __i386__ || __x86_64__.
2387         (linux_ptrace_test_ret_to_nx): Extend comment for x86_64.  Change
2388         __i386__ to __i386__ || __x86_64__. Extend code also for __x86_64__.
2389         Extend code also for PaX support.  Convert all gdb_assert to warning
2390         calls.
2391
2392 2012-09-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
2393
2394         Implement auto-load user conveniences suggested by Doug Evans.
2395         * auto-load.c: Include top.h.
2396         (file_is_auto_load_safe): New variable advice_printed.  Print advice.
2397         (_initialize_auto_load): New variable scripts_directory_help.  Mention
2398         GDBPY_AUTO_FILE_NAME and GDB_AUTO_FILE_NAME for set auto-load
2399         scripts-directory.  Document in online help one can use also files for
2400         set auto-load safe-path.
2401         * python/py-auto-load.c: (GDBPY_AUTO_FILE_NAME): Move it from here ...
2402         * python/python.h (GDBPY_AUTO_FILE_NAME): ... to here.
2403
2404 2012-09-17  Siddhesh Poyarekar  <siddhesh@redhat.com>
2405
2406         * tic6x-tdep.c (tic6x_push_dummy_call): Remove unused definition
2407         of LEN.
2408
2409 2012-09-17  Siddhesh Poyarekar  <siddhesh@redhat.com>
2410
2411         * m2-valprint.c (m2_print_array_contents): Eliminate variable
2412         ELTLEN and use TYPE_LENGTH directly.
2413         (m2_val_print): Likewise.
2414         * m68k-tdep.c (m68k_svr4_extract_return_value): Eliminate
2415         variable LEN and use TYPE_LENGTH directly.
2416         (m68k_svr4_store_return_value): Likewise.
2417         * mips-tdep.c (mips_o32_push_dummy_call): Eliminate variable
2418         ARGLEN and use TYPE_LENGTH directly.
2419         (mips_o64_push_dummy_call): Likewise.
2420         * s390-tdep (s390_function_arg_pass_by_reference): Eliminate
2421         variable LENGTH and use TYPE_LENGTH directly.
2422         (s390_function_arg_float): Likewise.
2423         (s390_function_arg_integer): Likewise.
2424         (s390_push_dummy_call): Likewise.
2425         (s390_return_value_convention): Likewise.
2426         * spu-tdep.c (spu_push_dummy_call): Eliminate LEN and use
2427         TYPE_LENGTH directly.
2428
2429 2012-09-17  Yao Qi  <yao@codesourcery.com>
2430
2431         * cli/cli-decode.c (add_setshow_zuinteger_unlimited_cmd): New.
2432         Update comment to add_setshow_integer_cmd.
2433         * cli/cli-setshow.c (do_set_command): Handle case
2434         'var_zuinteger_unlimited'.
2435         (do_show_command): Likewise.
2436         * cli/cli-cmds.c (init_cmds): Call add_setshow_zuinteger_unlimited_cmd
2437         for command 'remotetimeout'.
2438         * command.h (enum var_types): New zuinteger_unlimited.  Update comment
2439         to var_integer.
2440         * source.c (_initialize_source): Call
2441         add_setshow_zuinteger_unlimited_cmd for command 'set listsize'.
2442
2443 2012-09-17  Siddhesh Poyarekar  <siddhesh@redhat.com>
2444
2445         * infrun.c (restore_infcall_suspend_state): Eliminate single-use
2446         variable LEN.
2447
2448 2012-09-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
2449
2450         PR 14119
2451         * frame.c (skip_inlined_frames): Skip also TAILCALL_FRAME frames.
2452         (frame_pop): Drop also TAILCALL_FRAME frames.
2453         * infcmd.c (finish_command): Ignore also TAILCALL_FRAME frames.
2454
2455 2012-09-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
2456             Pedro Alves  <palves@redhat.com>
2457
2458         PR 14548
2459         * infrun.c (handle_inferior_event): Do not reverse-continue back to the
2460         function start if we are already at function start.  Both for
2461         reverse-next and for reverse-step into function without line number
2462         info.
2463
2464 2012-09-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
2465
2466         Code cleanup - rename 'inline' depth to 'artificial' depth.
2467         * breakpoint.c (set_momentary_breakpoint): Rename at a caller to
2468         frame_id_artificial_p, extend the comment.
2469         * dwarf2-frame-tailcall.c (tailcall_frame_this_id): Rename at a user.
2470         * frame.c (fprint_frame_id): Rename at a user, change debug output
2471         text to "artificial=".
2472         (skip_inlined_frames): Rename to ...
2473         (skip_artificial_frames): ... here.  Extend the comment.
2474         (get_stack_frame_id, frame_unwind_caller_id): Rename at a caller.
2475         (frame_id_inlined_p): Rename to ...
2476         (frame_id_artificial_p): ... here.  Rename at a user.
2477         (frame_id_eq, frame_id_inner, frame_unwind_caller_pc)
2478         (frame_unwind_caller_pc_if_available, frame_unwind_caller_arch): Rename
2479         at a user.
2480         * frame.h (struct frame_id): Rename inline_depth to artificial_depth.
2481         Extend the comment.
2482         (frame_id_inlined_p): Rename to ...
2483         (frame_id_artificial_p): ... here.
2484         * inline-frame.c (inline_frame_this_id): Rename at a user.
2485
2486 2012-09-14  Andrew Burgess  <aburgess@broadcom.com>
2487
2488         * c-typeprint.c (c_type_print_varspec_suffix): Display the size of
2489         vector variables using vector_size syntax rather than array
2490         syntax.
2491
2492 2012-09-14  Siddhesh Poyarekar  <siddhesh@redhat.com>
2493
2494         * valarith.c (value_concat): Replace unsafe ALLOCA with
2495         XMALLOC/XFREE.
2496
2497 2012-09-14  Pedro Alves  <palves@redhat.com>
2498
2499         * gdb.1 (SEE ALSO): Expand pointer to GDB's Texinfo manual.
2500
2501 2012-09-14  Khoo Yit Phang  <khooyp@cs.umd.edu>
2502
2503         Point contrib/cc-with-tweaks.sh to the build-local data-directory.
2504         * contrib/cc-with-tweaks.sh (GDB): Add -data-directory
2505         data-directory as appropriate.
2506
2507 2012-09-14  Siddhesh Poyarekar  <siddhesh@redhat.com>
2508
2509         * printcmd.c (ui_printf): Eliminate single-use variable
2510         PARAM_LEN.
2511
2512 2012-09-14  Yao Qi  <yao@codesourcery.com>
2513             Pedro Alves  <palves@redhat.com>
2514
2515         * valops.c (value_assign): Move observer_notify_target_changed
2516         below to replace reinit_frame_cache.
2517
2518 2012-09-13  Khoo Yit Phang  <khooyp@cs.umd.edu>
2519
2520         Refactor Python "gdb" module into a proper Python package, by
2521         introducing a new "_gdb" module for code implemented in C, and
2522         using reload/__import__ instead of exec.
2523         * python/lib/gdb/__init__.py: Import * from _gdb.
2524         (GdbOutputFile, sys.stdout, GdbOutputErrorFile, sys.stderr,
2525         prompt_hook, sys.argv): Moved from finish_python_initialization.
2526         (pretty_printers, PYTHONDIR): Moved from _initialize_python.
2527         (packages, auto_load_packages): New list and function replacing
2528         module_dict and auto-loading code, using __file__ instead of
2529         gdb.PYTHONDIR and reload/__import__ instead of exec.
2530         (GdbSetPythonDirectory): Replacing function of the same name
2531         from finish_python_initialization, using reload/__import__ instead
2532         of exec, as well as call auto_load_packages.
2533         * python/py-prettyprint.c (find_pretty_printer_from_gdb): Check
2534         gdb_python_module and not gdb_module.
2535         * python/python-internal.h (gdb_python_module): Declare.
2536         * python/python.c (gdb_python_module): New global.
2537         (before_prompt_hook): Check gdb_python_module and not gdb_module.
2538         (_initialize_python): Rename gdb module to _gdb.
2539         Move gdb.PYTHONDIR and gdb.pretty_printer to lib/gdb/__init__.py.
2540         (finish_python_initialization): Move Python code to
2541         lib/gdb/__init__.py; instead, set up sys.path and import gdb into
2542         __main__.
2543
2544 2012-09-13  Pedro Alves  <palves@redhat.com>
2545
2546         * Makefile.in (COMMON_OBS): Add registry.o.
2547         * registry.c: New file.
2548         * registry.h (struct registry_container): Declare.
2549         (registry_data_callback): New typedef.
2550         (struct registry_data, struct registry_data_registration, struct
2551         registry_data_registry): New type.
2552         (register_data_with_cleanup, registry_alloc_data)
2553         (registry_callback_adaptor, registry_clear_data)
2554         (registry_container_free_data, registry_set_data, registry_data):
2555         Declare.
2556         (DEFINE_REGISTRY): Refactor structures and functions as shims over
2557         the new common structures and functions.
2558         (DECLARE_REGISTRY): Declare struct TAG ## _data.  Use the tagged
2559         callback typedefs.
2560
2561 2012-09-12  Mike Wrighton  <wrighton@codesourcery.com>
2562
2563         * remote.c (remote_insert_hw_breakpoint): Throw exception if
2564         there is an error inserting hardware breakpoints and use the
2565         error message from the target.
2566
2567         * breakpoint.c (insert_bp_location, insert_breakpoint_locations):
2568         Catch this exception and print the error message contained within.
2569         Do not print the default hardware error breakpoint message in this
2570         case.
2571
2572 2012-09-12  Doug Evans  <dje@google.com>
2573
2574         * dwarf2read.c (dwarf2_read_addr_index): Fix handling the case where
2575         cu == NULL.
2576
2577 2012-09-11  Doug Evans  <dje@google.com>
2578
2579         * dwarf2read.c (dw2_do_expand_symtabs_matching): Don't examine
2580         .gdb_index symbol attributes if there are none.
2581
2582 2012-09-11  Joel Brobecker  <brobecker@adacore.com>
2583
2584         * symtab.h (struct minimal_symbol) [has_size]: New field.
2585         (MSYMBOL_SIZE): Adjust to forbid macro from being used as lvalue.
2586         (SET_MSYMBOL_SIZE, MSYMBOL_HAS_SIZE): New macros.
2587         * printcmd.c (build_address_symbolic): Only filter out zero-sized
2588         minimal symbols if the symbol's size is actually known.
2589         * minsyms.c (prim_record_minimal_symbol_full): Adjust setting
2590         of msymbol's size field.  Add comment.
2591         * elfread.c (elf_symtab_read, elf_rel_plt_read): Use
2592         SET_MSYMBOL_SIZE to set the minimal symbol size.
2593
2594 2012-09-11  Joel Brobecker  <brobecker@adacore.com>
2595
2596         * minsyms.c (install_minimal_symbols): Use memset to fill entire
2597         minimal_symbol struct object, rather than setting some of its
2598         fields one by one.
2599
2600 2012-09-11  Andrew Burgess  <aburgess@broadcom.com>
2601
2602         * c-typeprint.c (c_type_print_varspec_prefix): Pass through the
2603         passed_a_ptr flag when displaying typedef types.
2604
2605 2012-09-10  Joel Brobecker  <brobecker@adacore.com>
2606
2607         * ada-lang.c (coerce_unspec_val_to_type): Make sure that
2608         the optimized_out flag is preserved.
2609
2610 2012-09-10  Anthony Green  <green@moxielogic.com>
2611
2612         * moxie-tdep.c (moxie_analyze_prologue): Update for function
2613         prologue changes in GCC.
2614
2615 2012-09-10  Keith Seitz  <keiths@redhat.com>
2616
2617         PR gdb/13483
2618         * gdbtypes.h (BOOL_PTR_CONVERSION_BADNESS): Rename to ...
2619         (BOOL_CONVERSION_BADNESS): ... this.
2620         * gdbtypes.c (BOOL_PTR_CONVERSION_BADNESS): Likewise.
2621         (rank_one_type): Allow all boolean conversions
2622         permitted by the standard.
2623
2624 2012-09-06  Tom Tromey  <tromey@redhat.com>
2625
2626         * python/py-newobjfileevent.c (create_new_objfile_event_object):
2627         Don't decref py_objfile.
2628
2629 2012-09-02  Khoo Yit Phang  <khooyp@cs.umd.edu>
2630
2631         Do not enable -lmcheck by default when Python is enabled with
2632         threading support.
2633         * configure.ac: (python_has_threads) New variable, by testing
2634         if WITH_THREAD is defined in Python.h.
2635         Move --enable-lmcheck after --with-python.
2636         Do not enable -lmcheck by default if python_has_threads=yes.
2637         Warn if --enable-lmcheck and python_has_threads=yes.
2638         * configure: Regenerate.
2639
2640 2012-08-31  Yao Qi  <yao@codesourcery.com>
2641
2642         * mi/mi-cmds.c (mi_cmds): New macros DEF_MI_CMD_CLI
2643         DEF_MI_CMD_MI DEF_MI_CMD_CLI_1 and DEF_MI_CMD_CLI_1.
2644         Update some commands.
2645         * mi/mi-cmds.h (struct mi_cmd) <suppress_notification>: New field.
2646         * mi/mi-main.c (mi_cmd_execute): Set
2647         '*parse->cmd->suppress_notification' to 1.
2648
2649 2012-08-31  Yao Qi  <yao@codesourcery.com>
2650
2651         * mi/mi-cmds.c (mi_cmds): Add 'static'.
2652
2653 2012-08-30  Khoo Yit Phang  <khooyp@cs.umd.edu>
2654
2655         * MAINTAINERS (Write After Approval): Add "Khoo Yit Phang".
2656
2657 2012-08-29  Doug Evans  <dje@google.com>
2658
2659         * main.c (print_gdb_help): Remove reference to
2660         --use-deprecated-index-sections.
2661
2662 2012-08-28  Yao Qi  <yao@codesourcery.com>
2663
2664         * cli/cli-cmds.c (max_user_call_depth): Add 'unsigned'.
2665         (init_cmds): Call add_setshow_uinteger_cmd for command
2666         'max-user-call-depth'.
2667         * cli/cli-script.c (execute_user_command): Add 'unsigned' to the
2668         declaration of 'max_user_call_depth'.
2669         * frame.c (backtrace_limit): Add 'unsigned'.
2670         (_initialize_frame): Call add_setshow_uinteger_cmd for command
2671         'limit'.
2672         * remote.c (remoteaddresssize): Add 'unsigned'.
2673         (remote_address_masked): Change local var 'address_size' to
2674         'unsigned'.
2675         (_initialize_remote): Call add_setshow_uinteger_cmd for
2676         'remoteaddresssize'.
2677         * top.c (history_size): Add 'unsigned'.
2678         (show_commands): Change local variables to 'unsigned'.
2679         (set_history_size_command): Don't check history_size is negative.
2680         Adjust the condition to call unstifle_history and set history_size
2681         to UNIT_MAX.
2682
2683 2012-08-28  Pedro Alves  <palves@redhat.com>
2684
2685         PR gdb/14428
2686
2687         * infcmd.c (default_print_one_register_info): New, factored out
2688         from default_print_registers_info.
2689         (default_print_registers_info): Use it.  Mark value unavailable if
2690         necessary.
2691         (registers_info): Print user registers with
2692         default_print_one_register_info.
2693
2694 2010-08-27  H.J. Lu  <hongjiu.lu@intel.com>
2695
2696         PR tui/14486
2697         * tui/tui-source.c (tui_source_is_displayed): Check if TUI_SRC_WIN
2698         is not NULL before referencing it.
2699
2700 2012-08-27  Jan Kratochvil  <jan.kratochvil@redhat.com>
2701
2702         * breakpoint.c (parse_breakpoint_sals) <(*address) == NULL>: New
2703         variable pc.  Call find_pc_line instead of find_pc_overlay, restore
2704         original PC for it.
2705
2706 2012-08-27  Eli Zaretskii  <eliz@gnu.org>
2707             Jan Kratochvil  <jan.kratochvil@redhat.com>
2708
2709         * auto-load.c (auto_load_objfile_script): Rename to ...
2710         (auto_load_objfile_script_1): ... here, change variable realname to
2711         parameter realname, document it, add return value, add variable retval.
2712         (auto_load_objfile_script): New function.
2713
2714 2012-08-27  Jan Kratochvil  <jan.kratochvil@redhat.com>
2715
2716         * cli/cli-decode.c (print_doc_line): Keep skipping '.' and ',' not
2717         followed by a whitespace.
2718
2719 2012-08-27  Jan Kratochvil  <jan.kratochvil@redhat.com>
2720
2721         PR gdb/14494.
2722         * dwarf2read.c (dwarf2_locate_sections): Move variable aflag here.
2723         Move the SEC_HAS_CONTENTS check here - for any NAMES use.
2724         (dwarf2_locate_sections) <eh_frame>: Move the variable and check from
2725         here.
2726
2727 2012-08-27  Wei-cheng Wang  <cole945@gmail.com>
2728
2729         * memattr.c (create_mem_region): Fix memory region overlapping
2730         checking.
2731
2732 2012-08-24  Siddhesh Poyarekar  <siddhesh@redhat.com>
2733
2734         * h8300-tdep.c (h8300_push_dummy_call): Replace unsafe alloca
2735         with xmalloc/cleanup.
2736         * mt-tdep.c (mt_push_dummy_call): Likewise.
2737         * tilegx-tdep.c (tilegx_push_dummy_call): Likewise.
2738         * xstormy16-tdep.c (xstormy16_push_dummy_call): Likewise.
2739
2740 2012-08-24  Yao Qi  <yao@codesourcery.com>
2741
2742         * jv-exp.y (push_expression_name): Add "." at the end of error
2743         message.
2744
2745 2012-08-23  Khoo Yit Phang <khooyp@cs.umd.edu>
2746
2747         Document how to return from "python-interactive" to GDB.
2748         * python/python.c (_initialize_python): Update documentation.
2749
2750 2012-08-23  Pedro Alves  <palves@redhat.com>
2751
2752         * infrun.c (_initialize_infrun) <handle command help text>:
2753         Mention that multiple signals are supported.
2754
2755 2012-08-23  Pedro Alves  <palves@redhat.com>
2756
2757         * infcmd.c (_initialize_infcmd) <signal command>: Fix typo in help
2758         string.
2759
2760 2012-08-23  Yao Qi  <yao@codesourcery.com>
2761
2762         * tracepoint.c (disconnect_tracing): Call set_tracepoint_num.
2763         (tfind_1): Don't call registers_changed, set_traceframe_num,
2764         and clear_traceframe_info.
2765         Call set_current_traceframe.
2766         (set_current_traceframe): call set_traceframe_num.
2767
2768 2012-08-22  Sergio Durigan Junior  <sergiodj@redhat.com>
2769
2770         * remote-sim.c (_initialize_remote_sim): Pass NULL argument to
2771         `register_inferior_data_with_cleanup', fixing regression on PowerPC64.
2772
2773 2012-08-22  Khoo Yit Phang <khooyp@cs.umd.edu>
2774
2775         Enable readline in Python in a GDB-specific way and block the
2776         standard Python readline module to prevent conflicts with GDB.
2777         * Makefile.in (SUBDIR_PYTHON_OBS): Add py-gdb-readline.o.
2778         (SUBDIR_PYTHON_SRCS): Add python/py-gdb-readline.c.
2779         (py-gdb-readline.o): Add rule to compile python/py-gdb-readline.c.
2780         * python/py-gdb-readline.c: New file.
2781         * python/python-internal.h (gdbpy_initialize_gdb_readline): New
2782         prototype.
2783         * python/python.c (_initialize_python): Call
2784         gdbpy_initialize_gdb_readline.
2785
2786 2012-08-22  Keith Seitz  <keiths@redhat.com>
2787
2788         * defs.h: Include build-gnulib/config.h
2789
2790 2012-08-22  Joseph Myers  <joseph@codesourcery.com>
2791
2792         * arm-tdep.c (thumb_get_next_pc_raw): Mask off low bits for bx pc
2793         and blx pc.
2794
2795 2012-08-22  Khoo Yit Phang <khooyp@cs.umd.edu>
2796
2797         Add a new "python-interactive" command that starts a standard
2798         Python interactive prompt with "pi" as alias, and add "py" as
2799         an alias to "python".
2800         * NEWS: Mention the new commands.
2801         * python/python.c (eval_python_command): New function.
2802         (python_interactive_command): For "python-interactive" with
2803         arguments, call eval_python_command.  For "python-interactive"
2804         without arguments, call PyRun_InteractiveLoop.
2805         (_initialize_python): Add "python-interactive" command with
2806         "pi" as alias, and add "py" as an alias to "python".
2807
2808 2012-08-22  Tom Tromey  <tromey@redhat.com>
2809
2810         * defs.h (quit_flag): Don't declare.
2811         (clear_quit_flag, check_quit_flag, set_quit_flag): Declare.
2812         (QUIT): Use new functions.
2813         * event-top.c (command_handler): Use clear_quit_flag.
2814         (handle_sigint): Use set_quit_flag.
2815         (async_request_quit): Use check_quit_flag.  Don't check
2816         immediate_quit.
2817         * exceptions.c (throw_exception): Use clear_quit_flag.
2818         * main.c (captured_main): Use clear_quit_flag.
2819         * python/python.c (clear_quit_flag, set_quit_flag)
2820         (check_quit_flag): New functions.
2821         * remote-sim.c (gdb_os_poll_quit): Use check_quit_flag,
2822         clear_quit_flag.
2823         * remote.c (remote_wait_as): Use check_quit_flag,
2824         clear_quit_flag.
2825         (remote_start_remote): Call QUIT.
2826         * symfile.c (load_progress): Use check_quit_flag.
2827         * top.c (command_loop): Use clear_quit_flag.
2828         (command_line_input): Call QUIT.
2829         * utils.c (quit_flag): Conditionally define.
2830         (clear_quit_flag, check_quit_flag, set_quit_flag): New
2831         functions.
2832         (prompt_for_continue): Call QUIT.  Use quit, not
2833         async_request_quit.
2834         * remote-mips.c (mips_expect_timeout): Call QUIT.
2835         * monitor.c (monitor_expect): Call QUIT.
2836
2837 2012-08-22  Tom Tromey  <tromey@redhat.com>
2838
2839         * event-top.c (sigwinch_token, handle_sigwinch): Remove.
2840         (async_init_signals): Update.
2841         * utils.c (init_page_info): Don't use SIGWINCH_HANDLER.
2842         (SIGWINCH_HANDLER_BODY): Remove.
2843
2844 2012-08-22  Tom Tromey  <tromey@redhat.com>
2845
2846         * jit.c (jit_object_close_impl): Don't malloc the objfile
2847         name.
2848         * objfiles.c (allocate_objfile): Don't malloc the objfile
2849         name.
2850         (free_objfile): Don't free the objfile name.
2851         * objfiles.h (struct objfile) <name>: Update comment.
2852         * symfile.c (reread_symbols): Fix reference counting.  Don't
2853         malloc objfile name.
2854
2855 2012-08-22  Tom Tromey  <tromey@redhat.com>
2856
2857         * windows-nat.c (windows_make_so): Use gdb_bfd_open.
2858         * symfile.c (bfd_open_maybe_remote): Use gdb_bfd_open.
2859         (symfile_bfd_open): Likewise.
2860         (generic_load): Likewise.
2861         * solib.c (solib_bfd_fopen): Use gdb_bfd_open.
2862         * solib-pa64.c (pa64_solib_create_inferior_hook): Use
2863         gdb_bfd_open.
2864         * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
2865         Use gdb_bfd_open.
2866         * rs6000-nat.c (add_vmap): Use gdb_bfd_open.
2867         * remote-mips.c (mips_load_srec): Use gdb_bfd_open.
2868         (pmon_load_fast): Likewise.
2869         * remote-m32r-sdi.c (m32r_load): Use gdb_bfd_open.
2870         * procfs.c (insert_dbx_link_bpt_in_file): Use gdb_bfd_open.
2871         * machoread.c (macho_symfile_read_all_oso): Use gdb_bfd_open.
2872         (macho_check_dsym): Likewise.
2873         * m32r-rom.c (m32r_load): Use gdb_bfd_open.
2874         (m32r_upload_command): Likewise.
2875         * gdb_bfd.h (gdb_bfd_cache): Declare.
2876         * gdb_bfd.c (struct gdb_bfd_data): New.
2877         (gdb_bfd_cache): New global.
2878         (struct gdb_bfd_cache_search): New.
2879         (hash_bfd): New function.
2880         (eq_bfd): Likewise.
2881         (gdb_bfd_open): Likewise.
2882         (gdb_bfd_ref): Allocate a gdb_bfd_data and attach to the BFD.
2883         (gdb_bfd_unref): Remove closed BFD from cache.  Update for
2884         gdb_bfd_data.
2885         * exec.c (exec_file_attach): Use gdb_bfd_open.
2886         * dsrec.c (load_srec): Use gdb_bfd_open.
2887
2888 2012-08-22  Tom Tromey  <tromey@redhat.com>
2889
2890         * dwarf2read.c (macro_start_file): Update.
2891         * objfiles.c (get_objfile_bfd_data): Initialize macro_cache.
2892         (free_objfile_per_bfd_storage): Destroy macro_cache.
2893         (allocate_objfile, free_objfile): Update.
2894         * objfiles.h (struct objfile_per_bfd_storage) <macro_cache>:
2895         New field.
2896         (struct objfile) <macro_cache>: Remove.
2897         * symfile.c (reread_symbols): Update.
2898         * symmisc.c (print_symbol_bcache_statistics): Update.
2899         (print_objfile_statistics): Update.
2900
2901 2012-08-22  Tom Tromey  <tromey@redhat.com>
2902
2903         * elfread.c (elf_symtab_read): Update.
2904         * objfiles.c (objfiles_bfd_data): New global.
2905         (get_objfile_bfd_data, free_objfile_per_bfd_storage)
2906         (objfile_bfd_data_free, set_objfile_per_bfd): New functions.
2907         (allocate_objfile, free_objfile): Update.
2908         (_initialize_objfiles): Initialize objfiles_bfd_data.
2909         * objfiles.h (struct objfile_per_bfd_storage): New.
2910         (struct objfile) <per_bfd>: New field.
2911         <filename_cache>: Remove.
2912         (set_objfile_per_bfd): Declare.
2913         * symfile.c (reread_symbols): Update.  Call
2914         set_objfile_per_bfd.
2915         (allocate_symtab): Update.
2916         * symmisc.c (print_symbol_bcache_statistics): Update.
2917         (print_objfile_statistics): Print the size of the BFD obstack.
2918
2919 2012-08-22  Tom Tromey  <tromey@redhat.com>
2920
2921         * gdb_bfd.h: Include registry.h.  Use DECLARE_REGISTRY.
2922         * gdb_bfd.c: Use DEFINE_REGISTRY.
2923         (struct gdb_bfd_data): Add REGISTRY_FIELDS.
2924         (gdb_bfd_ref): Call bfd_alloc_data.
2925         (gdb_bfd_unref): Call bfd_free_data.
2926
2927 2012-08-22  Tom Tromey  <tromey@redhat.com>
2928
2929         * registry.h (struct registry_fields): New.
2930         (REGISTRY_FIELDS): Redefine.
2931         (REGISTRY_ACCESS_FIELD): New macro.
2932         (DEFINE_REGISTRY): Add ACCESS argument.  Update defined
2933         functions.
2934
2935 2012-08-22  Tom Tromey  <tromey@redhat.com>
2936
2937         * auto-load.c (_initialize_auto_load): Update.
2938         * solib-svr4.c (_initialize_svr4_solib): Update
2939         * solib-dsbt.c (_initialize_dsbt_solib): Update.
2940         * solib-darwin.c (_initialize_darwin_solib): Update.
2941         * registry.h: New file.
2942         * python/py-progspace.c (gdbpy_initialize_pspace): Update.
2943         * python/py-inferior.c (gdbpy_initialize_inferior): Update.
2944         * progspace.h: Include registry.h.  Use DECLARE_REGISTRY.
2945         (register_program_space_data_with_cleanup)
2946         (register_program_space_data, program_space_alloc_data)
2947         (clear_program_space_data, set_program_space_data)
2948         (program_space_data): Don't declare.
2949         * progspace.c: Use DEFINE_REGISTRY.
2950         (struct program_space_data, struct
2951         program_space_data_registration, struct
2952         program_space_data_registry, program_space_data_registry)
2953         (register_program_space_data_with_cleanup)
2954         (register_program_space_data, program_space_alloc_data)
2955         (program_space_free_data, clear_program_space_data)
2956         (set_program_space_data, program_space_data): Remove.
2957         * objfiles.h: Include registry.h.  Use DECLARE_REGISTRY.
2958         (struct objfile) <data, num_data>: Replace with REGISTRY_FIELDS.
2959         (register_objfile_data_with_cleanup, register_objfile_data)
2960         (clear_objfile_data, set_objfile_data, objfile_data): Don't
2961         declare.
2962         * objfiles.c: Use DEFINE_REGISTRY.
2963         (struct objfile_data, struct objfile_data_registration, struct
2964         objfile_data_registry, objfile_data_registry)
2965         (register_objfile_data_with_cleanup, register_objfile_data)
2966         (objfile_alloc_data, objfile_free_data, clear_objfile_data)
2967         (set_objfile_data, objfile_data): Remove.
2968         (_initialize_objfiles): Update.
2969         * jit.c (_initialize_jit): Update.
2970         * inflow.c (_initialize_inflow): Update.
2971         * inferior.h: Include registry.h.  Use DECLARE_REGISTRY.
2972         (struct inferior) <data, num_data>: Replace with REGISTRY_FIELDS.
2973         (register_inferior_data_with_cleanup, register_inferior_data)
2974         (clear_inferior_data, set_inferior_data, inferior_data): Don't
2975         declare.
2976         * inferior.c: Use DEFINE_REGISTRY.
2977         (struct inferior_data, struct inferior_data_registration, struct
2978         inferior_data_registry, inferior_data_registry)
2979         (register_inferior_data_with_cleanup, register_inferior_data)
2980         (inferior_alloc_data, inferior_free_data  clear_inferior_data)
2981         (set_inferior_data, inferior_data): Remove.
2982         * auxv.c (_initialize_auxv): Update.
2983         * ada-lang.c (_initialize_ada_language): Update.
2984         * breakpoint.c (_initialize_breakpoint): Update.
2985         * i386-nat.c (i386_use_watchpoints): Update.
2986
2987 2012-08-22  Tom Tromey  <tromey@redhat.com>
2988
2989         * exec.c (exec_close, exec_file_attach): Update.
2990         (add_to_section_table): Initialize 'key' field.
2991         (add_target_sections, remove_target_sections): Add 'key' argument.
2992         * exec.h (add_target_sections, remove_target_sections): Add
2993         'key' argument.
2994         * solib.c (solib_map_sections, update_solib_list, clear_solib)
2995         (reload_shared_libraries_1): Update.
2996         * target.h (struct target_section) <key>: New field.
2997
2998 2012-08-22  Tom Tromey  <tromey@redhat.com>
2999
3000         * cli/cli-cmds.c (filter_sals): Handle nelts == 0 case.
3001
3002 2012-08-21  Pierre Muller  <muller@ics.u-strasbg.fr>
3003
3004         * symfile.c (allocate_symtab): Use host_address_to_string
3005         function instead of cast of pointer to long which is not
3006         compatible with x86_64-w64-mingw32 build.
3007
3008 2012-08-19  Andrew Pinski  <apinski@cavium.com>
3009
3010         * mips-tdep.c (is_octeon): New function.
3011         (is_octeon_bbit_op): New function.
3012         (mips32_next_pc): Handle Octeon's bbit instructions.
3013         (mips32_instruction_has_delay_slot): Likewise.
3014
3015 2012-08-19  Andrew Pinski  <apinski@cavium.com>
3016
3017         * mips-tdep.c (mips32_next_pc): Fix line spacing of the comment
3018         before the function.
3019
3020 2012-08-19  Andrew Pinski  <apinski@cavium.com>
3021
3022         * mips-tdep.c (mips32_next_pc): Consolidate calls to itype_op.
3023
3024 2012-08-19  Keith Seitz  <keiths@redhat.com>
3025
3026         PR c++/14365
3027         * c-typeprint.c (c_type_print_varspec_prefix): Pass
3028         -1 for SHOW to c_type_print_base for METHODPTR and MEMBERPTR.
3029
3030 2012-08-18  Eli Zaretskii  <eliz@gnu.org>
3031
3032         * Makefile.in (HFILES_NO_SRCDIR): Fix a typo: golang.h -> go-lang.h.
3033         The typo broke "make TAGS".
3034
3035 2012-08-17  Joel Brobecker  <brobecker@adacore.com>
3036
3037         GDB 7.5 released.
3038
3039 2012-08-17  Keith Seitz  <keiths@redhat.com>
3040
3041         PR c++/13356
3042         * gdbtypes.c (strict_type_checking): New variable.
3043         (show_strict_type_checking): New function.
3044         (rank_one_type): Return NS_POINTER_INTEGER_CONVERSION_BADNESS
3045         if strict type checking is disabled.
3046         (_initialize_gdbtypes): Add "check type" subcommand.
3047         * gdbtypes.h (NS_INTEGER_POINTER_CONVERSION_BADNESS): New struct.
3048
3049 2012-08-17  Keith Seitz  <keiths@redhat.com>
3050
3051         * language.h (type_mode): Remove.
3052         (type_check): Remove.
3053         (struct language_defn): Remove la_type_check.
3054         (STRICT_TYPE): Remove unused macro.
3055         (type_error): Remove.
3056         * language.c (set_type_range_case): Renamed to ...
3057         (set_range_case): ... this.  Update all callers.
3058         Remove type_mode/type_check.
3059         (type_mode): Remove.
3060         (type_check): Remove.
3061         (show_type_command): Remove.
3062         (set_type_command): Remove.
3063         (language_info): Remove type checking output.
3064         (type_error): Remove unused function.
3065         (range_error): Update comment.
3066         (unknown_language_defn): Remove la_type_check.
3067         (auto_language_defn): Likewise.
3068         (local_language_defn): Likewise.
3069         (_initialize_language): Remove "check type" subcommand.
3070         * ada-lang.c (ada_language_defn): Remove la_type_check.
3071         * c-lang.c (c_language_defn): Likewise.
3072         (cplus_language_defn): Likewise.
3073         (asm_language_defn): Likewise.
3074         (minimal_language_defn): Likewise.
3075         * d-lang.c (d_language_defn): Likewise.
3076         * f-lang.c (f_language_defn): Likewise.
3077         * go-lang.c (go_language_defn): Likewise.
3078         * jv-lang.c (java_language_defn): Likewise.
3079         * m2-lang.c (m2_language_defn): Likewise.
3080         * objc-lang.c (objc_language_defn): Likewise.
3081         * opencl-lang.c (opencl_language_defn): Likewise.
3082         * p-lang.c (pascal_language_defn): Likewise.
3083
3084 2012-08-16  Mike Frysinger  <vapier@gentoo.org>
3085
3086         * infcmd.c (_initialize_infcmd): Remove trailing ) in next help text.
3087
3088 2012-08-16  Joel Brobecker  <brobecker@adacore.com>
3089
3090         * ia64-hpux-nat.c (ia64_hpux_get_register_from_save_state_t):
3091         New function.
3092         (ia64_hpux_xfer_memory): Check if inferior_ptid is known before
3093         using the regache.  Use ia64_hpux_get_register_from_save_state_t
3094         to access the bsp and bspstore registers if not.
3095
3096 2012-08-16  Joel Brobecker  <brobecker@adacore.com>
3097
3098         * breakpoint.h (detach_breakpoints): pid parameter is now a ptid.
3099         * breakpoint.c (detach_breakpoints): Change pid parameter into
3100         a ptid.  Adjust code accordingly.
3101         * infrun.c (handle_inferior_event): Delete variable child_pid.
3102         Update call to detach_breakpoints to pass the child ptid for
3103         fork events.
3104         * linux-nat.c (linux_nat_iterate_watchpoint_lwps): Remove
3105         assert that inferior_ptid's lwp is zero.
3106         (linux_handle_extended_wait): Update call to detach_breakpoints.
3107         * inf-ttrace.c (inf_ttrace_follow_fork): Update call to
3108         detach_breakpoints.
3109
3110 2012-08-16  Joel Brobecker  <brobecker@adacore.com>
3111
3112         * inf-ttrace.c (inf_ttrace_follow_fork): When following the
3113         parent, only call detach_breakpoints if tts.tts_event ==
3114         TTEVT_VFORK.
3115
3116 2012-08-16  Joel Brobecker  <brobecker@adacore.com>
3117
3118         * dwarf2-frame.c (dwarf2_frame_cache): Use
3119         get_frame_address_in_block instead of get_frame_pc as
3120         the bound for executing the frame's FDE.
3121
3122 2012-08-16  Yao Qi  <yao@codesourcery.com>
3123
3124         * gdbtypes.h (enum type_code): Define TYPE_CODE_BITSTRING -1.
3125         * arm-tdep.c (arm_type_align): Remove code handling TYPE_CODE_BITSTRING.
3126         * c-typeprint.c (c_type_print_varspec_prefix): Likewise.
3127         (c_type_print_varspec_suffix): Likewise.
3128         * eval.c (evaluate_subexp_standard): Likewise.
3129         * f-typeprint.c (f_type_print_varspec_prefix): Likewise.
3130         (f_type_print_varspec_suffix): Likewise.
3131         * gdbtypes.c (is_scalar_type): Likewise.
3132         (recursive_dump_type): Likewise.
3133         * infcall.c (value_arg_coerce): Likewise.
3134         * m2-valprint.c (m2_val_print): Likewise.
3135         * p-typeprint.c (pascal_type_print_varspec_prefix): Likewise.
3136         (pascal_type_print_varspec_suffix): Likewise.
3137         (pascal_type_print_base): Likewise.
3138         * p-valprint.c (pascal_val_print): Likewise.
3139         (pascal_val_print): Likewise.
3140         * valops.c (value_slice): Likewise.
3141         * valprint.c (scalar_type_p): Likewise.
3142         * valarith.c (value_bitstring_subscript): Remove.
3143         (value_concat): Remove code handling TYPE_CODE_BITSTRING.
3144         Remove comment on TYPE_CODE_BITSTRING.
3145
3146         * stabsread.c (read_type): Don't set TYPE_CODE (type) to
3147         TYPE_CODE_BITSTRING.
3148
3149         * python/py-type.c (pyty_codes): Move ENTRY (TYPE_CODE_BITSTRING) to
3150         slot 0.
3151
3152 2012-08-16  Yao Qi  <yao@codesourcery.com>
3153
3154         * tracepoint.c (trace_find_none_command): Remove.
3155         (_initialize_tracepoint): Call add_alias_cmd for "tfind none".
3156
3157 2012-08-16  Yao Qi  <yao@codesourcery.com>
3158
3159         * remote.c (handle_notification): Remove parameter 'length'.
3160         (putpkt_binary, getpkt_or_notif_sane_1): Caller update.
3161
3162 2012-08-15  Keith Seitz  <keiths@redhat.com>
3163
3164         * gdbtypes.c (opaque_type_resolution): Make static.
3165         Add missing comment.
3166         (overload_debug): Add missing comment.
3167         (show_opaque_type_resolution): Likewise.
3168         (show_overload_debug): Likewise.
3169         (print_bit_vector): Remove unnecessary forward declaration.
3170         (print_arg_types): Likewise.
3171         (dump_fn_fieldlists): Likewise.
3172         (print_cplus_stuff): Likewise.
3173
3174 2012-08-15  Tom Tromey  <tromey@redhat.com>
3175
3176         * gdb_bfd.c (struct gdb_bfd_data) <archive_bfd>: New field.
3177         (gdb_bfd_ref): Initialize new field.
3178         (gdb_bfd_unref): Unref the archive BFD.
3179         (gdb_bfd_openr_next_archived_file): Acquire a reference to the
3180         parent archive.
3181
3182 2012-08-15  Tom Tromey  <tromey@redhat.com>
3183
3184         PR python/14387:
3185         * python/py-bpevent.c (create_breakpoint_event_object): Update
3186         comment.
3187         * python/py-event.c (evpy_add_attribute): Update comment.
3188         * python/py-exitedevent.c (create_exited_event_object): Fix
3189         reference counting and error handling.
3190         * python/py-newobjfileevent.c (create_new_objfile_event_object):
3191         Fix reference counting.
3192         * python/py-signalevent.c (create_signal_event_object): Fix
3193         reference counting and error handling.
3194         * python/py-stopevent.c (emit_stop_event): Fix reference
3195         counting.
3196         * python/py-threadevent.c (get_event_thread): Return a
3197         borrowed reference.
3198         * python/py-type.c (convert_field): Fix reference counting.
3199
3200 2012-08-15  Tom Tromey  <tromey@redhat.com>
3201
3202         * dwarf2read.c (dwarf_decode_macro_bytes)
3203         <DW_MACRO_GNU_transparent_include>: Use pointer to included data
3204         as hash key.
3205
3206 2012-08-14  Mike Frysinger  <vapier@gentoo.org>
3207
3208         * infcmd.c (_initialize_infcmd): Update help text for the signal,
3209         stepi, nexti, finish, next, step, jump, and continue commands.
3210         * infrun.c (_initialize_infrun): Update help text for the handle
3211         command.
3212
3213 2012-08-14  Doug Evans  <dje@google.com>
3214
3215         * gdbtypes.c (struct extra): Delete, unused.
3216
3217         * gdbtypes.c: Whitespace cleanup.
3218         (address_space_name_to_int): Remove "extern" from definition.
3219         (_initialize_gdbtypes): Declare with initialize_file_ftype.
3220
3221         * gdbtypes.c (make_pointer_type): Remove redundant setting of
3222         TYPE_POINTER_TYPE (type).
3223
3224 2012-08-14  Gary Benson  <gbenson@redhat.com>
3225
3226         * solib-svr4.c (svr4_free_library_list): Use free_so.
3227
3228 2012-08-13  Mike Frysinger  <vapier@gentoo.org>
3229
3230         * .gitignore: Add go-exp.c.
3231
3232 2012-08-13  Doug Evans  <dje@google.com>
3233
3234         * value.c (show_convenience): Tweak comment.
3235         (_initialize_values): Mention convenience functions in the help text
3236         for "show convenience".
3237
3238 2012-08-13  Yao Qi  <yao@codesourcery.com>
3239
3240         * std-operator.def: Remove TERNOP_SLICE_COUNT.
3241         * breakpoint.c (watchpoint_exp_is_const): Remove handling to
3242         TERNOP_SLICE_COUNT.
3243         * eval.c (evaluate_subexp_standard): Likewise.
3244         * expprint.c (print_subexp_standard): Likewise.
3245         (dump_subexp_body_standard): Likewise.
3246         * parse.c (operator_length_standard): Likewise.
3247
3248 2012-08-13  Yao Qi  <yao@codesourcery.com>
3249
3250         * std-operator.def: Remove OP_BITSTRING.
3251         * breakpoint.c (watchpoint_exp_is_const): Update.
3252         * eval.c (evaluate_subexp_standard): Remove handling to
3253         OP_BITSTRING.
3254         * expprint.c (print_subexp_standard): Likewise.
3255         (dump_subexp_body_standard): Likewise.
3256         * parse.c (operator_length_standard): Likewise.
3257         * valops.c (value_bitstring): Remove.
3258         * value.h: Remove the declaration of 'value_bitstring'.
3259
3260 2012-08-10  Sergio Durigan Junior  <sergiodj@redhat.com>
3261
3262         * linespec.c (find_methods): Remove unused variables `i1' and
3263         `name_len'.
3264         (decode_line_full): Likewise for `arg_start'.
3265
3266 2012-08-10  Sergio Durigan Junior  <sergiodj@redhat.com>
3267
3268         * gdb_bfd.c (gdb_bfd_unref): Remove unused variable `slot'.
3269         (zlib_decompress_section): Likewise for `section_data'.
3270         (gdb_bfd_map_section): Likewise for `buf' and `retbuf'.
3271
3272 2012-08-10  Doug Evans  <dje@google.com>
3273
3274         Add $_memeq, $_regex, $_streq, $_strlen convenience functions.
3275         * NEWS: Document them.
3276         * data-directory/Makefile.in (PYTHON_FILES): Add function/__init__.py,
3277         function/strfns.py.
3278         * python/py-type.c (typy_array_1): New function.
3279         (typy_array): Call it.
3280         (typy_vector): New function.
3281         (type_object_methods): Add "vector".
3282         * python/lib/gdb/function/__init__.py: New file.
3283         * python/lib/gdb/function/strfns.py: New file.
3284
3285 2012-08-10  Siddhesh Poyarekar  <siddhesh@redhat.com>
3286
3287         * python/py-type.c (convert_field): Use gdb_py_long_from_longest
3288         for TYPE_FIELD_BITPOS.
3289         (typy_get_sizeof): Likewise for TYPE_LENGTH.
3290
3291 2012-08-10  Mike Frysinger  <vapier@gentoo.org>
3292
3293         PR cli/10436:
3294         * common/vec.h (VEC_merge): Define.
3295         (DEF_VEC_ALLOC_FUNC_I): Add a merge helper.
3296         (DEF_VEC_ALLOC_FUNC_P): Likewise.
3297         (DEF_VEC_ALLOC_FUNC_O): Likewise.
3298         * completer.c: Include gdb_signals.h.
3299         (signal_completer): Define.
3300         * completer.h (signal_completer): Add prototype.
3301         * infcmd.c (_initialize_infcmd): Assign the command
3302         completer for "signal" to handle_completer.
3303         * infrun.c: Include completer.h.
3304         (handle_completer): Define.
3305         (_initialize_infrun): Declare a new local variable c.  Store the
3306         result of add_com("handle") to it.  Assign the command
3307         completer for "handle" to handle_completer.
3308
3309 2012-08-09  Yao Qi  <yao@codesourcery.com>
3310
3311         * cli/cli-decode.c (set_cmd_prefix): New.
3312         (lookup_cmd_for_prefixlist): New.
3313         (add_prefix_cmd): Call set_cmd_prefix and update field 'prefix'
3314         of each cmd_list_element in *prefixlist.
3315         (add_setshow_cmd_full): set_cmd_prefix.
3316         (add_alias_cmd): Likewise.
3317         * cli/cli-decode.h (struct cmd_list_element) <prefix>: New field.
3318         Declare 'auto_boolean_enums'.
3319         * cli/cli-setshow.c: Include "observer.h".
3320         (notify_command_param_changed_p): New.
3321         (add_setshow_auto_boolean_cmd): Move auto_boolean_enums out.
3322         Remove 'static'.
3323         (do_setshow_command): Split it to ...
3324         (do_set_command, do_show_command): ... them.  New.
3325         (do_set_command): Call observer_notify_command_param_changed if
3326         notify_command_param_changed_p returns true.
3327         (cmd_show_list): Caller update.
3328         * auto-load.c (set_auto_load_cmd): Likewise.
3329         * remote.c (show_remote_cmd): Likewise.
3330         * cli/cli-setshow.h: Update declarations.
3331         * top.c (execute_command): Call do_set_command and do_show_command.
3332
3333         * NEWS: Mention new MI notification.
3334         * mi/mi-interp.c: Declare mi_command_param_changed.
3335         (mi_interpreter_init): Attach mi_command_param_changed to
3336         observer command_param_changed.
3337         (mi_command_param_changed): New.
3338         Remove mi_suppress_breakpoint_notifications.
3339         Define global variable mi_suppress_notification.
3340         (mi_breakpoint_created): Update.
3341         (mi_breakpoint_deleted): Likewise.
3342         (mi_breakpoint_modified): Likewise.
3343         * mi/mi-main.c (mi_cmd_execute): Likewise.  Check command
3344         'gdb-set' and set mi_suppress_notification.
3345         * mi/mi-main.h: (mi_suppress_notification): New struct.
3346
3347 2012-08-09  Andreas Tobler  <andreast@fgznet.ch>
3348             Jan Kratochvil  <jan.kratochvil@redhat.com>
3349
3350         * fbsd-nat.h (fbsd_find_memory_regions): Use find_memory_region_ftype.
3351
3352 2012-08-09  Yao Qi  <yao@codesourcery.com>
3353
3354         * cli/cli-cmds.c (enablebreaklist): Move it to breakpoint.c.
3355         (skiplist): Move it to skip.c.
3356         (init_cmd_lists): Remove code setting enablebreaklist and
3357         skiplist to NULL.
3358         * breakpoint.c (enablebreaklist): Moved from cli/cli-cmds.c.
3359         * cli/cli-cmds.h: Remove declaration of enablebreaklist and
3360         skiplist.
3361         * gdbcmd.h: Likewise.
3362         * skip.c (_initialize_step_skip): Move 'skiplist' from
3363         cli/cli-cmds.c.
3364
3365 2012-08-09  Yao Qi  <yao@codesourcery.com>
3366
3367         * cli/cli-dump.c: Add 'static' to some cmd_list_element variables.
3368         * gnu-nat.c, symfile.c: Likewise.
3369
3370 2012-08-08  Aaron Gamble  <agamble@google.com>
3371
3372         * utils.c (prompt_for_continue_wait_time): New static global.
3373         (make_command_stats_cleanup): Initialize it.
3374         (report_command_stats): Subtract time waiting for user.
3375         (prompt_for_continue): Track time waiting for user.
3376         (defaulted_query): Track time waiting for user.
3377
3378 2012-08-08  Doug Evans  <dje@google.com>
3379
3380         * eval.c (evaluate_subexp_standard): Fix thinko in handling
3381         UNOP_MEMVAL_TYPE.
3382         * expprint.c (print_subexp_standard, case OP_TYPE): New.
3383         (print_subexp_standard, case UNOP_CAST_TYPE): Don't increment pos.
3384         (print_subexp_standard, case UNOP_DYNAMIC_CAST): Ditto.
3385         (print_subexp_standard, case UNOP_REINTERPRET_CAST): Ditto.
3386         (print_subexp_standard, case UNOP_MEMVAL_TYPE): Ditto.
3387         (dump_subexp_body_standard, case UNOP_DYNAMIC_CAST): Don't increment
3388         elt.
3389         (dump_subexp_body_standard, case UNOP_REINTERPRET_CAST): Ditto.
3390         (dump_subexp_body_standard, case UNOP_CAST_TYPE): Ditto.
3391         (dump_subexp_body_standard, case UNOP_MEMVAL_TYPE): Ditto.
3392         (dump_prefix_expression): Handle OP_TYPE.
3393
3394 2012-08-08  Keith Seitz  <keiths@redhat.com>
3395
3396         * breakpoint.c (parse_breakpoint_sals): Remove unused variable
3397         addr_start.
3398
3399 2012-08-08  Doug Evans  <dje@google.com>
3400
3401         * linux-thread-db.c: #include "gdb_vecs.h".
3402         (try_thread_db_load_from_pdir_1): New arg "subdir".  All callers
3403         updated.
3404         (try_thread_db_load_from_pdir): New arg "subdir".  All callers updated.
3405         (thread_db_load_search): Use a vector to iterate over path elements.
3406         Handle text appearing after "$pdir".
3407
3408         * gdb_string.h: Moved to ...
3409         * common/gdb_string.h: ... here.
3410         * common/vec.h: Remove #ifndef GDBSERVER conditional inclusion of
3411         gdb_string.h and gdb_assert.h.
3412
3413 2012-08-08  Yao Qi  <yao@codesourcery.com>
3414
3415         * tic6x-tdep.c (tic6x_register_to_value): Remove.
3416         (tic6x_value_to_register): Likewise.
3417         (tic6x_gdbarch_init): Don't call set_gdbarch_register_to_value
3418         and set_gdbarch_value_to_register.
3419
3420 2012-08-07  Jan Kratochvil  <jan.kratochvil@redhat.com>
3421             Jean-Marc Saffroy  <saffroy@gmail.com>
3422
3423         PR 11804
3424         * defs.h (find_memory_region_ftype): New comment.  New arg modified.
3425         * fbsd-nat.c (fbsd_find_memory_regions): Add the passed modified value.
3426         * gcore.c (gcore_create_callback): New function comment.  Add modified
3427         parameter.  Only write modified regions.  Set SEC_READONLY exactly
3428         according to MODIFIED.
3429         (objfile_find_memory_regions): Ignore separate debug info files.  Ass
3430         the passed modified value to FUNC.
3431         * gnu-nat.c (gnu_find_memory_regions): Add the passed modified value.
3432         * linux-tdep.c (linux_find_memory_regions): Try to reads smaps file
3433         first.  New variables modified and has_anonymous.  Parse the lines of
3434         smaps file.  Add the passed MODIFIED value to FUNC.
3435         * procfs.c (find_memory_regions_callback): Add the passed modified
3436         value.
3437
3438 2012-08-06  Tom Tromey  <tromey@redhat.com>
3439
3440         * dwarf2-frame.c (clear_pointer_cleanup): New function.
3441         (dwarf2_frame_cache): Use it.
3442         * frame-unwind.h (frame_sniffer_ftype): Document prologue
3443         cache initialization constraint.
3444
3445 2012-08-06  Tom Tromey  <tromey@redhat.com>
3446
3447         PR python/14386:
3448         * varobj.c (update_dynamic_varobj_children): Don't call
3449         PyIter_Check.
3450
3451 2012-08-06  Tom Tromey  <tromey@redhat.com>
3452
3453         PR cli/14392:
3454         * cli/cli-cmds.c (list_command): Filter 'sals_end'.
3455
3456 2012-08-06  Nathaniel Flath  <flat0103@gmail.com>
3457
3458         * NEWS: New entry for 'cd' default parameters.
3459         * cli/cli-cmds.c (cd_command): Replace error_no_arg by DIR assignment.
3460
3461 2012-08-03  Tom Tromey  <tromey@redhat.com>
3462
3463         * dwarf2-frame.c (dwarf2_frame_cache): Call do_cleanups before
3464         return.
3465
3466 2012-08-02  Ulrich Weigand  <ulrich.weigand@linaro.org>
3467
3468         * inf-child.c (inf_child_fileio_pwrite): If pwrite fails, fall back
3469         to attempting lseek/write.
3470         (inf_child_fileio_pread): Likewise for pread.
3471
3472 2012-08-02  Yao Qi  <yao@codesourcery.com>
3473
3474         * dwarf2loc.c (entry_values_debug): Add 'unsigned'.
3475         (_initialize_dwarf2loc): Call add_setshow_zuinteger_cmd instead of
3476         add_setshow_zinteger_cmd.
3477         * dwarf2loc.h: Update the declaration of 'entry_values_debug'.
3478         * dwarf2read.c (dwarf2_die_debug): Add 'unsigned'.
3479         (_initialize_dwarf2_read): Call add_setshow_zuinteger_cmd
3480         instead of add_setshow_zinteger_cmd.
3481         * darwin-nat.c (dwarwin_debug_flag): Add 'unsigned'.
3482         (_initialize_darwin_inferior): Call add_setshow_zuinteger_cmd
3483         instead of add_setshow_zinteger_cmd.
3484         * frame.c (frame_debug): Add 'unsigned'.
3485         (_intialize_frame): Call add_setshow_zuinteger_cmd instead of
3486         add_setshow_zinteger_cmd.
3487         * frame.h: Update the declaration of 'frame_debug'.
3488         * gdbtypes.c (overload_debug): Add 'unsigned'.
3489         (_initialize_gdbtypes): Call add_setshow_zuinteger_cmd instead of
3490         add_setshow_zinteger_cmd.
3491         * inferior.h: Update declaration of 'debug_infrun'.
3492         * infrun.c (debug_infrun): Add 'unsigned'.
3493         (_initialize_infrun): Call add_setshow_zuinteger_cmd instead of
3494         add_setshow_zinteger_cmd.
3495         * jit.c (jit_debug): Add 'unsigned'.
3496         (_initialize_jit): Call add_setshow_zuinteger_cmd instead of
3497         add_setshow_zinteger_cmd.
3498         * linux-nat.c (debug_linux_nat): Add 'unsigned'.
3499         (_initialize_linux_nat): Call add_setshow_zuinteger_cmd
3500         instead of add_setshow_zinteger_cmd.
3501         * linux-thread-db.c (libthread_db_debug): Add 'unsigned'.
3502         (_initialize_thread_db): Call add_setshow_zuinteger_cmd instead of
3503         add_setshow_zinteger_cmd.
3504         * machoread.c (mach_o_debug_level): Add 'unsigned'.
3505         (_initialize_machoread): Call add_setshow_zuinteger_cmd
3506         instead of add_setshow_zinteger_cmd.
3507         * mi/mi-cmd-var.c: Update the declaration of 'varobjdebug'.
3508         * microblaze-tdep.c (microblaze_debug_flag): Add 'unsigned'.
3509         (_initialize_microblaze_tdep): Call add_setshow_zuinteger_cmd
3510         intead of add_setshow_zinteger_cmd.
3511         * mips-tdep.c (mips_debug): Add 'unsigned'.
3512         (_initialize_mips_tdep): Call add_setshow_zuinteger_cmd
3513         instead of add_setshow_zinteger_cmd.
3514         * monitor.c (monitor_debug): Add 'unsigned'.
3515         (_initialize_remote_monitors): Call add_setshow_zuinteger_cmd instead of
3516         add_setshow_zinteger_cmd.
3517         * observer.c (observer_debug): Add 'unsigned'.
3518         (_initialize_observer): Call add_setshow_zuinteger_cmd instead of
3519         add_setshow_zinteger_cmd.
3520         * parse.c (expressiondebug): Add 'unsigned'.
3521         (_initialize_parse): Call add_setshow_zuinteger_cmd instead of
3522         add_setshow_zinteger_cmd.
3523         * record.c (record_debug): Add 'unsigned'.
3524         (_initialize_record): Call add_setshow_zuinteger_cmd instead of
3525         add_setshow_zinteger_cmd.
3526         * record.h: Update the declaration of 'record_debug'.
3527         * stap-probe.c (stap_expression_debug): Add 'unsigned'.
3528         (_initialize_stap_probe): Call add_setshow_zuinteger_cmd instead of
3529         add_setshow_zinteger_cmd.
3530         * serial.c (global_serial_debug_p): Add 'unsigned'.
3531         (_initialize_serial): Call add_setshow_zuinteger_cmd instead of
3532         add_setshow_zinteger_cmd.
3533         * solib-dsbt.c (solib_dsbt_debug): Add 'unsigned'.
3534         (_initialize_dsbt_solib): Call add_setshow_zuinteger_cmd instead of
3535         add_setshow_zinteger_cmd.
3536         * solib-frv.c (solib_frv_debug): Add 'unsigned'.
3537         (_initialize_frv_solib): Call add_setshow_zuinteger_cmd instead of
3538         add_setshow_zinteger_cmd.
3539         * target.c (targetdebug): Add 'unsigned'.
3540         (initialize_targets): Call add_setshow_zuinteger_cmd instead of
3541         add_setshow_zinteger_cmd.
3542         * valops.c (overload_debug): Add 'unsigned'.
3543         * varobj.c (varobjdebug): Add 'unsigned'.
3544         (_initialize_varobj): Call add_setshow_zuinteger_cmd instead of
3545         add_setshow_zinteger_cmd.
3546         * xtensa-tdep.c (xtensa_debug_level): Add 'unsigned'.
3547         (_initialize_xtensa_tdep): Call add_setshow_zuinteger_cmd
3548         instead of add_setshow_zinteger_cmd.
3549
3550         * arch-utils.h: Remove the declaration of 'gdbarch_debug'.
3551         * gdbarch.sh (gdbarch_debug): Add 'unsigned'.
3552         (extern void _initialize_gdbarch): Call add_setshow_zuinteger_cmd
3553         instead of add_setshow_zinteger_cmd.
3554         * gdbarch.c, gdbarch.h: Re-generated.
3555
3556 2012-08-02  Yao Qi  <yao@codesourcery.com>
3557
3558         * nto-tdep.c: Don't include cli/cli-decode.h and
3559         cli/cli-cmds.h.
3560         (_initialize_nto_tdep): Remove.
3561         * nto-tdep.h (struct nto_target_ops) <internal_debugging>:
3562         Remove field.
3563         Remove macro nto_internal_debugging.
3564
3565 2012-08-01  Richard Henderson  <rth@redhat.com>
3566
3567         * configure.tgt (m32c-*-*) [gdb_target_obs]: Remove prologue-value.o.
3568         (mep-*-*) [gdb_target_obs]: Likewise.
3569
3570 2012-07-31  Andreas Schwab  <schwab@linux-m68k.org>
3571
3572         * ppc-linux-tdep.c (ppc_linux_init_abi): Register
3573         linux_get_siginfo_type.
3574
3575 2012-07-31  Jan Kratochvil  <jan.kratochvil@redhat.com>
3576
3577         * infcall.c (call_function_by_hand): Move BP_ADDR comment to
3578         AT_ENTRY_POINT.
3579         (call_function_by_hand) <ON_STACK>: Call write_memory with
3580         gdbarch_breakpoint_from_pc, if possible.
3581         (call_function_by_hand) <AT_ENTRY_POINT>: The BP_ADDR comment is moved
3582         here.
3583
3584 2012-07-31  Yao Qi  <yao@codesourcery.com>
3585
3586         * tracepoint.c: Add 'static' for some variables.
3587
3588 2012-07-31  Yao Qi  <yao@codesourcery.com>
3589
3590         * go32-nat.c: Declare _initialize_go32_nat.
3591         * ser-go32.c: Declare _initialize_ser_dos.
3592         * top.c (do_chdir_cleanup): Add 'static'.
3593
3594 2012-07-30  Keith Seitz  <keiths@redhat.com>
3595
3596         * linespec.c (linespec_lex_number): A number followed
3597         by quotes is a valid number, too.
3598
3599 2012-07-30  Tom Tromey  <tromey@redhat.com>
3600
3601         * remote-sim.c (gdb_os_poll_quit): Don't check immediate_quit.
3602
3603 2012-07-30  Ulrich Weigand  <ulrich.weigand@linaro.org>
3604
3605         * arm-linux-nat.c (arm_linux_hw_breakpoint_initialize): Do not
3606         attempt to 4-byte-align HW breakpoint addresses for Thumb.
3607
3608 2012-07-30  Andrew Burgess  <aburgess@broadcom.com>
3609
3610         * varobj.c (varobj_invalidate_iter): All varobj must be marked as
3611         invalid or reevaluated to prevent prevent references to possibly
3612         delete'd type objects being left in the varobj.
3613
3614 2012-07-27  Tom Tromey  <tromey@redhat.com>
3615             Jan Kratochvil  <jan.kratochvil@redhat.com>
3616
3617         * copying.awk: Print buffer-read-only and vi ro markers.
3618         * copying.c: Rebuild.
3619         * gdbarch.sh (copyright): Print buffer-read-only and vi ro markers.
3620         * gdbarch.c, gdbarch.h: Rebuild.
3621         * target-descriptions.c (maint_print_c_tdesc_cmd): Print
3622         buffer-read-only and vi ro markers.
3623         * features/arm-with-iwmmxt.c: Rebuild.
3624         * features/arm-with-m-fpa-layout.c: Rebuild.
3625         * features/arm-with-m-vfp-d16.c: Rebuild.
3626         * features/arm-with-m.c: Rebuild.
3627         * features/arm-with-neon.c: Rebuild.
3628         * features/arm-with-vfpv2.c: Rebuild.
3629         * features/arm-with-vfpv3.c: Rebuild.
3630         * features/i386/amd64-avx-linux.c: Rebuild.
3631         * features/i386/amd64-avx.c: Rebuild.
3632         * features/i386/amd64-linux.c: Rebuild.
3633         * features/i386/amd64.c: Rebuild.
3634         * features/i386/i386-avx-linux.c: Rebuild.
3635         * features/i386/i386-avx.c: Rebuild.
3636         * features/i386/i386-linux.c: Rebuild.
3637         * features/i386/i386-mmx-linux.c: Rebuild.
3638         * features/i386/i386-mmx.c: Rebuild.
3639         * features/i386/i386.c: Rebuild.
3640         * features/i386/x32-avx-linux.c: Rebuild.
3641         * features/i386/x32-avx.c: Rebuild.
3642         * features/i386/x32-linux.c: Rebuild.
3643         * features/i386/x32.c: Rebuild.
3644         * features/mips-dsp-linux.c: Rebuild.
3645         * features/mips-linux.c: Rebuild.
3646         * features/mips64-dsp-linux.c: Rebuild.
3647         * features/mips64-linux.c: Rebuild.
3648         * features/rs6000/powerpc-32.c: Rebuild.
3649         * features/rs6000/powerpc-32l.c: Rebuild.
3650         * features/rs6000/powerpc-403.c: Rebuild.
3651         * features/rs6000/powerpc-403gc.c: Rebuild.
3652         * features/rs6000/powerpc-405.c: Rebuild.
3653         * features/rs6000/powerpc-505.c: Rebuild.
3654         * features/rs6000/powerpc-601.c: Rebuild.
3655         * features/rs6000/powerpc-602.c: Rebuild.
3656         * features/rs6000/powerpc-603.c: Rebuild.
3657         * features/rs6000/powerpc-604.c: Rebuild.
3658         * features/rs6000/powerpc-64.c: Rebuild.
3659         * features/rs6000/powerpc-64l.c: Rebuild.
3660         * features/rs6000/powerpc-7400.c: Rebuild.
3661         * features/rs6000/powerpc-750.c: Rebuild.
3662         * features/rs6000/powerpc-860.c: Rebuild.
3663         * features/rs6000/powerpc-altivec32.c: Rebuild.
3664         * features/rs6000/powerpc-altivec32l.c: Rebuild.
3665         * features/rs6000/powerpc-altivec64.c: Rebuild.
3666         * features/rs6000/powerpc-altivec64l.c: Rebuild.
3667         * features/rs6000/powerpc-cell32l.c: Rebuild.
3668         * features/rs6000/powerpc-cell64l.c: Rebuild.
3669         * features/rs6000/powerpc-e500.c: Rebuild.
3670         * features/rs6000/powerpc-e500l.c: Rebuild.
3671         * features/rs6000/powerpc-isa205-32l.c: Rebuild.
3672         * features/rs6000/powerpc-isa205-64l.c: Rebuild.
3673         * features/rs6000/powerpc-isa205-altivec32l.c: Rebuild.
3674         * features/rs6000/powerpc-isa205-altivec64l.c: Rebuild.
3675         * features/rs6000/powerpc-isa205-vsx32l.c: Rebuild.
3676         * features/rs6000/powerpc-isa205-vsx64l.c: Rebuild.
3677         * features/rs6000/powerpc-vsx32.c: Rebuild.
3678         * features/rs6000/powerpc-vsx32l.c: Rebuild.
3679         * features/rs6000/powerpc-vsx64.c: Rebuild.
3680         * features/rs6000/powerpc-vsx64l.c: Rebuild.
3681         * features/rs6000/rs6000.c: Rebuild.
3682         * features/s390-linux32.c: Rebuild.
3683         * features/s390-linux32v1.c: Rebuild.
3684         * features/s390-linux32v2.c: Rebuild.
3685         * features/s390-linux64.c: Rebuild.
3686         * features/s390-linux64v1.c: Rebuild.
3687         * features/s390-linux64v2.c: Rebuild.
3688         * features/s390x-linux64.c: Rebuild.
3689         * features/s390x-linux64v1.c: Rebuild.
3690         * features/s390x-linux64v2.c: Rebuild.
3691         * features/tic6x-c62x-linux.c: Rebuild.
3692         * features/tic6x-c62x.c: Rebuild.
3693         * features/tic6x-c64x-linux.c: Rebuild.
3694         * features/tic6x-c64x.c: Rebuild.
3695         * features/tic6x-c64xp-linux.c: Rebuild.
3696         * features/tic6x-c64xp.c: Rebuild.
3697
3698 2012-07-27  Tom Tromey  <tromey@redhat.com>
3699
3700         * c-exp.y (classify_name): Avoid assignment in condition.
3701
3702 2012-07-27  Roland Schwingel  <roland.schwingel@onevision.com>
3703
3704         * amd64-windows-tdep.c: Include "frame.h".
3705         (amd64_windows_skip_trampoline_code): New function.
3706         (amd64_windows_init_abi): Add trampoline registration.
3707
3708 2012-07-27  Yao Qi  <yao@codesourcery.com>
3709
3710         * tracepoint.c (cur_traceframe_number): Remove.
3711         (set_tfile_traceframe): Remove.
3712         (tfile_trace_find, tfile_fetch_registers): Update callers.
3713         (tfile_xfer_partial, tfile_get_trace_state_variable_value): Likewise.
3714         (tfile_open, tfile_trace_find): Likewise.
3715
3716 2012-07-27  Yao Qi  <yao@codesourcery.com>
3717
3718         * thread.c (switch_to_thread): Don't call registers_changed.
3719
3720 2012-07-26  Tom Tromey  <tromey@redhat.com>
3721
3722         * Makefile.in (SFILES): Remove objc-exp.y.
3723         (YYFILES): Remove objc-exp.c.
3724         (YYOBJ): Remove objc-exp.o.
3725         (local-maintainer-clean): Don't mention objc-exp.c.
3726         * c-exp.y: Include objc-lang.h.
3727         (%union) <class>: New field.
3728         (NSSTRING, SELECTOR, CLASSNAME, OBJC_LBRAC): New tokens.
3729         (exp): Clone subscript production for OBJC_LBRAC.  Add various
3730         Objective C productions.
3731         (msglist, msgarglist, msgarg): New productions.
3732         (array_mod, func_mod, operator): Clone productions for
3733         OBJC_LBRAC.
3734         (parse_string_or_char): Handle '@' strings.
3735         (lex_one_token): Return OBJC_LBRAC.  Recognize @selector.
3736         (classify_name): Check la_name_of_this.  Recognize ObjC class
3737         names.
3738         * objc-exp.y: Remove.
3739         * objc-lang.c (objc_language_defn): Use c_parse, c_error.
3740         * objc-lang.h (objc_parse, objc_error): Don't declare.
3741
3742 2012-07-26  Markus Metzger  <markus.t.metzger@intel.com>
3743
3744         * python/py-inferior.c (infpy_threads): Call update_thread_list ().
3745
3746 2012-07-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
3747
3748         * auto-load.c (auto_load_info_scripts): Remove immediate_quit increment
3749         and decrement.
3750
3751 2012-07-26  Tom Tromey  <tromey@redhat.com>
3752
3753         * copying.c: Rebuild.
3754         * copying.awk: Don't use immediate_quit.  Use 'no_set_class', not
3755         'no_class'.
3756
3757 2012-07-26  Tom Tromey  <tromey@redhat.com>
3758
3759         * symmisc.c (print_symbol_bcache_statistics): Use QUIT, not
3760         immediate_quit.
3761         (print_objfile_statistics): Likewise.
3762         (maintenance_print_symbols): Likewise.
3763         (maintenance_print_msymbols): Likewise.
3764         (maintenance_print_objfiles): Likewise.
3765         * psymtab.c (print_partial_symbols): Call QUIT.
3766         (maintenance_print_psymbols): Likewise.  Don't modify
3767         immediate_quit.
3768         * copying.c (show_copying_command): Don't modify immediate_quit.
3769         (show_warranty_command): Likewise.
3770         * cli/cli-cmds.c (show_version): Don't modify immediate_quit.
3771
3772 2012-07-26  Keith Seitz  <keiths@redhat.com>
3773
3774         * linespec.c (linespec_lexer_lex_number): The input
3775         is also a valid number if the next character is a comma
3776         or colon.
3777
3778 2012-07-26  Joel Brobecker  <brobecker@adacore.com>
3779
3780         * NEWS: Document new --enable-libmcheck/--disable-libmcheck
3781         configure options.
3782
3783 2012-07-26  Tristan Gingold  <gingold@adacore.com>
3784
3785         * machoread.c: Include gdb_bfd.h.
3786
3787 2012-07-26  Tristan Gingold  <gingold@adacore.com>
3788
3789         * dwarf2loc.c (locexpr_describe_location_piece): Use uint64_t for
3790         offset.
3791
3792 2012-07-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
3793
3794         * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Expand parameter
3795         SIZE to size_t.
3796         (dwarf2_evaluate_loc_desc): Likewise.
3797         (dwarf2_loc_desc_needs_frame): Likewise.
3798         (locexpr_describe_location_1): Likewise.
3799         * dwarf2loc.h (struct dwarf2_locexpr_baton): Make SIZE as
3800         size_t.
3801         (struct dwarf2_loclist_baton): Likewise.
3802         * dwarf2read.c (struct dwarf_block): Likewise.
3803         (dump_die_shallow): Use pulongest to print dwarf_block.size.
3804         (decode_locdesc): Expand SIZE and I to size_t.
3805
3806 2012-07-25  Jan Kratochvil  <jan.kratochvil@redhat.com>
3807
3808         * contrib/cc-with-tweaks.sh: Put into comment path gdb/contrib/.
3809
3810 2012-07-25  Joel Brobecker  <brobecker@adacore.com>
3811
3812         * doublest.c (convert_doublest_to_floatformat): If the exponent
3813         is too small, treat the value as zero.  If the exponent is too
3814         large, treat the value as infinity.
3815
3816 2012-07-25  Joel Brobecker  <brobecker@adacore.com>
3817
3818         * configure.ac: Add --enable-lmcheck configure option.
3819         * configure: Regenerate.
3820
3821 2012-07-25  Tom Tromey  <tromey@redhat.com>
3822
3823         * NEWS: Mention maint info bfds.
3824         * gdb_bfd.c (all_bfds): New global.
3825         (gdb_bfd_ref, gdb_bfd_unref): Update all_bfds.
3826         (print_one_bfd, maintenance_info_bfds, _initialize_gdb_bfd):
3827         New functions.
3828
3829 2012-07-25  Ralf Corsépius  <ralf.corsepius@rtems.org>
3830
3831         * configure.tgt: Add v850*-*-rtems*.
3832
3833 2012-07-25  Tom Tromey  <tromey@redhat.com>
3834
3835         * macrotab.c (macro_bcache_str): Remove cast.
3836
3837 2012-07-25  Hui Zhu  <hui_zhu@mentor.com>
3838
3839         * linespec.c (linespec_lexer_lex_number): Update comments,
3840         change the return and add check to make sure the input is
3841         the decimal numbers.
3842         (linespec_lexer_lex_one): If linespec_lexer_lex_number return
3843         false, call linespec_lexer_lex_string.
3844
3845 2012-07-24  Tom Tromey  <tromey@redhat.com>
3846
3847         * symfile.c (symbol_file_add): Don't open BFD twice.
3848
3849 2012-07-24  Marc Khouzam  <marc.khouzam@ericsson.com>
3850
3851         * breakpoint.c (create_breakpoint): Store condition for pending
3852         breakpoints.
3853
3854 2012-07-24  Andreas Schwab  <schwab@linux-m68k.org>
3855
3856         * m68k-tdep.c (m68k_reg_struct_return_p): Accept complex types.
3857         (m68k_return_value): Handle complex types like structures.
3858         (m68k_svr4_return_value): Likewise.
3859
3860 2012-07-24  Marcus Shawcroft  <marcus.shawcroft@arm.com>
3861
3862         * gdb_bfd.c (zlib_decompress_section) <!HAVE_ZLIB_H>: Adjust
3863         parameters to bfd_get_section_name.
3864
3865 2012-07-24  Yao Qi  <yao@codesourcery.com>
3866
3867         * cli/cli-setshow.c: Handle case 'var_uinteger'
3868         and 'var_zuninteger' together.  Handle case 'var_integer' and
3869         'var_zinteger' together.
3870
3871 2012-07-23  Keith Seitz  <keiths@redhat.com>
3872
3873         * linespec.c (convert_linespec_to_sal): Don't add
3874         any symbols to the result vector if symbol_to_sal
3875         returns zero.
3876
3877 2012-07-23  Keith Seitz  <keiths@redhat.com>
3878
3879         * linespec.c (decode_objc): Record the function name
3880         in the linespec.
3881
3882 2012-07-23  Tom Tromey  <tromey@redhat.com>
3883
3884         * rs6000-nat.c (add_vmap): Rewrite archive loop.  Fix reference
3885         counting.
3886         * exec.c (exec_close_1): Unconditionally release vmap's BFD.
3887         (map_vmap): Acquire a reference to the BFD.
3888
3889 2012-07-23  Siddhesh Poyarekar  <siddhesh@redhat.com>
3890
3891         * p-valprint.c (pascal_object_print_value): Replace potentially
3892         unsafe alloca with xmalloc/xfree.
3893         * valops.c (search_struct_method): Likewise.
3894
3895 2012-07-23  Tom Tromey  <tromey@redhat.com>
3896
3897         * solib-svr4.c (enable_break): Update.
3898         * bfd-target.h (target_bfd_reopen): Update documentation.
3899
3900 2012-07-23  Tom Tromey  <tromey@redhat.com>
3901
3902         * symfile.c (separate_debug_file_exists): Update.
3903         (gdb_bfd_open_maybe_remote): Rename from bfd_open_maybe_remote.
3904         (reread_symbols): Update.
3905         * elfread.c (build_id_verify): Update.
3906         * symfile.h (gdb_bfd_open_maybe_remote): Rename from
3907         bfd_open_maybe_remote.
3908
3909 2012-07-23  Tom Tromey  <tromey@redhat.com>
3910
3911         * gdb_bfd.c (gdb_bfd_ref, gdb_bfd_unref): Fix comment.
3912
3913 2012-07-23  Tom Tromey  <tromey@redhat.com>
3914
3915         * coffread.c (coff_symfile_read): Make a cleanup for 'debugfile'
3916         and 'abfd'.
3917         * elfread.c (elf_symfile_read): Make a cleanup for 'debugfile'
3918         and 'abfd'.
3919         * jit.c (jit_bfd_try_read_symtab): Make a cleanup for 'nbfd'.
3920         * machoread.c (macho_add_oso_symfile): Make a cleanup for
3921         'abfd'.
3922         (macho_symfile_read): Make a cleanup for 'dsym_bfd'.
3923         * objfiles.c (allocate_objfile): Acquire a new reference.
3924         * rs6000-nat.c (add_vmap): Don't acquire a BFD reference.
3925         * solib.c (solib_read_symbols): Don't acquire a BFD reference.
3926         * spu-linux-nat.c (spu_symbol_file_add_from_memory): Make
3927         a cleanup for 'nbfd'.
3928         * symfile-mem.c (symbol_file_add_from_memory): Make a cleanup
3929         for 'nbfd'.
3930         * symfile.c (symbol_file_add_with_addrs_or_offsets): Don't
3931         make a cleanup for 'abfd'.
3932         (symbol_file_add): Make a BFD cleanup.
3933
3934 2012-07-23  Tom Tromey  <tromey@redhat.com>
3935
3936         * cli/cli-dump.c (bfd_openr_with_cleanup): Use gdb_bfd_openr.
3937         (bfd_openw_with_cleanup): Use gdb_bfd_openw.
3938         * corelow.c (core_open): Use gdb_bfd_fopen.
3939         * dsrec.c (load_srec): Use gdb_bfd_openr.
3940         * exec.c (exec_file_attach): Use gdb_bfd_fopen.
3941         * gcore.c (gcore_memory_sections): Use gdb_bfd_openw.
3942         * gdb_bfd.c (gdb_bfd_fopen, gdb_bfd_openr, gdb_bfd_openw)
3943         (gdb_bfd_openr_iovec, gdb_bfd_openr_next_archived_file)
3944         (gdb_bfd_fdopenr): New functions.
3945         * gdb_bfd.h (gdb_bfd_fopen, gdb_bfd_openr, gdb_bfd_openw)
3946         (gdb_bfd_openr_iovec, gdb_bfd_openr_next_archived_file)
3947         (gdb_bfd_fdopenr): Declare.
3948         * jit.c (bfd_open_from_target_memory): Use gdb_bfd_openr_iovec.
3949         * m32-rom.c (m32r_load, m32r_upload_command): Use gdb_bfd_openr.
3950         * machoread.c (macho_symfile_read_all_oso): Use gdb_bfd_openr,
3951         gdb_bfd_openr_next_archived_file.
3952         (macho_check_dsym): Use gdb_bfd_openr.
3953         (macho_add_oso_symfile): Don't call gdb_bfd_stash_filename.
3954         * procfs.c (insert_dbx_link_bpt_in_file): Use gdb_bfd_fdopenr.
3955         * remote-m32r-sdi.c (m32r_load): Use gdb_bfd_openr.
3956         * remote-mips.c (mips_load_srec, pmon_load_fast): Use
3957         gdb_bfd_openr.
3958         * remote.c (remote_bfd_open): Use gdb_bfd_openr_iovec.
3959         * rs6000-nat.c (add_vmap): Use gdb_bfd_openr, gdb_bfd_fdopenr,
3960         gdb_bfd_openr_next_archived_file.
3961         * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
3962         Use gdb_bfd_openr.
3963         * solib-pa64.c (pa64_solib_create_inferior_hook): Use
3964         gdb_bfd_openr.
3965         * solib-spu.c (spu_bfd_fopen): Use gdb_bfd_openr_iovec.
3966         * solib.c (solib_bfd_fopen): Use gdb_bfd_fopen.
3967         * spu-linux-nat.c (spu_bfd_open): Use gdb_bfd_openr_iovec.
3968         * symfile.c (bfd_open_maybe_remote): Use gdb_bfd_openr.
3969         (symfile_bfd_open): Use gdb_bfd_fopen.
3970         (generic_load): Use gdb_bfd_openr.
3971         * windows-nat.c (windows_make_so): Use gdb_bfd_openr.
3972
3973 2012-07-23  Tom Tromey  <tromey@redhat.com>
3974
3975         * bfd-target.c (target_bfd_reopen): Update.
3976         * cli/cli-dump.c (bfd_openr_with_cleanup)
3977         (bfd_openw_with_cleanup): Update.
3978         * corelow.c (core_open): Update.
3979         * dsrec.c (load_srec): Update.
3980         * exec.c (exec_file_attach): Update.
3981         * gcore.c (create_gcore_bfd): Update.
3982         * gdb_bfd.c (gdb_bfd_ref): Return void.
3983         (gdb_bfd_open): Update.
3984         * gdb_bfd.h (gdb_bfd_ref): Return void.
3985         Update comments.
3986         * jit.c (jit_bfd_try_read_symtab): Update.
3987         * m32r-rom.c (m32r_load, m32r_upload_command): Update.
3988         * machoread.c (macho_symfile_read_all_oso): Update.
3989         (macho_check_dsym): Update.
3990         * procfs.c (insert_dbx_link_bpt_in_file): Update.
3991         * remote-m32r-sdi.c (m32r_load): Update.
3992         * remote-mips.c (mips_load_srec, pmon_load_fast): Update.
3993         * rs6000-nat.c (add_vmap): Update.
3994         * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
3995         Update.
3996         * solib-pa64.c (pa64_solib_create_inferior_hook): Update.
3997         * solib-spu.c (spu_bfd_open): Update.
3998         * solib.c (solib_bfd_fopen, solib_read_symbols): Update.
3999         * spu-linux-nat.c (spu_bfd_open): Update.
4000         * symfile.c (bfd_open_maybe_remote, symfile_bfd_open)
4001         (generic_load): Update.
4002         * windows-nat.c (windows_make_so): Update.
4003
4004 2012-07-22  Siddhesh Poyarekar  <siddhesh@redhat.com>
4005
4006         * sh-tdep.c (sh_treat_as_flt_p): Remove unused variable LEN.
4007
4008 2012-07-20  Jeff Kenton  <jkenton@tilera.com>
4009
4010         * tilegx-linux-tdep.c (tilegx_linux_sigframe_init): Fix
4011         SIGTRAMP_FRAME unwinding.
4012
4013 2012-07-20  Doug Evans  <dje@google.com>
4014
4015         * NEWS: Document new options "set/show use-deprecated-index-sections",
4016         and delete reference to --use-deprecated-index-sections.
4017         * symfile.h (use_deprecated_index_sections): Delete.
4018         * dwarf2read.c (use_deprecated_index_sections): Make static.
4019         (read_index_from_section): Update wording of how to load
4020         deprecated index sections.
4021         (_initialize_dwarf2_read): New options
4022         "set/show use-deprecated-index-sections".
4023         * main.c (captured_main): Delete --use-deprecated-index-sections.
4024
4025 2012-07-20  Pedro Alves  <palves@redhat.com>
4026
4027         PR threads/11692
4028         PR gdb/12203
4029
4030         * infrun.c (handle_inferior_event) <new thread>: Don't special
4031         case minus_one_ptid.
4032         <TARGET_WAITKIND_SPURIOUS>: Ditto.
4033         * linux-thread-db.c (thread_get_info_callback): Don't return early
4034         if the thread is zombie.
4035         (thread_from_lwp): Change return type to void.  Rewrite stale
4036         comment.
4037         (attach_thread): Don't return early if the thread is zombie,
4038         instead set its "dying" flag.
4039         (thread_db_wait): Don't return TARGET_WAITKIND_SPURIOUS anymore.
4040         (find_new_threads_callback): Don't return early if the thread is
4041         zombie.
4042
4043 2012-07-20  Pedro Alves  <palves@redhat.com>
4044
4045         * linux-nat.c (linux_nat_wait): Dump the passed in target options.
4046         * target.c (target_wait): Likewise.
4047         (str_comma_list_concat_elem, do_option, target_options_to_string):
4048         New functions.
4049         * target.h (target_options_to_string): Declare.
4050
4051 2012-07-20  Jan Kratochvil <jan.kratochvil@redhat.com>
4052             Tom Tromey  <tromey@redhat.com>
4053
4054         * dwarf2read.c (dwarf_decode_macros)
4055         <DW_MACRO_GNU_define_indirect_alt, DW_MACRO_GNU_undef_indirect_alt,
4056         DW_MACRO_GNU_transparent_include_alt>: New cases.
4057         (dwarf_decode_macro_bytes) <DW_MACRO_GNU_define_indirect,
4058         DW_MACRO_GNU_undef_indirect>: Examine 'section_is_dwz'.
4059
4060 2012-07-20  Tom Tromey  <tromey@redhat.com>
4061
4062         * dwarf2read.c (try_open_dwo_file): Don't call
4063         gdb_bfd_stash_filename.
4064
4065 2012-07-20  Pedro Alves  <palves@redhat.com>
4066
4067         * i386-tdep.c (i386_record_modrm, i386_record_lea_modrm_addr)
4068         (i386_record_lea_modrm, i386_record_push, i386_record_floats)
4069         (i386_process_record): Tweak description comments.
4070
4071 2012-07-20  Pedro Alves  <palves@redhat.com>
4072
4073         * i386-tdep.c (i386_record_modrm, i386_record_lea_modrm_addr)
4074         (i386_process_record): Use record_read_memory.
4075         * record.c (record_read_memory): New function.
4076         (record_arch_list_add_mem, record_exec_insn): Use
4077         record_read_memory.
4078         * record.h (record_read_memory): Declare.
4079
4080 2012-07-20  Yao Qi  <yao@codesourcery.com>
4081
4082         * cli/cli-setshow.c (do_setshow_command): Don't check pointer is
4083         NULL for xfree.
4084
4085 2012-07-19  Pedro Alves  <palves@redhat.com>
4086
4087         * record.c (record_resume): Ask the target beneath to report all
4088         signals.
4089
4090 2012-07-19  Doug Evans  <dje@google.com>
4091
4092         * dwarf2read.c (dwarf2_ranges_read): Ignore ranges starting at zero if
4093         there's no section at address zero.
4094         (dwarf2_record_block_ranges): Ditto.
4095
4096 2012-07-19  Yao Qi  <yao@codesourcery.com>
4097
4098         * command.h, remote.c: Fix a typo in comment.
4099
4100 2012-07-19  Tom Tromey  <tromey@redhat.com>
4101
4102         PR exp/13206:
4103         * ax-gdb.c (gen_expr) <OP_TYPEOF, OP_DECLTYPE>: New cases.
4104         * breakpoint.c (watchpoint_exp_is_const) <OP_TYPEOF,
4105         OP_DECLTYPE>: New cases.
4106         * c-exp.y (TYPEOF, DECLTYPE): New tokens.
4107         (type_exp): Add new productions.
4108         (ident_tokens): Add __typeof__, typeof, __typeof, __decltype,
4109         and decltype.
4110         * eval.c (evaluate_subexp_standard) <OP_TYPEOF, OP_DECLTYPE>:
4111         New case.
4112         * expprint.c (dump_subexp_body_standard) <OP_TYPEOF,
4113         OP_DECLTYPE>: New case.
4114         * parse.c (operator_length_standard) <OP_TYPEOF, OP_DECLTYPE>:
4115         New case.
4116         * std-operator.def (OP_TYPEOF, OP_DECLTYPE): New constants.
4117         * varobj.c (varobj_create): Handle OP_TYPEOF, OP_DECLTYPE.
4118
4119 2012-07-19  Tom Tromey  <tromey@redhat.com>
4120
4121         * c-exp.y (enum token_flags): New.
4122         (struct token) <cxx_only>: Remove.
4123         <flags>: New field.
4124         (tokentab3, tokentab2, ident_tokens): Update.
4125         (lex_one_token): Update.  Handle FLAG_SHADOW.
4126
4127 2012-07-19  Tom Tromey  <tromey@redhat.com>
4128
4129         * ax-gdb.c (gen_expr): Handle UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE.
4130         * breakpoint.c (watchpoint_exp_is_const): Handle UNOP_CAST_TYPE,
4131         UNOP_REINTERPRET_CAST, UNOP_DYNAMIC_CAST.
4132         * c-exp.y (exp): Emit UNOP_MEMVAL_TYPE, UNOP_CAST_TYPE.  Update
4133         for changes to UNOP_REINTERPRET_CAST, UNOP_DYNAMIC_CAST.  Use
4134         type_exp production where appropriate.
4135         * eval.c (evaluate_subexp_standard) <UNOP_CAST_TYPE>: New case.
4136         <UNOP_DYNAMIC_CAST, UNOP_REINTERPRET_CAST>: Update.
4137         <UNOP_MEMVAL_TYPE>: New case.
4138         (evaluate_subexp_for_address) <UNOP_MEMVAL_TYPE>: New case.
4139         (evaluate_subexp_for_sizeof) <UNOP_MEMVAL_TYPE>: New case.
4140         * expprint.c (print_subexp_standard) <UNOP_CAST_TYPE>: New case.
4141         <UNOP_MEMVAL_TYPE>: New case.
4142         (dump_subexp_body_standard) <UNOP_DYNAMIC_CAST,
4143         UNOP_REINTERPRET_CAST>: Update.
4144         <UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE>: New cases.
4145         * parse.c (operator_length_standard) <UNOP_DYNAMIC_CAST,
4146         UNOP_REINTERPRET_CAST>: Update.
4147         <UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE>: New cases.
4148         * stack.c (return_command): Also check for UNOP_CAST_TYPE.
4149         * std-operator.def (UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE): New
4150         constants.
4151
4152 2012-07-19  Yao Qi  <yao@codesourcery.com>
4153             Jan Kratochvil <jan.kratochvil@redhat.com>
4154
4155         * cli/cli-setshow.c (do_setshow_command): Handle case 'var_filename'
4156         and case 'var_optional_filename' together.
4157         * infcmd.c (_initialize_infcmd): Call add_setshow_string_noescape_cmd
4158         instead of add_setshow_optional_filename_cmd for setshow command
4159         'args'.  Set completer for 'set args'.
4160
4161 2012-07-18  Doug Evans  <dje@google.com>
4162
4163         * common/gdb_vecs.h: Moved here from ./gdb_vecs.h.
4164         * common/gdb_vecs.c: New file, contents from utils.c.
4165         * common/host-defs.h: New file, contents from defs.h.
4166         * utils.h: New file, contents from defs.h.
4167         * defs.h: Move all declarations of objects defined in utils.c
4168         to utils.h (except QUIT() and related).
4169         #include "utils.h", "host-defs.h".
4170         * probe.h (probe_p): Move here from gdb_vecs.h.
4171         * symfile.c: #include "probe.h" instead of "gdb_vecs.h".
4172         * utils.c (free_char_ptr_vec): Moved to common/gdb_vecs.c.
4173         (dirnames_to_char_ptr_vec_append, dirnames_to_char_ptr_vec): Ditto.
4174         * Makefile.in (SFILES): Add common/gdb_vecs.c.
4175         (HFILES_NO_SRCDIR): Add common/gdb_vecs.h, common/host-defs.h, utils.h.
4176         (COMMON_OBS): Add gdb_vecs.o.
4177         (gdb_vecs.o): New rule.
4178
4179 2012-07-18  Keith Seitz  <keiths@redhat.com>
4180
4181         * linespec.c (add_sal_to_sals): Add LITERAL_CANONICAL
4182         parameter.  If non-zero, use SYMNAME as the canonical name
4183         for the SaL.
4184         Update all callers.
4185         (convert_linespec_to_sals): Use add_sal_to_sals for
4186         expressions, too.
4187         (decode_line_full): No need to "fill in missing canonical names"
4188         anymore. Simply make cleanups for the allocated names.
4189
4190 2012-07-18  Keith Seitz  <keiths@redhat.com>
4191
4192         * linespec.c (struct linespec): Constify expression,
4193         source_filename, function_name, and label_name.
4194         (symbol_not_found_error): Make all parameters const.
4195         (linespec_parser_delete): No need to check for NULL
4196         when using xfree. Cast const char * to char * for xfree.
4197
4198 2012-07-18  Keith Seitz  <keiths@redhat.com>
4199
4200         * breakpoint.c (invalid_thread_id_error): New function.
4201         (find_condition_and_thread): Use invalid_thread_id_error.
4202         (watch_command_1): Likewise.
4203
4204 2012-07-18  Tom Tromey  <tromey@redhat.com>
4205
4206         * cc-with-index.sh, cc-with-dwz.sh: Remove.
4207         * contrib/cc-with-tweaks.sh: New file.
4208
4209 2012-07-18  Tom Tromey  <tromey@redhat.com>
4210
4211         * dwarf2read.c (struct dwz_file) <gdb_index>: New field.
4212         (locate_dwz_sections): Recognize .gdb_index.
4213         (create_cus_from_index_list): New function.
4214         (create_cus_from_index): Use it.  Handle .dwz data.
4215         (read_index_from_section): New function, extracted from
4216         dwarf2_read_index.
4217         (dwarf2_read_index): Use it.  Read .gdb_index from dwz file,
4218         if needed.
4219
4220 2012-07-18  Tom Tromey  <tromey@redhat.com>
4221
4222         * dwarf2read.c (struct dwarf2_per_objfile) <dwz_file>: New field.
4223         (struct dwarf2_per_cu_data) <length>: No longer bitfield.
4224         <is_dwz>: New field.
4225         (struct dwz_file): New.
4226         (struct partial_die_info) <is_dwz, spec_is_dwz>: New fields.
4227         (locate_dwz_sections, dwarf2_get_dwz_file)
4228         (get_abbrev_section_for_cu): New functions.
4229         (error_check_comp_unit_head, read_and_check_comp_unit_head)
4230         (read_and_check_type_unit_head): Add abbrev_section argument.
4231         (create_debug_types_hash_table): Update.
4232         (init_cutu_and_read_dies): Use proper abbrev section.
4233         (init_cutu_and_read_dies_no_follow): Likewise.
4234         (set_partial_user): Do nothing if PST==NULL.
4235         (read_comp_units_from_section): New function.
4236         (create_all_comp_units): Use it.
4237         (scan_partial_symbols, partial_die_parent_scope): Update.
4238         (skip_one_die): Handle DW_FORM_GNU_ref_alt, DW_FORM_GNU_strp_alt.
4239         (process_imported_unit_die, read_partial_die): Handle .dwz files.
4240         (find_partial_die): Add offset_in_dwz argument.  Update.
4241         (guess_partial_die_structure_name, fixup_partial_die): Update.
4242         (read_attribute_value): Handle DW_FORM_GNU_ref_alt,
4243         DW_FORM_GNU_strp_alt.
4244         (read_indirect_string_from_dwz): New function.
4245         (dwarf2_const_value_attr): Handle DW_FORM_GNU_strp_alt.
4246         (dump_die_shallow): Handle DW_FORM_GNU_ref_alt, DW_FORM_GNU_strp_alt.
4247         (is_ref_attr): Handle DW_FORM_GNU_ref_alt.
4248         (follow_die_offset): Add offset_in_dwz argument.
4249         (follow_die_ref, dwarf2_fetch_die_location_block): Update.
4250         (skip_form_bytes): Handle DW_FORM_GNU_strp_alt.
4251         (dwarf_decode_macro_bytes): Add section_is_dwz argument.
4252         Handle new macro forms.
4253         (dwarf_decode_macros): Update.
4254         (dwarf2_find_containing_comp_unit): Add offset_in_dwz argument.
4255         (dwarf2_per_objfile_free): Unref dwz_bfd, if it exists
4256         (lookup_die_type): Handle DW_FORM_GNU_ref_alt.
4257         (create_debug_types_hash_table): Use correct abbrev section.
4258         (get_debug_line_section): New function.
4259         (dwarf_decode_line_header, dwarf_decode_lines_1): Use it.
4260         (process_full_comp_unit): Pass 'required' argument to
4261         end_symtab_get_static_block.
4262         * buildsym.h (end_symtab_get_static_block): Update.
4263         * buildsym.c (end_symtab_get_static_block): Add 'required'
4264         argument.
4265         (end_symtab, end_expandable_symtab): Update.
4266
4267 2012-07-18  Tom Tromey  <tromey@redhat.com>
4268
4269         * dwarf2read.c: Don't include zlib.h or sys/mman.h.
4270         (pagesize): Remove.
4271         (struct dwarf2_section_info) <map_addr, map_len>: Remove.
4272         (zlib_decompress_section): Remove.
4273         (dwarf2_read_section): Use gdb_bfd_map_section.
4274         (munmap_section_buffer): Remove.
4275         (free_dwo_file, dwarf2_per_objfile_free): Don't use
4276         munmap_section_buffer.
4277         * gdb_bfd.c: Include zlib.h, sys/mman.h.
4278         (struct gdb_bfd_section_data): New.
4279         (free_one_bfd_section): New function.
4280         (gdb_bfd_close_or_warn): Use free_one_bfd_section.
4281         (get_section_descriptor, zlib_decompress_section)
4282         (gdb_bfd_map_section): New functions.
4283         * gdb_bfd.h (gdb_bfd_map_section): Declare.
4284
4285 2012-07-18  Tom Tromey  <tromey@redhat.com>
4286
4287         * dwarf2read.c (try_open_dwo_file): use gdb_bfd_open.
4288
4289 2012-07-18  Tom Tromey  <tromey@redhat.com>
4290
4291         * gdb_bfd.c (struct gdb_bfd_data): New.
4292         (gdb_bfd_cache): New global.
4293         (struct gdb_bfd_cache_search): New.
4294         (hash_bfd, eq_bfd, gdb_bfd_open): New functions.
4295         (gdb_bfd_ref, gdb_bfd_unref): Use gdb_bfd_data.
4296         * gdb_bfd.h (gdb_bfd_open): Declare.
4297
4298 2012-07-18  Tom Tromey  <tromey@redhat.com>
4299
4300         * utils.c (make_cleanup_bfd_unref): Rename from
4301         make_cleanup_bfd_close.
4302         * defs.h (make_cleanup_bfd_unref): Rename from
4303         make_cleanup_bfd_close.
4304         * cli/cli-dump.c (bfd_openr_with_cleanup): Update.
4305         (bfd_openw_with_cleanup): Update.
4306         * corelow.c (core_open): Update.
4307         * dsrec.c (load_srec): Update.
4308         * m32r-rom.c (m32r_load, m32r_upload_command): Update.
4309         * remote-m32r-sdi.c (m32r_load): Update.
4310         * remote-mips.c (mips_load_srec): Update.
4311         (pmon_load_fast): Update.
4312         * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
4313         Update.
4314         (darwin_bfd_open): Update.
4315         * solib.c (solib_bfd_fopen): Update.
4316         * symfile-mem.c (symbol_file_add_from_memory): Update.
4317         * symfile.c (symbol_file_add_with_addrs_or_offsets): Update.
4318         (symfile_bfd_open): Update.
4319         (generic_load): Update.
4320
4321 2012-07-18  Tom Tromey  <tromey@redhat.com>
4322
4323         * remote-mips.c (mips_load_srec): Use make_cleanup_bfd_close.
4324         (pmon_load_fast): Likewise.
4325         * m32r-rom.c (m32r_load): Use make_cleanup_bfd_close.
4326         (m32r_upload_command): Likewise.
4327         * dsrec.c (load_srec): Use make_cleanup_bfd_close.
4328         * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
4329         Use make_cleanup_bfd_close.
4330
4331 2012-07-18  Tom Tromey  <tromey@redhat.com>
4332
4333         * symfile.c (symfile_bfd_open): Don't copy name.  Call
4334         gdb_bfd_stash_filename.
4335         (load_command): Open the new BFD before freeing the old.
4336         (bfd_open_maybe_remote): Call gdb_bfd_stash_filename.
4337         * symfile-mem.c (symbol_file_add_from_memory): Don't copy name.
4338         Call gdb_bfd_stash_filename.
4339         * spu-linux-nat.c (spu_bfd_open): Don't copy name.
4340         * solib-spu.c (spu_bfd_fopen): Don't copy name.  Call
4341         gdb_bfd_stash_filename.
4342         * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
4343         Free found_pathname.
4344         * rs6000-nat.c (add_vmap): Don't copy filename.  Call
4345         gdb_bfd_stash_filename.
4346         * remote.c (remote_bfd_open): Call gdb_bfd_stash_filename.
4347         * machoread.c (macho_add_oso_symfile): Call
4348         gdb_bfd_stash_filename.
4349         (macho_symfile_read_all_oso): Arrange to free archive_name.  Call
4350         gdb_bfd_stash_filename.
4351         (macho_check_dsym): Don't copy filename.  Call
4352         gdb_bfd_stash_filename.
4353         * jit.c (bfd_open_from_target_memory): Don't copy the filename.
4354         * gdb_bfd.c (gdb_bfd_stash_filename): New function.
4355         * gdb_bfd.h (gdb_bfd_stash_filename): Declare.
4356         * gcore.c (create_gcore_bfd): Call gdb_bfd_stash_filename.
4357         * exec.c (exec_close): Don't free the BFD's filename.
4358         (exec_file_attach): Don't copy the filename.  Call
4359         gdb_bfd_stash_filename.
4360         * corelow.c (core_close): Don't free the BFD's filename.
4361         (core_open): Call gdb_bfd_stash_filename.
4362         * corefile.c (reopen_exec_file): Remove #if 0 code.
4363         * solib.c (solib_bfd_fopen): Call gdb_bfd_stash_filename.  Free
4364         pathname.
4365         * dwarf2read.c (try_open_dwo_file): Call gdb_bfd_stash_filename.
4366
4367 2012-07-18  Tom Tromey  <tromey@redhat.com>
4368
4369         * dwarf2read.c (try_open_dwo_file): Use gdb_bfd_ref and
4370         gdb_bfd_unref.
4371         (free_dwo_file): Use gdb_bfd_unref.
4372         * cli/cli-dump.c: Include gdb_bfd.h.
4373         (bfd_openw_with_cleanup): Use gdb_bfd_ref.
4374         (bfd_openr_with_cleanup): Likewise.
4375         * windows-nat.c (windows_make_so): Use gdb_bfd_ref,
4376         gdb_bfd_unref.
4377         * utils.c: Include gdb_bfd.h.
4378         (do_bfd_close_cleanup): Use gdb_bfd_unref.
4379         * symfile.c: Include gdb_bfd.h.
4380         (separate_debug_file_exists): Use gdb_bfd_unref.
4381         (bfd_open_maybe_remote): Use gdb_bfd_ref.
4382         (symfile_bfd_open): Use gdb_bfd_ref, gdb_bfd_unref.
4383         (generic_load): Use gdb_bfd_ref.
4384         (reread_symbols): Use gdb_bfd_unref.
4385         * symfile-mem.c: Include gdb_bfd.h.
4386         (symbol_file_add_from_memory): Use make_cleanup_bfd_close.
4387         * spu-linux-nat.c (spu_bfd_open): Use gdb_bfd_ref, gdb_bfd_unref.
4388         * solib.c: Include gdb_bfd.h.
4389         (solib_bfd_fopen): Use gdb_bfd_ref.
4390         (solib_bfd_open): Use gdb_bfd_unref.
4391         (free_so_symbols): Use gdb_bfd_unref.
4392         (reload_shared_libraries_1): Use gdb_bfd_unref.
4393         * solib-spu.c: Include gdb_bfd.h.
4394         (spu_bfd_fopen): Use gdb_bfd_ref, gdb_bfd_unref.
4395         * solib-pa64.c (pa64_solib_create_inferior_hook): Use gdb_bfd_ref,
4396         gdb_bfd_unref.
4397         * solib-frv.c: Include gdb_bfd.h.
4398         (enable_break2): Use gdb_bfd_unref.
4399         * solib-dsbt.c: Include gdb_bfd.h.
4400         (enable_break2): Use gdb_bfd_unref.
4401         * solib-darwin.c: Include gdb_bfd.h.
4402         (darwin_solib_get_all_image_info_addr_at_init): Use gdb_bfd_ref,
4403         gdb_bfd_unref.
4404         (darwin_bfd_open): Use gdb_bfd_unref.
4405         * rs6000-nat.c (add_vmap): Use gdb_bfd_ref, gdb_bfd_unref.
4406         * remote-mips.c: Include gdb_bfd.h.
4407         (mips_load_srec): Use gdb_bfd_ref.
4408         (pmon_load_fast): Use gdb_bfd_ref.
4409         * remote-m32r-sdi.c: Include gdb_bfd.h.
4410         (m32r_load): Use gdb_bfd_ref.
4411         * record.c: Include gdb_bfd.h.
4412         (record_save_cleanups): Use gdb_bfd_unref.
4413         (cmd_record_save): Use gdb_bfd_unref.
4414         * procfs.c (insert_dbx_link_bpt_in_file): Use gdb_bfd_ref,
4415         gdb_bfd_unref.
4416         * objfiles.h (gdb_bfd_close_or_warn): Remove.
4417         (gdb_bfd_ref, gdb_bfd_unref): Move to gdb_bfd.h.
4418         * objfiles.c: Include gdb_bfd.h.
4419         (free_objfile): Use gdb_bfd_unref.
4420         (gdb_bfd_close_or_warn, gdb_bfd_ref, gdb_bfd_unref): Move to
4421         gdb_bfd.c.
4422         * machoread.c (macho_add_oso_symfile): Use gdb_bfd_unref.
4423         (macho_symfile_read_all_oso): Use gdb_bfd_ref, gdb_bfd_unref.
4424         (macho_check_dsym): Likewise.
4425         * m32r-rom.c: Include gdb_bfd.h.
4426         (m32r_load): Use gdb_bfd_ref.
4427         (m32r_upload_command): Use gdb_bfd_ref.
4428         * jit.c: Include gdb_bfd.h.
4429         (jit_bfd_try_read_symtab): Use gdb_bfd_ref, gdb_bfd_unref.
4430         * gdb_bfd.h: New file.
4431         * gdb_bfd.c: New file.
4432         * gcore.c: Include gdb_bfd.h.
4433         (create_gcore_bfd): Use gdb_bfd_ref.
4434         (do_bfd_delete_cleanup): Use gdb_bfd_unref.
4435         (gcore_command): Use gdb_bfd_unref.
4436         * exec.c: Include gdb_bfd.h.
4437         (exec_close): Use gdb_bfd_unref.
4438         (exec_close_1): Use gdb_bfd_unref.
4439         (exec_file_attach): Use gdb_bfd_ref.
4440         * elfread.c: Include gdb_bfd.h.
4441         (build_id_verify): Use gdb_bfd_unref.
4442         * dsrec.c: Include gdb_bfd.h.
4443         (load_srec): Use gdb_bfd_ref.
4444         * corelow.c: Include gdb_bfd.h.
4445         (core_close): Use gdb_bfd_unref.
4446         (core_open): Use gdb_bfd_ref.
4447         * bfd-target.c: Include gdb_bfd.h.
4448         (target_bfd_xclose): Use gdb_bfd_unref.
4449         (target_bfd_reopen): Use gdb_bfd_ref.
4450         * Makefile.in (SFILES): Add gdb_bfd.c.
4451         (HFILES_NO_SRCDIR): Add gdb_bfd.h.
4452         (COMMON_OBS): Add gdb_bfd.o.
4453
4454 2012-07-18  Keith Seitz  <keiths@redhat.com>
4455
4456         * breakpoint.c (find_condition_and_thread): Initialize
4457         TASK and REST.
4458         (create_breakpiont): find_condition_and_thread will now
4459         initialize COND_STRING, THREAD, and REST (and TASK).
4460         (addr_string_to_sals): Likewise.
4461
4462 2012-07-18  Pedro Alves  <palves@redhat.com>
4463
4464         * infrun.c (handle_inferior_event) <TARGET_WAITKIND_NO_HISTORY>:
4465         Pull the single step breakpoints out of the target.
4466
4467 2012-07-18  Sergio Durigan Junior  <sergiodj@redhat.com>
4468
4469         * probe.c (probe_safe_evaluate_at_pc): Rename variable `n_probes'.
4470         * stap-probe.c (compile_probe_arg): Likewise.
4471
4472 2012-07-18  Sergio Durigan Junior  <sergiodj@redhat.com>
4473
4474         * elfread.c (elf_get_probe_argument_count): Remove `objfile' argument.
4475         (elf_compile_to_ax): Likewise.
4476         * infrun.c (insert_exception_resume_from_probe): Likewise.
4477         (check_exception_resume): Remove `objfile' variable.
4478         * probe.c (find_probe_by_pc): Remove `objfile' argument.
4479         (struct probe_and_objfile, probe_and_objfile_s): Delete.
4480         (collect_probes): Adjust return value to `VEC (probe_p) *'.
4481         (compare_entries): Rename to...
4482         (compare_probes): ...this.  Adjust function to work with
4483         `struct probe *'.  Rename variables `ea' and `eb' to `pa' and `pb'
4484         respectively.
4485         (gen_ui_out_table_header_info): Adjust `probes' argument to be
4486         `VEC (probe_p) *'.
4487         (print_ui_out_info): Adjust argument to be `struct probe *'.
4488         (info_probes_for_ops): Adjust internal computations to use
4489         `VEC (probe_p) *'.
4490         (probe_safe_evaluate_at_pc): Refactor to not pass `objfile' anymore.
4491         * probe.h (struct probe_ops) <get_probe_argument_count, compile_to_ax,
4492         gen_info_probes_table_values>: Remove `objfile' argument.
4493         (struct probe) <objfile>: New field.
4494         (find_probe_by_pc): Remove `objfile' argument.
4495         * stap-probe.c (stap_parse_probe_arguments): Likewise.
4496         (stap_get_probe_argument_count): Likewise.
4497         (stap_get_arg): Likewise.
4498         (stap_evaluate_probe_argument): Likewise.
4499         (stap_compile_to_ax): Likewise.
4500         (compile_probe_arg): Refactor not to pass `objfile' anymore.
4501         (handle_stap_probe): Fill `objfile' field from `struct probe'.
4502         (stap_gen_info_probes_table_header): Remove `objfile' argument.
4503         * symfile.h (struct sym_probe_fns) <sym_evaluate_probe_argument,
4504         sym_compile_to_ax>: Likewise.
4505
4506 2012-07-18  Terry Guo  <terry.guo@arm.com>
4507
4508         PR 14329
4509         * defs.h (GDB_MI_MSG_WIDTH): New.
4510         * ser_base (ser_base_read_error_fd): New function.
4511         (do_ser_base_readchar): Poll error file descriptor as well as
4512         standard output.
4513         (generic_readchar): Refactor error handling.
4514
4515 2012-07-18  Joel Brobecker  <brobecker@adacore.com>
4516
4517         * NEWS: Create a new section for the next release branch.
4518         Rename the section of the current branch, now that it has
4519         been cut.
4520
4521 2012-07-18  Joel Brobecker  <brobecker@adacore.com>
4522
4523         GDB 7.5 branch created (branch timestamp: 2012-07-18 03:22 UTC)
4524         * version.in: Bump version to 7.5.50.20120718-cvs.
4525
4526 2012-07-17  Keith Seitz  <keiths@redhat.com>
4527
4528         * linespec.c (linespec_parse_line_offset): Make parameter
4529         const.
4530
4531 2012-07-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
4532
4533         PR 11914
4534         * f-valprint.c (info_common_command): New variable frame_id.
4535         Reinitialize FI form FRAME_ID after each print_variable_and_value.
4536         * printcmd.c (print_variable_and_value): Extend function comment.
4537         Add comment for invalidated FRAME.
4538         * stack.c (backtrace_command_1): New variable frame_id.  Reinitialize
4539         FI form FRAME_ID after each print_frame_local_vars.
4540         (struct print_variable_and_value_data): Change frame to frame_id.
4541         (do_print_variable_and_value): New variable frame, initialize it from
4542         p->frame_id.  Add comment for invalidated FRAME.
4543         (print_frame_local_vars, print_frame_arg_vars): New function comment.
4544         Update CB_DATA.FRAME to CB_DATA.FRAME_ID initialization.  Add comment
4545         for invalidated FRAME.
4546
4547 2012-07-16  Marc Khouzam  <marc.khouzam@ericsson.com>
4548             Pedro Alves  <palves@redhat.com>
4549
4550         * linux-nat.c (linux_nat_detach): Don't unregister from the event
4551         loop.
4552
4553 2012-07-16  Tom Tromey  <tromey@redhat.com>
4554
4555         * jv-typeprint.c (c_type_print_varspec_suffix): Don't declare.
4556
4557 2012-07-15  Doug Evans  <dje@google.com>
4558
4559         * dwarf2read.c (stmt_list_hash): New struct.
4560         (type_unit_group): Embed "per_cu" member, remove pointer.
4561         New union member "t", move member "tus" into it, all uses updated.
4562         New member "hash", replaces member "line_offset, all uses updated.
4563         (quick_file_names): Replace member "offset" with "hash", all uses
4564         updated.
4565         (hash_stmt_list_entry, eq_stmt_list_entry): New functions.
4566         (hash_file_name_entry, eq_file_name_entry): Call them.
4567         (hash_type_unit_group, eq_type_unit_group): Ditto.
4568         (dw2_get_cu, dw2_get_primary_cu): Replace assert with a better one.
4569         (dw2_get_file_names_reader): Fix file name table calculation for TUs.
4570         (dw2_get_file_names): Update.
4571         (create_type_unit_group): Replace "per_cu" arg with "cu".
4572         All callers updated.  Fix "quick" (.gdb_index) handling.
4573         (get_type_unit_group): Replace "per_cu" arg with "cu".
4574         All callers updated.
4575         (build_type_unit_groups): Don't reset tu_stats.
4576
4577         * symtab.c (filename_seen_cache): Delete members "tab_alloc_size",
4578         "tab_cur_size".  Change member "tab" to be a htab_t.
4579         (create_filename_seen_cache): Update.
4580         (clear_filename_seen_cache, delete_filename_seen_cache): Update.
4581         (filename_seen): Update.
4582
4583 2012-07-13  Doug Evans  <dje@google.com>
4584
4585         * symtab.c (filename_seen): Update comment.
4586
4587 2012-07-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
4588             Doug Evans  <dje@google.com>
4589
4590         * buildsym.c (end_symtab_1): Split it to ...
4591         (end_symtab_get_static_block): ... this ...
4592         (end_symtab_from_static_block): ... and this function.
4593         (end_symtab, end_expandable_symtab): Call them.
4594         * buildsym.h (end_symtab_get_static_block)
4595         (end_symtab_from_static_block): New declarations.
4596         * dwarf2read.c (process_full_comp_unit): New variable static_block.
4597         Set its valid CU ranges.
4598
4599 2012-07-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
4600
4601         * dwarf2loc.c (disassemble_dwarf_expression): Handle
4602         DW_OP_GNU_parameter_ref.
4603
4604 2012-07-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
4605
4606         * dwarf2read.c (read_call_site_scope): Do not gdb_assert for invalid
4607         read-in CALL_SITE_PARAMETER_PARAM_OFFSET.
4608
4609 2012-07-13  Doug Evans  <dje@google.com>
4610
4611         * symtab.c (output_source_filename): Delete unnecessary forward decl.
4612         (filename_seen_cache): New struct.
4613         (INITIAL_FILENAME_SEEN_CACHE_SIZE): New macro.
4614         (create_filename_seen_cache): New function.
4615         (clear_filename_seen_cache, delete_filename_seen_cache): New functions.
4616         (filename_seen): Delete arg "first".  New arg "cache".  All callers
4617         updated.
4618         (output_source_filename_data): New struct.
4619         (output_source_filename): Delete arg "first".  New arg "data".
4620         All callers updated.
4621         (sources_info): Delete local "first".  New locals "data", "cleanups".
4622         Rewrite to use filename_seen_cache.
4623         (add_partial_filename_data): Delete member "first".  New member
4624         "filename_seen_cache".  All uses updated.
4625         (make_source_files_completion_list): Rewrite to use
4626         filename_seen_cache.
4627
4628 2012-07-12  Doug Evans  <dje@google.com>
4629
4630         * psymtab.c (map_symbol_filenames_psymtab): Skip shared psymtabs.
4631
4632 2012-07-10  Doug Evans  <dje@google.com>
4633
4634         PR gdb/13498
4635         * dwarf2read.c (dwarf2_per_objfile): New members n_type_unit_groups,
4636         all_type_unit_groups, type_unit_groups, tu_stats.
4637         (dwarf2_per_cu_data): Move "imported_symtabs" into new union "s".
4638         All uses updated.  Add type_unit_group to union "s".
4639         (type_unit_group): New struct.
4640         (IS_TYPE_UNIT_GROUP): New macro.
4641         (abbrev_table): Delete unused member "section".
4642         (dw2_do_instantiate_symtab): Early exit if type_unit_group.
4643         (dw2_get_cu): Assert not used with type_unit_group.
4644         (dw2_get_primary_cu): New function.
4645         (dw2_build_type_unit_groups_reader): New function.
4646         (dw2_build_type_unit_groups): New function.
4647         (dw2_get_file_names): Assert not called on type units.
4648         (dw2_map_symtabs_matching_filename): Call dw2_build_type_unit_groups.
4649         Redo loop to iterate over type unit groups instead of type units.
4650         (dw2_expand_symtabs_matching, dw2_map_symbol_filenames): Ditto.
4651         (read_abbrev_offset): New function.
4652         (init_cutu_and_read_dies): New arg "abbrev_table".  All callers
4653         updated.
4654         (create_partial_symtab): New function.
4655         (process_psymtab_comp_unit_reader): Assert not used with type units.
4656         Call create_partial_symtab.
4657         (process_psymtab_type_unit): Delete.
4658         (hash_type_unit_group, eq_type_unit_group): New functions.
4659         (allocate_type_unit_groups_table): New function.
4660         (NO_STMT_LIST_TYPE_UNIT_PSYMTAB): New macro.
4661         (NO_STMT_LIST_TYPE_UNIT_PSYMTAB_SIZE): New macro.
4662         (create_type_unit_group, get_type_unit_group): New functions.
4663         (tu_abbrev_offset): New struct.
4664         (sort_tu_by_abbrev_offset): New function.
4665         (add_type_unit_group_to_table): New function.
4666         (build_type_unit_groups): New function.
4667         (build_type_psymtabs_reader): New function.
4668         (build_type_psymtab_dependencies): New function.
4669         (build_type_psymtabs): Rewrite.
4670         (scan_partial_symbols): Flag an error if a DW_TAG_imported_unit
4671         is seen in a type unit.
4672         (process_queue): Move symtab expansion debugging printfs here.
4673         Call process_full_type_unit for type units.
4674         (compute_symtab_includes): Assert not called for type units.
4675         (process_cu_includes): Don't call compute_symtab_includes for
4676         type units.
4677         (process_full_type_unit): New function.
4678         (process_imported_unit_die): Flag an error if called for type units.
4679         (handle_DW_AT_stmt_list): Delete arg "want_line_info".  All callers
4680         updated.  Assert not called for type units.
4681         (read_file_scope): Call dwarf2_start_symtab.
4682         (setup_type_unit_groups): New function.
4683         (read_type_unit_scope): Rewrite.
4684         (abbrev_table_read_table): Initialize abbrev_table->offset.
4685         (abbrev_table_free_cleanup): New function.
4686         (dwarf2_start_symtab): New function.
4687         (load_full_type_unit): Assert not called for type unit groups.
4688         * buildsym.c (finish_block_internal): New arg "expandable".
4689         All callers updated.
4690         (start_symtab): Move most contents to ...
4691         (restart_symtab): ... here.  New function.
4692         (reset_symtab_globals): New function.
4693         (end_symtab_1): Renamed from end_symtab.  New arg "expandable".
4694         Call reset_symtab_globals.
4695         (end_symtab, end_expandable_symtab): New functions.
4696         (set_missing_symtab, augment_type_symtab): New functions.
4697         * buildsym.h (end_expandable_symtab): Declare.
4698         (augment_type_symtab, restart_symtab): Declare.
4699         * psympriv.h (struct partial_symtab): New member "anonymous".
4700         * psymtab.c (partial_map_symtabs_matching_filename): Ignore
4701         anonymous psymtabs.
4702         (read_psymtabs_with_filename): Ditto.
4703         (map_symbol_filenames_psymtab, psymtab_to_fullname): Ditto.
4704         (expand_symtabs_matching_via_partial): Ditto.
4705         (dump_psymtab): Update.
4706         * dictionary.c (dict_add_pending): New function.
4707         * dictionary.h (dict_add_pending): Declare.
4708
4709 2012-07-09  Doug Evans  <dje@google.com>
4710
4711         * buildsym.c (start_subfile): Remove unnecessary check for
4712         name == NULL.
4713
4714         * psymtab.c (allocate_psymtab): Use host_address_to_string.
4715
4716         * dwarf2read.c (load_full_type_unit): Simplify.
4717
4718         * dwarf2read.c (dwarf2_per_objfile): Change type of all_type_units
4719         to struct signatured_type **.  All uses updated.
4720
4721         * dwarf2read.c (dwarf2_attr_no_follow): Delete unused arg "cu".
4722         All callers updated.
4723
4724 2012-07-09  Tom Tromey  <tromey@redhat.com>
4725
4726         * c-exp.y (check_parameter_typelist): New function.
4727         (parameter_typelist): Call it.
4728         * eval.c (make_params): Handle '(void)' case.
4729         * gdbtypes.c (lookup_function_type_with_arguments): Handle
4730         '(void)' case.
4731
4732 2012-07-07  Jan Kratochvil  <jan.kratochvil@redhat.com>
4733
4734         * common/linux-ptrace.c: Include gdb_assert.h.
4735         <__i386__> (linux_ptrace_test_ret_to_nx_instr): New declaration.
4736         <__i386__>: Include sys/reg.h, sys/mman.h, signal.h, sys/wait.h and
4737         stdint.h.
4738         (linux_ptrace_test_ret_to_nx, linux_ptrace_init_warnings): New
4739         functions.
4740         * common/linux-ptrace.h (linux_ptrace_init_warnings): New declarations.
4741         * linux-nat.c (linux_child_post_attach)
4742         (linux_child_post_startup_inferior): Call linux_ptrace_init_warnings.
4743
4744 2012-07-07  Jan Kratochvil  <jan.kratochvil@redhat.com>
4745
4746         * linux-thread-db.c (thread_db_find_new_threads_silently): Do not apply
4747         nptl <2.7 bug workaround for core files.
4748
4749 2012-07-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
4750
4751         * linux-nat.c (resume_lwp, linux_nat_resume): Remove LP->SIGINFO
4752         clearing.
4753         (save_siginfo): Remove.
4754         (stop_wait_callback, linux_nat_filter_event): Remove the save_siginfo
4755         call.
4756         (resume_stopped_resumed_lwps): Remove LP->SIGINFO clearing.
4757         (linux_nat_get_siginfo): Use PTRACE_GETSIGINFO.
4758         * linux-nat.h (struct lwp_info): Remove field siginfo.
4759
4760 2012-07-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
4761
4762         Code cleanup for the next patch.
4763         * arm-linux-nat.c (arm_linux_stopped_data_address): Change variable
4764         siginfo_p to siginfo, update its users incl. the linux_nat_get_siginfo
4765         call for it.
4766         * ia64-linux-nat.c (ia64_linux_stopped_data_address): Likewise.
4767         (ia64_linux_stopped_data_address):
4768         * linux-nat.c (linux_nat_get_siginfo): Add parameter siginfo, change
4769         the return value.
4770         * linux-nat.h (linux_nat_get_siginfo): Likewise.
4771         * ppc-linux-nat.c (ppc_linux_stopped_data_address): Change variable
4772         siginfo_p to siginfo, update its users incl. the linux_nat_get_siginfo
4773         call for it.
4774
4775 2012-07-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
4776
4777         PR 14321
4778         * findcmd.c (parse_find_args): New variable pattern_buf_size_need.
4779         Increase buffer sizes to 2x we need, not just 2x of the previous size.
4780
4781 2012-07-06  Tom Tromey  <tromey@redhat.com>
4782
4783         * c-exp.y (DOTDOTDOT): New token.
4784         (func_mod, exp): Use parameter_typelist.
4785         (parameter_typelist): New production.
4786         (tokentab3): Add "..." token.
4787         * eval.c (make_params): Handle varargs.
4788         * gdbtypes.c (lookup_function_type_with_arguments): Handle
4789         varargs.
4790
4791 2012-07-06  Tom Tromey  <tromey@redhat.com>
4792
4793         PR exp/9608:
4794         * c-exp.y (%union) <tvec>: Change type.
4795         (func_mod): Now uses <tvec> type.
4796         (exp): Update for tvec change.
4797         (direct_abs_decl): Push the typelist.
4798         (func_mod): Return a typelist.
4799         (nonempty_typelist): Update for tvec change.
4800         * gdbtypes.c (lookup_function_type_with_arguments): New function.
4801         * gdbtypes.h (lookup_function_type_with_arguments): Declare.
4802         * parse.c (pop_type_list): New function.
4803         (push_typelist): New function.
4804         (follow_types): Handle tp_function_with_arguments.
4805         * parser-defs.h (type_ptr): New typedef.  Define a VEC.
4806         (enum type_pieces) <tp_function_with_arguments>: New constant.
4807         (union type_stack_elt) <typelist_val>: New field.
4808         (push_typelist): Declare.
4809
4810 2012-07-06  Tom Tromey  <tromey@redhat.com>
4811
4812         * c-exp.y (%union) <type_stack>: New field.
4813         (abs_decl, direct_abs_decl): Use <type_stack> type.  Update.
4814         (ptr_operator_ts): New production.
4815         (ptype): Update.
4816         * parse.c (type_stack_reserve): New function.
4817         (check_type_stack_depth): Use it.
4818         (pop_type_stack, append_type_stack, push_type_stack)
4819         (get_type_stack, type_stack_cleanup): New functions.
4820         (follow_types): Handle tp_type_stack.
4821         (_initialize_parse): Simplify initialization.
4822         * parser-defs.h (enum type_pieces) <tp_type_stack>: New
4823         constant.
4824         (union type_stack_elt) <stack_val>: New field.
4825         (get_type_stack, append_type_stack, push_type_stack)
4826         (type_stack_cleanup): Declare.
4827
4828 2012-07-06  Tom Tromey  <tromey@redhat.com>
4829
4830         * parser-defs.h (type_stack, type_stack_size, type_stack_depth):
4831         Remove.
4832         (struct type_stack): New.
4833         * parse.c (type_stack, type_stack_size, type_stack_depth):
4834         Remove.
4835         (type_stack): New global.
4836         (parse_exp_in_context, check_type_stack_depth)
4837         (insert_into_type_stack, insert_type, push_type, push_type_int)
4838         (insert_type_address_space, pop_type, pop_type_int)
4839         (_initialize_parse): Update.
4840
4841 2012-07-06  Tom Tromey  <tromey@redhat.com>
4842
4843         * c-exp.y (func_mod, direct_abs_decl, abs_decl, ptr_operator):
4844         Remove %type.
4845
4846 2012-07-06  Siddhesh Poyarekar  <siddhesh@redhat.com>
4847
4848         * c-lang.c (c_printstr): Remove ununsed variable WIDTH.
4849
4850 2012-07-06  Siddhesh Poyarekar  <siddhesh@redhat.com>
4851             Jan Kratochvil  <jan.kratochvil@redhat.com>
4852
4853         * cp-valprint.c (cp_print_value): Replace potentially unsafe
4854         alloca with xmalloc/xfree.
4855
4856 2012-07-06  Siddhesh Poyarekar  <siddhesh@redhat.com>
4857
4858         * MAINTAINERS (Write After Approval): Add myself to the list.
4859
4860 2012-07-05  Doug Evans  <dje@google.com>
4861
4862         * dwarf2read.c (dw2_expand_symtabs_matching): Fix typo.
4863
4864 2012-07-05  Hui Zhu  <hui_zhu@mentor.com>
4865
4866         * ax-gdb.c (cli/cli-utils.h): New include.
4867         (linespec.h): Ditto.
4868         (agent_eval_command_one): New function.
4869         (agent_command_1): Ditto.
4870         (agent_command): Call function agent_command_1.
4871         (agent_eval_command): Ditto.
4872         (_initialize_ax_gdb): Change help for "maint agent"
4873         and "maint agent-eval".
4874
4875 2012-07-05  Hui Zhu  <hui_zhu@mentor.com>
4876
4877         * breakpoint.c (check_for_argument): Move to file cli/cli-utils.c.
4878         * cli/cli-utils.c (check_for_argument): New function.
4879         * cli/cli-utils.h (check_for_argument): Ditto.
4880
4881 2012-07-04  H.J. Lu  <hongjiu.lu@intel.com>
4882
4883         * NEWS: Mention x32 ABI support.
4884
4885 2012-07-04  H.J. Lu  <hongjiu.lu@intel.com>
4886
4887         * amd64-tdep.c (amd64_x32_init_abi): Set sp_regnum_from_eax to
4888         AMD64_RSP_REGNUM and pc_regnum_from_eax to AMD64_RIP_REGNUM.
4889
4890         * i386-tdep.c (i386_gdbarch_init): Initialize sp_regnum_from_eax
4891         and pc_regnum_from_eax to -1.  Update SP regnum from
4892         sp_regnum_from_eax and PC regnum from pc_regnum_from_eax if
4893         needed.
4894
4895         * i386-tdep.h (gdbarch_tdep): Add sp_regnum_from_eax and
4896         pc_regnum_from_eax.
4897
4898 2012-07-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
4899
4900         Fix 'warning: parameter has incomplete type' with gcc-3.4.6.
4901         * dwarf2expr.h: Include gdbtypes.h.
4902         (enum call_site_parameter_kind, union call_site_parameter_u): Remove
4903         these forward declarations.
4904         (cu_offset, sect_offset): Move these ...
4905         * gdbtypes.h: Remove include dwarf2expr.h.
4906         (cu_offset, sect_offset): ... here.
4907
4908 2012-07-03  H.J. Lu  <hongjiu.lu@intel.com>
4909
4910         * amd64-linux-tdep.c (linux_sigtramp_code): Renamed to ...
4911         (amd64_linux_sigtramp_code): This.
4912         (amd64_x32_linux_sigtramp_code): New.
4913         (LINUX_SIGTRAMP_LEN): Updated.
4914         (amd64_linux_sigtramp_start): Check x32 sigtramp.
4915
4916 2012-07-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
4917
4918         * linux-thread-db.c (thread_db_new_objfile): Fix comment typos.
4919
4920 2012-07-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
4921
4922         * config.in: Regenerate.
4923         * configure: Regenerate.
4924         * configure.ac: Remove check for gnu/libc-version.h.
4925         * linux-thread-db.c <HAVE_GNU_LIBC_VERSION_H>: Remove include of
4926         gnu/libc-version.h.
4927         (enable_thread_event_reporting) <HAVE_GNU_LIBC_VERSION_H>: Remove
4928         variables libc_version, libc_major and libc_minor.  Replace sscanf by
4929         inferior_has_bug.  Extend the comment.
4930
4931 2012-07-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
4932
4933         * linux-thread-db.c (inferior_has_bug): New function.
4934         (thread_db_find_new_threads_silently): Return boolean as checked by
4935         inferior_has_bug, describe it in the comments.
4936         (try_thread_db_load_1): Move call to thread_db_find_new_threads_silently
4937         earlier.  Abort the initialization if it returned non-zero.
4938         (thread_db_new_objfile): Exclude debug files.
4939         (thread_db_find_new_threads_2): Preinitialize ERR.  Check errors also
4940         if UNTIL_NO_NEW,
4941
4942 2012-07-02  Doug Evans  <dje@google.com>
4943
4944         * dwarf2read.c (maybe_queue_comp_unit): Move definition next to others
4945         related to queue management.
4946
4947         * dwarf2read.c (create_debug_types_hash_table): Use "debug dwarf2-read"
4948         instead of "debug dwarf2-die" in debugging printfs.
4949         (create_debug_info_hash_table_reader): Ditto.
4950         (create_debug_info_hash_table): Ditto.
4951         (init_dwo_file): Ditto.
4952         (init_cutu_and_read_dies): Add debugging printf.
4953         (init_cutu_and_read_dies_no_follow): Ditto.
4954         (process_psymtab_comp_unit_reader): Ditto.
4955
4956 2012-07-02  Stan Shebs  <stan@codesourcery.com>
4957
4958         Add target-side support for dynamic printf.
4959         * NEWS: Mention the additional style.
4960         * breakpoint.h (struct bp_target_info): New fields tcommands, persist.
4961         (struct bp_location): New field cmd_bytecode.
4962         * breakpoint.c: Include format.h.
4963         (disconnected_dprintf): New global.
4964         (parse_cmd_to_aexpr): New function.
4965         (build_target_command_list): New function.
4966         (insert_bp_location): Call it.
4967         (remove_breakpoints_pid): Skip dprintf breakpoints.
4968         (print_one_breakpoint_location): Ditto.
4969         (dprintf_style_agent): New global.
4970         (dprintf_style_enums): Add dprintf_style_agent.
4971         (update_dprintf_command_list): Add agent case.
4972         (agent_printf_command): New function.
4973         (_initialize_breakpoint): Add new commands.
4974         * common/ax.def (printf): New bytecode.
4975         * ax.h (ax_string): Declare.
4976         * ax-gdb.h (gen_printf): Declare.
4977         * ax-gdb.c: Include cli-utils.h, format.h.
4978         (gen_printf): New function.
4979         (maint_agent_print_command): New function.
4980         (_initialize_ax_gdb): Add maint agent-printf command.
4981         * ax-general.c (ax_string): New function.
4982         (ax_print): Add printf disassembly.
4983         * Makefile.in (SFILES): Add format.c
4984         (COMMON_OBS): Add format.o.
4985         * common/format.h: New file.
4986         * common/format.c: New file.
4987         * printcmd.c: Include format.h.
4988         (ui_printf): Call parse_format_string.
4989         * remote.c (remote_state): New field breakpoint_commands.
4990         (PACKET_BreakpointCommands): New enum.
4991         (remote_breakpoint_commands_feature): New function.
4992         (remote_protocol_features): Add new BreakpointCommands entry.
4993         (remote_can_run_breakpoint_commands): New function.
4994         (remote_add_target_side_commands): New function.
4995         (remote_insert_breakpoint): Call it.
4996         (remote_insert_hw_breakpoint): Ditto.
4997         (_initialize_remote): Add new packet configuration for
4998         target-side breakpoint commands.
4999         * target.h (struct target_ops): New field
5000         to_can_run_breakpoint_commands.
5001         (target_can_run_breakpoint_commands): New macro.
5002         * target.c (update_current_target): Handle
5003         to_can_run_breakpoint_commands.
5004
5005 2012-07-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
5006
5007         Execute -ix and -iex only after system and user gdbinit files.
5008         * main.c (captured_main): Move CMDARG_INIT_FILE and CMDARG_INIT_COMMAND
5009         processing down after gdbinit files.
5010
5011 2012-07-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
5012
5013         Add fnmatch-gnu module.
5014         * gnulib/Makefile.in (aclocal_m4_deps): Add new files and remove one.
5015         * gnulib/configure.ac (AC_INIT): Use now import/memmem.c.
5016         * gnulib/aclocal.m4: Regenerate.
5017         * gnulib/config.in: Regenerate.
5018         * gnulib/configure: Regenerate.
5019         * gnulib/import/dummy.c: Remove.
5020         * gnulib/import/Makefile.am: Regenerate.
5021         * gnulib/import/Makefile.in: Likewise.
5022         * gnulib/import/m4/gnulib-cache.m4: Likewise.
5023         * gnulib/import/m4/gnulib-comp.m4: Likewise.
5024         * gnulib/import/alloca.c: New file.
5025         * gnulib/import/alloca.in.h: Likewise.
5026         * gnulib/import/config.charset: Likewise.
5027         * gnulib/import/fnmatch.c: Likewise.
5028         * gnulib/import/fnmatch.in.h: Likewise.
5029         * gnulib/import/fnmatch_loop.c: Likewise.
5030         * gnulib/import/localcharset.c: Likewise.
5031         * gnulib/import/localcharset.h: Likewise.
5032         * gnulib/import/m4/alloca.m4: Likewise.
5033         * gnulib/import/m4/codeset.m4: Likewise.
5034         * gnulib/import/m4/configmake.m4: Likewise.
5035         * gnulib/import/m4/fcntl-o.m4: Likewise.
5036         * gnulib/import/m4/fnmatch.m4: Likewise.
5037         * gnulib/import/m4/glibc21.m4: Likewise.
5038         * gnulib/import/m4/localcharset.m4: Likewise.
5039         * gnulib/import/m4/locale-fr.m4: Likewise.
5040         * gnulib/import/m4/locale-ja.m4: Likewise.
5041         * gnulib/import/m4/locale-zh.m4: Likewise.
5042         * gnulib/import/m4/mbrtowc.m4: Likewise.
5043         * gnulib/import/m4/mbsinit.m4: Likewise.
5044         * gnulib/import/m4/mbsrtowcs.m4: Likewise.
5045         * gnulib/import/m4/mbstate_t.m4: Likewise.
5046         * gnulib/import/m4/stdbool.m4: Likewise.
5047         * gnulib/import/m4/wchar_h.m4: Likewise.
5048         * gnulib/import/m4/wctype_h.m4: Likewise.
5049         * gnulib/import/m4/wint_t.m4: Likewise.
5050         * gnulib/import/mbrtowc.c: Likewise.
5051         * gnulib/import/mbsinit.c: Likewise.
5052         * gnulib/import/mbsrtowcs-impl.h: Likewise.
5053         * gnulib/import/mbsrtowcs-state.c: Likewise.
5054         * gnulib/import/mbsrtowcs.c: Likewise.
5055         * gnulib/import/ref-add.sin: Likewise.
5056         * gnulib/import/ref-del.sin: Likewise.
5057         * gnulib/import/stdbool.in.h: Likewise.
5058         * gnulib/import/streq.h: Likewise.
5059         * gnulib/import/strnlen1.c: Likewise.
5060         * gnulib/import/strnlen1.h: Likewise.
5061         * gnulib/import/verify.h: Likewise.
5062         * gnulib/import/wchar.in.h: Likewise.
5063         * gnulib/import/wctype.in.h: Likewise.
5064
5065 2012-07-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
5066
5067         Support shell wildcards for 'set auto-load safe-path'.
5068         * auto-load.c: Include fnmatch.h.
5069         (filename_is_in_dir): Rename to ...
5070         (filename_is_in_pattern_1, filename_is_in_pattern): ... here and split
5071         it.  Update function comment.  Rename dir_len to pattern_len.  New
5072         variables filename_len, pattern and filename.  Add more DEBUG_AUTO_LOAD
5073         messages.  Use gdb_filename_fnmatch.
5074         (filename_is_in_auto_load_safe_path_vec): Rename variable dir to
5075         pattern.
5076         (_initialize_auto_load): Extend the "set auto-load safe-path" help text.
5077         * defs.h (gdb_filename_fnmatch): New declaration.
5078         * utils.c: Include fnmatch.h.
5079         (gdb_filename_fnmatch): New function.
5080
5081 2012-07-02  Sergio Durigan Junior  <sergiodj@redhat.com>
5082
5083         * breakpoint.c (BREAK_ARGS_HELP): Include help message for the new
5084         `-probe' and `-probe-stap' options.
5085
5086 2012-07-01  Yao Qi  <yao@codesourcery.com>
5087
5088         * breakpoint.c: Removed always_inserted_auto, always_inserted_on,
5089         always_inserted_off, and always_inserted_enums.
5090         Change always_inserted_mode's type to 'enum auto_boolean'.
5091         (show_always_inserted_mode, breakpoint_always_inserted_mode): Update
5092         callers.
5093         (_initialize_breakpoint): Call add_setshow_auto_boolean_cmd instead
5094         of add_setshow_enum_cmd.
5095         * infrun.c: Remove can_use_displaced_stepping_auto,
5096         can_use_displaced_stepping_on, can_use_displaced_stepping_off, and
5097         can_use_displaced_stepping_enum.
5098         Change can_use_displaced_stepping's type to 'enum auto_boolean'.
5099         (show_can_use_displaced_stepping, use_displaced_stepping): Update
5100         callers.
5101         (_initialize_infrun): Call add_setshow_auto_boolean_cmd instead of
5102         add_setshow_enum_cmd.
5103
5104 2012-06-30  Doug Evans  <dje@google.com>
5105
5106         * dwarf2read.c (signatured_type): Make "per_cu" member first.
5107         (init_cutu_and_read_dies): Handle rereading a DWO CU while it's
5108         currently being read.  Propagate DW_AT_comp_dir to DWO DIE.
5109
5110 2012-06-29  Doug Evans  <dje@google.com>
5111
5112         * linespec.c: #include "stack.h".
5113         (decode_line_with_current_source): Moved here from symtab.c and
5114         renamed from decode_line_spec.  All callers updated.
5115         (decode_line_with_last_displayed): Moved here from breakpoint.c and
5116         renamed from decode_line_spec_1.  All callers updated.
5117         * linespec.h (decode_line_with_current_source): Move declaration here
5118         from symtab.h and renamed from decode_line_spec.
5119         (decode_line_with_last_displayed): Move declaration here from symtab.h
5120         and renamed from decode_line_spec_1.
5121         * macrocmd.c: #include "linespec.h".
5122         * symtab.c: Remove #include "linespec.h".
5123
5124 2012-06-28  Doug Evans  <dje@google.com>
5125
5126         * dwarf2read.c (get_cu_length): New function.
5127         (offset_in_cu_p, error_check_comp_unit_head): Call it.
5128         (create_debug_types_hash_table): Ditto.
5129         (init_cutu_and_read_dies): Ditto.
5130         (init_cutu_and_read_dies_no_follow): Ditto.
5131
5132         * dwarf2read.c (dwarf2_find_base_address): Move definition.
5133
5134         * dwarf2read.c (ABBREV_HASH_SIZE): Remove enclosing #ifndef/#endif.
5135         (struct abbrev_table): Define.
5136         (dwarf2_cu): Replace members dwarf2_abbrevs, abbrev_obstack with
5137         abbrev_table.
5138         (init_cutu_and_read_dies): Update.
5139         (abbrev_table_alloc_abbrev): New function.  Replaces
5140         dwarf_alloc_abbrev.  All callers updated.
5141         (abbrev_table_add_abbrev): New function.
5142         (abbrev_table_lookup_abbrev): New function.  Replaces
5143         dwarf2_lookup_abbrev.  All callers updated.
5144         (abbrev_table_read_table): New function.  Contents moved here from
5145         dwarf2_read_abbrevs.
5146         (dwarf2_read_abbrevs): Call it.
5147         (abbrev_table_free): New function.
5148         (dwarf2_free_abbrev_table): Call it.
5149
5150 2012-06-28  Stan Shebs  <stan@codesourcery.com>
5151
5152         * osdata.c (info_osdata_command): Filter out "Title" columns
5153         from non-MI uses.
5154         * common/linux-osdata.c (struct osdata_type): Add title field.
5155         (osdata_table): Add titles to each entry.
5156         (linux_command_xfer_osdata): Add a column for title data.
5157
5158 2012-06-28  Stan Shebs  <stan@codesourcery.com>
5159
5160         Make logging work for MI.
5161         * NEWS: Mention it.
5162         * interps.h (interp_set_logging_ftype): New typedef.
5163         (struct interp_procs): New field set_logging_proc.
5164         (current_interp_set_logging): Declare.
5165         * interps.c (current_interp_set_logging): New function.
5166         * cli/cli-logging.c: Include interps.h.
5167         (set_logging_redirect): Call current_interp_set_logging.
5168         (pop_output_files): Ditto.
5169         (handle_redirections): Ditto, plus skip ui-out redirect if MI.
5170         * mi/mi-console.h (mi_console_set_raw): Declare.
5171         * mi/mi-console.c (mi_console_set_raw): New function.
5172         * mi/mi-interp.c (saved_raw_stdout): New global.
5173         (mi_set_logging): New function.
5174         (_initialize_mi_interp): Add it to interp procs.
5175
5176 2012-06-28  Doug Evans  <dje@google.com>
5177
5178         * symtab.c (lookup_symbol_aux_objfile): Use
5179         ALL_OBJFILE_PRIMARY_SYMTABS.
5180
5181         * gdbtypes.c (lookup_typename): Rename local variable "tmp" to "type".
5182
5183 2012-06-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
5184
5185         * common/buffer.c: Include inttypes.h and stdint.h.
5186         (buffer_xml_printf): Use PRId64, PRIu64, PRIx64 and PRIo64.
5187
5188 2012-06-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
5189             Pedro Alves  <palves@redhat.com>
5190
5191         * gdbthread.h (ALL_THREADS): New macro.
5192         (thread_list): Declare.
5193         * infrun.c (handle_inferior_event) <spurious signal>: Don't keep
5194         going, but instead fall through to the stepping handling.
5195         * linux-nat.c (resume_lwp): New parameter 'signo'.  Resume with
5196         the passed in signal.  Adjust debug output.
5197         (resume_callback): Rename to ...
5198         (linux_nat_resume_callback): ... this.  Pass the thread's last
5199         stop signal, if in "pass" state.
5200         (linux_nat_resume): Adjust to rename.
5201         (stop_wait_callback): New assertion.  Don't respawn signals;
5202         instead let the LWP remain with SIGNALLED set.
5203         (linux_nat_wait_1): Remove flushing of pending SIGSTOPs.
5204         * remote.c (append_pending_thread_resumptions): New.
5205         (remote_vcont_resume): Call it.
5206         * target.h (target_resume): Extend comment.
5207
5208 2012-06-28  Iain Sandoe  <iain@codesourcery.com>
5209
5210         * auxv.c (fprint_target_auxv): Handle extended cache data tags.
5211
5212 2012-06-27  Doug Evans  <dje@google.com>
5213
5214         * dwarf2read.c (dwarf2_cu): Add ranges_base.
5215         Delete have_addr_base, unused.  All uses updated.
5216         (init_cutu_and_read_dies): Process DW_AT_GNU_ranges_base.
5217         (dwarf2_get_pc_bounds): Add ranges_base.
5218         (dwarf2_record_block_ranges): Ditto.
5219
5220 2012-06-27  Tom Tromey  <tromey@redhat.com>
5221
5222         PR macros/7961:
5223         * varobj.c (varobj_create): Update.
5224         (varobj_set_value): Update.
5225         * tracepoint.c (validate_actionline): Update.
5226         (encode_actions_1): Update.
5227         * parse.c (parse_exp_1): Add 'pc' argument.
5228         (parse_exp_in_context): Add 'pc' argument.  Change how
5229         expression_context_pc is set.
5230         (parse_expression): Update.
5231         (parse_field_expression): Update.
5232         * expression.h (parse_exp_1): Update.
5233         * eval.c (parse_to_comma_and_eval): Update.
5234         * breakpoint.c (set_breakpoint_condition): Update.
5235         (update_watchpoint): Update.
5236         (init_breakpoint_sal): Update
5237         (find_condition_and_thread): Update.
5238         (watch_command_1): Update.
5239         (update_breakpoint_locations): Update.
5240         * ada-lang.c (ada_read_renaming_var_value): Update.
5241         (create_excep_cond_exprs): Update.
5242
5243 2012-06-27  Doug Evans  <dje@google.com>
5244
5245         * dwarf2read.c (per_cu_header_read_in): Simplify, and handle
5246         type units.
5247
5248 2012-06-26  Doug Evans  <dje@google.com>
5249
5250         * dwarf2read.c (read_and_check_comp_unit_head): Delete unnecessary
5251         prototype.
5252         (error_check_comp_unit_head): New arg abbrev_section.  All callers
5253         updated.
5254         (read_and_check_comp_unit_head): Ditto.
5255         (read_and_check_type_unit_head): Ditto.
5256
5257 2012-06-26  Siva Chandra Reddy  <sivachandra@google.com>
5258
5259         New attribute 'last' for gdb.Symtab_and_line.
5260         * NEWS (Python Scripting): Add entry about the new attribute.
5261         * python/py-symtab.c (salpy_get_last): New function which
5262         implements the get method for the 'last' attribute of
5263         gdb.Symtab_and_line.
5264         (sal_object_getset): Add entry for the 'last' attribute.
5265
5266 2012-06-26  Doug Evans  <dje@google.com>
5267
5268         * dwarf2read.c (dwo_section_names): Add macinfo_dwo, macro_dwo.
5269         (dwo_sections): Add macinfo, macro.
5270         (dwarf2_locate_dwo_sections): Watch for macro sections.
5271         (dwarf_decode_macros): Remove args lh, abfd, section, section_name.
5272         All callers updated.  Handle DWO files.
5273
5274         * NEWS: Mention new options "set debug dwarf2-read" and
5275         "set debug symtab-create".
5276         * dwarf2read.c (dwarf2_read_debug): New static global.
5277         (dwarf2_build_psymtabs_hard): Add debugging printfs.
5278         (process_queue): Ditto.
5279         (process_full_comp_unit): Ditto.
5280         (_initialize_dwarf2_read): Add new option "set debug dwarf2-read".
5281         * elfread.c (elf_symfile_read): Add debugging printf.
5282         * minsyms.c (install_minimal_symbols): Ditto.
5283         * psymtab.c (allocate_psymtab): Ditto.
5284         * symfile.c (allocate_symtab): Ditto.
5285         * symtab.c (symtab_create_debug): New global.
5286         (_initialize_symtab): Add new option "set debug symtab-create".
5287         * symtab.h (symtab_create_debug): Declare.
5288
5289         * dwarf2read.c (lookup_dwo_comp_unit): Enhance comment.
5290         (lookup_dwo_type_unit): Ditto.
5291
5292 2012-06-26  Roland McGrath  <roland@hack.frob.com>
5293             H.J. Lu  <hongjiu.lu@intel.com>
5294
5295         * amd64-linux-nat.c: Include <sys/user.h>.
5296         (ps_get_thread_area): Use PTRACE_PEEKUSER to get fs_base/gs_base
5297         if HAVE_STRUCT_USER_REGS_STRUCT_FS_BASE or
5298         HAVE_STRUCT_USER_REGS_STRUCT_GS_BASE is defined.
5299
5300         * configure.ac: Check if the fs_base and gs_base members of
5301         `struct user_regs_struct' exist.
5302         * config.in: Regenerated.
5303         * configure: Likewise.
5304
5305 2012-06-25  Michael Eager  <eager@eagercon.com>
5306
5307         PR python/14291
5308         * python/python.c (gdbpy_write): Check for interrupted output.
5309
5310 2012-06-25  Greta Yorsh  <greta.yorsh@arm.com>
5311
5312         * arm-tdep.c (arm_in_function_epilogue_p): Recognize POP with a single
5313         register as a stack alignment in ARM mode.
5314
5315 2012-06-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
5316
5317         Update gnulib to GIT commit a39f53ccb70a613e647e1019fb4c63645220267e.
5318         * gnulib/config.in: Regenerate.
5319         * gnulib/configure: Likewise.
5320         * gnulib/import/m4/extensions.m4: Update it.
5321         * gnulib/import/m4/gnulib-common.m4: Likewise.
5322         * gnulib/import/m4/memmem.m4: Likewise.
5323         * gnulib/import/m4/mmap-anon.m4: Likewise.
5324         * gnulib/import/m4/multiarch.m4: Likewise.
5325         * gnulib/import/stdint.in.h: Likewise.
5326
5327 2012-06-24  Yao Qi  <yao@codesourcery.com>
5328
5329         * corefile.c (write_memory_with_notification): New.
5330         * gdbcore.h: Declare write_memory_with_notification.
5331         * ada-lang.c (ada_value_assign): Replace 'write_memory' and
5332         'observer_notify_memory_changed' with 'write_memory_with_notification'.
5333         * valops.c (value_assign): Likewise.
5334         * python/py-inferior.c (infpy_write_memory): Call
5335         'write_memory_with_notification'.
5336
5337 2012-06-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
5338
5339         * cc-with-index.sh: Use also -ex "set auto-load no".
5340
5341 2012-06-23  Doug Evans  <dje@google.com>
5342
5343         PR 14125
5344         * NEWS: Document additions to .gdb_index.
5345         * dwarf2read.c: #include "gdb/gdb-index.h".
5346         (DW2_GDB_INDEX_SYMBOL_STATIC_SET_VALUE): New macro.
5347         (DW2_GDB_INDEX_SYMBOL_KIND_SET_VALUE): New macro.
5348         (DW2_GDB_INDEX_CU_SET_VALUE): New macro.
5349         (dwarf2_read_index): Recognize version 7.
5350         (dw2_do_expand_symtabs_matching): New args want_specific_block,
5351         block_kind, domain): All callers updated.
5352         (dw2_find_symbol_file): Handle new index CU values.
5353         (dw2_expand_symtabs_matching): Match symbol kind if requested.
5354         (add_index_entry): New args is_static, kind.  All callers updated.
5355         (offset_type_compare, uniquify_cu_indices): New functions
5356         (symbol_kind): New function.
5357         (write_psymtabs_to_index): Remove duplicate CU values.
5358         (write_psymtabs_to_index): Write .gdb_index version 7.
5359
5360 2012-06-22  Joel Brobecker  <brobecker@adacore.com>
5361
5362         * configure.ac (build_warnings): Add -Wdeclaration-after-statement.
5363         * configure: Regenerate.
5364
5365 2012-06-20  Yao Qi  <yao@codesourcery.com>
5366
5367         * python/py-inferior.c: Update comments of infpy_read_memory
5368         and infpy_write_memory.
5369
5370 2012-06-19  Tom Tromey  <tromey@redhat.com>
5371
5372         PR exp/9514:
5373         * parser-defs.h (insert_type, insert_type_address_space): Declare.
5374         (push_type_address_space): Remove.
5375         * parse.c (insert_into_type_stack): New function.
5376         (insert_type): Likewise.
5377         (insert_type_address_space): Rename from push_type_address_space.
5378         Insert tp_space_identifier.
5379         * c-exp.y (ptr_operator): New production.
5380         (abs_decl): Use ptr_operator.
5381         (space_identifier): Call insert_type_address_space.
5382         (ptype): Don't use const_or_volatile_or_space_identifier.
5383         (const_or_volatile_noopt): Call insert_type.
5384         (conversion_type_id, conversion_declarator): New productions.
5385         (operator): Use conversion_type_id.
5386
5387 2012-06-18  Doug Evans  <dje@google.com>
5388
5389         * symtab.h (minimal_symbol): New member created_by_gdb.
5390         * elfread.c (elf_symtab_read): Set created_by_gdb for @plt minsym
5391         created by gdb.
5392         * symtab.c (lookup_symbol_in_objfile_from_linkage_name): New function.
5393         (search_symbols): Call it instead of lookup_symbol.
5394         Skip symbols created by gdb.  Only scan minsyms if nfiles == 0.
5395
5396         * dwarf2expr.c (execute_stack_op): Handle DW_OP_GNU_const_index.
5397         Adjust address for DW_OP_GNU_addr_index.
5398         * dwarf2expr.h (dwarf_expr_context): Update comment.
5399         * dwarf2loc.c (locexpr_describe_location_piece): New arg per_cu,
5400         all callers updated.  Handle TLS vars described with
5401         DW_OP_GNU_const_index.
5402         (disassemble_dwarf_expression): Handle DW_OP_GNU_addr_index
5403         and DW_OP_GNU_const_index.
5404         * dwarf2read.c (decode_locdesc): Handle DW_OP_GNU_addr_index.
5405
5406         * block.c (find_block_in_blockvector): Make explicit the fact that we
5407         ignore GLOBAL_BLOCK.
5408
5409 2012-06-18  Tom Tromey  <tromey@redhat.com>
5410
5411         * c-exp.y (operator): Remove trailing space after "delete" and
5412         "delete[]".
5413
5414 2012-06-18  Mark Kettenis  <kettenis@gnu.org>
5415             Jan Kratochvil  <jan.kratochvil@redhat.com>
5416
5417         Switch i386 and derived targets to ON_STACK.
5418         * amd64-dicos-tdep.c (amd64_dicos_push_dummy_code): Remove.
5419         (amd64_dicos_init_abi): Remove its installment.
5420         * dicos-tdep.c (dicos_init_abi): Remove the
5421         set_gdbarch_call_dummy_location call.  Update the comment here.
5422         * i386-dicos-tdep.c (i386_dicos_push_dummy_code): Remove.
5423         (i386_dicos_init_abi): Remove its installment.
5424         * i386-tdep.c (i386_push_dummy_code): New function.
5425         (i386_gdbarch_init): Call set_gdbarch_call_dummy_location, install
5426         i386_push_dummy_code.
5427
5428 2012-06-18  Jan Kratochvil  <jan.kratochvil@redhat.com>
5429
5430         Remove stale dummy frames.
5431         * breakpoint.c: Include dummy-frame.h.
5432         (longjmp_breakpoint_ops): New variable.
5433         (update_breakpoints_after_exec, breakpoint_init_inferior): Delete also
5434         bp_longjmp_call_dummy.
5435         (bpstat_what, bptype_string, print_one_breakpoint_location)
5436         (init_bp_location): Support bp_longjmp_call_dummy.
5437         (set_longjmp_breakpoint): Use longjmp_breakpoint_ops.  Comment why.
5438         (set_longjmp_breakpoint_for_call_dummy)
5439         (check_longjmp_breakpoint_for_call_dummy, longjmp_bkpt_dtor): New
5440         functions.
5441         (initialize_breakpoint_ops): Initialize longjmp_breakpoint_ops.
5442         * breakpoint.h (enum bptype): New item bp_longjmp_call_dummy.  Delete
5443         FIXME comment and extend the other comment for bp_call_dummy.
5444         (set_longjmp_breakpoint_for_call_dummy)
5445         (check_longjmp_breakpoint_for_call_dummy): New declarations.
5446         * dummy-frame.c: Include gdbthread.h.
5447         (pop_dummy_frame_bpt): New function.
5448         (pop_dummy_frame): Call pop_dummy_frame_bpt.
5449         (dummy_frame_discard): New function.
5450         (cleanup_dummy_frames): Update the comment about longjmps.
5451         * dummy-frame.h (dummy_frame_discard): New declaration.
5452         * gdbthread.h (struct thread_info): Extend initiating_frame comment.
5453         * infcall.c (call_function_by_hand): New variable longjmp_b.  Call
5454         set_longjmp_breakpoint_for_call_dummy.  Chain its breakpoints with BPT.
5455         * infrun.c (handle_inferior_event) <BPSTAT_WHAT_CLEAR_LONGJMP_RESUME>:
5456         Add case 4 comment.  Call check_longjmp_breakpoint_for_call_dummy and
5457         keep_going if IS_LONGJMP and there is no other reason to stop.
5458
5459 2012-06-18  Greta Yorsh  <Greta.Yorsh@arm.com>
5460
5461         * remote-sim.c (sim_command_completer): Initialize
5462         variable 'result'.
5463
5464 2012-06-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
5465
5466         * dwarf2expr.c (execute_stack_op): Support DW_OP_GNU_parameter_ref.
5467         * dwarf2loc.c (call_site_parameter_matches): Support
5468         CALL_SITE_PARAMETER_PARAM_OFFSET.
5469         (needs_dwarf_reg_entry_value): Push stub value.
5470         * dwarf2read.c (read_call_site_scope): New variable origin.  Support
5471         CALL_SITE_PARAMETER_PARAM_OFFSET and its DW_AT_abstract_origin.
5472         * gdbtypes.h (enum call_site_parameter_kind): New item
5473         CALL_SITE_PARAMETER_PARAM_OFFSET.
5474         (struct call_site.parameter.u): New field param_offset.
5475
5476 2012-06-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
5477
5478         Code cleanup: Generalize call_site.parameter key.
5479         * dwarf2expr.c (execute_stack_op) <DW_OP_GNU_entry_value>: Remove
5480         variable dwarf_reg.  New variable kind_u.  Update parameters to
5481         push_dwarf_reg_entry_value.
5482         (ctx_no_push_dwarf_reg_entry_value): Update parameters.
5483         * dwarf2expr.h (enum call_site_parameter_kind)
5484         (union call_site_parameter_u): Forward declarations.
5485         (struct dwarf_expr_context_funcs): Update parameters and their
5486         description for push_dwarf_reg_entry_value.
5487         (ctx_no_push_dwarf_reg_entry_value): Update parameters.
5488         * dwarf2loc.c (call_site_parameter_matches): New function.
5489         (dwarf_expr_reg_to_entry_parameter): Update parameters and their
5490         description.  Use call_site_parameter_matches.
5491         (dwarf_expr_push_dwarf_reg_entry_value, value_of_dwarf_reg_entry):
5492         Update parameters and their description.
5493         (value_of_dwarf_block_entry): Remove variables dwarf_reg and fb_offset.
5494         New variable kind_u.  Adjust the caller for updated parameters.
5495         (needs_dwarf_reg_entry_value): Update parameters.
5496         * dwarf2read.c (read_call_site_scope): New variable loc.  Use it
5497         instead of attr.  Update for the changed fields of struct
5498         call_site_parameter.
5499         * gdbtypes.h: Include dwarf2expr.h.
5500         (enum call_site_parameter_kind): New.
5501         (struct call_site.parameter): New field kind.  Wrap dwarf_reg and
5502         fb_offset into new union u.
5503
5504 2012-06-16  H.J. Lu  <hongjiu.lu@intel.com>
5505
5506         * amd64-tdep.c (amd64_x32_analyze_stack_align): New function.
5507         (amd64_analyze_prologue): Call amd64_x32_analyze_stack_align
5508         for x32.
5509
5510 2012-06-16  H.J. Lu  <hongjiu.lu@intel.com>
5511
5512         * amd64-linux-nat.c (compat_x32_clock_t): New.
5513         (compat_x32_siginfo_t): Likewise.
5514         (compat_x32_siginfo_from_siginfo): Likewise.
5515         (siginfo_from_compat_x32_siginfo): Likewise.
5516         (amd64_linux_siginfo_fixup): Call compat_x32_siginfo_from_siginfo
5517         and siginfo_from_compat_x32_siginfo for x32.
5518
5519 2012-06-15  Hui Zhu  <hui_zhu@mentor.com>
5520
5521         * tracepoint.c (tfile_xfer_partial): Add a lseek.
5522
5523 2012-06-15  H.J. Lu  <hongjiu.lu@intel.com>
5524
5525         * amd64-linux-nat.c (ps_get_thread_area): Check bits_per_word
5526         instead of gdbarch_ptr_bit.
5527         * amd64-nat.c (amd64_native_gregset_reg_offset): Likewise.
5528         (amd64_supply_native_gregset): Likewise.
5529         (amd64_collect_native_gregset): Likewise.
5530         * amd64-tdep.c (amd64_supply_fxsave): Likewise.
5531         (amd64_supply_xsave): Likewise.
5532         (amd64_collect_fxsave): Likewise.
5533         (amd64_collect_xsave): Likewise.
5534
5535 2012-06-15  H.J. Lu  <hongjiu.lu@intel.com>
5536
5537         * amd64-linux-nat.c (AMD64_LINUX_X32_DS): New.
5538         (amd64_linux_read_description): Check DS segment register for
5539         x32 process.
5540
5541 2012-06-15  Tom Tromey  <tromey@redhat.com>
5542
5543         * dwarf2read.c (dw2_find_symbol_file): Unconditionally use
5544         init_cutu_and_read_dies.
5545
5546 2012-06-15  Iain Sandoe <iain@codesourcery.com>
5547
5548         * MAINTAINERS (Write After Approval): Add myself to the list.
5549
5550 2012-06-15  Tom Tromey  <tromey@redhat.com>
5551
5552         * valops.c (value_find_oload_method_list): Now static.
5553         * value.h (value_find_oload_method_list): Don't declare.
5554
5555 2012-06-15  Tom Tromey  <tromey@redhat.com>
5556
5557         * valops.c (find_overload_match): Use value_ind.
5558
5559 2012-06-15  Maciej W. Rozycki  <macro@codesourcery.com>
5560
5561         * infrun.c (handle_inferior_event): Correct indentation.
5562
5563 2012-06-14  Doug Evans  <dje@google.com>
5564
5565         * dwarf2loc.c (debug_loc_kind): Add DEBUG_LOC_START_LENGTH.
5566         (DEBUG_LOC_START_END): Renamed from DEBUG_LOC_NORMAL.
5567         All uses updated.
5568         (decode_debug_loc_dwo_addresses): New arg "byte_order".  All callers
5569         updated.  Handle DEBUG_LOC_START_LENGTH.
5570         (dwarf2_find_location_expression): Handle DEBUG_LOC_START_LENGTH.
5571         (loclist_describe_location): Ditto.
5572
5573 2012-06-14  Maciej W. Rozycki  <macro@codesourcery.com>
5574
5575         PR backtrace/13866
5576         * infrun.c (handle_inferior_event): Re-fetch frame and gdbarch
5577         after hiding inline functions.
5578
5579 2012-06-13  Joel Brobecker  <brobecker@adacore.com>
5580
5581         * inf-ttrace.c (_initialize_hppa_hpux_nat): Rename into
5582         _initialize_inf_ttrace.
5583
5584 2012-06-13  Joel Brobecker  <brobecker@adacore.com>
5585
5586         * ia64-hpux-nat.c (_initialize_ia64_hpux_nat): Renames
5587         _initialize_hppa_hpux_nat.
5588
5589 2012-06-13  Joel Brobecker  <brobecker@adacore.com>
5590
5591         * remote-sim.c (sim_command_completer): Change type of return
5592         value to "VEC (char_ptr) *".  Adjust implementation accordingly.
5593
5594 2012-06-13  Mark Kettenis  <kettenis@gnu.org>
5595             Jan Kratochvil  <jan.kratochvil@redhat.com>
5596
5597         PR tdep/14222
5598         * i386-tdep.c (i386_push_dummy_call): Unconditionally align the
5599         stack on a 16-byte boundary.
5600
5601 2012-06-13  Kaushik Srenevasan  <kaushik@twitter.com>
5602
5603         * jit.c (finalize_symtab): Set function's return type to 'void' by
5604         default.
5605
5606 2012-06-13  Mark Kettenis  <kettenis@gnu.org>
5607             H.J. Lu  <hongjiu.lu@intel.com>
5608
5609         * amd64-linux-tdep.c (amd64_linux_init_abi_common): New function.
5610         Move bits common to both the classic LP64 and the new x32 ILP32
5611         ABI here.
5612         (amd64_linux_init_abi): Call amd64_linux_init_abi_common.
5613         (amd64_x32_linux_init_abi): New function.
5614         (_initialize_amd64_linux_tdep): Register osabi for bfd_mach_x64_32
5615         subtype.
5616
5617         * i386-tdep.h (i386_pseudo_register_name): New prototype.
5618         * i386-tdep.c (i386_pseudo_register_name): Make public.
5619         * amd64-tdep.h (amd64_x32_init_abi): New prototype.
5620         * amd64-tdep.c (amd64_dword_names): Add "eip".
5621         (amd64_x32_pseudo_register_type): New function
5622         (amd64_x32_init_abi): New function.
5623
5624 2012-06-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
5625
5626         PR build/14003
5627         * inferior.h (struct inferior_suspend_state): Comment out.
5628         (struct inferior): Comment out the field suspend.
5629         * infrun.c (struct infcall_suspend_state): Comment out the field
5630         inferior_suspend.
5631         (save_infcall_suspend_state, restore_infcall_suspend_state): Comment
5632         out its assignment.
5633
5634 2012-06-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
5635
5636         PR c++/14177 - Fix parsing TYPENAME:: in parentheses.
5637         * c-exp.y (classify_inner_name): Remove caller assumptions in the
5638         function comment.  Return ERROR for unresolved cases.  Implement
5639         returning proper NAME.
5640         (yylex): Accept also NAME from classify_inner_name.
5641         * cp-namespace.c (cp_lookup_nested_type): Rename to ...
5642         (cp_lookup_nested_symbol): ... here.  Return any found symbol, not just
5643         LOC_TYPEDEF type.
5644         * cp-support.h (cp_lookup_nested_type): Update its declaration.
5645
5646 2012-06-13  Tom Tromey  <tromey@redhat.com>
5647
5648         * breakpoint.c (condition_completer): New function.
5649         (_initialize_breakpoint): Use it.
5650         * value.c (complete_internalvar): New function.
5651         * value.h (complete_internalvar): Declare.
5652
5653 2012-06-13  Tom Tromey  <tromey@redhat.com>
5654
5655         * ada-lang.c (ada_make_symbol_completion_list): Return a VEC.
5656         * breakpoint.c (catch_syscall_completer): Return a VEC.
5657         * cli/cli-cmds.c (complete_command): Update.
5658         * cli/cli-decode.c (complete_on_cmdlist): Return a VEC.
5659         (complete_on_enum): Likewise.
5660         * command.h: Include gdb_vecs.h.
5661         (completer_ftype): Change return type.
5662         (complete_on_cmdlist, complete_on_enum): Likewise.
5663         * completer.c (noop_completer, filename_completer)
5664         (location_completer): Return a VEC.
5665         (add_struct_fields): Remove 'nextp' argument.  Change 'output'
5666         to a VEC.
5667         (expression_completer, complete_line_internal, complete_line)
5668         (command_completer): Return a VEC.
5669         (gdb_completion_word_break_characters, line_completion_function):
5670         Update.
5671         * completer.h: Include gdb_vecs.h.
5672         (complete_line, noop_completer, filename_completer)
5673         (expression_completer, location_completer, command_completer):
5674         Update.
5675         * f-lang.c (f_word_break_characters): Return a VEC.
5676         * interps.c (interpreter_completer): Return a VEC.
5677         * language.h (struct language_defn)
5678         <la_make_symbol_completion_list>: Return a VEC.
5679         * python/py-cmd.c (cmdpy_completer): Return a VEC.
5680         * symtab.c (free_completion_list): Take a VEC.
5681         (return_val_size, return_val_index): Remove.
5682         (return_val): Now a VEC.
5683         (completion_list_add_name): Update.
5684         (default_make_symbol_completion_list_break_on)
5685         (default_make_symbol_completion_list, make_symbol_completion_list)
5686         (make_symbol_completion_list_fn, make_file_symbol_completion_list):
5687         Return a VEC.
5688         (add_filename_to_list): Update.
5689         (struct add_partial_filename_data) <list_used, list_alloced>: Remove.
5690         <list>: Now a VEC.
5691         (maybe_add_partial_symtab_filename): Update.
5692         (make_source_files_completion_list): Return a VEC.
5693         * symtab.h (default_make_symbol_completion_list_break_on)
5694         (default_make_symbol_completion_list, make_symbol_completion_list)
5695         (make_symbol_completion_list_fn, make_file_symbol_completion_list)
5696         (make_source_files_completion_list): Update.
5697
5698 2012-06-13  Tom Tromey  <tromey@redhat.com>
5699
5700         * breakpoint.c (add_catch_command): Use completer_ftype.
5701         * breakpoint.h: Include command.h.
5702         (add_catch_command): Use completer_ftype.
5703         * cli/cli-decode.c (set_cmd_completer): Use completer_ftype.
5704         * cli/cli-decode.h (struct cmd_list_element) <completer>:
5705         Use completer_ftype.
5706         * command.h (completer_ftype): New typedef.
5707         (set_cmd_completer): Use it.
5708         * python/py-cmd.c (struct cmdpy_completer) <completer>: Use
5709         completer_ftype.
5710
5711 2012-06-13  Pedro Alves  <palves@redhat.com>
5712
5713         Partial revert of previous change.
5714
5715         * serial.c (scb_base): New global.
5716         (serial_for_fd): New.
5717         (serial_open, serial_fdopen_ops): Link new serial in open serials
5718         chain.
5719         (do_serial_close): Unlink serial from the open serials chain.
5720
5721 2012-06-12  Pedro Alves  <palves@redhat.com>
5722
5723         * infrun.c (infrun_thread_stop_requested_callback): Don't switch
5724         threads here.
5725         (prepare_for_detach): No longer context switch here in non-stop
5726         mode.
5727         (fetch_inferior_event): Ditto.
5728         (handle_inferior_event) <STOP_QUIETLY || NO_STOP_QUIETLY>: Switch
5729         to the event thread before removing breakpoints.  Switch to the
5730         event thread before inserting breakpoints and resuming.
5731         (handle_inferior_event) <TARGET_WAITKIND_SPURIOUS>: Switch to the
5732         event thread before resuming.
5733         (handle_inferior_event) <stepping_past_singlestep_breakpoint>:
5734         Switch to the event thread before removing breakpoints.
5735
5736 2012-06-12  Eli Zaretskii  <eliz@gnu.org>
5737
5738         * infcmd.c (construct_inferior_arguments) [__MINGW32__]: Quote
5739         special characters correctly for the Windows shells.  See
5740         http://sourceware.org/ml/gdb/2012-06/msg00047.html for the bug
5741         report.
5742         [!__MINGW32__]: Remove extra double quote character from special
5743         characters.
5744
5745 2012-06-11  Stan Shebs  <stan@codesourcery.com>
5746
5747         * ui-out.h: Remove #if 0 declarations.
5748         * ui-out.c: Remove #if 0 functions.
5749
5750 2012-06-11  Pedro Alves  <palves@redhat.com>
5751
5752         * ser-base.c (run_async_handler_and_reschedule): New.
5753         (fd_event, push_event): Use it.
5754         * serial.c (serial_open, serial_fdopen_ops): Set the initial
5755         reference count to 1.
5756         (do_serial_close): Set the bufp field to NULL.  Use serial_unref
5757         instead of xfree.
5758         (serial_is_open, serial_ref, serial_unref): New.
5759         * serial.h (serial_open): Adjust comment.
5760         (serial_is_open): Declare.
5761         (serial_close): Adjust comment.
5762         (serial_ref, serial_unref) Declare.
5763         (struct serial): New field 'refcnt'.
5764
5765 2012-06-11  Pedro Alves  <palves@redhat.com>
5766
5767         Remove #if 0'd "connect" command, and unnecessary associated
5768         refcounting and serial reuse bits.
5769
5770         * serial.h (struct serial): Remove fields 'next' and 'refcnt'.
5771         * serial.c (last_serial_opened): Delete.
5772         (scb_base): Delete.
5773         (serial_open): Adjust.
5774         (serial_for_fd): Delete.
5775         (serial_fdopen_ops, do_serial_close): Adjust.
5776         (serial_fdopen_ops): Adjust.
5777
5778 2012-06-11  Pedro Alves  <palves@redhat.com>
5779
5780         * serial.c (do_serial_close): Remove early return when SCB is
5781         null.
5782
5783 2012-06-11  Tom Tromey  <tromey@redhat.com>
5784
5785         * dwarf2read.c (dw2_get_file_names_reader): Ignore partial units.
5786
5787 2012-06-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
5788
5789         Fix regression by the "ambiguous linespec" series.
5790         * breakpoint.c (parse_breakpoint_sals): New variable cursal.  Use
5791         get_last_displayed_symtab and get_last_displayed_line and depending
5792         on CURSAL.
5793
5794 2012-06-11  Tom Tromey  <tromey@redhat.com>
5795
5796         * dwarf2read.c (dw2_get_primary_filename_reader): New function.
5797         (dw2_find_symbol_file): Use it.
5798
5799 2012-06-11  Michael Eager  <eager@eagercon.com>
5800
5801         * mips-linux-tdep.c (mips_gdb_signal_from_target): New
5802         * mips-linux-tdep.h (mips_signals): New
5803
5804 2012-06-11  Tom Tromey  <tromey@redhat.com>
5805
5806         * infrun.c (handle_inferior_event)
5807         <BPSTAT_WHAT_SET_LONGJMP_RESUME>: Don't delete the step-resume
5808         breakpoint.
5809         <BPSTAT_WHAT_CLEAR_LONGJMP_RESUME>: Remove longjmp logic; use
5810         exception logic in all cases.  Update comments.
5811         (insert_longjmp_resume_breakpoint): Set the exception resume
5812         breakpoint.
5813
5814 2012-06-11  Maciej W. Rozycki  <macro@codesourcery.com>
5815
5816         * mips-tdep.c (mips_push_dummy_code): Handle microMIPS code.
5817
5818 2012-06-09  Siva Chandra Reddy  <sivachandra@google.com>
5819
5820         * valarith.c (binop_types_user_defined_p): Fix a typo.
5821
5822 2012-06-08  Yao Qi  <yao@codesourcery.com>
5823             Chung-Lin Tang <cltang@codesourcery.com>
5824
5825         * arch-utils.c (default_return_in_first_hidden_param_p): New.
5826         * arch-utils.h: Declare.
5827         * gdbarch.sh: Add return_in_first_hidden_param_p.
5828         * gdbarch.c, gdbarch.h: Regenerated.
5829         * infcall.c (call_function_by_hand): Call
5830         gdbarch_return_in_first_hidden_param_p instead of
5831         language_pass_by_reference.
5832
5833         * m68k-tdep.c (m68k_return_in_first_hidden_param_p): New.
5834         (m68k_gdbarch_init): Install m68k_return_in_first_hidden_param_p.
5835         * sh-tdep.c (sh_return_in_first_hidden_param_p): New.
5836         (sh_gdbarch_init): Install sh_return_in_first_hidden_param_p.
5837         * tic6x-tdep.c (tic6x_push_dummy_call): Remove local variable
5838         `cplus_return_struct_by_reference'.
5839         (tic6x_return_value): Handle language cplusplus.
5840         (tic6x_return_in_first_hidden_param_p): New.
5841         (tic6x_gdbarch_init): Install tic6x_return_in_first_hidden_param_p.
5842
5843 2012-06-07  Doug Evans  <dje@google.com>
5844
5845         * dwarf2read.c (dwarf2_cu): Add comment.
5846
5847 2012-06-06  Maciej W. Rozycki  <macro@codesourcery.com>
5848
5849         * mips-tdep.c (mips_pseudo_register_type): Remove tdep local
5850         variable.
5851         (mips_eabi_push_dummy_call): Likewise.
5852         (mips_n32n64_push_dummy_call): Likewise.
5853         (mips_o32_push_dummy_call): Likewise.
5854         (mips_o64_push_dummy_call): Likewise.
5855
5856 2012-06-06  Maciej W. Rozycki  <macro@codesourcery.com>
5857
5858         * mips-tdep.c (mips_convert_register_p): Correct coding style.
5859
5860 2012-06-06  Maciej W. Rozycki  <macro@codesourcery.com>
5861
5862         * mips-tdep.c (mips_pseudo_register_type): Use
5863         mips_float_register_p.
5864
5865 2012-06-06  Pedro Alves  <palves@redhat.com>
5866
5867         * infrun.c (handle_inferior_event): Remove calls to
5868         reinit_frame_cache that follow a context_switch call.
5869
5870 2012-06-06  Pedro Alves  <palves@redhat.com>
5871
5872         * infrun.c (handle_inferior_event) <deferred_step_ptid>: Use
5873         context_switch and remove stale comment.
5874
5875 2012-06-06  Pedro Alves  <palves@redhat.com>
5876
5877         * infrun.c (struct execution_control_state): Remove
5878         `new_thread_event' field.
5879         (handle_inferior_event): Simplify new threads handling; don't
5880         resume the inferior if we find a new thread.
5881
5882 2012-06-06  Thomas Schwinge  <thomas@codesourcery.com>
5883
5884         * NEWS: Document the deprecation of SH's 'regs' command.
5885         * inferior.h (all_registers_info): Add function declaration.
5886         * sh-tdep.c (sh_show_regs): Remove variable.
5887         (sh_generic_show_regs, sh3_show_regs, sh2e_show_regs, sh2a_show_regs)
5888         (sh2a_nofpu_show_regs, sh3e_show_regs, sh3_dsp_show_regs)
5889         (sh4_show_regs, sh4_nofpu_show_regs, sh_dsp_show_regs)
5890         (sh_show_regs_command): Remove functions.
5891         (sh_gdbarch_init): Don't set sh_show_regs.
5892         (_initialize_sh_tdep): Make the 'regs' command an deprecated alias to
5893         'info all-registers'.
5894         * sh64-tdep.c (sh64_show_media_regs, sh64_show_compact_regs)
5895         (sh64_show_regs): Remove functions.
5896         * sh64-tdep.h (sh64_show_regs): Remove function declaration.
5897
5898 2012-06-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
5899
5900         * configure.ac: Move development=true below AC_INIT.
5901         * configure: Regenerate.
5902
5903 2012-06-05  Stan Shebs  <stan@codesourcery.com>
5904
5905         * mi/mi-interp.c (mi_interpreter_init): Set raw_stdout from
5906         gdb_stdout.
5907
5908 2012-06-05  Siddhesh Poyarekar  <siddhesh@redhat.com>
5909
5910         * corefile.c (read_memory, read_stack, write_memory): Accept LEN
5911         argument as ssize_t.
5912         * gdbcore.h (read_memory, read_stack, write_memory): Likewise.
5913         * remote.c (remote_write_bytes_aux, remote_write_bytes): Likewise.
5914         * target.c (target_read_stack, target_write_memory)
5915         (target_write_raw_memory): Likewise.
5916         * target.h (target_read_stack, target_write_memory)
5917         (target_write_raw_memory): Likewise.
5918
5919 2012-06-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
5920
5921         * symfile-mem.c: Change gdb_static_assert to ssize_t.
5922         (target_read_memory_bfd): Cast gdb_assert LEN to ssize_t.
5923         * target.c (target_read_memory): Change LEN to ssize_t.
5924         * target.h (target_read_memory): Change LEN to ssize_t.
5925
5926 2012-06-05  Pedro Alves  <palves@redhat.com>
5927
5928         PR backtrace/13866
5929
5930         * breakpoint.c (until_break_command): Only fetch the selected
5931         frame after decode_line_1.
5932
5933 2012-06-05  Joakim Tjernlund  <Joakim.Tjernlund@transmode.se>
5934
5935         * solib-svr4.c (enable_break): Don't fallback to setting the solib
5936         event breakpoint at _start, __start or main if a program
5937         interpreter is not found.
5938
5939 2012-06-05  Joel Brobecker  <brobecker@adacore.com>
5940
5941         * windows-tdep.h (windows_iterate_over_objfiles_in_search_order):
5942         Add declaration.
5943         * windows-tdep.c: #include "objfiles.h".
5944         (windows_iterate_over_objfiles_in_search_order): New function.
5945         * amd64-windows-tdep.c (amd64_windows_init_abi): Set
5946         iterate_over_objfiles_in_search_order gdbarch method to
5947         windows_iterate_over_objfiles_in_search_order.
5948         * i386-cygwin-tdep.c (i386_cygwin_init_abi): Likewise.
5949
5950 2012-06-05  Joel Brobecker  <brobecker@adacore.com>
5951
5952         * gdbarch.sh: Add generation of
5953         "iterate_over_objfiles_in_search_order_cb_ftype" typedef in
5954         gdbarch.h.  Add include of "objfiles.h" in gdbarch.c.
5955         (iterate_over_objfiles_in_search_order): New gdbarch method.
5956         * gdbarch.h, gdbarch.c: Regenerate.
5957         * objfiles.h (default_iterate_over_objfiles_in_search_order):
5958         Add declaration.
5959         * objfiles.c (default_iterate_over_objfiles_in_search_order):
5960         New function.
5961         * symtab.c (lookup_symbol_aux_objfile): New function, extracted
5962         out of lookup_symbol_aux_symtabs.
5963         (lookup_symbol_aux_symtabs): Replace extracted-out code by
5964         call to lookup_symbol_aux_objfile.
5965         (struct global_sym_lookup_data): New type.
5966         (lookup_symbol_global_iterator_cb): New function.
5967         (lookup_symbol_global): Search for symbol using
5968         gdbarch_iterate_over_objfiles_in_search_order and
5969         lookup_symbol_global_iterator_cb.
5970         * findvar.c (struct minsym_lookup_data): New type.
5971         (minsym_lookup_iterator_cb): New function.
5972         (default_read_var_value) [case LOC_UNRESOLVED]: Resolve the
5973         symbol's address via gdbarch_iterate_over_objfiles_in_search_order
5974         and minsym_lookup_iterator_cb.
5975
5976 2012-06-05  Joel Brobecker  <brobecker@adacore.com>
5977
5978         Revert the following patch:
5979         * findvar.c (default_read_var_value): For LOC_UNRESOLVED symbols,
5980         try locating the symbol in the symbol's own objfile first, before
5981         extending the search to all objfiles.
5982         * symtab.c (lookup_symbol_aux_objfile): New function, extracted
5983         out of lookup_symbol_aux_symtabs.
5984         (lookup_symbol_aux_symtabs): Add new parameter "exclude_objfile".
5985         Replace extracted-out code by call to lookup_symbol_aux_objfile.
5986         Do not search EXCLUDE_OBJFILE.
5987         (lookup_static_symbol_aux): Update call to lookup_symbol_aux_symtabs.
5988         (lookup_symbol_global): Search for matches in the block's objfile
5989         first, before searching all other objfiles.
5990
5991 2012-06-05  Joel Brobecker  <brobecker@adacore.com>
5992
5993         * breakpoint.c (find_condition_and_thread): Stop parsing
5994         as soon as the first invalid keyword is found.
5995
5996 2012-06-05  Joel Brobecker  <brobecker@adacore.com>
5997
5998         * copyright.py (EXCLUDE_LIST): Add 'gdb/CONTRIBUTE' to list.
5999
6000 2012-06-05  Joel Brobecker  <brobecker@adacore.com>
6001
6002         * config/djgpp/djcheck.sh: Add copyright header.
6003
6004 2012-06-05  Joel Brobecker  <brobecker@adacore.com>
6005
6006         * copyright.py (update_files, main): Fix path to update-copyright
6007         script.
6008
6009 2012-06-05  Joel Brobecker  <brobecker@adacore.com>
6010
6011         * copyright.py (MULTIPLE_COPYRIGHT_HEADERS): New constant.
6012         (main): Add MULTIPLE_COPYRIGHT_HEADERS to the list of files
6013         for which a reminder to update by hand is printed.
6014
6015 2012-06-04  Doug Evans  <dje@google.com>
6016
6017         * buildsym.c (make_blockvector): Add comment.
6018
6019 2012-06-04  Pedro Alves  <palves@redhat.com>
6020
6021         * arch-utils.c (default_gdb_signal_from_target): Delete.
6022         * arch-utils.h (default_gdb_signal_from_target): Delete.
6023         * corelow.c (core_open) <signal mapping>: Extended comment.  Check
6024         gdbarch_gdb_signal_from_target_p.
6025         * gdbarch.sh (gdb_signal_from_target): Make it an M method (with
6026         predicate).
6027         * gdbarch.h: Regenerate.
6028         * gdbarch.c: Regenerate.
6029
6030 2012-06-04  Pedro Alves  <palves@redhat.com>
6031
6032         * gdbarch.sh (gdb_signal_from_target): Mention that the
6033         implementation of the method must be host independent.
6034         * gdbarch.h: Regenerate.
6035
6036 2012-06-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
6037
6038         * symfile-mem.c: 3 new gdb_static_assert for target_read_memory_bfd
6039         parameters.
6040         (target_read_memory_bfd): New function.
6041         (symbol_file_add_from_memory): Use it.
6042
6043 2012-06-03  Doug Evans  <dje@google.com>
6044
6045         * symtab.c (lookup_global_symbol_from_objfile): Only scan blockvector
6046         of primary symtab.
6047         (basic_lookup_transparent_type): Ditto.
6048
6049         * objfiles.h (ALL_OBJFILE_PRIMARY_SYMTABS): New macro.
6050         (ALL_PRIMARY_SYMTABS): Use it.
6051         (ALL_PSPACE_PRIMARY_SYMTABS): Ditto.
6052         * dwarf2read.c (dw2_find_symbol_file): Ditto.
6053         * linespec.c (iterate_over_all_matching_symtabs): Ditto.
6054         * symtab.c (lookup_symbol_aux_objfile): Ditto.
6055         (basic_lookup_transparent_type): Ditto.
6056
6057 2012-06-02  Sergio Durigan Junior  <sergiodj@redhat.com>
6058
6059         * symtab.c (symbol_demangled_name): New variable `dem_name'.  Use
6060         it to optimize resolution of demangled name.
6061
6062 2012-06-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
6063
6064         * configure.ac (development): Define new variable.
6065         Call AC_CHECK_LIB for mcheck if $development.
6066         (ERROR_ON_WARNING): Enable it by default only if $development.
6067         * config.in: Regenerate.
6068         * configure: Regenerate.
6069
6070 2012-06-01  Siddhesh Poyarekar  <siddhesh@redhat.com>
6071
6072         * target.c (target_read_memory): Make LEN argument as size_t.
6073         * target.h (target_read_memory): Likewise.
6074
6075 2012-06-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
6076
6077         * tilegx-linux-tdep.c (tilegx_l): Use ULL for 64-bit values.
6078
6079 2012-05-31  Edjunior Machado  <emachado@linux.vnet.ibm.com>
6080
6081         * ppc-linux-nat.c (have_ptrace_booke_interface): Disable ptrace
6082         BookE interface for PowerPC server processors if not available
6083         in the Linux Kernel.
6084
6085 2012-05-31  Keith Seitz  <keiths@redhat.com>
6086
6087         * linespec.c (decode_objc): Add cleanup to free
6088         INFO.FILE_SYMTABS.
6089         (find_linespec_symbols): Add cleanup to free CLASSES.
6090         * symfile.c (find_separate_debug_file_by_debuglink): Add
6091         cleanup to free DEBUGLINK.
6092         * ui-out.c (clear_header_list): No need to check if
6093         HEADER_NEXT.COLHDR is NULL.
6094         Free HEADER_NEXT.COL_NAME.
6095
6096 2012-05-31  Matthew Gretton-Dann  <matthew.gretton-dann@arm.com>
6097
6098         * ada-lang.c (standard_lookup): Prevent uninitialized variable
6099         warning.
6100
6101 2012-05-30  Jeff Kenton  <jkenton@tilera.com>
6102
6103         * configure.host (gdb_host_cpu): Handle tilegx*.
6104         (gdb_host): Handle tilegx-*-linux*.
6105         * tilegx-linux-nat.c: New file.
6106         * config/tilegx/linux.mh: New file.
6107
6108 2012-05-30  Jeff Kenton  <jkenton@tilera.com>
6109
6110         * Makefile.in (ALL_TARGET_OBJS): Add tilegx-tdep.o and
6111         tilegx-linux-tdep.o.
6112         (ALLDEPFILES): Add tilegx-linux-nat.c, tilegx-tdep.c and
6113         tilegx-linux-tdep.c.
6114         * configure.tgt: Handle tilegx-*-linux*.
6115         * tilegx-tdep.h: New file.
6116         * tilegx-tdep.c: New file.
6117         * tilegx-linux-tdep.c: New file.
6118         * regformats/reg-tilegx.dat: New file.
6119
6120 2012-05-30  Edjunior Machado  <emachado@linux.vnet.ibm.com>
6121
6122         * ppc-linux-nat.c (ppc_linux_can_use_hw_breakpoint): fix
6123         accounting of hw watchpoints on ppc.
6124
6125 2012-05-30  Thiago Jung Bauermann  <thiago.bauermann@linaro.org>
6126
6127         * source.c (openp): Expand tilde in path entries.
6128
6129 2012-05-29  Doug Evans  <dje@google.com>
6130
6131         * buildsym.c (block_compar): Fix comment.
6132         (end_symtab): Fix and clarify some comments.
6133
6134         * stabsread.h (cleanup_undefined_stabs_types): Renamed from
6135         cleanup_undefined_types.
6136         * stabsread.c (cleanup_undefined_stabs_types): Ditto.
6137         All callers updated.
6138
6139 2012-05-29  Tom Tromey  <tromey@redhat.com>
6140
6141         * symfile.c (symfile_bfd_open): Don't close desc if bfd_fopen
6142         fails.
6143         * solib.c (solib_bfd_fopen): Don't close fd if bfd_fopen fails.
6144         * exec.c (exec_file_attach): Don't close scratch_chan if bfd_fopen
6145         fails.
6146         * dwarf2read.c (try_open_dwo_file): Don't close fd if bfd_fopen
6147         fails.
6148
6149 2012-05-29  Tristan Gingold  <gingold@adacore.com>
6150
6151         * solib-darwin.c (dyld_all_image_addr, dyld_all_image): Move into...
6152         (struct darwin_info): ... New struct.
6153         (solib_darwin_pspace_data): New variable.
6154         (darwin_pspace_data_cleanup): New function.
6155         (get_darwin_info): Likewise.
6156         (darwin_dyld_version_ok, darwin_load_image_infos)
6157         (darwin_solib_get_all_image_info_addr_at_init)
6158         (darwin_solib_read_all_image_info_addr): Add info argument.
6159         Adjust code.
6160         (darwin_current_sos): Use per pspace structure.
6161         (darwin_solib_create_inferior_hook): Likewise.
6162         (darwin_clear_solib): Likewise.
6163         (_initialize_darwin_solib): Initialize solib_darwin_pspace_data.
6164
6165 2012-05-28  Pedro Alves  <palves@redhat.com>
6166
6167         * infrun.c (wait_for_inferior): Move ecss and ecs locals to the
6168         block that uses them.  Clear ecss before handling each event.
6169
6170 2012-05-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
6171
6172         * solib-svr4.c (svr4_current_sos): New comment on
6173         svr4_current_sos_via_xfer_libraries fall back.
6174
6175 2012-05-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
6176
6177         * psymtab.c (lookup_symbol_aux_psymtabs): New variable stab_best.  Use
6178         it as a fallback for TYPE_IS_OPAQUE.
6179         * symfile.h (struct quick_symbol_functions): Mention TYPE_OPAQUE
6180         symbols for lookup_symbol.
6181
6182 2012-05-24  John Steele Scott  <toojays@toojays.net>
6183
6184         PR symtab/13277: Resolving opaque structures in ICC generated binaries.
6185         * dwarf2read.c (struct dwarf2_cu) <producer_is_icc>: New field.
6186         (producer_is_gxx_lt_4_6): Move the checking and caching to...
6187         (check_producer): ... this new function, which also checks for ICC
6188         and caches the result.
6189         (producer_is_icc): New function.
6190         (read_structure_type): Don't set TYPE_STUB_SUPPORTED if the
6191         producer was ICC.
6192
6193 2012-05-24  Pedro Alves  <palves@redhat.com>
6194
6195         PR gdb/7205
6196
6197         * arch-utils.c (default_gdb_signal_to_host): Rename to ...
6198         (default_gdb_signal_to_target): ... this.  Add comment.
6199         (default_gdb_signal_from_host): Rename to ...
6200         (default_gdb_signal_from_target): ... this.  Add comment.
6201         * arch-utils.h (default_gdb_signal_to_host): Rename to ...
6202         (default_gdb_signal_to_target): ... this.
6203         (default_gdb_signal_from_host): Rename to ...
6204         (default_gdb_signal_from_target): ... this.
6205         * corelow.c (core_open): Adjust to naming change.  Replace comment.
6206         * gdbarch.sh (gdb_signal_from_host): Rename to ...
6207         (gdb_signal_from_target): ... this.  Adjust to
6208         default_gdb_signal_from_host naming change.  Extend comment.
6209         (gdb_signal_to_host): Rename to ...
6210         (gdb_signal_to_target): ... this.  Adjust to
6211         default_gdb_signal_to_host naming change.
6212         * gdbarch.h, gdbarch.c: Renegerate.
6213
6214 2012-05-24  Pedro Alves  <palves@redhat.com>
6215
6216         PR gdb/7205
6217
6218         Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout.
6219
6220 2012-05-24  Pedro Alves  <palves@redhat.com>
6221
6222         PR gdb/7205
6223
6224         Replace target_signal with gdb_signal throughout.
6225
6226 2012-05-24  Pedro Alves  <palves@redhat.com>
6227
6228         PR tui/14159
6229
6230         * tui/tui-hooks.c (tui_query_hook): Pre-compute the question
6231         string, instead of reusing the va_list argument.
6232
6233 2012-05-24  Tom Tromey  <tromey@redhat.com>
6234
6235         * cp-support.h (cp_finalize_namespace, cp_initialize_namespace):
6236         Remove.
6237
6238 2012-05-23  Doug Evans  <dje@google.com>
6239
6240         * symtab.c (search_symbols): Formatting fixes.
6241         (print_symbol_info): Formatting fixes.
6242
6243         * dwarf2-frame.c (execute_cfa_program): Update to handle long long ->
6244         int64_t change to leb128 API.
6245         (read_encoded_value, decode_frame_entry_1): Ditto.
6246         * dwarf2expr.c (safe_read_uleb128, safe_read_sleb128): Ditto.
6247         (dwarf_block_to_dwarf_reg, dwarf_block_to_dwarf_reg_deref): Ditto.
6248         (dwarf_block_to_fb_offset, dwarf_block_to_sp_offset): Ditto.
6249         (execute_stack_op): Ditto.
6250         * dwarf2expr.h (gdb_read_uleb128, gdb_read_sleb128): Ditto.
6251         (safe_read_uleb128, safe_read_sleb128): Ditto.
6252         * dwarf2loc.c (decode_debug_loc_dwo_addresses): Ditto.
6253         (dwarf2_compile_expr_to_ax): Ditto.
6254         (locexpr_describe_location_piece): Ditto.
6255         (disassemble_dwarf_expression): Ditto.
6256         (locexpr_describe_location_1): Ditto.
6257
6258 2012-05-23  Stan Shebs  <stan@codesourcery.com>
6259             Kwok Cheung Yeung  <kcy@codesourcery.com>
6260
6261         * Makefile.in (SUBDIR_MI_OBS): Add mi-cmd-info.o.
6262         (SUBDIR_MI_SRCS): Add mi-cmd-info.c.
6263         (mi-cmd-info.o): New rule.
6264         * osdata.h (info_osdata_command): New declaration.
6265         * osdata.c (info_osdata_command): Change to non-static.
6266         * mi/mi-cmds.h (mi_cmd_info_os): New declaration.
6267         * mi/mi-cmds.c (mi_cmds): Add -info-os MI command.
6268         * mi/mi-cmd-info.c: New file.
6269
6270 2012-05-23  Doug Evans  <dje@google.com>
6271
6272         * symtab.c (search_symbols): Pass NULL for file_matcher to
6273         expand_symtabs_matching if there are no files to match.
6274
6275         * gdbtypes.c (lookup_typename): Simplify.
6276
6277 2012-05-23  Pedro Alves  <palves@redhat.com>
6278
6279         * arch-utils.h (default_target_signal_to_host): Delete.
6280         * arch-utils.c (default_target_signal_to_host): Delete.
6281         * gdbarch.sh (target_signal_to_host): Remove.
6282         * gdbarch.h, gdbarch.c: Regenerate.
6283
6284 2012-05-22  Doug Evans  <dje@google.com>
6285
6286         * dwarf2-frame.c (struct dwarf2_cie): Make initial_instructions, end
6287         "const gdb_byte *".
6288         (struct dwarf2_fde): Make instructions, end "const gdb_byte *".
6289         (execute_cfa_program): Update to match API of leb128 functions.
6290         (read_1_byte, read_4_bytes, read_8_bytes): Make buf parameter
6291         "const gdb_byte *".
6292         (read_unsigned_leb128, read_signed_leb128): Delete.
6293         (read_initial_length): Change type of buf argument to
6294         "const gdb_byte *".
6295         (read_encoded_value): Update to match API of leb128 functions.
6296         (decode_frame_entry): Change result to "const gdb_byte *", and
6297         similarly for "start" parameter.
6298         (decode_frame_entry_1): Ditto.  Use new leb128 reader functions.
6299         (dwarf2_build_frame_info): Change local frame_ptr to
6300         "const gdb_byte *".
6301         * dwarf2expr.c (safe_read_uleb128, safe_read_sleb128): Replaces
6302         read_uleb128, read_sleb128.  All callers updated.
6303         (safe_skip_leb128): New function.
6304         (dwarf_block_to_dwarf_reg): Update to match API of leb128 functions.
6305         Call gdb_read_uleb128, gdb_skip_leb128 instead of read_uleb128.
6306         (dwarf_block_to_dwarf_reg_deref): Update to match API of leb128
6307         functions.  Call gdb_read_uleb128, gdb_read_sleb128 instead of
6308         read_uleb128, read_sleb128.
6309         (dwarf_block_to_fb_offset, dwarf_block_to_sp_offset): Ditto.
6310         (execute_stack_op): Update to match API of leb128 functions.
6311         * dwarf2expr.h: #include "leb128.h".
6312         (read_uleb128, read_sleb128): Delete.
6313         (gdb_read_uleb128, gdb_read_sleb128, gdb_skip_leb128): New functions.
6314         (safe_read_uleb128, safe_read_sleb128, safe_skip_leb128): Declare.
6315         * dwarf2loc.c (debug_loc_kind): New enum.
6316         (decode_debug_loc_addresses): New function.
6317         (decode_debug_loc_dwo_addresses): New function.
6318         (dwarf2_find_location_expression): Rewrite.
6319         (dwarf2_compile_expr_to_ax): Update to match API of leb128 functions.
6320         (locexpr_describe_location_piece): Ditto.
6321         (disassemble_dwarf_expression): Ditto.
6322         (locexpr_describe_location_1): Ditto.
6323         (loclist_describe_location): Rewrite.
6324         * dwarf2loc.h (dwarf2_loclist_baton): New member "from_dwo".
6325         * dwarf2read.c (die_reader_specs): New member "buffer_end".
6326         (dwarf2_section_buffer_overflow_complaint): Renamed from
6327         dwarf2_macros_too_long_complaint.  All callers updated.
6328         (skip_leb128): Delete.
6329         (init_cu_die_reader): Initialize reader->buffer_end.
6330         (skip_one_die): Replace call to skip_leb128 with safe_skip_leb128.
6331         (skip_form_bytes): New arg buffer_end.  All callers updated.
6332         Replace call to skip_leb128 with gdb_skip_leb128.
6333         (skip_unknown_opcode): New arg mac_end.  All callers updated.
6334         (fill_in_loclist_baton): Initialize baton->from_dwo.
6335
6336 2012-05-22  Maciej W. Rozycki  <macro@codesourcery.com>
6337
6338         * mips-linux-nat.c (mips_linux_read_description): Use a more
6339         verbose error message.
6340
6341 2012-05-22  Maciej W. Rozycki  <macro@codesourcery.com>
6342
6343         * NEWS: Add MIPS/Linux DSP support.
6344         * mips-linux-tdep.c: Document post-2.6.12 o32 sigcontext layout.
6345         (SIGCONTEXT_DSPCTL): New macro.
6346         (SIGCONTEXT_HI1, SIGCONTEXT_LO1): Likewise.
6347         (SIGCONTEXT_HI2, SIGCONTEXT_LO2): Likewise.
6348         (SIGCONTEXT_HI3, SIGCONTEXT_LO3): Likewise.
6349         (N64_SIGCONTEXT_HI1, N64_SIGCONTEXT_HI2): Likewise.
6350         (N64_SIGCONTEXT_HI3): Likewise.
6351         (N64_SIGCONTEXT_LO1, N64_SIGCONTEXT_LO2): Likewise.
6352         (N64_SIGCONTEXT_LO3): Likewise.
6353         (N64_SIGCONTEXT_DSPCTL): Likewise.
6354         (N64_SIGCONTEXT_FPCSR): Clarify definition.
6355         (mips_linux_o32_sigframe_init): Handle DSP registers.
6356         (mips_linux_n32n64_sigframe_init): Likewise.
6357
6358 2012-05-22  Pierre Muller  <muller@ics.u-strasbg.fr>
6359
6360         * common/buffer.c (buffer_grow): ARI fix: Remove unneeded
6361         call to abort.
6362
6363 2012-05-22  Pedro Alves  <palves@redhat.com>
6364
6365         * target.h (store_waitstatus): Move declaration ...
6366         * inf-child.h (store_waitstatus): ... here.
6367         * target.c: Move inclusion of gdb_wait.h, and ...
6368         (store_waitstatus): ... this ...
6369         * inf-child.c: ... here.
6370         * linux-nat.c: Include inf-child.h.
6371         * rs6000-nat.c: Include inf-child.h.
6372         * spu-linux-nat.c: Include inf-child.h.
6373
6374 2012-05-22  Pierre Muller  <muller@ics.u-strasbg.fr>
6375
6376         * tracepoint.c (start_tracing): Add missing i18n markup.
6377         (stop_tracing, set_trace_user): Ditto.
6378         (set_trace_notes, set_trace_stop_notes): Ditto.
6379
6380 2012-05-21  Tom Tromey  <tromey@redhat.com>
6381
6382         PR c++/7173:
6383         * gnu-v3-abi.c (gnuv3_baseclass_offset): Return early for Java
6384         types.
6385         * value.h (value_cast_pointers): Update.
6386         * valops.c (value_cast_pointers): Add 'subclass_check' argument.
6387         (value_cast): Update.
6388         (update_search_result): New function.
6389         (do_search_struct_field): New, from search_struct_field.  Check
6390         for ambiguous results.
6391         (search_struct_field): Rewrite.
6392         * infcall.c (value_arg_coerce): Update.
6393         * eval.c (evaluate_subexp_standard) <STRUCTOP_MEMBER>: Use
6394         value_cast_pointers.
6395         * ada-lang.c (ada_convert_actual): Update.
6396
6397 2012-05-21  Tom Tromey  <tromey@redhat.com>
6398
6399         * macroexp.c (macro_stringify): Terminate the string.
6400
6401 2012-05-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
6402
6403         * NEWS (--with-auto-load-dir): Prepend $debugdir to the default path.
6404         Describe it.
6405         * auto-load.c (auto_load_expand_dir_vars): New function.
6406         (auto_load_safe_path_vec_update): Use it, remove the
6407         substitute_path_component call thanks to it.
6408         (auto_load_objfile_script): Remove the debug_file_directory processing.
6409         Use auto_load_expand_dir_vars, remove the substitute_path_component
6410         call thanks to it.
6411         * configure: Regenerate.
6412         * configure.ac (--with-auto-load-dir): Prepend $debugdir to the default
6413         path.  Escape $ also for $debugdir.
6414         (--with_auto_load_safe_path): Escape $ also for $debugdir.
6415         * utils.c (substitute_path_component): Accept also DIRNAME_SEPARATOR.
6416
6417 2012-05-20  Doug Evans  <dje@google.com>
6418
6419         * dwarf2read.c (recursively_find_pc_sect_symtab): Initialize "s"
6420         before use.  Check for symtab->includes == NULL before scanning it.
6421
6422 2012-05-18  Maciej W. Rozycki  <macro@codesourcery.com>
6423
6424         * mips-tdep.c (mips_reg3_to_reg): Optimize storage.
6425
6426 2012-05-18  Maciej W. Rozycki  <macro@codesourcery.com>
6427
6428         * NEWS: Add microMIPS support and "set mips compression",
6429         "show mips compression" commands.
6430         * mips-tdep.h (mips_isa): New enum.
6431         (gdbarch_tdep): Add mips_isa.
6432         (mips_pc_is_mips16): Update prototype.
6433         (mips_pc_is_mips, mips_pc_is_micromips): New prototypes.
6434         * mips-tdep.c (mips_compression_mips16): New variable.
6435         (mips_compression_micromips): Likewise.
6436         (mips_compression_strings): Likewise.
6437         (mips_compression_string): Likewise.
6438         (is_mips16_isa, is_micromips_isa): New functions.
6439         (is_mips16_addr): Rename to...
6440         (is_compact_addr): ... this.
6441         (unmake_mips16_addr): Likewise to...
6442         (unmake_compact_addr): ... this.
6443         (make_mips16_addr): Likewise to...
6444         (make_compact_addr): ... this.
6445         (is_mips_addr, is_mips16_addr, is_micromips_addr): New
6446         functions.
6447         (mips_elf_make_msymbol_special): Handle microMIPS code.
6448         (msymbol_is_special): Rename to...
6449         (msymbol_is_mips16): ... this.
6450         (mips_make_symbol_special, mips_pc_is_mips16): Update
6451         accordingly.
6452         (msymbol_is_mips, msymbol_is_micromips): New functions.
6453         (mips16_to_32_reg): Rename to...
6454         (mips_reg3_to_reg): ... this.
6455         (mips_pc_is_mips, mips_pc_is_micromips): New functions.
6456         (mips_pc_isa): Likewise.
6457         (mips_read_pc, mips_unwind_pc, mips_write_pc): Handle microMIPS
6458         code.
6459         (mips_fetch_instruction): Pass return status instead of printing
6460         an error message if requested.  Handle microMIPS code.  Bail out
6461         on an invalid ISA.
6462         (micromips_op): New macro.
6463         (b0s4_imm, b0s5_imm, b0s5_reg, b0s7_imm, b0s10_imm): Likewise.
6464         (b1s9_imm, b2s3_cc, b4s2_regl, b5s5_op, b5s5_reg): Likewise.
6465         (b6s4_op, b7s3_reg): Likewise.
6466         (b0s6_op, b0s11_op, b0s12_imm, b0s16_imm, b0s26_imm): Likewise.
6467         (b6s10_ext, b11s5_reg, b12s4_op): Likewise.
6468         (mips_insn_size): New function.
6469         (mips32_next_pc): Update mips_fetch_instruction call.
6470         (micromips_relative_offset7): New function.
6471         (micromips_relative_offset10): Likewise.
6472         (micromips_relative_offset16): Likewise.
6473         (micromips_pc_insn_size): Likewise.
6474         (micromips_bc1_pc): Likewise.
6475         (micromips_next_pc): Likewise.
6476         (unpack_mips16): Update mips_fetch_instruction call.
6477         (extended_mips16_next_pc): Update according to change to
6478         mips16_to_32_reg.
6479         (mips_next_pc): Update mips_pc_is_mips16 call.  Handle microMIPS
6480         code.
6481         (mips16_scan_prologue): Update mips_fetch_instruction call.
6482         Update according to change to mips16_to_32_reg.
6483         (mips_insn16_frame_sniffer): Update mips_pc_is_mips16 call.
6484         (mips_insn16_frame_base_sniffer): Likewise.
6485         (micromips_decode_imm9): New function.
6486         (micromips_scan_prologue): Likewise.
6487         (mips_micro_frame_cache): Likewise.
6488         (mips_micro_frame_this_id): Likewise.
6489         (mips_micro_frame_prev_register): Likewise.
6490         (mips_micro_frame_sniffer): Likewise.
6491         (mips_micro_frame_unwind): New variable.
6492         (mips_micro_frame_base_address): New function.
6493         (mips_micro_frame_base): New variable.
6494         (mips_micro_frame_base_sniffer): New function.
6495         (mips32_scan_prologue): Update mips_fetch_instruction call.
6496         (mips_insn32_frame_sniffer): Check for the standard MIPS ISA
6497         rather than for MIPS16.
6498         (mips_insn32_frame_base_sniffer): Likewise.
6499         (mips_addr_bits_remove): Handle microMIPS code.
6500         (deal_with_atomic_sequence): Rename to...
6501         (mips_deal_with_atomic_sequence): ... this.  Update the type
6502         of the variable used to hold an instruction.  Remove the ISA bit
6503         check.  Update mips_fetch_instruction call.
6504         (micromips_deal_with_atomic_sequence): New function.
6505         (deal_with_atomic_sequence): Likewise.
6506         (mips_about_to_return): Handle microMIPS code.  Update
6507         mips_fetch_instruction call.
6508         (heuristic_proc_start): Check for the standard MIPS ISA rather
6509         than for MIPS16.  Update mips_pc_is_mips16 and
6510         mips_fetch_instruction calls.  Handle microMIPS code.
6511         (mips_push_dummy_code): Handle microMIPS code.
6512         (mips_eabi_push_dummy_call): Likewise.
6513         (mips_o32_return_value): Update mips_pc_is_mips16 call.
6514         (mips_o64_push_dummy_call): Handle microMIPS code.
6515         (mips_o64_return_value): Update mips_pc_is_mips16 call.
6516         (is_delayed): Remove function.
6517         (mips_single_step_through_delay): Replace the call to is_delayed
6518         with mips32_instruction_has_delay_slot.  Correct MIPS16 handling.
6519         Handle microMIPS code.
6520         (mips_skip_prologue): Update mips_pc_is_mips16 call.  Handle
6521         microMIPS code.
6522         (mips32_in_function_epilogue_p): Update mips_fetch_instruction
6523         call.
6524         (micromips_in_function_epilogue_p): New function.
6525         (mips16_in_function_epilogue_p): Update mips_fetch_instruction
6526         call.
6527         (mips_in_function_epilogue_p): Update mips_pc_is_mips16 call.
6528         Handle microMIPS.
6529         (gdb_print_insn_mips): Likewise.
6530         (mips_breakpoint_from_pc): Likewise.
6531         (mips_remote_breakpoint_from_pc): New function.
6532         (mips32_instruction_has_delay_slot): Simplify making use of the
6533         updated mips_fetch_instruction interface.
6534         (micromips_instruction_has_delay_slot): New function.
6535         (mips16_instruction_has_delay_slot): Simplify making use of the
6536         updated mips_fetch_instruction interface.
6537         (mips_adjust_breakpoint_address): Check for the standard MIPS
6538         ISA rather than for MIPS16 ISA.  Update for unmake_compact_addr
6539         calls.  Handle microMIPS code.
6540         (mips_get_mips16_fn_stub_pc): Update mips_fetch_instruction call.
6541         (mips_skip_trampoline_code): Handle microMIPS code.
6542         (global_mips_compression): New function.
6543         (mips_gdbarch_init): Handle the compressed ISA setting from ELF
6544         file flags.  Register the microMIPS remote breakpoint handler
6545         and heuristic frame unwinder.
6546         (show_mips_compression): New function.
6547         (_initialize_mips_tdep): Add the "set mips compression" and
6548         "show mips compression" commands.
6549
6550 2012-05-18  Sergio Durigan Junior  <sergiodj@redhat.com>
6551
6552         * ada-lang.c:
6553         * ada-tasks.c:
6554         * ada-varobj.c:
6555         * amd64-darwin-tdep.c:
6556         * arm-symbian-tdep.c:
6557         * arm-tdep.c:
6558         * avr-tdep.c:
6559         * ax-gdb.c:
6560         * bfin-linux-tdep.c:
6561         * breakpoint.c:
6562         * c-valprint.c:
6563         * cli/cli-cmds.c:
6564         * coffread.c:
6565         * cp-support.c:
6566         * cris-tdep.c:
6567         * dwarf2-frame-tailcall.c:
6568         * dwarf2-frame.c:
6569         * dwarf2expr.c:
6570         * dwarf2loc.c:
6571         * dwarf2read.c:
6572         * elfread.c:
6573         * eval.c:
6574         * expprint.c:
6575         * f-valprint.c:
6576         * frv-tdep.c:
6577         * h8300-tdep.c:
6578         * hppa-hpux-tdep.c:
6579         * hppa-tdep.c:
6580         * hppanbsd-tdep.c:
6581         * i386-nto-tdep.c:
6582         * i386-tdep.c:
6583         * i387-tdep.c:
6584         * ia64-tdep.c:
6585         * jit.c:
6586         * linespec.c:
6587         * linux-tdep.c:
6588         * lm32-tdep.c:
6589         * m2-valprint.c:
6590         * m32c-tdep.c:
6591         * m32r-rom.c:
6592         * m32r-tdep.c:
6593         * m68k-tdep.c:
6594         * m68klinux-tdep.c:
6595         * mi/mi-main.c:
6596         * microblaze-tdep.c:
6597         * mips-linux-tdep.c:
6598         * mips-tdep.c:
6599         * mn10300-tdep.c:
6600         * p-valprint.c:
6601         * parse.c:
6602         * ppc-linux-tdep.c:
6603         * ppc-sysv-tdep.c:
6604         * printcmd.c:
6605         * python/py-finishbreakpoint.c:
6606         * python/py-inferior.c:
6607         * python/py-infthread.c:
6608         * python/py-type.c:
6609         * python/python.c:
6610         * remote-fileio.c:
6611         * remote-m32r-sdi.c:
6612         * remote-mips.c:
6613         * reverse.c:
6614         * rl78-tdep.c:
6615         * rs6000-aix-tdep.c:
6616         * rs6000-tdep.c:
6617         * s390-tdep.c:
6618         * score-tdep.c:
6619         * sh64-tdep.c:
6620         * skip.c:
6621         * solib-darwin.c:
6622         * solib-dsbt.c:
6623         * solib-frv.c:
6624         * sparc-tdep.c:
6625         * spu-multiarch.c:
6626         * spu-tdep.c:
6627         * stack.c:
6628         * symfile.c:
6629         * symtab.c:
6630         * tic6x-tdep.c:
6631         * tracepoint.c:
6632         * v850-tdep.c:
6633         * valarith.c:
6634         * valprint.c:
6635         * value.c:
6636         * xcoffread.c:
6637         * xtensa-tdep.c:
6638         * ada-lang.c:
6639         * ada-tasks.c:
6640         * ada-varobj.c:
6641         * amd64-darwin-tdep.c:
6642         * arm-symbian-tdep.c:
6643         * arm-tdep.c: Delete unused variables.
6644
6645 2012-05-18  Jan Kratochvil  <jan.kratochvil@redhat.com>
6646
6647         Rename $ddir to $datadir.
6648         * NEWS (--with-auto-load-dir): Rename $ddir to $datadir.
6649         * auto-load.c (auto_load_safe_path_vec_update)
6650         (auto_load_gdb_datadir_changed, auto_load_objfile_script): Likewise.
6651         * configure: Regenerate.
6652         * configure.ac (--with-auto-load-dir, --with-auto-load-safe-path):
6653         Likewise.  Remove the 'use $ddir' help string.
6654
6655 2012-05-18  Jan Kratochvil  <jan.kratochvil@redhat.com>
6656
6657         * auto-load.c (show_auto_load_safe_path): Accept any combination of
6658         DIRNAME_SEPARATOR and IS_DIR_SEPARATOR for wild-match.
6659
6660 2012-05-18  Tom Tromey  <tromey@redhat.com>
6661
6662         PR exp/13907:
6663         * valprint.h (struct value_print_options) <symbol_print>: New
6664         field.
6665         * valprint.c (user_print_options): Add default for symbol_print.
6666         (show_symbol_print): New function.
6667         (generic_val_print): Respect symbol_print.
6668         (_initialize_valprint): Add "print symbol" setting.
6669         * f-valprint.c (f_val_print): Respect symbol_print.
6670         * c-valprint.c (c_val_print): Respect symbol_print.
6671         * NEWS: Update.
6672         * printcmd.c (print_address_symbolic): Return int.  Ignore some
6673         zero-size symbols.
6674         (print_address_demangle): Return int.
6675         * defs.h: (print_address_symbolic): Return int.
6676         * value.h (print_address_demangle): Return int.
6677
6678 2012-05-18  Tom Tromey  <tromey@redhat.com>
6679
6680         * valprint.c (val_print_string): Don't print leading space.
6681         * p-valprint.c (pascal_val_print) <TYPE_CODE_PTR>: Optionally
6682         print space before string or vtbl.
6683         * m2-valprint.c (print_unpacked_pointer): Optionally print space
6684         before string.
6685         * jv-valprint.c (java_value_print): Print space before string.
6686         * go-valprint.c (print_go_string): Print space before string.
6687         * f-valprint.c (f_val_print) <TYPE_CODE_PTR>: Optionally print
6688         space before string.
6689         * c-valprint.c (c_val_print) <TYPE_CODE_PTR>: Optionally print
6690         space before string or vtbl.
6691         * auxv.c (fprint_target_auxv): Print space after address.
6692
6693 2012-05-18  Tom Tromey  <tromey@redhat.com>
6694
6695         * printcmd.c (print_address_demangle): Remove special case for 0.
6696
6697 2012-05-18  Tom Tromey  <tromey@redhat.com>
6698
6699         * printcmd.c (print_address_demangle): Add 'opts' argument.
6700         * p-valprint.c (pascal_val_print): Update.
6701         * jv-valprint.c (java_val_print): Update.
6702         * value.h: Update.
6703         * valprint.c (generic_val_print): Update.
6704         (print_function_pointer_address): Add 'options' argument.  Remove
6705         'addressprint' argument.  Update.
6706         * m2-valprint.c (print_unpacked_pointer): Update.
6707         * gnu-v3-abi.c (print_one_vtable): Update.
6708         (gnuv3_print_method_ptr): Update.
6709         * f-valprint.c (f_val_print): Update.
6710         * cp-valprint.c (cp_print_value_fields): Update.
6711         * valprint.h (print_function_pointer_address): Update.
6712         * c-valprint.c (c_val_print): Update.
6713
6714 2012-05-18  Tom Tromey  <tromey@redhat.com>
6715
6716         * psymtab.c (find_pc_sect_symtab_from_partial): Return the symtab
6717         directly corresponding to the found psymtab.
6718         * dwarf2read.c (recursively_find_pc_sect_symtab): New function.
6719         (dw2_find_pc_sect_symtab): Use it.
6720         * block.h (blockvector_contains_pc): Declare.
6721         * block.c (find_block_in_blockvector): New function.
6722         (blockvector_for_pc_sect): Use it.
6723         (blockvector_contains_pc): New function.
6724
6725 2012-05-18  Maciej W. Rozycki  <macro@codesourcery.com>
6726
6727         * mips-tdep.h (mips_write_pc): New prototype.
6728         * mips-tdep.c (mips_write_pc): Make external, add description.
6729         * mips-linux-tdep.c (mips_linux_write_pc): Use mips_write_pc,
6730         add description.
6731
6732 2012-05-18  Maciej W. Rozycki  <macro@codesourcery.com>
6733
6734         * mips-tdep.c (mips_read_pc): Use gdbarch_pc_regnum instead of
6735         mips_regnum->pc.
6736         (mips_unwind_pc, mips_write_pc): Likewise.
6737         (mips_gdbarch_init): Remove a comment on gdbarch_pc_regnum and
6738         gdbarch_read_pc.
6739
6740 2012-05-17  Joel Brobecker  <brobecker@adacore.com>
6741
6742         * procfs.c (procfs_find_new_threads, procfs_pid_to_str,
6743         proc_warn, proc_error, proc_get_status, proc_flags,
6744         proc_why, proc_what, proc_nsysarg, proc_sysargs,
6745         proc_set_run_on_last_close, proc_unset_run_on_last_close,
6746         proc_unset_inherit_on_fork, proc_set_async, proc_unset_async,
6747         proc_stop_process, proc_wait_for_stop, proc_run_process,
6748         proc_set_traced_signals, proc_set_traced_faults,
6749         proc_set_traced_sysentry, proc_set_traced_sysexit,
6750         proc_set_held_signals, proc_get_held_signals,
6751         proc_get_traced_signals, proc_get_traced_faults,
6752         proc_get_traced_sysentry, proc_get_traced_sysexit,
6753         proc_clear_current_fault, proc_set_current_signal,
6754         proc_clear_current_signal, proc_get_gregs, proc_get_fpregs,
6755         proc_set_gregs, proc_set_fpregs, proc_kill, proc_parent_pid,
6756         proc_get_nthreads, proc_get_nthreads, proc_get_nthreads,
6757         proc_get_current_thread, proc_get_current_thread,
6758         proc_get_current_thread, proc_update_threads,
6759         proc_update_threads, proc_update_threads, proc_update_threads,
6760         proc_iterate_over_threads, procfs_find_new_threads,
6761         procfs_pid_to_str): Make static.  Remove advance declaration.
6762         (proc_cursig): Make static.  Conditionalized defintion on
6763         PROCFS_DONT_PIOCSSIG_CURSIG being defined.
6764         (proc_syscall, proc_set_kill_on_last_close,
6765         proc_unset_kill_on_last_close, proc_set_inherit_on_fork,
6766         proc_get_pending_signals, proc_get_signal_actions,
6767         proc_trace_signal, proc_ignore_signal): Delete.
6768
6769 2012-05-16  Sergio Durigan Junior  <sergiodj@redhat.com>
6770
6771         * coffread.c (cs_section_address): Passing proper argument for
6772         `bfd_get_section_vma'.
6773         * dwarf2read.c (dwarf2_locate_sections): Likewise, for
6774         `bfd_get_section_flags'.
6775         * remote.c (remote_trace_set_readonly_regions): Likewise, for
6776         `bfd_get_section_vma'.
6777
6778 2012-05-16  Tom Tromey  <tromey@redhat.com>
6779
6780         PR macros/13205:
6781         * macrotab.h: (macro_define_special): Declare.
6782         (enum macro_special_kind): New.
6783         (struct macro_definition) <argc, replacement>: Update comments.
6784         * macrotab.c (new_macro_definition): Unconditionally set 'argc'.
6785         (macro_define_object_internal): New function.
6786         (macro_define_object): Use it.
6787         (macro_define_special): New function.
6788         (fixup_definition): New function.
6789         (macro_lookup_definition, foreach_macro_in_scope)
6790         (foreach_macro): Use fixup_definition.
6791         * macroexp.h (macro_stringify): Declare.
6792         * macroexp.c (free_buffer_return_text): New function.
6793         (stringify): Constify "arg".
6794         (macro_stringify): New function.
6795         * dwarf2read.c (macro_start_file): Call macro_define_special.
6796
6797 2012-05-16  Maciej W. Rozycki  <macro@codesourcery.com>
6798             Maciej W. Rozycki  <macro@mips.com>
6799
6800         * breakpoint.h (bp_location): Add related_address member.
6801         * inferior.h (get_return_value): Take a pointer to struct value
6802         instead of struct type for the function requested.
6803         * value.h (using_struct_return): Likewise.
6804         * gdbarch.sh (return_value): Take a pointer to struct value
6805         instead of struct type for the function requested.
6806         * breakpoint.c (set_breakpoint_location_function): Initialize
6807         related_address for bp_gnu_ifunc_resolver breakpoints.
6808         * elfread.c (elf_gnu_ifunc_resolver_return_stop): Pass the
6809         requested function's address to gdbarch_return_value.
6810         * eval.c (evaluate_subexp_standard): Pass the requested
6811         function's address to using_struct_return.
6812         * infcall.c (call_function_by_hand): Pass the requested
6813         function's address to using_struct_return and
6814         gdbarch_return_value.
6815         * infcmd.c (get_return_value): Take a pointer to struct value
6816         instead of struct type for the function requested.
6817         (print_return_value): Update accordingly.
6818         (finish_command_continuation): Likewise.
6819         * stack.c (return_command): Pass the requested function's
6820         address to using_struct_return and gdbarch_return_value.
6821         * value.c (using_struct_return): Take a pointer to struct value
6822         instead of struct type for the function requested.  Pass the
6823         requested function's address to gdbarch_return_value.
6824         * python/py-finishbreakpoint.c (finish_breakpoint_object):
6825         New function_value member, replacing function_type.
6826         (bpfinishpy_dealloc): Update accordingly.
6827         (bpfinishpy_pre_stop_hook): Likewise.
6828         (bpfinishpy_init): Likewise.  Record the requested function's
6829         address.
6830         * mips-tdep.c (mips_fval_reg): New enum.
6831         (mips_o32_push_dummy_call): For MIPS16 FP doubles do not swap
6832         words put in GP registers.
6833         (mips_o64_push_dummy_call): Update a comment.
6834         (mips_o32_return_value): Take a pointer to struct value instead
6835         of struct type for the function requested and use it to check if
6836         using the MIPS16 calling convention.  Return the designated
6837         general purpose registers for floating-point values returned in
6838         MIPS16 mode.
6839         (mips_o64_return_value): Likewise.
6840         * ppc-tdep.h (ppc_sysv_abi_return_value): Update prototype.
6841         (ppc_sysv_abi_broken_return_value): Likewise.
6842         (ppc64_sysv_abi_return_value): Likewise.
6843         * alpha-tdep.c (alpha_return_value): Take a pointer to struct
6844         value instead of struct type for the function requested.
6845         * amd64-tdep.c (amd64_return_value): Likewise.
6846         * amd64-windows-tdep.c (amd64_windows_return_value): Likewise.
6847         * arm-tdep.c (arm_return_value): Likewise.
6848         * avr-tdep.c (avr_return_value): Likewise.
6849         * bfin-tdep.c (bfin_return_value): Likewise.
6850         * cris-tdep.c (cris_return_value): Likewise.
6851         * frv-tdep.c (frv_return_value): Likewise.
6852         * h8300-tdep.c (h8300_return_value): Likewise.
6853         (h8300h_return_value): Likewise.
6854         * hppa-tdep.c (hppa32_return_value): Likewise.
6855         (hppa64_return_value): Likewise.
6856         * i386-tdep.c (i386_return_value): Likewise.
6857         * ia64-tdep.c (ia64_return_value): Likewise.
6858         * iq2000-tdep.c (iq2000_return_value): Likewise.
6859         * lm32-tdep.c (lm32_return_value): Likewise.
6860         * m32c-tdep.c (m32c_return_value): Likewise.
6861         * m32r-tdep.c (m32r_return_value): Likewise.
6862         * m68hc11-tdep.c (m68hc11_return_value): Likewise.
6863         * m68k-tdep.c (m68k_return_value): Likewise.
6864         (m68k_svr4_return_value): Likewise.
6865         * m88k-tdep.c (m88k_return_value): Likewise.
6866         * mep-tdep.c (mep_return_value): Likewise.
6867         * microblaze-tdep.c (microblaze_return_value): Likewise.
6868         * mn10300-tdep.c (mn10300_return_value): Likewise.
6869         * moxie-tdep.c (moxie_return_value): Likewise.
6870         * mt-tdep.c (mt_return_value): Likewise.
6871         * ppc-linux-tdep.c (ppc_linux_return_value): Likewise.
6872         * ppc-sysv-tdep.c (ppc_sysv_abi_return_value): Likewise.
6873         (ppc_sysv_abi_broken_return_value): Likewise.
6874         (ppc64_sysv_abi_return_value): Likewise.
6875         * ppcnbsd-tdep.c (ppcnbsd_return_value): Likewise.
6876         * rl78-tdep.c (rl78_return_value): Likewise.
6877         * rs6000-aix-tdep.c (rs6000_return_value): Likewise.
6878         * rx-tdep.c (rx_return_value): Likewise.
6879         * s390-tdep.c (s390_return_value): Likewise.
6880         * score-tdep.c (score_return_value): Likewise.
6881         * sh-tdep.c (sh_return_value_nofpu): Likewise.
6882         (sh_return_value_fpu): Likewise.
6883         * sh64-tdep.c (sh64_return_value): Likewise.
6884         * sparc-tdep.c (sparc32_return_value): Likewise.
6885         * sparc64-tdep.c (sparc64_return_value): Likewise.
6886         * spu-tdep.c (spu_return_value): Likewise.
6887         * tic6x-tdep.c (tic6x_return_value): Likewise.
6888         * v850-tdep.c (v850_return_value): Likewise.
6889         * vax-tdep.c (vax_return_value): Likewise.
6890         * xstormy16-tdep.c (xstormy16_return_value): Likewise.
6891         * xtensa-tdep.c (xtensa_return_value): Likewise.
6892         * gdbarch.c: Regenerate.
6893         * gdbarch.h: Regenerate.
6894
6895 2012-05-15  Tom Tromey  <tromey@redhat.com>
6896
6897         * python/python.c (gdbpy_find_pc_line): Use gdb_py_ulongest.
6898
6899 2012-05-15  Joel Brobecker  <brobecker@adacore.com>
6900
6901         * breakpoint.c (init_breakpoint_sal): Add quotes around part
6902         of command in two error message.
6903
6904 2012-05-15  Joel Brobecker  <brobecker@adacore.com>
6905
6906         * breakpoint.c (init_breakpoint_sal): Remove trailing spaces.
6907
6908 2012-05-15  Joel Brobecker  <brobecker@adacore.com>
6909
6910         * breakpoint.c (find_condition_and_thread): Minor reformatting.
6911
6912 2012-05-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
6913
6914         * NEWS (show auto-load scripts-directory): Add forgotten command.
6915
6916 2012-05-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
6917
6918         * spu-tdep.c (spu_catch_start): Update create_breakpoint caller
6919         parameters.
6920
6921 2012-05-14  H.J. Lu  <hongjiu.lu@intel.com>
6922
6923         * amd64-tdep.c: Include features/i386/x32.c and
6924         features/i386/x32-avx.c.
6925         (_initialize_amd64_tdep): Call initialize_tdesc_x32 and
6926         initialize_tdesc_x32_avx.
6927
6928 2012-05-14  Stan Shebs  <stan@codesourcery.com>
6929
6930         Add dynamic printf.
6931         * breakpoint.h (enum bptype): New type bp_dprintf.
6932         (struct breakpoint): New field extra_string.
6933         (struct breakpoint_ops): Add arg to create_breakpoints_sal.
6934         (create_breakpoint): Add extra_string arg.
6935         * breakpoint.c (dprintf_breakpoint_ops): New.
6936         (is_breakpoint): Add bp_dprintf.
6937         (bpstat_what): Add dprintf case.
6938         (bptype_string): Ditto.
6939         (print_one_breakpoint_location): Ditto.
6940         (init_bp_location): Ditto.
6941         (bkpt_print_mention): Ditto.
6942         (dprintf_style_enums): New array.
6943         (dprintf_style): New global.
6944         (dprintf_function): New global.
6945         (dprintf_channel): New global.
6946         (update_dprintf_command_list): New function.
6947         (update_dprintf_commands): New function.
6948         (init_breakpoint_sal): Add extra_string argument, handle it.
6949         (create_breakpoint_sal): Add extra_string argument.
6950         (create_breakpoints_sal): Add extra_string argument, update callers.
6951         (find_condition_and_thread): Add extra argument.
6952         (create_breakpoint): Add extra_string argument, record it.
6953         (dprintf_command): New function.
6954         (break_command_1): Add arg to create_breakpoint call.
6955         (handle_gnu_v3_exceptions): Ditto.
6956         (trace_command): Ditto.
6957         (ftrace_command): Ditto.
6958         (strace_command): Ditto.
6959         (bkpt_print_mention): Add dprintf case.
6960         (create_breakpoint_sal_default): Add extra_string argument.
6961         (_initialize_breakpoint): Add new commands.
6962         * mi/mi-cmd-break.c (mi_cmd_break_insert): Add arg to call.
6963         * python/py-breakpoint.c (bppy_init): Ditto.
6964         * python/py-finishbreakpoint.c (bpfinishpy_init): Ditto.
6965
6966 2012-05-14  Maciej W. Rozycki  <macro@codesourcery.com>
6967
6968         * mips-tdep.c (mips_push_dummy_code): Correct description typo.
6969
6970 2012-05-14  Siva Chandra Reddy  <sivachandra@google.com>
6971
6972         * python/python.c (gdbpy_find_pc_line): Use ULONGEST instead of
6973         unsigned long long.
6974
6975 2012-05-13  Siva Chandra Reddy  <sivachandra@google.com>
6976
6977         Add a new function gdb.find_pc_line to the Python API.
6978         * NEWS (Python Scripting): Add entry about the new function.
6979         * python/python.c (gdbpy_find_pc_line): New function which
6980         implements gdb.find_pc_line.
6981         (GdbMethods): Add entry for the new function.
6982
6983 2012-05-12  Pedro Alves  <palves@redhat.com>
6984
6985         * amd64-linux-tdep.c (_initialize_amd64_linux_tdep): Call
6986         initialize_tdesc_x32_linux and initialize_tdesc_x32_avx_linux.
6987
6988 2012-05-12  Eli Zaretskii  <eliz@gnu.org>
6989
6990         * inferior.c: Include completer.h
6991         (initialize_inferiors): Set completer of add-inferior to
6992         filename_completer.
6993
6994 2012-05-11  H.J. Lu  <hongjiu.lu@intel.com>
6995
6996         * amd64-linux-tdep.c (amd64_linux_core_read_description): Check
6997         gdbarch_ptr_bit for x32 core dump.
6998
6999 2012-05-11  H.J. Lu  <hongjiu.lu@intel.com>
7000
7001         * amd64-linux-tdep.c: Include features/i386/x32-linux.c
7002         and features/i386/x32-avx-linux.c.
7003
7004 2012-05-11  Stan Shebs  <stan@codesourcery.com>
7005             Kwok Cheung Yeung  <kcy@codesourcery.com>
7006
7007         * NEWS: Describe new info os commands.
7008         * common/linux-osdata.c (PID_T, TIME_T): Define.
7009         (MAX_PID_T_STRLEN): New.
7010         (linux_common_core_of_thread): Add comment.  Change to use PID_T and
7011         MAX_PID_T_STRLEN.
7012         (command_from_pid): Add comment.  Change to use PID_T.
7013         (commandline_from_pid):  Change to use PID_T.
7014         (user_from_pid): Add comment.
7015         (get_process_owner): Add comment. Change to use PID_T and
7016         MAX_PID_T_STRLEN.
7017         (get_number_of_cpu_cores): Add comment.
7018         (get_cores_used_by_process): Add comment.  Change to use PID_T and
7019         MAX_PID_T_STRLEN.
7020         (linux_xfer_osdata_processes): Change to use PID_T and
7021         MAX_PID_T_STRLEN.
7022         (compare_processes): New function.
7023         (linux_xfer_osdata_processgroups): New function.
7024         (linux_xfer_osdata_threads): Change to use PID_T.
7025         (linux_xfer_osdata_fds): New function.
7026         (format_socket_state, print_sockets): New functions.
7027         (union socket_addr): New union.
7028         (linux_xfer_osdata_isockets): New function.
7029         (time_from_time_t, group_from_gid): New functions.
7030         (linux_xfer_osdata_shm): New function.
7031         (linux_xfer_osdata_sem): New function.
7032         (linux_xfer_osdata_msg): New function.
7033         (linux_xfer_osdata_modules): New function.
7034         (osdata_table): Add new entries.
7035         * common/buffer.c (buffer_xml_printf): Add support for long and
7036         long long format specifiers.
7037
7038 2012-05-11  H.J. Lu  <hongjiu.lu@intel.com>
7039
7040         * amd64-linux-tdep.h (tdesc_x32_linux): New.
7041         (tdesc_x32_avx_linux): Likewise.
7042
7043 2012-05-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
7044
7045         Implement multi-component --with-auto-load-dir.
7046         * NEWS (set auto-load scripts-directory, --with-auto-load-dir): New
7047         entries.
7048         (--with-auto-load-safe-path): Update the default value description.
7049         * auto-load.c (auto_load_dir, set_auto_load_dir, show_auto_load_dir):
7050         New.
7051         (auto_load_objfile_script): Add DEBUG_AUTO_LOAD output.  Remove
7052         GDB_DATADIR NULL check.  Replace GDB_DATADIR/auto-load by
7053         AUTO_LOAD_DIR.  Support $ddir and multiple components in it.
7054         (_initialize_auto_load): Initialize also auto_load_dir.  Install new
7055         "set auto-load scripts-directory".
7056         * config.in: Regenerate.
7057         * configure: Regenerate.
7058         * configure.ac (--with-auto-load-dir): New configure option.
7059         (--auto-load-safe-path): Change the default to --with-auto-load-dir.
7060
7061 2012-05-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
7062
7063         Provide $ddir substitution for --with-auto-load-safe-path.
7064         * NEWS (--with-auto-load-safe-path, --without-auto-load-safe-path): New
7065         entries.
7066         * auto-load.c: Include observer.h.
7067         (auto_load_safe_path_vec_update): Call substitute_path_component for
7068         each component.  New variable ddir_subst.
7069         (auto_load_gdb_datadir_changed): New function.
7070         (set_auto_load_safe_path): Rename DEFAULT_AUTO_LOAD_SAFE_PATH to
7071         AUTO_LOAD_SAFE_PATH.  New comment.
7072         (_initialize_auto_load): Rename DEFAULT_AUTO_LOAD_SAFE_PATH to
7073         AUTO_LOAD_SAFE_PATH.  Install auto_load_gdb_datadir_changed.
7074         * config.in: Regenerate.
7075         * configure: Regenerate.
7076         * configure.ac (--auto-load-safe-path): Rename
7077         DEFAULT_AUTO_LOAD_SAFE_PATH to AUTO_LOAD_SAFE_PATH.  Default to
7078         GDB_DATADIR/auto-load.
7079         * defs.h (substitute_path_component): New declaration.
7080         * top.c: Include observer.h.
7081         (set_gdb_datadir): New function.
7082         (init_main): Install it for "set data-directory".
7083         * utils.c (substitute_path_component): New function.
7084
7085 2012-05-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
7086
7087         Make auto-load handle multiple components of DEBUG_FILE_DIRECTORY.
7088         * auto-load.c (auto_load_objfile_script): Remove check for NULL
7089         DEBUG_FILE_DIRECTORY.  Handle multiple components of
7090         DEBUG_FILE_DIRECTORY.
7091
7092 2012-05-10  Tom Tromey  <tromey@redhat.com>
7093
7094         * dwarf2read.c (recursively_write_psymbols): New function.
7095         (write_psymtabs_to_index): Use it.
7096
7097         * dwarf2read.c (struct dwarf2_queue_item) <pretend_language>: New
7098         field.
7099         (load_cu, dw2_do_instantiate_symtab, process_psymtab_comp_unit)
7100         (load_partial_comp_unit): Update.
7101         (queue_comp_unit): Add argument 'pretend_language'.
7102         (process_queue): Update.
7103         (psymtab_to_symtab_1): Skip dependencies that have a user.
7104         (load_partial_comp_unit_reader): Give meaning to the 'data'
7105         argument.
7106         (load_full_comp_unit): Add 'pretend_language' argument.
7107         (process_full_comp_unit): Add 'pretend_language' argument.  Set
7108         language on CU.
7109         (process_imported_unit_die, read_file_scope, read_type_unit_scope):
7110         Update.
7111         (maybe_queue_comp_unit): Add 'pretend_language' argument.
7112         (follow_die_offset, follow_die_sig, read_signatured_type_reader):
7113         Update.
7114         (prepare_one_comp_unit): Add 'pretend_language' argument.
7115
7116         * dwarf2read.c: (dwarf2_per_cu_ptr): New typedef.
7117         (struct dwarf2_per_objfile) <just_read_cus>: New field.
7118         (struct dwarf2_per_cu_data) <imported_symtabs>: New field.
7119         (dw2_do_instantiate_symtab): Check whether symtab was read in
7120         before queueing.
7121         (dw2_instantiate_symtab): Add assertion.  Call
7122         process_cu_includes.
7123         (process_psymtab_comp_unit): Compute 'dependencies' for psymtab.
7124         (partial_symtab_p): New typedef.
7125         (set_partial_user): New function.
7126         (dwarf2_build_psymtabs_hard): Use set_partial_user.
7127         (scan_partial_symbols): Add imported CU to imported_symtabs.
7128         (dwarf2_psymtab_to_symtab): Call process_cu_includes.
7129         (psymtab_to_symtab_1): Do nothing if psymtab is readin.
7130         (get_symtab, recursively_compute_inclusions)
7131         (compute_symtab_includes, process_cu_includes)
7132         (process_imported_unit_die): New functions.
7133         (process_die) <DW_TAG_imported_unit>: New case.
7134         (dwarf2_per_objfile_free): Free 'imported_symtabs'.
7135
7136         * dwarf2read.c (struct dwarf2_per_cu_data) <psymtab>: Update
7137         comment.
7138         (struct partial_die_info) <locdesc>: Remove.
7139         <d>: New field.
7140         (process_psymtab_comp_unit): Add 'read_partial' argument.
7141         Update.
7142         (process_type_comp_unit, dwarf2_build_psymtabs_hard): Update.
7143         (scan_partial_symbols): Handle DW_TAG_imported_unit.
7144         (add_partial_symbol): Update.
7145         (process_die): Handle DW_TAG_partial_unit.
7146         (read_file_scope): Update comment.
7147         (load_partial_dies): Handle DW_TAG_imported_unit.
7148         (read_partial_die): Handle DW_TAG_partial_unit, DW_AT_import.
7149         (determine_prefix, dwarf2_name): Handle DW_TAG_partial_unit.
7150
7151 2012-05-10  Tom Tromey  <tromey@redhat.com>
7152
7153         * cc-with-dwz.sh: New file.
7154
7155 2012-05-10  Tom Tromey  <tromey@redhat.com>
7156
7157         * symtab.h (struct symtab) <includes, user>: New fields.
7158         * block.h (struct block_iterator) <d, idx, which>: New fields.
7159         * block.c (initialize_block_iterator, find_iterator_symtab)
7160         (block_iterator_step, block_iter_name_step)
7161         (block_iter_match_step): New functions.
7162         (block_iterator_first, block_iterator_next)
7163         (block_iter_name_first, block_iter_name_next)
7164         (block_iter_match_first, block_iter_match_next): Rewrite.
7165         (get_block_symtab): New function.
7166
7167 2012-05-10  Tom Tromey  <tromey@redhat.com>
7168
7169         * jv-lang.c (get_java_class_symtab): Use allocate_global_block,
7170         set_block_symtab.
7171         * jit.c (finalize_symtab): Use allocate_global_block,
7172         set_block_symtab.
7173         * buildsym.c (finish_block_internal): New function, from old
7174         finish_block.
7175         (finish_block): Rewrite.
7176         (end_symtab): Use finish_block_internal, set_block_symtab.
7177         * block.h (struct global_block): New.
7178         (allocate_global_block, set_block_symtab): Declare.
7179         * block.c (allocate_global_block, set_block_symtab): New
7180         functions.
7181
7182 2012-05-10  Tom Tromey  <tromey@redhat.com>
7183
7184         * psymtab.c (partial_map_expand_apply): Add assertion.
7185         (partial_map_symtabs_matching_filename): Skip included psymtabs.
7186         (psymtab_to_symtab): Find unshared psymtab.
7187         (dump_psymtab): Print including psymtabs.
7188         (recursively_search_psymtabs): New function.
7189         (expand_symtabs_matching_via_partial): Use it.
7190         * psympriv.h (struct partial_symtab) <user, searched_flag>: New
7191         fields.
7192         (enum psymtab_search_status): New.
7193
7194 2012-05-10  Tom Tromey  <tromey@redhat.com>
7195
7196         * tracepoint.c (scope_info): Update.
7197         * symtab.c (lookup_block_symbol, iterate_over_symbols)
7198         (find_pc_sect_symtab, search_symbols)
7199         (default_make_symbol_completion_list_break_on)
7200         (make_file_symbol_completion_list): Update.
7201         * symmisc.c (dump_symtab_1): Update.
7202         * stack.c (print_frame_args, iterate_over_block_locals)
7203         (print_frame_labels, iterate_over_block_arg_vars): Update.
7204         * python/py-block.c (block_object) <dict>: Remove.
7205         <block>: New field.
7206         <iter>: Change type.
7207         (blpy_iter): Update.
7208         (blpy_block_syms_iternext): Update.
7209         * psymtab.c (map_block): Use block iterators.
7210         * objfiles.c (objfile_relocate1): Use ALL_DICT_SYMBOLS.
7211         * mi/mi-cmd-stack.c (list_args_or_locals): Update.
7212         * mdebugread.c (parse_symbol, mylookup_symbol): Update.
7213         * infrun.c (check_exception_resume): Update.
7214         * cp-support.c (make_symbol_overload_list_block): Update.
7215         * coffread.c (patch_opaque_types): Update.
7216         * buildsym.c (finish_block, end_symtab): Use ALL_DICT_SYMBOLS.
7217         * block.h (struct block_iterator): New.
7218         (block_iterator_first, block_iterator_next, block_iter_name_first)
7219         (block_iter_name_next, block_iter_match_first)
7220         (block_iter_match_next): Declare.
7221         (ALL_BLOCK_SYMBOLS): Redefine.
7222         * block.c (block_iterator_first, block_iterator_next)
7223         (block_iter_name_first, block_iter_name_next)
7224         (block_iter_match_first, block_iter_match_next): New functions.
7225         * ada-lang.c (ada_add_block_symbols)
7226         (ada_make_symbol_completion_list): Use block iterator.
7227
7228 2012-05-10  Tom Tromey  <tromey@redhat.com>
7229
7230         * psymtab.c (PSYMTAB_TO_SYMTAB): Remove.
7231         (find_pc_sect_symtab_from_partial, lookup_symbol_aux_psymtabs)
7232         (lookup_partial_symbol, find_last_source_symtab_from_partial)
7233         (read_psymtabs_with_filename, map_matching_symbols_psymtab)
7234         (expand_symtabs_matching_via_partial, maintenance_check_symtabs):
7235         Update.
7236
7237 2012-05-10  Joel Brobecker  <brobecker@adacore.com>
7238
7239         * config/djgpp/fnchange.lst: Add entries for print-file-var-lib1.c,
7240         print-file-var-lib2.c, print-file-var-main.c and
7241         print-file-var.exp (located in gdb/testsuite/gdb.base).
7242
7243 2012-05-10  Joel Brobecker  <brobecker@adacore.com>
7244
7245         * findvar.c (default_read_var_value): For LOC_UNRESOLVED symbols,
7246         try locating the symbol in the symbol's own objfile first, before
7247         extending the search to all objfiles.
7248         * symtab.c (lookup_symbol_aux_objfile): New function, extracted
7249         out of lookup_symbol_aux_symtabs.
7250         (lookup_symbol_aux_symtabs): Add new parameter "exclude_objfile".
7251         Replace extracted-out code by call to lookup_symbol_aux_objfile.
7252         Do not search EXCLUDE_OBJFILE.
7253         (lookup_static_symbol_aux): Update call to lookup_symbol_aux_symtabs.
7254         (lookup_symbol_global): Search for matches in the block's objfile
7255         first, before searching all other objfiles.
7256
7257 2012-05-10  Tristan Gingold  <gingold@adacore.com>
7258
7259         * printcmd.c (set_command): Add pre/post inc/dec.
7260
7261 2012-05-09  Frank Ch. Eigler  <fche@redhat.com>
7262
7263         * gdb.1: Document -ex option.
7264
7265 2012-05-09  Joel Brobecker  <brobecker@adacore.com>
7266
7267         * infcall.c (call_function_by_hand): Remove AT_SYMBOL handling.
7268         * inferior.h (AT_SYMBOL): Delete.
7269
7270 2012-05-09  Joel Brobecker  <brobecker@adacore.com>
7271
7272         * mips-tdep.c (mips_push_dummy_code): New function.
7273         (mips_gdbarch_init): Set the gdbarch call_dummy_location to
7274         ON_STACK and install mips_push_dummy_code as our gdbarch
7275         push_dummy_code routine.
7276
7277 2012-05-09  Pedro Alves  <palves@redhat.com>
7278
7279         * target.c (set_maintenance_target_async_permitted): Rename to ...
7280         (set_target_async_command): ... this.
7281         (show_maintenance_target_async_permitted): Rename to ...
7282         (show_target_async_command): ... this.
7283         (initialize_targets): Adjust.
7284
7285 2012-05-08  Doug Evans  <dje@google.com>
7286
7287         * go-exp.y (classify_name): Add missing assignment of fields of
7288         yylval.ssym.
7289
7290 2012-05-08  Eli Zaretskii  <eliz@gnu.org>
7291
7292         Display the ">" prompt in interactive mode while reading canned
7293         commands, even when the current interpreter is MI.
7294
7295         * interps.c (interp_set_temp): New function.
7296
7297         * interps.h (interp_set_temp): Add prototype.
7298
7299         * cli/cli-script.c (restore_interp): New cleanup function.
7300         (read_command_lines): Temporarily override the current interpreter
7301         with CLI and arrange for restoring the original one.
7302
7303 2012-05-12  Joel Sherrill <joel.sherrill@oarcorp.com>
7304
7305         * microblaze-rom.c (_initialize_picobug_rom): Add prototype.
7306
7307 2012-05-07  Sergio Durigan Junior  <sergiodj@redhat.com>
7308
7309         * probe.c (parse_probes): Move conditional to check for
7310         debuginfo files from here...
7311         * stap-probe.c (stap_get_probes): ... to here.
7312
7313 2012-05-07  Mark Kettenis  <kettenis@gnu.org>
7314             H.J. Lu  <hongjiu.lu@intel.com>
7315
7316         * amd64-tdep.c (amd64_analyze_prologue): Additionally check for
7317         `movl %esp, %ebp' for the X32 ABI.
7318
7319 2012-05-07  Tom Tromey  <tromey@redhat.com>
7320
7321         * dwarf2read.c (dwarf_tag_name): Return const char *.  Use
7322         get_DW_TAG_name.
7323         (dwarf_attr_name): Return const char *.  Use get_DW_AT_name.
7324         (dwarf_form_name): Return const char *.  Use get_DW_FORM_name.
7325         (dwarf_stack_op_name): Remove.
7326         (dwarf_cfi_name): Return const char *.  Use get_DW_ATE_name.
7327         (decode_locdesc): Use get_DW_OP_name.
7328         * dwarf2loc.c (unimplemented): Use get_DW_OP_name.
7329         (dwarf2_compile_expr_to_ax): Likewise.
7330         (disassemble_dwarf_expression): Likewise.
7331         * dwarf2expr.h: (dwarf_stack_op_name): Remove.
7332
7333 2012-05-07  Chung-Lin Tang  <cltang@codesourcery.com>
7334
7335         * sh-linux-tdep.c: Include trad-frame.h and tramp-frame.h.
7336         (sh_linux_sigtramp_cache): New function.
7337         (sh_linux_sigreturn_init): New function.
7338         (sh_linux_rt_sigreturn_init): New function.
7339         (SH_MOVW,SH_TRAP,SH_OR_R0_R0): New symbols for instruction
7340         patterns.
7341         (SH_NR_SIGRETURN,SH_NR_RT_SIGRETURN): New symbols for sigreturn
7342         syscall codes.
7343         (sh_linux_sigreturn_tramp_frame): New tramp_frame definition.
7344         (sh_linux_rt_sigreturn_tramp_frame): Likewise.
7345         (sh_linux_init_abi): Add init calls to register new tramp_frame
7346         definitions under 32-bit SH, update comments.
7347
7348 2012-05-07  Pedro Alves  <palves@redhat.com>
7349
7350         PR gdb/10952
7351
7352         * amd64-linux-tdep.c: Include glibc-tdep.h.
7353         (amd64_linux_init_abi): Install glibc_skip_solib_resolver as
7354         gdbarch_skip_solib_resolver callback.
7355
7356 2012-05-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
7357
7358         * auto-load.c (set_auto_load_safe_path): Reset AUTO_LOAD_SAFE_PATH
7359         back to DEFAULT_AUTO_LOAD_SAFE_PATH if it is being set to "".
7360         (show_auto_load_safe_path): Check any-directory by comparison with "/".
7361         (add_auto_load_safe_path): Change the error message.
7362         (_initialize_auto_load): Change the "safe-path" help text.
7363         * configure: Regenerate
7364         * configure.ac (--without-auto-load-safe-path): Set
7365         WITH_AUTO_LOAD_SAFE_PATH to /.
7366
7367 2012-05-05  Sergio Durigan Junior  <sergiodj@redhat.com>
7368
7369         * stap-probe.h: Do not include unecessary `probe.h'.
7370
7371 2012-05-05  Alan Modra  <amodra@gmail.com>
7372
7373         * elfread.c (elf_symtab_read): Use bfd_abs_section_ptr and
7374         bfd_und_section_ptr.
7375         * machoread.c (macho_symtab_add_minsym): Use bfd_abs_section_ptr
7376         and bfd_com_section_ptr.
7377
7378 2012-05-04  Joel Brobecker  <brobecker@adacore.com>
7379
7380         * MAINTAINERS (Past Maintainers): Add Chris Faylor.
7381
7382 2012-05-04  Joel Brobecker  <brobecker@adacore.com>
7383
7384         * windows-nat.h (segment_register_p_ftype): New typedef.
7385         (windows_set_segment_register_p): Add declaration.
7386         * windows-nat.c (segment_register_p): New static global.
7387         (windows_set_segment_register_p): New function.
7388         (do_windows_fetch_inferior_registers): Add special handling
7389         for segment registers.
7390         * amd64-windows-nat.c: #include "amd64-tdep.h".
7391         (amd64_windows_segment_register_p): New function.
7392         (_initialize_amd64_windows_nat): Call windows_set_segment_register_p.
7393         * i386-windows-nat.c: #include "i386-tdep.h".
7394         (i386_windows_segment_register_p): New function.
7395         (_initialize_i386_windows_nat): Call windows_set_segment_register_p.
7396
7397 2012-05-04  Tristan Gingold  <gingold@adacore.com>
7398
7399         * printcmd.c (set_command): Emit a warning if the expression is not
7400         an assignment.
7401
7402 2012-05-03  Joel Brobecker  <brobecker@adacore.com>
7403
7404         * nto-procfs.c (procfs_find_new_threads, procfs_pid_to_str):
7405         Make static.
7406
7407 2012-05-03  Sergio Durigan Junior  <sergiodj@redhat.com>
7408
7409         * stap-probe.c (stap_is_operator): Change declaration.
7410         (stap_get_opcode): Change return value.
7411         (stap_parse_argument_1): Update calls to `stap_get_opcode' and
7412         `stap_parse_argument_1'.
7413
7414 2012-05-03  Pedro Alves  <pedro@codesourcery.com>
7415
7416         * infrun.c (displaced_step_fixup): Add "displaced:" prefix to
7417         debug log.
7418
7419 2012-05-03  Siva Chandra Reddy  <sivachandra@google.com>
7420
7421         Add two new methods global_block and static_block to gdb.Symtab
7422         objects.
7423         * NEWS (Python scripting): Add entry about the new methods.
7424         * python/py-symtab.c (stpy_global_block): New function which
7425         implements the gdb.Symtab.global_block() method.
7426         (stpy_static_block): New function which implements the
7427         gdb.Symtab.static_block() method.
7428         (symtab_object_methods): Add entries for the two new methods.
7429
7430 2012-05-03  Doug Evans  <dje@google.com>
7431
7432         * dwarf2read.c (dw2_find_symbol_file): Don't crash if there are no
7433         files.
7434
7435 2012-05-03  Yao Qi  <yao@codesourcery.com>
7436
7437         * i386-tdep.c (i386_fetch_pointer_argument): Remove extra
7438         space.
7439         (i386_process_record): Ditto.
7440
7441 2012-05-02  Joel Brobecker  <brobecker@adacore.com>
7442
7443         * infcall.c (unwind_on_signal_p): Make static.
7444
7445 2012-05-02  Joel Brobecker  <brobecker@adacore.com>
7446
7447         * sol-thread.c (solaris_pid_to_str): Make static.
7448         (_initialize_sol_thread): Add prototype.
7449
7450 2012-05-02  Joel Brobecker  <brobecker@adacore.com>
7451
7452         * sol-thread.c (procfs_pid_to_str): Delete extern declaration.
7453
7454 2012-05-02  Christopher Faylor  <me.cygwin2012@cgf.cx>
7455
7456         * MAINTAINERS: Remove myself.
7457
7458 2012-05-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
7459
7460         Fix --without-auto-load-safe-path for MS-Windows host platform.
7461         * auto-load.c (filename_is_in_dir): Return 1 for DIR_LEN 0.
7462
7463 2012-05-02  Eli Zaretskii  <eliz@gnu.org>
7464
7465         * gdb_curses.h: Undefine KEY_EVENT before including curses
7466         headers.  Move "#undef MOUSE_MOVED" before any curses header
7467         inclusion.
7468
7469 2012-05-02  Sergio Durigan Junior  <sergiodj@gmail.com>
7470
7471         * features/i386/i386-mmx-linux.c: Regenerate.
7472         * features/rs6000/powerpc-32.c: Likewise.
7473         * features/rs6000/powerpc-32l.c: Likewise.
7474         * features/rs6000/powerpc-403.c: Likewise.
7475         * features/rs6000/powerpc-403gc.c: Likewise.
7476         * features/rs6000/powerpc-405.c: Likewise.
7477         * features/rs6000/powerpc-505.c: Likewise.
7478         * features/rs6000/powerpc-601.c: Likewise.
7479         * features/rs6000/powerpc-602.c: Likewise.
7480         * features/rs6000/powerpc-603.c: Likewise.
7481         * features/rs6000/powerpc-604.c: Likewise.
7482         * features/rs6000/powerpc-64.c: Likewise.
7483         * features/rs6000/powerpc-64l.c: Likewise.
7484         * features/rs6000/powerpc-750.c: Likewise.
7485         * features/rs6000/powerpc-860.c: Likewise.
7486         * features/rs6000/powerpc-e500.c: Likewise.
7487         * features/rs6000/powerpc-e500l.c: Likewise.
7488         * features/rs6000/powerpc-isa205-32l.c: Likewise.
7489         * features/rs6000/powerpc-isa205-64l.c: Likewise.
7490         * features/rs6000/rs6000.c: Likewise.
7491
7492 2012-05-02  Sergio Durigan Junior  <sergiodj@gmail.com>
7493
7494         * i386-tdep.c (i386_stap_parse_special_token) <s>: Remove unused
7495         variable.
7496         * stap-probe.c (stap_parse_single_operand) <reg_suffix,
7497         reg_ind_suffix, reg_suffix_len, reg_ind_suffix_len>: Likewise.
7498         (stap_parse_argument) <e>: Likewise.
7499         (handle_stap_probe) <byte_order>: Likewise.
7500
7501 2012-04-30  Doug Evans  <dje@google.com>
7502
7503         * dwarf2read.c (init_cutu_and_read_dies): Renamed from
7504         init_and_read_dies_worker.  All callers updated.
7505         (init_cu_and_read_dies, init_tu_and_read_dies): Delete.  All calls
7506         replaced with init_cutu_and_read_dies.
7507         (load_partial_comp_unit): Pass 1 for use_existing_cu.
7508         (find_partial_die): Remove FIXME.  Don't free current CU.
7509
7510 2012-04-30  Sterling Augustine  <saugustine@google.com>
7511
7512         * contrib: New directory.
7513         * contrib/test_pubnames_and_indexes.py: New file.
7514
7515 2012-04-30  Doug Evans  <dje@google.com>
7516
7517         * dwarf2read.c (dwarf_decode_macros): New arg section_name.
7518         All callers updated.
7519         (init_cu_die_reader): Verify the section is non-empty.
7520         (dwarf_decode_line_header): Don't dereference section->asection
7521         until we know the section is present.
7522
7523 2012-04-29  Sergio Durigan Junior  <sergiodj@redhat.com>
7524
7525         * tracepoint.c (start_tracing, stop_tracing): Checking for NULL
7526         probes.
7527
7528 2012-04-29  Yao Qi  <yao@codesourcery.com>
7529
7530         * gdb-code-style.el: New hook gdb-markup-hook
7531         and gdb-comment-hook.
7532
7533 2012-04-28  Doug Evans  <dje@google.com>
7534
7535         Initial support for Fission.  http://gcc.gnu.org/wiki/DebugFission
7536         * symfile.c (default_symfile_relocate): Use sectp->owner instead of
7537         objfile->obfd.
7538         * symfile.h (dwarf2_debug_sections): New member addr.
7539         * dwarf2expr.c (execute_stack_op): New case DW_OP_GNU_addr_index.
7540         (ctx_no_get_addr_index): New function.
7541         * dwarf2expr.h (dwarf_expr_context_funcs): New member get_addr_index.
7542         (ctx_no_get_addr_index): Declare.
7543         * dwarf2-frame.c (dwarf2_frame_ctx_funcs): Update.
7544         * dwarf2loc.c (dwarf_expr_get_addr_index): New function.
7545         (dwarf_expr_ctx_funcs): Update.
7546         (needs_get_addr_index): New function.
7547         (needs_frame_ctx_funcs): Update.
7548         * dwarf2loc.h (dwarf2_read_addr_index): Declare.
7549         * dwarf2read.c: #include "gdbcore.h".
7550         (dwarf2_per_objfile): New members addr, dwo_files.
7551         (dwarf2_elf_names): Add entry for addr.
7552         (struct dwo_section_names): New type.
7553         (dwo_section_names): New static global.
7554         (dwarf2_cu): New members dwo_unit, addr_base, have_addr_base.
7555         (dwarf2_per_cu_data): New member is_debug_types, all boolean uses of
7556         old debug_types_section member updated to use this.
7557         Rename member debug_types_section to info_or_types_section,
7558         all uses updated.
7559         (signatured_type): Rename member type_offset to type_offset_in_tu,
7560         all uses updated.  New member type_offset_in_section.
7561         (struct dwo_sections): New type.
7562         (struct dwo_unit): New type.
7563         (struct dwo_file): New type.
7564         (die_reader_specs): New member dwo_file.
7565         (dwarf2_locate_sections): Watch for .debug_addr.
7566         (zlib_decompress_section): Use sectp->owner instead of objfile->obfd.
7567         (dwarf2_read_section): Get bfd of section from bfd's asection,
7568         instead of objfile.
7569         (create_cus_from_index): Initialize the_cu->info_or_types_section.
7570         (create_signatured_type_table_from_index): Initialize
7571         sig_type->info_or_types_section.
7572         (dw2_get_file_names): Statement lists for type units with DWO files
7573         live in the DWO file.
7574         (create_debug_types_hash_table): New function.
7575         (create_all_type_units): Rewrite.
7576         (init_cu_die_reader): New arg dwo_file, all callers updated.
7577         (init_and_read_dies_worker): Get section from
7578         this_cu->info_or_types_section.  Set sig_type->type_offset_in_section.
7579         Watch for DW_AT_GNU_dwo_name and if present lookup the file and
7580         continue reading the CU/TU from there.
7581         (init_cutu_and_read_dies_no_follow): New arg dwo_file, all callers
7582         updated.  Get section from this_cu->info_or_types_section.
7583         (create_all_comp_units): Initialize this_cu->info_or_types_section.
7584         (skip_one_die): New cases DW_FORM_GNU_addr_index,
7585         DW_FORM_GNU_str_index.
7586         (hash_dwo_file, eq_dwo_file): New functions.
7587         (allocate_dwo_file_hash_table): New function.
7588         (hash_dwo_unit, eq_dwo_unit): New functions.
7589         (allocate_dwo_unit_table): New function.
7590         (dwarf2_locate_dwo_sections): New function.
7591         (struct create_dwo_info_table_data): New type.
7592         (create_debug_info_hash_table_reader): New function.
7593         (create_debug_info_hash_table): New function.
7594         (try_open_dwo_file, open_dwo_file, init_dwo_file): New function.
7595         (lookup_dwo_file): New function.
7596         (lookup_dwo_comp_unit, lookup_dwo_type_unit): New functions.
7597         (free_dwo_file, free_dwo_file_cleanup): New functions.
7598         (free_dwo_file_from_slot, free_dwo_files): New functions.
7599         (dwarf2_get_pc_bounds): Handle DW_FORM_GNU_addr_index.
7600         (dwarf2_record_block_ranges): Ditto.
7601         (read_partial_die): Ditto.
7602         (process_enumeration_scope): Update to use type_offset_in_section.
7603         (read_full_die_1): New function.
7604         (read_full_die): Rewrite.
7605         (read_attribute_value): New cases DW_FORM_GNU_addr_index,
7606         DW_FORM_GNU_str_index.
7607         (read_addr_index_1, read_addr_index): New functions.
7608         (read_addr_index_from_leb128): New function.
7609         (struct dwarf2_read_addr_index_data): New type.
7610         (dwarf2_read_addr_index_reader): New function.
7611         (dwarf2_read_addr_index): New function.
7612         (read_str_index): New function.
7613         (leb128_size): New function.
7614         (dwarf_decode_line_header): Delete arg abfd, all callers updated.
7615         If processing a type unit from a DWO file, get the line section
7616         from the DWO file.
7617         (var_decode_location): Watch for DW_OP_GNU_addr_index.
7618         (dwarf2_const_value_attr): New cases DW_FORM_GNU_addr_index,
7619         DW_FORM_GNU_str_index.
7620         (lookup_die_type): Check whether section offset of type's die is
7621         known before looking it up.  Remove assert.  Condition can
7622         legimately happen for inter-cu type references.
7623         (dwarf_attr_name): Handle Fission attributes.
7624         (dwarf_form_name): Handle Fission forms.
7625         (dump_die_shallow): New cases DW_FORM_GNU_addr_index,
7626         DW_FORM_GNU_str_index.
7627         (follow_die_sig): Update to use type_offset_in_section.
7628         (decode_locdesc): New case DW_OP_GNU_addr_index.
7629         (skip_form_bytes): New cases DW_FORM_GNU_addr_index,
7630         DW_FORM_GNU_str_index.
7631         (cu_debug_loc_section): New function.
7632         (fill_in_loclist_baton, dwarf2_symbol_mark_computed): Call it.
7633         (dwarf2_per_objfile_free): Unmap .debug_addr section.
7634         Free DWO files if present.
7635         * xcoffread.c (dwarf2_xcoff_names): Add .debug_addr.
7636
7637         Refactor DIE reading.
7638         * dwarf2read.c (dwarf2_per_objfile): Replace members
7639         debug_info_type_hash and debug_types_type_hash with die_type_hash.
7640         (die_reader_specs): New member "die_section".  Temporarily make
7641         member "buffer" non-const, pending constifying all info_ptr uses.
7642         (die_reader_func_ftype): New typedef.
7643         (dw2_get_file_names_reader): New function.
7644         (dw2_get_file_names): Rewrite.
7645         (read_and_check_type_unit_head): Rename arg type_offset to
7646         type_offset_in_tu.
7647         (create_all_type_units): Improve debugging message.
7648         Improve dummy type unit check.
7649         (init_cu_die_reader): New arg "section".  All callers updated.
7650         (init_and_read_dies_worker): New function.
7651         (init_cu_and_read_dies, init_tu_and_read_dies): New functions.
7652         (init_cutu_and_read_dies_no_follow): New function.
7653         (init_cutu_and_read_dies_simple): New function.
7654         (process_psymtab_comp_unit_reader): New function.
7655         (process_psymtab_comp_unit): Delete args section,
7656         is_debug_types_section.  Rewrite.  All callers updated.
7657         (process_psymtab_type_unit): Renamed from process_type_comp_unit.
7658         All callers updated.  Rewrite.
7659         (load_partial_comp_unit_reader): New function.
7660         (load_partial_comp_unit): Rewrite.
7661         (skip_children): New arg reader.  Delete args buffer, cu.
7662         All callers updated.
7663         (skip_one_die): New arg reader.  Delete args buffer, cu.
7664         All callers updated.
7665         (locate_pdi_sibling): New arg reader.  Delete args buffer, abfd, cu.
7666         All callers updated.
7667         (load_full_comp_unit_reader): New function.
7668         (load_full_comp_unit): Rewrite.
7669         (read_comp_unit): Delete.
7670         (read_die_and_children_1): Delete, contents moved ...
7671         (read_die_and_children): ... here.
7672         (dwarf2_read_abbrevs): New arg abbrev_section.  All callers updated.
7673         (load_partial_dies): New arg reader.  Delete args abfd, buffer, cu.
7674         All callers updated.
7675         (read_partial_die): New arg reader.  Delete args abfd, buffer, cu.
7676         All callers updated.
7677         (find_partial_die): Rewrite load_all_dies support.
7678         (read_attribute_value): New arg reader.  Delete args abfd, cu.
7679         All callers updated.
7680         (read_attribute): New arg reader.  Delete args abfd, cu.
7681         All callers updated.
7682         (load_full_type_unit): Add assert.
7683         (read_signatured_type_reader): New function.
7684         (read_signatured_type): Rewrite.
7685         (free_stack_comp_unit): Remove call to age_cached_comp_units.
7686         (free_one_cached_comp_unit): Change target_cu arg to target_per_cu.
7687         All callers updated.  Set per_cu->cu = NULL after freeing it.
7688         (dwarf2_per_cu_offset_and_type): Renamed from dwarf2_offset_and_type.
7689         (per_cu_offset_and_type_hash): Renamed from offset_and_type_hash.
7690         (per_cu_offset_and_type_eq): Renamed from offset_and_type_eq.
7691         (set_die_type): Update.
7692         (get_die_type_at_offset): Update.
7693         (read_file_scope): Call prepare_one_comp_unit.
7694         (read_type_unit_scope): Ditto.
7695         (prepare_one_comp_unit): Set producer if present.
7696
7697 2012-04-28  Sergio Durigan Junior  <sergiodj@redhat.com>
7698
7699         * probe.c (compile_rx_or_error): Silence ARI warning about missing
7700          gettext function on `error'.
7701
7702 2012-04-27  Doug Evans  <dje@google.com>
7703
7704         * dwarf2read.c (dwarf2_read_index): Don't use index if symbol table
7705         is empty.
7706
7707 2012-04-27  Sergio Durigan Junior  <sergiodj@redhat.com>
7708             Tom Tromey  <tromey@redhat.com>
7709
7710         * breakpoint.c (struct breakpoint_objfile_data)
7711         <longjmp_searched>,<longjmp_probes>,<exception_searched>,
7712         <exception_probes>: New fields.
7713         (free_breakpoint_probes): New function.
7714         (create_longjmp_master_breakpoint): Prefer SystemTap probe over
7715         `_Unwind_DebugHook'.
7716         (create_exception_master_breakpoint): Likewise.
7717         (_initialize_breakpoint): Registering cleanup for SystemTap probes.
7718         * infrun.c: Including necessary header files for handling SystemTap
7719         probes.
7720         (handle_inferior_event): Handling longjmp breakpoint and exceptions
7721         via SystemTap probes.
7722         (check_exception_resume): Remove `func' argument.  Handle exception
7723         unwinding breakpoint set via a SystemTap probe.
7724         (insert_exception_resume_from_probe): New function.
7725
7726 2012-04-27  Sergio Durigan Junior  <sergiodj@redhat.com>
7727             Tom Tromey  <tromey@redhat.com>
7728             Jan Kratochvil  <jan.kratochvil@redhat.com>
7729
7730         * Makefile.in (SFILES): Add `probe' and `stap-probe'.
7731         (COMMON_OBS): Likewise.
7732         (HFILES_NO_SRCDIR): Add `probe'.
7733         * NEWS: Mention support for static and SystemTap probes.
7734         * amd64-tdep.c (amd64_init_abi): Initializing proper fields used by
7735         SystemTap probes' arguments parser.
7736         * arm-linux-tdep.c: Including headers needed to perform the parsing
7737         of SystemTap probes' arguments.
7738         (arm_stap_is_single_operand): New function.
7739         (arm_stap_parse_special_token): Likewise.
7740         (arm_linux_init_abi): Initializing proper fields used by SystemTap
7741         probes' arguments parser.
7742         * ax-gdb.c (require_rvalue): Removing static declaration.
7743         (gen_expr): Likewise.
7744         * ax-gdb.h (gen_expr): Declaring function.
7745         (require_rvalue): Likewise.
7746         * breakpoint.c: Include `gdb_regex.h' and `probe.h'.
7747         (bkpt_probe_breakpoint_ops): New variable.
7748         (momentary_breakpoint_from_master): Set the `probe' value.
7749         (add_location_to_breakpoint): Likewise.
7750         (break_command_1): Using proper breakpoint_ops according to the
7751         argument passed by the user in the command line.
7752         (bkpt_probe_insert_location): New function.
7753         (bkpt_probe_remove_location): Likewise.
7754         (bkpt_probe_create_sals_from_address): Likewise.
7755         (bkpt_probe_decode_linespec): Likewise.
7756         (tracepoint_probe_create_sals_from_address): Likewise.
7757         (tracepoint_probe_decode_linespec): Likewise.
7758         (tracepoint_probe_breakpoint_ops): New variable.
7759         (trace_command): Using proper breakpoint_ops according to the
7760         argument passed by the user in the command line.
7761         (initialize_breakpoint_ops): Initializing breakpoint_ops for
7762         static probes on breakpoints and tracepoints.
7763         * breakpoint.h (struct bp_location) <probe>: New field.
7764         * cli-utils.c (skip_spaces_const): New function.
7765         (extract_arg): Likewise.
7766         * cli-utils.h (skip_spaces_const): Likewise.
7767         (extract_arg): Likewise.
7768         * coffread.c (coff_sym_fns): Add `sym_probe_fns' value.
7769         * configure.ac: Append `stap-probe.o' to be generated when ELF
7770         support is present.
7771         * configure: Regenerate.
7772         * dbxread.c (aout_sym_fns): Add `sym_probe_fns' value.
7773         * elfread.c: Include `probe.h' and `arch-utils.h'.
7774         (probe_key): New variable.
7775         (elf_get_probes): New function.
7776         (elf_get_probe_argument_count): Likewise.
7777         (elf_evaluate_probe_argument): Likewise.
7778         (elf_compile_to_ax): Likewise.
7779         (elf_symfile_relocate_probe): Likewise.
7780         (stap_probe_key_free): Likewise.
7781         (elf_probe_fns): New variable.
7782         (elf_sym_fns): Add `sym_probe_fns' value.
7783         (elf_sym_fns_lazy_psyms): Likewise.
7784         (elf_sym_fns_gdb_index): Likewise.
7785         (_initialize_elfread): Initialize objfile cache for static
7786         probes.
7787         * gdb_vecs.h (struct probe): New forward declaration.
7788         (probe_p): New VEC declaration.
7789         * gdbarch.c: Regenerate.
7790         * gdbarch.h: Regenerate.
7791         * gdbarch.sh (stap_integer_prefix): New variable.
7792         (stap_integer_suffix): Likewise.
7793         (stap_register_prefix): Likewise.
7794         (stap_register_suffix): Likewise.
7795         (stap_register_indirection_prefix): Likewise.
7796         (stap_register_indirection_suffix): Likewise.
7797         (stap_gdb_register_prefix): Likewise.
7798         (stap_gdb_register_suffix): Likewise.
7799         (stap_is_single_operand): New function.
7800         (stap_parse_special_token): Likewise.
7801         (struct stap_parse_info): Forward declaration.
7802         * i386-tdep.c: Including headers needed to perform the parsing
7803         of SystemTap probes' arguments.
7804         (i386_stap_is_single_operand): New function.
7805         (i386_stap_parse_special_token): Likewise.
7806         (i386_elf_init_abi): Initializing proper fields used by SystemTap
7807         probes' arguments parser.
7808         * i386-tdep.h (i386_stap_is_single_operand): New function.
7809         (i386_stap_parse_special_token): Likewise.
7810         * machoread.c (macho_sym_fns): Add `sym_probe_fns' value.
7811         * mipsread.c (ecoff_sym_fns): Likewise.
7812         * objfiles.c (objfile_relocate1): Support relocation for static
7813         probes.
7814         * parse.c (prefixify_expression): Remove static declaration.
7815         (initialize_expout): Likewise.
7816         (reallocate_expout): Likewise.
7817         * parser-defs.h (initialize_expout): Declare function.
7818         (reallocate_expout): Likewise.
7819         (prefixify_expression): Likewise.
7820         * ppc-linux-tdep.c: Including headers needed to perform the parsing
7821         of SystemTap probes' arguments.
7822         (ppc_stap_is_single_operand): New function.
7823         (ppc_stap_parse_special_token): Likewise.
7824         (ppc_linux_init_abi): Initializing proper fields used by SystemTap
7825         probes' arguments parser.
7826         * probe.c: New file, for generic statically defined probe support.
7827         * probe.h: Likewise.
7828         * s390-tdep.c: Including headers needed to perform the parsing of
7829         SystemTap probes' arguments.
7830         (s390_stap_is_single_operand): New function.
7831         (s390_gdbarch_init): Initializing proper fields used by SystemTap
7832         probes' arguments parser.
7833         * somread.c (som_sym_fns): Add `sym_probe_fns' value.
7834         * stap-probe.c: New file, for SystemTap probe support.
7835         * stap-probe.h: Likewise.
7836         * symfile.h: Include `gdb_vecs.h'.
7837         (struct sym_probe_fns): New struct.
7838         (struct sym_fns) <sym_probe_fns>: New field.
7839         * symtab.c (init_sal): Initialize `probe' field.
7840         * symtab.h (struct probe): Forward declaration.
7841         (struct symtab_and_line) <probe>: New field.
7842         * tracepoint.c (start_tracing): Adjust semaphore on breakpoints
7843         locations.
7844         (stop_tracing): Likewise.
7845         * xcoffread.c (xcoff_sym_fns): Add `sym_probe_fns' value.
7846
7847 2012-04-27  Sergio Durigan Junior  <sergiodj@redhat.com>
7848             Tom Tromey  <tromey@redhat.com>
7849
7850         * ax-gdb.c (gen_expr): Clean up code to handle internal variables
7851         and to compile agent expressions.
7852         * infrun.c (siginfo_make_value): New argument `ignore'.
7853         (siginfo_funcs): New struct.
7854         (_initialize_infrun): New argument when calling
7855         `create_internalvar_type_lazy'.
7856         * thread.c (thread_id_make_value): New argument `ignore'.
7857         (thread_funcs): New struct.
7858         (_initialize_thread): New argument when calling
7859         `create_internalvar_type_lazy'.
7860         * tracepoint.c (sdata_make_value): New argument `ignore'.
7861         (sdata_funcs): New struct.
7862         (_initialize_tracepoint): New argument when calling
7863         `create_internalvar_type_lazy'.
7864         * value.c (make_value): New struct.
7865         (create_internalvar_type_lazy): New argument `data'.
7866         (compile_internalvar_to_ax): New function.
7867         (value_of_internalvar): Properly handling `make_value' case.
7868         (clear_internalvar): Likewise.
7869         (show_convenience): Adding `TRY_CATCH' block.
7870         * value.h (internalvar_make_value): Delete, replace by...
7871         (struct internalvar_funcs): ... this.
7872         (create_internalvar_type_lazy) <fun>: Delete argument.
7873         (create_internalvar_type_lazy) <funcs>, <data>: New arguments.
7874         (compile_internalvar_to_ax): New function.
7875         * windows-tdep.c (tlb_make_value): New argument `ignore'.
7876         (tlb_funcs): New struct.
7877         (_initialize_windows_tdep): New argument when calling
7878         `create_internalvar_type_lazy'.
7879
7880 2012-04-27  Mark Wielaard  <mjw@redhat.com>
7881
7882         * dwarf2read.c (dwarf2_get_pc_bounds): Check DW_AT_high_pc form to
7883         see whether it is an address or a constant offset from DW_AT_low_pc.
7884         (dwarf2_record_block_ranges): Likewise.
7885         (read_partial_die): Likewise.
7886
7887 2012-04-26  Mark Wielaard  <mjw@redhat.com>
7888
7889         * MAINTAINERS (Write After Approval): Add myself to the list.
7890
7891 2012-04-26  Maciej W. Rozycki  <macro@codesourcery.com>
7892
7893         * proc-utils.h (proc_prettyprint_signalset): New prototype.
7894         (proc_prettyprint_signal): Likewise.
7895         (proc_prettyprint_faultset): Likewise.
7896         (proc_prettyprint_fault): Likewise.
7897         (proc_prettyprint_actionset): Likewise.
7898         (proc_prettyprint_flags): Move to new proc-flags.c section.
7899         (proc_prettyfprint_flags): New prototype.
7900         * procfs.c (proc_nsysarg, proc_sysargs): Add prototypes.
7901         (proc_syscall, proc_cursig): Likewise.
7902         (proc_set_kill_on_last_close): Likewise.
7903         (proc_unset_kill_on_last_close): Likewise.
7904         (proc_set_watchpoint): Make static.
7905         (proc_delete_dead_threads): Likewise.
7906         (procfs_set_watchpoint): Likewise.
7907         (_initialize_procfs): Add prototype.
7908         * proc-events.c: Include proc-utils.h.
7909         (init_syscall_table): Make static.
7910         * proc-api.c (_initialize_proc_api): Add prototype.
7911         * proc-flags.c: Include proc-utils.h.
7912
7913 2012-04-26  Maciej W. Rozycki  <macro@codesourcery.com>
7914
7915         * configure.ac: Add AC_ARG_PROGRAM.
7916         * configure: Regenerate.
7917
7918 2012-04-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
7919
7920         Fix DW_AT_lower_bound defaults for DWARF-4+.
7921         * dwarf2read.c (read_subrange_type): Remove initialization of low and
7922         high.  New variable low_default_is_valid.  Implement DWARF-4+
7923         DW_AT_lower_bound defaults.  Print complaint for DW_AT_lower_bound with
7924         no default by the DWARF standard.
7925
7926 2012-04-26  Maciej W. Rozycki  <macro@mips.com>
7927             Maciej W. Rozycki  <macro@codesourcery.com>
7928
7929         * infrun.c (handle_inferior_event): Move the check for return
7930         trampolines ahead of the check for function trampolines.
7931         * mips-tdep.h (MIPS_S2_REGNUM, MIPS_GP_REGNUM): New macros.
7932         * mips-tdep.c (mips_str_mips16_call_stub): New variable.
7933         (mips_str_mips16_ret_stub): Likewise.
7934         (mips_str_call_fp_stub): Likewise.
7935         (mips_str_call_stub): Likewise.
7936         (mips_str_fn_stub): Likewise.
7937         (mips_str_pic): Likewise.
7938         (mips_in_frame_stub): New function.
7939         (mips_unwind_pc): Return the return address rather than the PC
7940         if the PC of an intermediate frame is inside a call thunk.
7941         (mips_is_stub_suffix): New function.
7942         (mips_is_stub_mode): Likewise.
7943         (mips_get_mips16_fn_stub_pc): Likewise.
7944         (mips_skip_mips16_trampoline_code): Update to handle all the
7945         currently generated stub types.  Don't recurse into __fn_stub
7946         thunks.  Remove heuristics to handle stubs beyond etext/_etext.
7947         Use cooked register accesses.
7948         (mips_in_return_stub): Reintroduce function.
7949         (mips_skip_trampoline_code): Traverse trampolines recursively.
7950         (mips_gdbarch_init): Handle MIPS16 return trampolines.
7951
7952 2012-04-26  Joel Brobecker  <brobecker@adacore.com>
7953
7954         GDB 7.4.1 released.
7955
7956 2012-04-26  Jonathan Larmour  <jifl@eCosCentric.com>
7957
7958         * arm-tdep.h (VFP_REGISTER_SIZE): Define.
7959         * features/arm-with-m-vfp-d16.xml: New file. Describes
7960         Cortex-M with VFPv4-sp-d16 FPU register layout.
7961         * features/Makefile (WHICH): Add arm-with-m-vfp-d16.
7962         * features/arm-with-m-vfp-d16.c: New. Generated from above.
7963         * arm-tdep.c: Include arm-with-m-vfp-d16.c.
7964         (arm-register_g_packet_guesses): Add vfp-d16 guess.
7965         (_initialise_arm_tdep): Initialize arm-with-m-vfp-d16 tdesc.
7966
7967 2012-04-25  Doug Evans  <dje@google.com>
7968
7969         * cli/cli-decode.c (print_doc_line): Use stream instead of
7970         current_uiout.
7971
7972 2012-04-25  Sergio Durigan Junior  <sergiodj@redhat.com>
7973
7974         * features/arm-with-iwmmxt.c: Regenerate.
7975         * features/arm-with-m-fpa-layout.c: Likewise.
7976         * features/arm-with-m.c: Likewise.
7977         * features/arm-with-neon.c: Likewise.
7978         * features/arm-with-vfpv2.c: Likewise.
7979         * features/arm-with-vfpv3.c: Likewise.
7980         * features/mips-dsp-linux.c: Likewise.
7981         * features/mips-linux.c: Likewise.
7982         * features/mips64-dsp-linux.c: Likewise.
7983         * features/mips64-linux.c: Likewise.
7984         * features/s390-linux32.c: Likewise.
7985         * features/s390-linux32v1.c: Likewise.
7986         * features/s390-linux32v2.c: Likewise.
7987         * features/s390-linux64.c: Likewise.
7988         * features/s390-linux64v1.c: Likewise.
7989         * features/s390-linux64v2.c: Likewise.
7990         * features/s390x-linux64.c: Likewise.
7991         * features/s390x-linux64v1.c: Likewise.
7992         * features/s390x-linux64v2.c: Likewise.
7993         * features/tic6x-c62x-linux.c: Likewise.
7994         * features/tic6x-c62x.c: Likewise.
7995         * features/tic6x-c64x-linux.c: Likewise.
7996         * features/tic6x-c64x.c: Likewise.
7997         * features/tic6x-c64xp-linux.c: Likewise.
7998         * features/tic6x-c64xp.c: Likewise.
7999         * target-descriptions.c: Only generate `field_type' and `type'
8000         variables when needed.
8001
8002 2012-04-25  Fredrik Hederstierna  <fredrikh.hederstierna@securitas-direct.com>
8003
8004         * cli/cli-cmds.c (cd_command): Use memmove instead of strcpy.
8005
8006 2012-04-25  Doug Evans  <dje@google.com>
8007
8008         Initial pass at Go language support.
8009         * NEWS: Mention Go.
8010         * Makefile.in (SFILES): Add go-exp.y, go-lang.c, go-typeprint.c,
8011         go-valprint.c.
8012         (COMMON_OBS): Add go-lang.o, go-val.print.o, go-typeprint.o.
8013         (YYFILES): Add go-exp.c.
8014         (YYOBJ): Add go-exp.o.
8015         (local-maintainer-clean): Delete go-exp.c.
8016         * defs.h (enum language): Add language_go.
8017         * dwarf2read.c: #include "go-lang.h".
8018         (fixup_go_packaging): New function.
8019         (process_full_comp_unit): Call it when processing Go CUs.
8020         (dwarf2_physname): Add Go support.
8021         (read_file_scope): Handle missing language spec for GNU Go.
8022         (set_cu_language): Handle DW_LANG_Go.
8023         * go-exp.y: New file.
8024         * go-lang.h: New file.
8025         * go-lang.c: New file.
8026         * go-typeprint.c: New file.
8027         * go-valprint.c: New file.
8028         * symtab.c: #include "go-lang.h".
8029         (symbol_set_language): Handle language_go.
8030         (symbol_find_demangled_name, symbol_set_names): Ditto.
8031         (symbol_natural_name, demangle_for_lookup, find_main_name): Ditto.
8032
8033 2012-04-24  Jim Meyering  <meyering@redhat.com>
8034
8035         avoid a few strncpy-induced buffer overruns
8036         * procfs.c (procfs_make_note_section): Be sure to NUL-terminate
8037         fname and psargs before trying to concatenate.
8038         * tui/tui-stack.c (tui_get_function_from_frame): NUL-terminate
8039         "name" before applying strchr.
8040
8041 2012-04-25  Siva Chandra Reddy  <sivachandra@google.com>
8042
8043         * CONTRIBUTE: Use unified diff instead of context diff when
8044         generating patches.
8045
8046 2012-04-24  Maciej W. Rozycki  <macro@codesourcery.com>
8047
8048         * mips-tdep.c (mips_about_to_return): Remove dead MIPS16 support
8049         code.  Handle JR.HB correctly.
8050
8051 2012-04-24  Maciej W. Rozycki  <macro@codesourcery.com>
8052
8053         * mips-tdep.c
8054         (is_mips16_addr, unmake_mips16_addr, make_mips16_addr): Group
8055         with the other MIPS16 helpers.
8056
8057 2012-04-24  Sergio Durigan Junior  <sergiodj@redhat.com>
8058
8059         * observer.sh: Conditionally declare `args', thus cleaning up
8060         unused instances of this variable.
8061
8062 2012-04-24  Yao Qi  <yao@codesourcery.com>
8063
8064         Revert this patch to allow breakpoint always-inserted
8065         in record target.
8066         2011-12-05  Pedro Alves  <pedro@codesourcery.com>
8067         * breakpoint.c: Include record.h.
8068         (breakpoints_always_inserted_mode): Return false when the record
8069         target is in use.
8070
8071         * breakpoint.c (iterate_over_bp_locations): New.
8072         * breakpoint.h: Declare.
8073         New typedef walk_bp_location_callback.
8074         * record.c (record_open): Call record_init_record_breakpoints.
8075         (record_sync_record_breakpoints): New.
8076         (record_init_record_breakpoints): New.
8077         * NEWS: Mention supporting breakpoint always-inserted mode in
8078         record target.
8079
8080 2012-04-24  Marc Khouzam  <marc.khouzam@ericsson.com>
8081
8082         * mi/mi-main.c (mi_cmd_execute): Choose a live thread not just
8083         any thread.
8084
8085 2012-04-24  Yao Qi  <yao@codesourcery.com>
8086
8087         * breakpoint.c (ep_is_catchpoint): Renamed to ...
8088         (is_catchpoint): ... it.
8089         (print_one_breakpoint_location): Caller update.
8090         * breakpoint.h: Update declaration.
8091
8092 2012-04-23  David S. Miller  <davem@davemloft.net>
8093
8094         * configure.tgt (sparc-*-linux*): Set build_gdbserver to yes.
8095
8096 2012-04-23  Tom Tromey  <tromey@redhat.com>
8097
8098         * buildsym.c (add_free_pendings): Remove.
8099         * buildsym.h (add_free_pendings): Remove.
8100
8101 2012-04-23  Doug Evans  <dje@google.com>
8102
8103         * dwarf2read.c (partial_die_full_name): Record DW_FORM_ref_addr in
8104         attr.u.unsnd instead of attr.u.addr.
8105         (read_attribute_value) Ditto for cases DW_FORM_ref_addr,
8106         DW_FORM_ref1, DW_FORM_ref2, DW_FORM_ref4, DW_FORM_reg8,
8107         DW_FORM_ref_udata.
8108         (dump_die_shallow): Update cases DW_FORM_ref_addr,
8109         DW_FORM_ref1, DW_FORM_ref2, DW_FORM_ref4.  Add cases DW_FORM_ref8,
8110         DW_FORM_ref_udata.
8111         (dwarf2_get_ref_die_offset): Use DW_UNSND for reference attributes.
8112
8113 2012-04-23  Maciej W. Rozycki  <macro@codesourcery.com>
8114
8115         * mips-tdep.c (mips_n32n64_return_value): Fix coding style.
8116         (mips_o32_return_value): Likewise.
8117         (mips_o64_return_value): Likewise.
8118
8119 2012-04-21  Paul Hilfinger  <hilfinger@adacore.com>
8120
8121         * ada-lang.c (ada_evaluate_subexp): Add cases for
8122         TYPE_CODE_INTERNAL_FUNCTION and for TYPE_GNU_IFUNC, following
8123         their treatment in eval.c.
8124
8125 2012-04-21  David S. Miller  <davem@davemloft.net>
8126
8127         * sparc-tdep.c (X_DISP10): Define.
8128         (sparc_analyze_control_transfer): Handle compare-and-branch.
8129
8130 2012-04-21  Jonathan Larmour  <jifl@eCosCentric.com>
8131
8132         * features/Makefile (WHICH): Add arm-with-m and arm-with-m-fpa-layout.
8133         * arm-tdep.c (arm_register_g_packet_guesses): Fix comment.
8134
8135 2012-04-20  Nigel Stephens  <nigel@mips.com>
8136             Maciej W. Rozycki  <macro@codesourcery.com>
8137
8138         * mips-tdep.c (mips_float_register_p): New function.
8139         (mips_convert_register_float_case_p): Use mips_float_register_p.
8140         (mips_register_type): Likewise.
8141         (mips_print_register): Likewise.
8142         (print_gp_register_row): Likewise.
8143         (mips_print_registers_info): Likewise.
8144
8145 2012-04-20  Shun-Yen Lu  <dark.asparagus@gmail.com>
8146
8147         * mips-tdep.c (mips_elf_make_msymbol_special): Fix identification
8148         of mips16 symbols.
8149
8150 2012-04-20  Andrew Pinski  <apinski@cavium.com>
8151
8152         * MAINTAINERS (Write After Approval): Add myself to the list.
8153
8154 2012-04-20  Sergio Durigan Junior  <sergiodj@redhat.com>
8155
8156         * MAINTAINERS: Update my e-mail address.
8157
8158 2012-04-20  Pedro Alves  <palves@redhat.com>
8159
8160         * acx_configure_dir.m4 (ACX_CONFIGURE_DIR): Handle absolute
8161         $srcdir.
8162         * configure: Regenerate.
8163
8164 2012-04-20  Sergio Durigan Junior  <sergiodj@redhat.com>
8165
8166         * cp-support.h: Include `gdb_vecs.h'.  Delete `const_char_ptr' VEC
8167         declaration.
8168         * gdb_vecs.h: Declare `const_char_ptr' VEC.
8169
8170 2012-04-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
8171
8172         Fix compilation compatibility with python-2.4
8173         * python/py-type.c (convert_field): Cast ADDRSTRING for
8174         PyObject_SetAttrString as non-const.  New comment.
8175
8176 2012-04-19  Tom Tromey  <tromey@redhat.com>
8177
8178         * top.c (quit_target): Use all_cleanups.
8179         * main.c (captured_command_loop): Use all_cleanups.
8180         * exceptions.c (throw_exception): Use all_cleanups.
8181
8182 2012-04-19  Pedro Alves  <palves@redhat.com>
8183
8184         * Makefile.in (GNULIB_BUILDDIR): New.
8185         (LIBGNU, INCGNU, GNULIB_H): Adjust.
8186         (SUBDIRS): Add $(GNULIB_BUILDDIR).
8187         (CLEANDIRS). Remove gnulib/import.
8188         (REQUIRED_SUBDIRS): Replace gnulib/import with $(GNULIB_BUILDDIR).
8189         (all-lib): Ditto.
8190         (distclean): Remove the $(GNULIB_BUILDDIR) directory.
8191         (gnulib/import/Makefile): Replace gnulib/import with
8192         $(GNULIB_BUILDDIR).  Set CONFIG_FILES to just Makefile.
8193         (ACLOCAL_AMFLAGS): Remove '-I gnulib/import/m4'.
8194         (aclocal_m4_deps): Remove the gnulib dependencies.  Add
8195         acx_configure_dir.m4.
8196         * acinclude.m4: Include acx_configure_dir.m4.
8197         * acx_configure_dir.m4: New file.
8198         * aclocal.m4: Regenerate.
8199         * configure.ac: Remove gl_EARLY, gl_INIT and AM_INIT_AUTOMAKE
8200         calls.  Configure gnulib using ACX_CONFIGURE_DIR.
8201         (GNULIB): New variable.
8202         (GNULIB_STDINT_H): Adjust.
8203         (AC_OUTPUT): Don't output gnulib/Makefile.
8204         * gdb/defs.h: Include build-gnulib/config.h.
8205         * aclocal.m4: Regenerate.
8206         * config.in: Regenerate.
8207         * configure: Regenerate.
8208
8209         * gnulib/Makefile.in: New file.
8210         * gnulib/configure.ac: New file.
8211         * gnulib/aclocal.m4: New file.
8212         * gnulib/config.in: New file.
8213         * gnulib/configure: New file.
8214         * gnulib/: Re-run gnulib-tool to adjust.
8215
8216 2012-04-19  Doug Evans  <dje@google.com>
8217
8218         * cleanups.h (struct cleanup): Move to cleanups.c.
8219         (make_cleanup_dtor_ftype): New typedef.
8220         (make_cleanup_dtor): Use it.
8221         (ALL_CLEANUPS): Replace with ...
8222         (all_cleanups): ... this.  Declare.  All uses updated.
8223         * cleanups.c: #include "gdb_assert.h".
8224         (sentinel_cleanup): New static global.
8225         (SENTINEL_CLEANUP): Define.
8226         (cleanup_chain, final_cleanup_chain): Initialize to SENTINEL_CLEANUP.
8227         (make_my_cleanup2): Assert result is non-NULL.
8228         (all_cleanups): New function.
8229         (save_my_cleanups): Initialize new chain to SENTINEL_CLEANUP instead
8230         of NULL.
8231
8232 2012-04-19  Pedro Alves  <palves@redhat.com>
8233
8234         * Makefile.in (HFILES_NO_SRCDIR): Remove gnulib/wchar.in.h.
8235         Adjust paths to gnulib imported files.
8236
8237 2012-04-19  Pedro Alves  <palves@redhat.com>
8238
8239         * gnulib/: Move whole directory ...
8240         * gnulib/import/: ... here, and re-rerun gnulib-tool to adjust.
8241         * Makefile.in (LIBGNU, INCGNU, GNULIB_H, CLEANDIRS)
8242         (REQUIRED_SUBDIRS, all-lib, gnulib/Makefile, ACLOCAL_AMFLAGS)
8243         (aclocal_m4_deps): Adjust.
8244         * aclocal.m4: Regenerate.
8245         * configure: Regenerate.
8246         * configure.ac: Adjust AC_OUTPUT output.
8247
8248 2012-04-19  Yao Qi  <yao@codesourcery.com>
8249
8250         * Makefile.in (SFILES): Add common/vec.c and remove vec.c.
8251         (vec.o): New rule.
8252         * vec.c: Move it ...
8253         * common/vec.c: ... here.
8254         * vec.h: Move it ...
8255         * common/vec.h: ... here.
8256
8257 2012-04-19  Yao Qi  <yao@codesourcery.com>
8258
8259         * gdb-code-style.el: New.
8260
8261 2012-04-18  Pedro Alves  <palves@redhat.com>
8262
8263         Update gnulib from latest git.
8264         (639ea5ae15e39fe48d43e04864b2997301e4b969)
8265
8266         * gnulib/Makefile.am: Update.
8267         * gnulib/dummy.c: Update.
8268         * gnulib/extra/arg-nonnull.h: Update.
8269         * gnulib/extra/c++defs.h: Update.
8270         * gnulib/extra/update-copyright: Update.
8271         * gnulib/extra/warn-on-use.h: Update.
8272         * gnulib/inttypes.in.h: Update.
8273         * gnulib/m4/00gnulib.m4: Update.
8274         * gnulib/m4/extensions.m4: Update.
8275         * gnulib/m4/gnulib-cache.m4: Update.
8276         * gnulib/m4/gnulib-common.m4: Update.
8277         * gnulib/m4/gnulib-comp.m4: Update.
8278         * gnulib/m4/gnulib-tool.m4: Update.
8279         * gnulib/m4/include_next.m4: Update.
8280         * gnulib/m4/inttypes-pri.m4: Update.
8281         * gnulib/m4/inttypes.m4: Update.
8282         * gnulib/m4/longlong.m4: Update.
8283         * gnulib/m4/memchr.m4: Update.
8284         * gnulib/m4/memmem.m4: Update.
8285         * gnulib/m4/mmap-anon.m4: Update.
8286         * gnulib/m4/multiarch.m4: Update.
8287         * gnulib/m4/onceonly.m4: Update.
8288         * gnulib/m4/stddef_h.m4: Update.
8289         * gnulib/m4/stdint.m4: Update.
8290         * gnulib/m4/string_h.m4: Update.
8291         * gnulib/m4/warn-on-use.m4: Update.
8292         * gnulib/m4/wchar_h.m4: Update.
8293         * gnulib/m4/wchar_t.m4: Update.
8294         * gnulib/m4/wint_t.m4: Update.
8295         * gnulib/memchr.c: Update.
8296         * gnulib/memmem.c: Update.
8297         * gnulib/stddef.in.h: Update.
8298         * gnulib/stdint.in.h: Update.
8299         * gnulib/str-two-way.h: Update.
8300         * gnulib/string.in.h: Update.
8301         * gnulib/wchar.in.h: Update.
8302
8303         * gnulib/extra/arg-nonnull.h: Delete.
8304         * gnulib/extra/c++defs.h: Delete.
8305         * gnulib/extra/warn-on-use.h: Delete.
8306         * gnulib/m4/wchar_h.m4: Delete.
8307         * gnulib/m4/wint_t.m4: Delete.
8308         * gnulib/wchar.in.h: Delete.
8309
8310         * gnulib/extra/snippets/arg-nonnull.h: New.
8311         * gnulib/extra/snippets/c++defs.h: New.
8312         * gnulib/extra/snippets/warn-on-use.h: New.
8313
8314         * aclocal.m4: Regenerate.
8315         * config.in: Regenerate.
8316         * configure: Regenerate.
8317         * gnulib/Makefile.in: Regenerate.
8318
8319 2012-04-18  Pedro Alves  <palves@redhat.com>
8320
8321         Reimport the update-copyright module from gnulib
8322         (250b80067c1e1d8faa0c42fb572f721975b929c5).
8323
8324         * configure: Regenerate.
8325         * gnulib/Makefile.am: Update.
8326         * gnulib/Makefile.in: Regenerate.
8327         * gnulib/extra/update-copyright: Update.
8328         * gnulib/m4/gnulib-cache.m4: Update.
8329         * gnulib/m4/gnulib-comp.m4: Update.
8330
8331 2012-04-18  Tristan Gingold  <gingold@adacore.com>
8332
8333         * configure.ac (aix): Put -lpthread into libs.
8334         * configure: Regenerate.
8335
8336 2012-04-18  Tom Tromey  <tromey@redhat.com>
8337
8338         * linespec.c (convert_linespec_to_sals): Don't use
8339         SYMBOL_OBJ_SECTION.
8340         (compare_msymbols): Arguments are minsym_and_objfile, not
8341         minimal_symbol*.  Don't use SYMBOL_OBJ_SECTION.
8342
8343 2012-04-18  Pedro Alves  <palves@redhat.com>
8344
8345         Revert gnulib/ part of:
8346         2011-01-01  Joel Brobecker  <brobecker@adacore.com>
8347         Copyright year update in most files (performed by copyright.sh).
8348
8349 2012-04-18  Jan Kratochvil  <jan.kratochvil@redhat.com>
8350
8351         Fix 64-bit constants on 32-bit hosts.
8352         * dwarf2read.c (read_unsigned_leb128): Change declaration return type
8353         from unsigned long to ULONGEST.
8354         (read_signed_leb128): Change declaration return type from long to
8355         LONGEST.
8356         (dwarf2_const_value_attr): Change declaration parameter value from long
8357         to LONGEST.
8358         (dwarf2_compute_name): Change variable value from long to LONGEST.
8359         (read_unsigned_leb128): Change return type, variable result and some
8360         casts from unsigned long to ULONGEST.
8361         (read_signed_leb128): Change return type, variable result and some
8362         casts from long to LONGEST.
8363         (dwarf2_const_value_data, dwarf2_const_value_attr): Change parameter
8364         value from long to LONGEST.
8365         (dwarf2_const_value): Change variable value from long to LONGEST.
8366         * symmisc.c (print_symbol): Change SYMBOL_VALUE format strings to use
8367         plongest and hex_string.
8368         * symtab.h (struct general_symbol_info): Change ivalue from long to
8369         LONGEST, remove the comment.
8370         * tracepoint.c (validate_actionline, collect_symbol, scope_info):
8371         Change SYMBOL_VALUE format strings to use plongest and hex_string.
8372
8373 2012-04-18  Siddhesh Poyarekar  <siddhesh@redhat.com>
8374
8375         PR symtab/7259:
8376         * ada-exp.y (convert_char_literal): Use TYPE_FIELD_ENUMVAL.
8377         * ada-lang.c (ada_discrete_type_high_bound)
8378         (ada_discrete_type_low_bound): Fix function comment.  Use
8379         TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
8380         (ada_identical_enum_types_p): Use TYPE_FIELD_ENUMVAL.
8381         (pos_atr, value_val_atr): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
8382         * ada-typeprint.c (print_enum_type): Change variable lastval to LONGEST.
8383         Use TYPE_FIELD_ENUMVAL.
8384         * ada-valprint.c (print_optional_low_bound, ada_print_scalar)
8385         (ada_val_print_1): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
8386         * c-typeprint.c (c_type_print_base): Move variable lastval to inner
8387         block, change it to LONGEST.  Use TYPE_FIELD_ENUMVAL for
8388         TYPE_CODE_ENUM.
8389         * coffread.c (coff_read_enum_type): Use SET_FIELD_ENUMVAL.
8390         * dwarf2read.c (process_enumeration_scope): Likewise.
8391         * gdb-gdb.py (TypeFlagsPrinter): Use field.enumval instead of
8392         field.bitpos.
8393         (class StructMainTypePrettyPrinter): Support also
8394         FIELD_LOC_KIND_ENUMVAL.
8395         * gdbtypes.c (get_discrete_bounds): Use TYPE_FIELD_ENUMVAL for
8396         TYPE_CODE_ENUM.
8397         (recursive_dump_type): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
8398         (copy_type_recursive): Support also FIELD_LOC_KIND_ENUMVAL.
8399         * gdbtypes.h (enum field_loc_kind): New FIELD_LOC_KIND_ENUMVAL.
8400         (struct main_type.flds_bnds.fields.loc): Adjust bitpos comment.  New
8401         field enumval.
8402         (struct main_type.flds_bnds.bields): Adjust loc_kind and bitsize to
8403         accommodate enumval.
8404         (struct call_site): Adjust loc_kind to accommodate enumval.
8405         (FIELD_ENUMVAL, FIELD_ENUMVAL_LVAL, SET_FIELD_ENUMVAL)
8406         (TYPE_FIELD_ENUMVAL): New macros.
8407         * m2-typeprint.c (m2_enum): Use TYPE_FIELD_ENUMVAL.
8408         * mdebugread.c (parse_symbol): Use TYPE_FIELD_ENUMVAL for
8409         TYPE_CODE_ENUM.
8410         * p-typeprint.c (pascal_type_print_base): Likewise.
8411         * python/lib/gdb/printing.py (class FlagEnumerationPrinter): Use
8412         enumval.
8413         * python/lib/gdb/types.py (make_enum_dict): Likewise.
8414         * python/py-type.c (convert_field): New variable addrstring.  Use
8415         TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
8416         (check_types_equal): Support also FIELD_LOC_KIND_ENUMVAL.
8417         * stabsread.c (read_enum_type): Use SET_FIELD_ENUMVAL.
8418         * typepint.c (print_type_scalar): Use TYPE_FIELD_ENUMVAL for
8419         TYPE_CODE_ENUM.
8420         * valprint.c (generic_val_print): Likewise.
8421
8422 2012-04-17  Doug Evans  <dje@google.com>
8423
8424         * dwarf2read.c (lookup_signatured_type): Return NULL instead of 0.
8425
8426         * dwarf2read.c: Whitespace fixes.
8427         (lookup_signatured_type): Tweak comment.
8428         (get_die_type_at_offset): Fix comment.
8429
8430 2012-04-17  Joel Brobecker  <brobecker@adacore.com>
8431
8432         * xcoffread.c (xcoff_secnum_to_sections): New function.
8433         (secnum_to_section, secnum_to_bfd_section): Reimplement
8434         using xcoff_secnum_to_sections.  Rename "secnum" parameter
8435         into "n_scnum".
8436         (RECORD_MINIMAL_SYMBOL): Delete.
8437         (record_minimal_symbol): New function.
8438         (scan_xcoff_symtab): Replace uses of RECORD_MINIMAL_SYMBOL
8439         by call to record_minimal_symbol and set misc_func_recorded
8440         to 1.  Set last_csect_sec to the XCOFF section index instead
8441         of GDB's section_offset index.  Update calls to
8442         prim_record_minimal_symbol_and_info to pass the BFD section
8443         as well.
8444
8445 2012-04-17  Joel Brobecker  <brobecker@adacore.com>
8446
8447         * xcoffread.c (read_xcoff_symtab): Delete variables
8448         last_csect_val and last_csect_sec and associated code.
8449
8450 2012-04-17  Doug Evans  <dje@google.com>
8451
8452         * cleanups.c (make_my_cleanup,make_my_cleanup2): Make static.
8453         (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto.
8454         * cleanups.h (make_my_cleanup,make_my_cleanup2): Delete
8455         (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Delete.
8456
8457         * cleanups.h: New file.
8458         * cleanups.c: New file.
8459         * Makefile.in (SFILES): Add cleanups.c.
8460         (HFILES_NO_SRCDIR): Add cleanups.h.
8461         (COMMON_OBS): Add cleanups.o.
8462         * defs.h (struct cleanup): Moved to cleanups.h.
8463         (do_cleanups,do_final_cleanups): Ditto.
8464         (discard_cleanups,discard_final_cleanups): Ditto
8465         (make_cleanup,make_cleanup_dtor,make_final_cleanup): Ditto.
8466         (save_cleanups,save_final_cleanups): Ditto.
8467         (restore_cleanups,restore_final_cleanups): Ditto.
8468         (null_cleanup): Ditto.
8469         (make_my_cleanup,make_my_cleanup2): Ditto.
8470         (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto.
8471         * utils.c (cleanup_chain,final_cleanup_chain): Moved to cleanups.c.
8472         (do_cleanups,do_final_cleanups): Ditto.
8473         (discard_cleanups,discard_final_cleanups): Ditto
8474         (make_cleanup,make_cleanup_dtor,make_final_cleanup): Ditto.
8475         (save_cleanups,save_final_cleanups): Ditto.
8476         (restore_cleanups,restore_final_cleanups): Ditto.
8477         (null_cleanup): Ditto.
8478         (make_my_cleanup,make_my_cleanup2): Ditto.
8479         (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto.
8480
8481         * utils.c (make_cleanup_freeargv): Use make_cleanup instead of
8482         make_my_cleanup.
8483         (make_cleanup_dyn_string_delete): Ditto.
8484         (make_cleanup_ui_file_delete): Ditto.
8485         (make_cleanup_ui_out_redirect_pop): Ditto.
8486         (make_cleanup_free_section_addr_info): Ditto.
8487         (make_cleanup_restore_integer): Ditto.
8488         (make_cleanup_unpush_target): Ditto.
8489         (make_cleanup_value_free_to_mark): Ditto.
8490         (make_cleanup_value_free): Ditto.
8491         (make_cleanup_free_so): Ditto.
8492
8493 2012-04-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
8494
8495         New option "set debug auto-load".
8496         * NEWS: New commands "set debug auto-load" and "show debug auto-load".
8497         * auto-load.c (debug_auto_load, show_debug_auto_load: New.
8498         (auto_load_safe_path_vec_update)
8499         (filename_is_in_auto_load_safe_path_vec): Call fprintf_unfiltered
8500         if DEBUG_AUTO_LOAD.
8501         (file_is_auto_load_safe): New parameters debug_fmt and ....
8502         Call fprintf_unfiltered if DEBUG_AUTO_LOAD.
8503         (source_gdb_script_for_objfile): Extend the file_is_auto_load_safe
8504         caller by explanatory string.
8505         (_initialize_auto_load): Register "set debug auto-load".
8506         * auto-load.h (file_is_auto_load_safe): New parameters debug_fmt
8507         and ....
8508         * linux-thread-db.c (try_thread_db_load_from_pdir_1)
8509         (try_thread_db_load_from_dir): Extend the file_is_auto_load_safe caller
8510         by explanatory string.
8511         * main.c (captured_main): Likewise.
8512         * python/py-auto-load.c (gdbpy_load_auto_script_for_objfile)
8513         (source_section_scripts): Likewise.
8514
8515 2012-04-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
8516
8517         New option "set auto-load safe-path".
8518         * NEWS: New commands "set auto-load safe-path"
8519         and "show auto-load safe-path".
8520         * auto-load.c: Include gdb_vecs.h, readline/tilde.h and completer.h.
8521         (auto_load_safe_path, auto_load_safe_path_vec)
8522         (auto_load_safe_path_vec_update, set_auto_load_safe_path)
8523         (show_auto_load_safe_path, add_auto_load_safe_path, filename_is_in_dir)
8524         (filename_is_in_auto_load_safe_path_vec, file_is_auto_load_safe): New.
8525         (source_gdb_script_for_objfile): New variable is_safe.  Call
8526         file_is_auto_load_safe.  Return if it is not.
8527         (struct loaded_script): New field loaded.
8528         (maybe_add_script): Add parameter loaded.  Initialize SLOT with it.
8529         (print_script): Use LOADED indicator instead of FULL_PATH.  Change
8530         output "Missing" to "No".
8531         (_initialize_auto_load): New variable cmd.  Initialize
8532         auto_load_safe_path.  Register "set auto-load safe-path",
8533         "show auto-load safe-path" and "add-auto-load-safe-path".
8534         * auto-load.h (maybe_add_script): Add parameter loaded.
8535         (file_is_auto_load_safe): New declaration.
8536         * config.in: Regenerate.
8537         * configure: Regenerate.
8538         * configure.ac: New parameters --with-auto-load-safe-path
8539         and --without-auto-load-safe-path.
8540         * linux-thread-db.c (try_thread_db_load_from_pdir_1)
8541         (try_thread_db_load_from_dir): Check file_is_auto_load_safe first.
8542         * main.c (captured_main): Check file_is_auto_load_safe for
8543         LOCAL_GDBINIT.
8544         * python/py-auto-load.c (gdbpy_load_auto_script_for_objfile): New
8545         variable is_safe.  Call file_is_auto_load_safe.  Return if it is not.
8546         (source_section_scripts): Call file_is_auto_load_safe.  Return if it is
8547         not.
8548
8549 2012-04-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
8550
8551         auto-load: Implementation.
8552         * NEWS: New descriptions for "info auto-load",
8553         "info auto-load gdb-scripts", "info auto-load python-scripts",
8554         "info auto-load local-gdbinit" and "info auto-load libthread-db".
8555         Deprecate "info auto-load-scripts", "set auto-load-scripts on|off"
8556         and "show auto-load-scripts".  New description for "set auto-load",
8557         "show auto-load", "set auto-load gdb-scripts",
8558         "show auto-load gdb-scripts", "set auto-load python-scripts",
8559         "show auto-load python-scripts", "set auto-load local-gdbinit",
8560         "show auto-load local-gdbinit", "set auto-load libthread-db" and
8561         "show auto-load libthread-db".
8562         * auto-load.c: Remove include python/python-internal.h.  Add includes
8563         exceptions.h, cli/cli-script.h, gdbcmd.h, cli/cli-decode.h and
8564         cli/cli-setshow.h.
8565         (GDB_AUTO_FILE_NAME, source_gdb_script_for_objfile)
8566         (auto_load_gdb_scripts, show_auto_load_gdb_scripts): New.
8567         (gdbpy_global_auto_load): Rename to ...
8568         (global_auto_load): ... here.
8569         (auto_load_local_gdbinit, auto_load_local_gdbinit_pathname)
8570         (auto_load_local_gdbinit_loaded, show_auto_load_local_gdbinit)
8571         (script_language_gdb, source_gdb_script_for_objfile): New.
8572         (struct loaded_script): New field language.
8573         (hash_loaded_script_entry, eq_loaded_script_entry): Calculate also
8574         LANGUAGE.
8575         (maybe_add_script): Add parameter language.  Drop redundant
8576         entry.full_path initialization.  Initialize entry.language and
8577         (*slot)->language.
8578         (auto_load_objfile_script): Change parameter suffix to language.
8579         Remove the call of maybe_add_script.
8580         Call language->source_script_for_objfile.
8581         (load_auto_scripts_for_objfile, struct collect_matching_scripts_data):
8582         New.
8583         (collect_matching_scripts): Adjust it for
8584         struct collect_matching_scripts_data.
8585         (auto_load_info_scripts_pattern_nl): New variable.
8586         (info_auto_load_scripts): Rename to ...
8587         (auto_load_info_scripts): ... here, add parameter language.  Adjust it
8588         for struct collect_matching_scripts_data.
8589         (info_auto_load_gdb_scripts, info_auto_load_local_gdbinit)
8590         (set_auto_load_cmd, auto_load_set_cmdlist_get, show_auto_load_cmd)
8591         (auto_load_show_cmdlist_get, info_auto_load_cmd)
8592         (auto_load_info_cmdlist_get): New.
8593         (_initialize_auto_load): Move add_info of "auto-load-scripts" to
8594         python/py-auto-load.c.  New installment for "set auto-load gdb-scripts",
8595         "info auto-load gdb-scripts", "set auto-load local-gdbinit" and
8596         "info auto-load local-gdbinit".
8597         * auto-load.h (struct script_language): New.
8598         (gdbpy_global_auto_load): Rename to ...
8599         (global_auto_load): ... here.
8600         (auto_load_local_gdbinit, auto_load_local_gdbinit_pathname)
8601         (auto_load_local_gdbinit_loaded): New declarations.
8602         (maybe_add_script): New parameter language.
8603         (auto_load_objfile_script): Change parameter suffix to language.
8604         (load_auto_scripts_for_objfile, auto_load_info_scripts_pattern_nl)
8605         (auto_load_info_scripts, auto_load_set_cmdlist_get)
8606         (auto_load_show_cmdlist_get, auto_load_info_cmdlist_get): New
8607         declarations.
8608         * linux-thread-db.c: Include auto-load.h and ctype.h.
8609         (auto_load_thread_db, show_auto_load_thread_db): New.
8610         (struct thread_db_info): New field filename.
8611         (delete_thread_db_info): Call xfree for FILENAME.
8612         (try_thread_db_load): Initialize FILENAME.
8613         (try_thread_db_load_from_pdir, try_thread_db_load_from_dir): Return
8614         if !AUTO_LOAD_THREAD_DB.
8615         (info_auto_load_libthread_db_compare, info_auto_load_libthread_db): New.
8616         (_initialize_thread_db): Install auto_load_thread_db
8617         as "set auto-load libthread-db" and install info_auto_load_libthread_db
8618         as "info auto-load libthread-db".
8619         * main.c (captured_main): Rename gdbpy_global_auto_load to
8620         global_auto_load.  Initialize AUTO_LOAD_LOCAL_GDBINIT_PATHNAME and
8621         AUTO_LOAD_LOCAL_GDBINIT_LOADED.
8622         (print_gdb_help): Extend the help for 'local init file'.
8623         * python/py-auto-load.c: Remove a comment about gdb scripts extension.
8624         (GDBPY_AUTO_SECTION_NAME): Extend the comment it is Python specific.
8625         (auto_load_scripts): Rename to ...
8626         (auto_load_python_scripts): ... here, update the comment.
8627         (gdbpy_load_auto_script_for_objfile): New declaration.
8628         (show_auto_load_python_scripts, script_language_python)
8629         (gdbpy_load_auto_script_for_objfile): New.
8630         (source_section_scripts): Refactor the code.
8631         (load_auto_scripts_for_objfile): Rename to ...
8632         (gdbpy_load_auto_scripts_for_objfile): ... here, update the
8633         auto_load_objfile_script caller, drop GDBPY_GLOBAL_AUTO_LOAD checking.
8634         (info_auto_load_python_scripts): New.
8635         (gdbpy_initialize_auto_load): New variables cmd and cmd_name.
8636         Rename "set auto-load-scripts" to "set auto-load python-scripts".
8637         Register "set auto-load-scripts" as its deprecated alias.  Register
8638         "info auto-load python-scripts".  Register "info auto-load-scripts" as
8639         its deprecated alias.
8640         (load_auto_scripts_for_objfile): Rename to ...
8641         (gdbpy_load_auto_scripts_for_objfile): ... here.
8642         * python/python.h (load_auto_scripts_for_objfile): Rename to ...
8643         (gdbpy_load_auto_scripts_for_objfile): ... here.
8644
8645 2012-04-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
8646
8647         auto-load: Move files.
8648         * Makefile.in (SFILES): Add auto-load.c.
8649         (HFILES_NO_SRCDIR): Add auto-load.h.
8650         (COMMON_OBS): Add auto-load.o.
8651         (distclean): Change .gdbinit for gdb-gdb.gdb.
8652         * auto-load.c: New file, with parts from python/py-auto-load.c.
8653         * auto-load.h: New file, with parts from python/python.h.
8654         * configure: Regenerate.
8655         * configure.ac (AC_OUTPUT): Change .gdbinit for gdb-gdb.gdb.
8656         * gdb-gdb.gdb.in: New file, renamed from gdbinit.in.
8657         * gdbinit.in: Remove file, rename it to gdb-gdb.gdb.in.
8658         * main.c: Include auto-load.h.
8659         * python/py-auto-load.c: Move include filenames.h, gdb_regex.h,
8660         command.h, observer.h and progspace.h to auto-load.c.  Add include
8661         auto-load.h.
8662         (gdbpy_global_auto_load, struct auto_load_pspace_info)
8663         (struct loaded_script, auto_load_pspace_data)
8664         (auto_load_pspace_data_cleanup, get_auto_load_pspace_data)
8665         (hash_loaded_script_entry, eq_loaded_script_entry)
8666         (init_loaded_scripts_info, get_auto_load_pspace_data_for_loading)
8667         (maybe_add_script): Move to auto-load.c.
8668         (source_section_scripts): Change maybe_add_script parameters passing,
8669         use script_not_found_warning_print.
8670         (clear_section_scripts, auto_load_objfile_script)
8671         (auto_load_new_objfile, loaded_script_ptr)
8672         (DEF_VEC_P (loaded_script_ptr), collect_matching_scripts, print_script)
8673         (sort_scripts_by_name, info_auto_load_scripts): Move to auto-load.c.
8674         (gdbpy_initialize_auto_load): Move auto_load_pspace_data,
8675         auto_load_new_objfile and info_auto_load_scripts initizations to
8676         auto-load.c.
8677         * python/python.h (gdbpy_global_auto_load): Move to auto-load.h.
8678
8679 2012-04-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
8680
8681         Code cleanup.
8682         * charset.c (find_charset_names): Remove variables ix and elt.
8683         Use free_char_ptr_vec.
8684         * elfread.c (build_id_to_debug_filename): New variables debugdir_vec,
8685         back_to and ix.  Use dirnames_to_char_ptr_vec.  Remove variable
8686         debugdir_end.  New variable debugdir_len.
8687         * gdb_vecs.h (free_char_ptr_vec, make_cleanup_free_char_ptr_vec)
8688         (dirnames_to_char_ptr_vec_append, dirnames_to_char_ptr_vec): New
8689         declarations.
8690         * progspace.c (clear_program_space_solib_cache): Remove variables ix
8691         and elt.  Use free_char_ptr_vec.
8692         * source.c (add_path): Remove variables argv, arg and argv_index.
8693         New variables dir_vec, back_to, ix and name.
8694         Use dirnames_to_char_ptr_vec_append.  Use freeargv instead of
8695         make_cleanup_freeargv.  Remove variable separator.  Simplify the code
8696         no longer expecting DIRNAME_SEPARATOR.
8697         (openp): Remove variable p, p1 and len.  New variables dir_vec,
8698         back_to, ix and dir.  Use dirnames_to_char_ptr_vec.  Simplify the code
8699         no longer expecting DIRNAME_SEPARATOR.
8700         * symfile.c (find_separate_debug_file): New variables debugdir_vec,
8701         back_to and ix.  Use dirnames_to_char_ptr_vec.  Remove variable
8702         debugdir_end.
8703         * utils.c (free_char_ptr_vec, do_free_char_ptr_vec)
8704         (make_cleanup_free_char_ptr_vec, dirnames_to_char_ptr_vec_append)
8705         (dirnames_to_char_ptr_vec): New functions.
8706
8707 2012-04-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
8708
8709         Code cleanup.
8710         * source.c (add_path): Remove always true conditional 'p == 0' and
8711         unindent its code block.
8712
8713 2012-04-17  Pedro Alves  <palves@redhat.com>
8714
8715         * gdbtypes.h (FIELD_BITPOS): Rename to ...
8716         (FIELD_BITPOS_LVAL): ... this.
8717         (FIELD_BITPOS): New.
8718         (SET_FIELD_BITPOS): Adjust to use FIELD_BITPOS_LVAL.
8719         * dwarf2read.c (dwarf2_add_field): Use SET_FIELD_BITPOS.
8720         * gdbtypes.c (append_composite_type_field_aligned): Adjust to use
8721         SET_FIELD_BITPOS.
8722         * gnu-v3-abi.c (build_gdb_vtable_type): Adjust to use
8723         SET_FIELD_BITPOS.
8724         * stabsread.c (read_cpp_abbrev, read_one_struct_field)
8725         (read_baseclasses): Adjust to use SET_FIELD_BITPOS.
8726         * target-descriptions.c (tdesc_gdb_type): Adjust to use
8727         SET_FIELD_BITPOS.
8728
8729 2012-04-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
8730
8731         Do not rely on FIELD_LOC_KIND_BITPOS being zero.
8732         * ada-lang.c (ada_template_to_fixed_record_type_1): Replace
8733         TYPE_FIELD_BITPOS used as lvalue by SET_FIELD_BITPOS.
8734         * gdbtypes.c (append_flags_type_flag): Likewise, twice.
8735         * jv-lang.c (java_link_class_type): Likewise, once.
8736         * stabsread.c (read_enum_type): Likewise.
8737
8738 2012-04-16  Yao Qi  <yao@codesourcery.com>
8739
8740         * common/agent.c (agent_run_command): Add one more parameter `len'.
8741         Update callers.
8742         * common/agent.h: Update declaration.
8743         * linux-nat.c (linux_child_static_tracepoint_markers_by_strid):
8744         Update.
8745         (linux_child_static_tracepoint_markers_by_strid): Ditto.
8746
8747 2012-04-14  Anton Gorenkov <xgsa@yandex.ru>
8748
8749         PR mi/13393
8750         * value.c (value_actual_type): New function.
8751         * value.h (value_actual_type): New declaration.
8752         * varobj.c (update_type_if_necessary): New function.
8753         (varobj_create): Call value_actual_type instead of
8754         value_type.
8755         (install_dynamic_child): distinct changed and type changed MI variable
8756         objects.
8757         (update_dynamic_varobj_children): Updated for install_dynamic_child
8758         change.  All callers updated.
8759         (varobj_update): Support for MI variable object type change if
8760         the value changed and RTTI is used to determine the type.
8761         (create_child_with_value): Call value_actual_type instead of
8762         value_type.
8763         (adjust_value_for_child_access): Extended with a new parameter which
8764         specify whether the given value should be casted to enclosing type.
8765         All callers updated.
8766
8767 2012-04-14  Yao Qi  <yao@codesourcery.com>
8768
8769         Import gnulib module inttypes from git
8770         (250b80067c1e1d8faa0c42fb572f721975b929c5)
8771         * Makefile.in (HFILES_NO_SRCDIR): Add gnulib/inttypes.in.h.
8772         (aclocal_m4_deps): Add gnulib/m4/inttypes.m4 and
8773         gnulib/m4/inttypes-pri.m4
8774         * aclocal.m4, config.in, configure: Regenerated.
8775         * gnulib/Makefile.am: Update.
8776         * gnulib/Makefile.in: Update.
8777         * gnulib/m4/gnulib-cache.m4: Update.
8778         * gnulib/m4/gnulib-comp.m4: Update.
8779         * gnulib/inttypes.in.h: New.
8780         * gnulib/m4/inttypes-pri.m4: New.
8781         * gnulib/m4/inttypes.m4: New.
8782
8783 2012-04-13  Luis Machado  <lgustavo@codesourcery.com>
8784
8785         * infrun.c (resume): Update PC address to the real PC after
8786         preparing to do displaced stepping.
8787
8788 2012-04-12  Doug Evans  <dje@google.com>
8789
8790         * dwarf2read.c (lookup_signatured_type): Remove arg "objfile", unused.
8791         All callers updated.
8792
8793 2012-04-12  Mark Kettenis  <kettenis@gnu.org>
8794
8795         * i386bsd-nat.c (_initialize_i386bsd_nat): Add missing prototype.
8796
8797 2012-04-12  Doug Evans  <dje@google.com>
8798
8799         * dwarf2read.c (create_all_type_units): Renamed from
8800         create_debug_types_hash_table.  All callers updated.
8801
8802         * dwarf2read.c (create_signatured_type_table_from_index): Rename
8803         local type_sig to sig_type, type_offset to type_offset_in_tu.
8804         (hash_signatured_type): Renamed from hash_type_signature,
8805         all callers updated.
8806         (eq_signatured_type): Renamed from eq_type_signature,
8807         all callers updated.
8808         (create_debug_types_hash_table): Rename local type_sig to sig_type.
8809         (process_enumeration_scope): Ditto.
8810         (lookup_signatured_type_at_offset): Ditto.
8811         (load_full_type_unit, read_signatured_type): Ditto.
8812
8813 2012-04-12  Yao Qi  <yao@codesourcery.com>
8814
8815         * remote.c (async_remote_interrupt): Correct function name in
8816         debug message.
8817         (async_remote_interrupt_twice): Ditto.
8818
8819 2012-04-11  Yuanhui Zhang  <asmwarrior@gmail.com>
8820
8821         * source.c (find_and_open_source): Consistently pass resulting
8822         full path through xfullpath.
8823
8824 2012-04-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
8825
8826         Provide more specific displaced-stepping memory error message.
8827         * infrun.c (displaced_step_prepare): New variable status.  Call
8828         target_read_memory instead of read_memory, provide more specific
8829         error message.
8830
8831 2012-04-11  Tristan Gingold  <gingold@adacore.com>
8832
8833         PR gdb/13901
8834         * darwin-nat.c (darwin_execvp): Revert previous patch.
8835
8836 2012-04-11  Tristan Gingold  <gingold@adacore.com>
8837
8838         PR gdb/13901
8839         * darwin-nat.c (darwin_resume_thread): Call darwin_set_sstep only
8840         in case of change.
8841
8842 2012-04-11  Tristan Gingold  <gingold@adacore.com>
8843
8844         * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Fix
8845         warning.
8846
8847 2012-04-11  Siva Chandra Reddy  <sivachandra@google.com>
8848
8849         New command 'explore' which helps explore values and types in
8850         scope.
8851         * NEWS: Add an entry about the new 'explore' command.
8852         * data-directory/Makefile.in: Add gdb/command/explore.py
8853         * python/lib/gdb/command/explore.py: Implemention of the 'explore'
8854         command using the GDB Python API.
8855
8856 2012-04-10  Maciej W. Rozycki  <macro@codesourcery.com>
8857
8858         * mips-tdep.c (mips_skip_pic_trampoline_code): Correct sign
8859         extension in jump target calculation.
8860
8861 2012-04-10  Maciej W. Rozycki  <macro@codesourcery.com>
8862
8863         * mips-tdep.c (mips32_next_pc): Handle JALX.
8864
8865 2012-04-10  Yao Qi  <yao@codesourcery.com>
8866
8867         * Makefile.in (gnulib/Makefile): Remove duplicated dependency.
8868
8869 2012-04-10  Yao Qi  <yao@codesourcery.com>
8870
8871         * Makefile.in (aclocal_m4_deps): Add gnulib/m4/gnulib-cache.m4
8872         and gnulib/m4/gnulib-tool.m4.
8873
8874 2012-04-10  Doug Evans  <dje@google.com>
8875
8876         * dwarf2read.c (dwarf2_per_cu_data). Clarify comment.
8877         (load_partial_dies): Clarify comment.
8878         (find_partial_die): Support rereading type units.
8879         Clarify CU handling, if we know offset is in CU, don't search for the
8880         containing CU.  Add comment regarding memory waste.
8881
8882 2012-04-10  H.J. Lu  <hongjiu.lu@intel.com>
8883
8884         * features/Makefile (WHICH): Add i386/x32, i386/x32-linux,
8885         i386/x32-avx and i386/x32-avx-linux.
8886         (i386/x32-expedite): New.
8887         (i386/x32-linux-expedite): Likewise.
8888         (i386/x32-avx-expedite): Likewise.
8889         (i386/x32-avx-linux-expedite): Likewise.
8890         ($(outdir)/i386/x32.dat): Likewise.
8891         ($(outdir)/i386/x32-linux.dat): Likewise.
8892         ($(outdir)/i386/x32-avx.dat): Likewise.
8893         ($(outdir)/i386/x32-avx-linux.dat): Likewise.
8894
8895         * features/i386/x32-avx-linux.xml: New file.
8896         * features/i386/x32-avx.xml: Likewise.
8897         * features/i386/x32-core.xml: Likewise.
8898         * features/i386/x32-linux.xml: Likewise.
8899         * features/i386/x32.xml: Likewise.
8900
8901         * features/i386/x32-avx-linux.c: New.  Generated.
8902         * features/i386/x32-avx.c: Likewise.
8903         * features/i386/x32-linux.c: Likewise.
8904         * features/i386/x32.c: Likewise.
8905         * regformats/i386/x32-avx-linux.dat: Likewise.
8906         * regformats/i386/x32-avx.dat: Likewise.
8907         * regformats/i386/x32-linux.dat: Likewise.
8908         * regformats/i386/x32.dat: Likewise.
8909
8910 2012-04-10  Tristan Gingold  <gingold@adacore.com>
8911
8912         * darwin-nat.c (darwin_kill_inferior): Always use the no ptrace
8913         code to kill the inferior.
8914
8915 2012-04-09  Mark Kettenis  <kettenis@gnu.org>
8916
8917         * ada-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
8918         defines.
8919         * c-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
8920         defines.
8921         * cp-name-parser.y (yyss, yysslim, yyssp, yystacksize, yyvs)
8922         (yyvsp): New defines.
8923         * f-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
8924         defines.
8925         * jv-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
8926         defines.
8927         * m2-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
8928         defines.
8929         * objc-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
8930         defines.
8931         * p-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
8932         defines.
8933
8934 2012-04-09  Mark Kettenis  <kettenis@gnu.org>
8935
8936         * sparc64-tdep.c (sparc64_store_arguments)
8937         (sparc64_store_arguments): Fix coding style.
8938
8939 2012-04-07  Mark Kettenis  <kettenis@gnu.org>
8940
8941         * sparc64-tdep.c (sparc64_store_arguments): Fix handling of
8942         complex floats, adjust some related comments and tighten a related
8943         assertion.
8944         (sparc64_extract_return_value): Handle complex floats.
8945
8946 2012-04-07  Doug Evans  <dje@google.com>
8947
8948         * dwarf2read.c (load_partial_dies): Change condition to assert.
8949
8950 2012-04-06  Doug Evans  <dje@google.com>
8951
8952         * amd64-tdep.c (amd64_analyze_prologue): Recognize both variations of
8953         "mov %rsp,%rbp".
8954
8955 2012-04-05  Kevin Buettner  <kevinb@redhat.com>
8956
8957         * v850-tdep.c (E_NUM_OF_V850_REGS, E_NUM_OF_V850E_REGS): Fix
8958         fencepost error.
8959         (v850_frame_cache): Use gdbarch_num_regs() instead of E_NUM_REGS.
8960         (v850_gdbarch_init): Set `num_regs' as appropriate for the
8961         architecture.
8962
8963 2012-04-05  Keith Seitz  <keiths@redhat.com>
8964
8965         * linespec.c (decode_compound): Remove.
8966         (enum offset_relative_sign): New enum.
8967         (struct line_offset): New struct.
8968         (struct linespec): New struct.
8969         (struct linespec_state): Move file_symtabs,
8970         user_filename, and user_function into struct linespec.
8971         Make result an anonymous struct holding vectors of
8972         symbolp and minsym_and_objfile_d.
8973         Add language member.
8974         (enum ls_token_type): New enum.
8975         (linespec_keywords): New array.
8976         (struct ls_token): New struct.
8977         (struct ls_parser): New struct.
8978         (linespec_lexer_lex_number): New function.
8979         (linespec_lexer_lex_keyword): New function.
8980         (is_ada_operator): New function.
8981         (skip_quote_char): New function.
8982         (copy_token_string): New function.
8983         (is_closing_quote_enclosed): New function.
8984         (find_parameter_list_end): New function.
8985         (linespec_lexer_lex_string): New function.
8986         (linespec_lexer_lex_one): New function.
8987         (linespec_lexer_consume_token): New function.
8988         (linespec_lexer_peek_token): New function.
8989         (cplusplus_error): Remove unused function.
8990         (find_methods): Update comment.
8991         (find_toplevel_char): Return const.
8992         (is_objc_method_format): Remove unused function.
8993         (find_toplevel_string): New function.
8994         (is_linespec_boundary): Remove.
8995         (symbol_not_found_error): New function.
8996         (find_method_overload_end): Remove function.
8997         (unexpected_linespec_error): New function.
8998         (keep_name_info): Remove.
8999         (linespec_parse_line_offset): New function.
9000         (linespec_parse_basic): New function.
9001         (canonicalize_linespec): New function.
9002         (decode_line_internal): Remove.
9003         (create_sals_line_offset): New function adapted from
9004         decode_all_digits.
9005         (convert_linespec_to_sals): New function.
9006         (parse_linespec): New function.
9007         (linespec_parser_new): New function.
9008         (linespec_state_destructor): Change parameter type to
9009         struct linespec_state *.
9010         Add language parameter.
9011         Remove freeing of moved members.
9012         (linespec_parser_delete): New function.
9013         (decode_line_full): Use parse_linespec and linespec_parser_new.
9014         (decode_line_1): Likewise.
9015         (decode_indirect): Rename to ...
9016         (linespec_expression_to_pc): ... this and rewrite
9017         to simply find CORE_ADDR, storing this result for later
9018         conversion to SALs.
9019         (locate_first_half): Remove.
9020         (deocde_objc): Add parameter LS.
9021         Initialize new struct collect_info members.
9022         Handle minimal symbols, too.
9023         (decode_compound): Delete.
9024         (lookup_prefix_sym): Rewrite.
9025         (compare_msymbols): New function.
9026         (find_method): Rewrite.
9027         Do not call cplusplus_error.
9028         (symtabs_from_filename): Rewrite.
9029         (collect_function_symbols): Delete.
9030         (find_function_symbols): Rewrite without ARGPTR-style
9031         processing.
9032         (decode_all_digits): Delete. (Rewritten as create_sals_line_offset.)
9033         (decode_dollar): Adapted and renamed to ...
9034         (linespec_parse_variable): ... this.
9035         (find_linespec_symbols): New function.
9036         (decode_label): Adapted and renamed to ...
9037         (find_label_symbols): ... this.
9038         (decode_digits_list_mode): Add and use LS argument.
9039         (decode_digits_ordinary): Likewise.
9040         (collect_symbols): Do not collect SALs, just symbols and msymbols.
9041         If in list mode, allow any symbol class.  Otherwise, only
9042         permit LOC_BLOCK symbols.
9043         (minsym_found): Update comments.
9044         (search_minsyms_for_name): Do not convert the matching symbol
9045         into a SAL.  Simply push the symbol and objfile into the
9046         result vector.
9047         (decode_variable): Delete. Contents adapted into
9048         find_linespec_symbols.
9049
9050         * cp-support.c (SKIP_SPACE): Remove.
9051         (operator_tokens): Remove unused global.
9052         (cp_validate_operator): Remove.
9053         * cp-support.h (cp_validate_operator): Remove declaration.
9054
9055 2012-04-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
9056
9057         * cp-valprint.c (cp_print_value_fields): Check valprint_check_validity
9058         for TYPE_VPTR_FIELDNO.
9059         * valprint.c (valprint_check_validity): Make it global, move the
9060         function comment ...
9061         * value.h (valprint_check_validity): ... to this new declaration.
9062
9063 2012-04-02  Tristan Gingold  <gingold@adacore.com>
9064
9065         * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Use
9066         the STATE32 api for i386 state.
9067         (i386_darwin_store_inferior_registers): Likewise.
9068
9069 2012-04-02  Tristan Gingold  <gingold@adacore.com>
9070
9071         * i386-darwin-tdep.c (i386_darwin_thread_state_reg_offset): Fix
9072         SS offset.
9073         * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Fix
9074         format_string.
9075
9076 2012-04-02  Tristan Gingold  <gingold@adacore.com>
9077
9078         PR gdb/13901
9079         * darwin-nat.c (darwin_execvp): Set binary preference.
9080
9081 2012-04-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
9082
9083         * NEWS (set breakpoint condition-evaluation): Use imperative mood.
9084
9085 2012-03-30  Tom Tromey  <tromey@redhat.com>
9086
9087         * python/python.c (gdbpy_decode_line): Move cleanup creation out
9088         of TRY_CATCH.  Fix error handling.
9089         * python/py-value.c (convert_value_from_python): Move 'old'
9090         declaration to innermost scope.
9091
9092 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
9093             Andrey Smirnov  <andrew.smirnov@gmail.com>
9094
9095         -Wshadow warning fix.
9096         * ada-lang.c (ada_make_symbol_completion_list): Rename parameters
9097         "wild_match" and "encoded" into "wild_match_p" and "encoded_p".
9098         Adjust code accordingly.
9099
9100 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
9101
9102         * ada-lang.c (symbol_completion_add): Rename parameter
9103         "encoded" into "encoded_p".  Ajust code and documentation
9104         accordingly.
9105
9106 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
9107             Andrey Smirnov  <andrew.smirnov@gmail.com>
9108
9109         -Wshadow warning fix.
9110         * ada-lang.c (symbol_completion_add): Rename parameter
9111         "wild_match" into wild_match_p.  Update code and documentation
9112         accordingly.
9113
9114 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
9115
9116         * ada-lang.c (symbol_completion_match): Rename parameter
9117         "encoded" into "encoded_p".  Ajust code and documentation
9118         accordingly.
9119
9120 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
9121             Andrey Smirnov  <andrew.smirnov@gmail.com>
9122
9123         -Wshadow warning fix.
9124         * ada-lang.c (symbol_completion_match): Rename parameter
9125         "wild_match" into "wild_match_p".  Adjust code and function
9126         documentation accordingly.
9127
9128 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
9129             Andrey Smirnov  <andrew.smirnov@gmail.com>
9130
9131         -Wshadow warning fix.
9132         * ada-lang.c (ada_lookup_encoded_symbol): Rename parameter
9133         "symbol_info" into "info".  Adjust code accordingly.
9134         (ada_lookup_symbol): Likewise.
9135
9136 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
9137
9138         * ada-lang.c (ada_lookup_symbol_list): Minor reformatting
9139         of this function's documentation.
9140
9141 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
9142             Andrey Smirnov  <andrew.smirnov@gmail.com>
9143
9144         -Wshadow warning fix.
9145         * ada-lang.c (ada_lookup_symbol_list): Rename "wild_match"
9146         variable into "wild_match_p".  Adjust code accordingly.
9147
9148 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
9149             Andrey Smirnov  <andrew.smirnov@gmail.com>
9150
9151         -Wshadow warning fix.
9152         * ada-lang.c (ada_add_local_symbols): Rename "wild_match"
9153         parameter into "wild_match_p".  Adjust code accordingly.
9154         Document this parameter in the function description.
9155
9156 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
9157             Andrey Smirnov  <andrew.smirnov@gmail.com>
9158
9159         -Wshadow warning fix.
9160         * ada-lang.c (add_symbols_from_enclosing_procs): Rename
9161         "wild_match" parameter to "wild_match_p" (-Wshadow).
9162
9163 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
9164
9165         * ada-lang.c (ada_lookup_simple_minsym): Remove trailing spaces
9166         in function documentation.
9167
9168 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
9169             Andrey Smirnov  <andrew.smirnov@gmail.com>
9170
9171         -Wshadow warning fix.
9172         * ada-lang.c (ada_lookup_simple_minsym): Rename wild_match local
9173         variable into wild_match_p.  Adjust code accordingly.
9174
9175 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
9176             Andrey Smirnov  <andrew.smirnov@gmail.com>
9177
9178         * ada-valprint.c (ada_val_print_1): Move the code handling
9179         TYPE_CODE_ENUM inside its own lexical block.  Declare
9180         variables len and val there, instead of in the function's
9181         top level block.  Avoid declaring deref_val again in a way
9182         that shadows another variable of the same name declared
9183         in one of the up-level blocks.  Just re-use the up-level
9184         variable instead.
9185
9186 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
9187
9188         * ada-lang.c (ada_lookup_encoded_symbol): Now returns void.
9189         Replace block_found argument by symbol_info.  Adjust
9190         implementation accordingly.  Add function documentation.
9191         (ada_lookup_symbol): Adjust to new ada_lookup_encoded_symbol.
9192         Fix documentation.
9193         * ada-lang.h (ada_lookup_encoded_symbol): Update declaration.
9194         * ada-exp.y (write_object_renaming): Adjust to new
9195         ada_lookup_encoded_symbol API.
9196
9197 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
9198
9199         * ada-lang.h (struct ada_symbol_info): Reformat.  Improve
9200         documentation.
9201
9202 2012-03-28  Rathish C  <rathish.c@kpitcummins.com>
9203
9204         * v850-tdep.c: Add the enum values for mpu and fpu registers.
9205         (v850_register_name): Add the mpu and fpu register names.
9206         (v850e_register_name): Add the mpu and fpu register names.
9207         (v850e2_register_name): New function.
9208         (v850_gdbarch_init): Add case for bfd_mach_v850e2 and
9209         bfd_mach_v850e2v3.
9210
9211 2012-03-28  Joel Brobecker  <brobecker@adacore.com>
9212
9213         * NEWS: Add entry for Ada varobj support.
9214
9215 2012-03-28  Joel Brobecker  <brobecker@adacore.com>
9216
9217         * varobj.c (default_value_is_changeable_p): New function,
9218         extracted from varobj_value_is_changeable_p.  Add declaration.
9219         (ada_value_is_changeable_p): New function, extracted from
9220         varobj_value_is_changeable_p.  Add declaration.
9221         (struct language_specific): New field "value_is_changeable_p".
9222         (languages): Add entries for new field.
9223         (varobj_create): Set language before calling install_new_value.
9224         (varobj_value_is_changeable_p): Reimplement to call the varobj's
9225         "value_is_changeable_p" language callback.
9226
9227 2012-03-28  Joel Brobecker  <brobecker@adacore.com>
9228
9229         * ada-varobj.h, ada-varobj.c: New files.
9230         * Makefile.in (SFILES): Add ada-varobj.c.
9231         (HFILES_NO_SRCDIR): Add ada-varobj.h.
9232         (COMMON_OBS): Add ada-varobj.o.
9233
9234 2012-03-28  Joel Brobecker  <brobecker@adacore.com>
9235
9236         * varobj.c (ada_value_has_mutated): Add declaration.  New function.
9237         (struct language_specific): New field "value_has_mutated".
9238         (languages): Set field "value_has_mutated" in each entry of array.
9239         (varobj_value_has_mutated): New function.
9240         (varobj_udpdate): Add handling of type mutation.
9241         (value_of_root): Add handling of type mutation.
9242         (ada_value_has_mutated): New function.
9243
9244 2012-03-28  Pedro Alves  <palves@redhat.com>
9245
9246         * ia64-linux-nat.c (supply_fpregset, ia64_linux_fetch_register):
9247         Always supply $fr0 as 0.0 and $fr1 as 1.0.
9248
9249 2012-03-28  Tom Tromey  <tromey@redhat.com>
9250
9251         * python/py-inferior.c (infpy_read_memory): Remove cleanups and
9252         explicitly free 'buffer' on exit paths.  Decref 'membuf_object'
9253         before returning.
9254
9255 2012-03-28  Tom Tromey  <tromey@redhat.com>
9256
9257         * .dir-locals.el: New file.
9258
9259 2012-03-28  Pedro Alves  <palves@redhat.com>
9260
9261         * ia64-linux-nat.c (u_offsets): Map IA64_EC_REGNUM to PT_AR_EC.
9262
9263 2012-03-28  Joel Brobecker  <brobecker@adacore.com>
9264
9265         * ia64-linux-nat.c (ia64_linux_fetch_register): Add special
9266         handling for r0.
9267
9268 2012-03-27  Pedro Alves  <palves@redhat.com>
9269
9270         Eliminate struct ui_stream.
9271
9272         * ui-out.h (struct ui_stream): Delete.
9273         (ui_out_field_stream): Adjust prototype.
9274         (ui_out_stream_new, ui_out_stream_delete)
9275         (make_cleanup_ui_out_stream_delete): Delete declarations.
9276         * ui-out.c (ui_out_field_stream): Change prototype to take a
9277         ui_file instead of a ui_stream.  Adjust.
9278         (ui_out_stream_new, ui_out_stream_delete, do_stream_delete)
9279         (make_cleanup_ui_out_stream_delete): Delete.
9280         * breakpoint.c (print_breakpoint_location)
9281         (print_one_detail_ranged_breakpoint, print_it_watchpoint): Use
9282         ui_file/mem_fileopen instead of ui_stream/ui_out_stream_new.
9283         * disasm.c (dump_insns): Ditto.
9284         (do_mixed_source_and_assembly, do_assembly_only): Adjust
9285         prototype.
9286         (gdb_disassembly): Use ui_file/mem_fileopen instead of
9287         ui_stream/ui_out_stream_new.
9288         * infcmd.c (print_return_value): Ditto.
9289         * osdata.c (info_osdata_command): Don't allocate a local
9290         ui_stream.
9291         * stack.c (print_frame_arg, print_frame_args, print_frame): Use
9292         ui_file/mem_fileopen instead of ui_stream/ui_out_stream_new.
9293         * tracepoint.c (print_one_static_tracepoint_marker): Don't
9294         allocate a local ui_stream.
9295         * mi/mi-cmd-stack.c (list_arg_or_local): Use ui_file/mem_fileopen
9296         instead of ui_stream/ui_out_stream_new.
9297         (list_args_or_locals): Don't allocate a local ui_stream.
9298         * mi/mi-main.c (get_register, mi_cmd_data_evaluate_expression)
9299         (mi_cmd_data_read_memory): Use ui_file/mem_fileopen instead of
9300         ui_stream/ui_out_stream_new.
9301         * cli/cli-setshow.c (do_setshow_command): Ditto.
9302
9303 2012-03-27  Oza Pawandeep  <oza.pawandeep@gmail.com>
9304
9305         * arm-linux-tdep.c (arm_linux_init_abi): Call
9306         set_gdbarch_process_record.  Initialize `arm_swi_record' field.
9307         * arm-tdep.c (arm_process_record): New function.
9308         (deallocate_reg_mem): New function.
9309         (decode_insn): New function.
9310         (thumb_record_branch): New function.
9311         (thumb_record_ldm_stm_swi(): New function.
9312         (thumb_record_misc): New function.
9313         (thumb_record_ld_st_stack): New function.
9314         (thumb_record_ld_st_imm_offset): New function.
9315         (thumb_record_ld_st_reg_offset(): New function.
9316         (thumb_record_add_sub_cmp_mov): New function.
9317         (thumb_record_shift_add_sub): New function.
9318         (arm_record_coproc_data_proc): New function.
9319         (arm_record_coproc): New function.
9320         (arm_record_b_bl): New function.
9321         (arm_record_ld_st_multiple): New function.
9322         (arm_record_ld_st_reg_offset): New function.
9323         (arm_record_ld_st_imm_offset): New function.
9324         (arm_record_data_proc_imm): New function.
9325         (arm_record_data_proc_misc_ld_str): New function.
9326         (arm_record_extension_space): New function.
9327         (arm_record_strx): New function.
9328         (sbo_sbz): New function.
9329         (struct insn_decode_record): New structure for arm insn record.
9330         (REG_ALLOC): New macro for reg allocations.
9331         (MEM_ALLOC): New macro for memory allocations.
9332         * arm-tdep.h (struct gdbarch_tdep): New field 'arm_swi_record'.
9333
9334 2012-03-27  Andreas Schwab  <schwab@linux-m68k.org>
9335
9336         * m68klinux-nat.c (fetch_register): Fix strict-aliasing violation.
9337         (store_register): Likewise.
9338
9339 2012-03-26  Oza Pawandeep  <oza.pawandeep@gmail.com>
9340
9341         * MAINTAINERS (Write After Approval): Add myself to the list.
9342
9343 2012-03-25  Jan Kratochvil  <jan.kratochvil@redhat.com>
9344
9345         * NEWS (set breakpoint condition-evaluation): Change "gdb" to "host".
9346         Describe also the option "auto".
9347
9348 2012-03-22  Richard Henderson  <rth@redhat.com>
9349
9350         * sparc-linux-nat.c (_initialize_sparc_linux_nat): Fix prototype.
9351         * sparc-nat.c (sparc_xfer_wcookie): Make static.
9352
9353 2012-03-22  Richard Henderson  <rth@redhat.com>
9354
9355         * jit.c (jit_read_code_entry): Compute alignment and offset of
9356         int64_t member before computing entry_size.
9357
9358 2012-03-22  Siva Chandra Reddy  <sivachandra@google.com>
9359
9360         Python scripting: Add new method Value.referenced_value to
9361         gdb.Value which can dereference pointer as well as reference
9362         values.
9363         * NEWS: Add entry under 'Python scripting' about the new method
9364         Value.referenced_value on gdb.Value objects.
9365         * python/py-value.c (valpy_referenced_value): New function
9366         defining a new method on gdb.Value objects which can dereference
9367         pointer and reference values.
9368
9369 2012-03-22  Siva Chandra Reddy  <sivachandra@google.com>
9370
9371         * MAINTAINERS (Write After Approval): Add myself to the list.
9372
9373 2012-03-21  Kevin Buettner  <kevinb@redhat.com>
9374
9375         * symtab.c (skip_prologue_sal): Change test to check for "main()"
9376         in addition to "main".
9377
9378 2012-03-21  Joel Brobecker  <brobecker@adacore.com>
9379
9380         * expression.h (op_name): Add declaration.
9381         * expprint.c (op_name): Remove declaration.  Make non-static.
9382         * ax-gdb.c (gen_expr): Use op_name instead of op_string.
9383
9384 2012-03-21  Thomas Schwinge  <thomas@codesourcery.com>
9385
9386         * amd64-linux-nat.c (amd64_linux_siginfo_fixup): Use siginfo_t instead
9387         of struct siginfo.
9388         * arm-linux-nat.c (arm_linux_stopped_data_address): Likewise.
9389         * ia64-linux-nat.c (ia64_linux_stopped_data_address): Likewise.
9390         * linux-nat.c (linux_nat_siginfo_fixup, siginfo_fixup)
9391         (linux_xfer_siginfo, linux_nat_set_siginfo_fixup)
9392         (linux_nat_get_siginfo): Likewise.
9393         * linux-nat.h (struct lwp_info, linux_nat_set_siginfo_fixup)
9394         (linux_nat_get_siginfo): Likewise.
9395         * linux-tdep.c (linux_get_siginfo_type): Likewise.
9396         * ppc-linux-nat.c (ppc_linux_stopped_data_address): Likewise.
9397         * procfs.c (gdb_siginfo_t): Likewise.
9398
9399 2012-03-21  Mike Frysinger  <vapier@gentoo.org>
9400
9401         * .gitignore: Ignore more files.
9402
9403 2012-03-20  Pedro Alves  <palves@redhat.com>
9404
9405         * remote.c (remote_start_remote): Clear `rs->starting_up' on early
9406         returns.
9407
9408 2012-03-20  Yao Qi  <yao@codesourcery.com>
9409
9410         * amd64-tdep.c (amd64_displaced_step_copy_insn): Complete missing "}" in
9411         comment.
9412
9413 2012-03-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
9414
9415         Code cleanupp: Use cu_offset and sect_offset compile time type checking.
9416         * dwarf2expr.c (add_piece, dwarf_get_base_type, execute_stack_op)
9417         (ctx_no_dwarf_call, ctx_no_get_base_type): Use cu_offset and
9418         sect_offset.
9419         * dwarf2expr.h (cu_offset, sect_offset): New types.
9420         (struct dwarf_expr_context_funcs) <dwarf_call>
9421         (struct dwarf_expr_context_funcs) <get_base_type>: Use cu_offset and
9422         sect_offset.
9423         (struct dwarf_expr_context) <len>: Improve the comment.
9424         (struct dwarf_expr_piece, ctx_no_dwarf_call, ctx_no_get_base_type): Use
9425         cu_offset and sect_offset.
9426         * dwarf2loc.c (per_cu_dwarf_call, dwarf_expr_dwarf_call)
9427         (dwarf_expr_get_base_type, needs_frame_dwarf_call)
9428         (dwarf2_compile_expr_to_ax, disassemble_dwarf_expression): Likewise.
9429         * dwarf2loc.h: Include dwarf2expr.h.
9430         (dwarf2_fetch_die_location_block, dwarf2_get_die_type): Use cu_offset
9431         and sect_offset.
9432         * dwarf2read.c (struct dwarf2_per_objfile) <debug_types_type_hash>:
9433         Improve the comment.
9434         (struct comp_unit_head, struct dwarf2_cu, struct dwarf2_per_cu_data)
9435         (struct signatured_type, struct line_header, struct partial_die_info)
9436         (struct die_info, find_partial_die, dwarf2_get_ref_die_offset)
9437         (lookup_signatured_type_at_offset, dwarf2_find_containing_comp_unit)
9438         (get_die_type_at_offset, create_cus_from_index)
9439         (create_signatured_type_table_from_index, dw2_get_file_names)
9440         (offset_in_cu_p, read_comp_unit_head, error_check_comp_unit_head)
9441         (read_and_check_comp_unit_head, read_and_check_type_unit_head)
9442         (create_debug_types_hash_table, process_psymtab_comp_unit)
9443         (load_partial_comp_unit, create_all_comp_units)
9444         (partial_die_parent_scope, partial_die_full_name, skip_one_die)
9445         (load_full_comp_unit, dwarf2_physname, read_import_statement)
9446         (inherit_abstract_dies, read_func_scope, read_call_site_scope)
9447         (dwarf2_add_member_fn, process_enumeration_scope, read_module_type)
9448         (read_typedef, die_hash, die_eq, read_full_die, dwarf2_read_abbrevs)
9449         (load_partial_dies, read_partial_die, find_partial_die_in_comp_unit)
9450         (find_partial_die, read_attribute_value, lookup_die_type)
9451         (dump_die_shallow, store_in_ref_table): Use cu_offset and sect_offset.
9452         (is_ref_attr): New function comment.
9453         (dwarf2_get_ref_die_offset): New function comment, new variable retval.
9454         Use cu_offset and sect_offset.
9455         (follow_die_offset, follow_die_ref, dwarf2_fetch_die_location_block)
9456         (dwarf2_get_die_type, follow_die_sig, lookup_signatured_type_at_offset)
9457         (load_full_type_unit, read_signatured_type, per_cu_header_read_in)
9458         (dwarf2_find_containing_comp_unit, struct dwarf2_offset_and_type)
9459         (offset_and_type_hash, offset_and_type_eq, set_die_type)
9460         (get_die_type_at_offset, partial_die_hash, partial_die_eq)
9461         (write_one_signatured_type, write_psymtabs_to_index): Use cu_offset and
9462         sect_offset.
9463
9464 2012-03-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
9465
9466         Code cleanup.
9467         * python/py-auto-load.c (source_section_scripts): New variable back_to.
9468         Turn fclose and xfree calls into make_cleanup_fclose and make_cleanup
9469         with xfree.
9470         (auto_load_objfile_script): Turn fclose into make_cleanup_fclose.
9471
9472 2012-03-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
9473
9474         * NEWS: Describe new options --init-command=FILE, -ix and
9475         --init-eval-command=COMMAND, -iex.
9476         * main.c (struct cmdarg): New enum items CMDARG_INIT_FILE and
9477         CMDARG_INIT_COMMAND.
9478         (captured_main): New enum items OPT_IX and OPT_IEX.  Add
9479         "init-command", "init-eval-command", "ix" and "iex" to the variable
9480         long_options.  Handle OPT_IX and OPT_IEX.  Process them from CMDARG_VEC.
9481         New comment for CMDARG_FILE and CMDARG_COMMAND processing.
9482         (print_gdb_help): Describe --init-command=FILE, -ix and
9483         --init-eval-command=COMMAND, -iex.
9484
9485 2012-03-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
9486
9487         Code cleanup.
9488         * main.c (struct cmdarg): Move it here from main.  Add more comments.
9489         (cmdarg_s, VEC (cmdarg_s)): New.
9490         (main): Move struct cmdarg from here.  New variables cmdarg_vec and
9491         cmdarg_p.  Remove variables cmdsize and ncmd and their initialization.
9492         Install cleanup for cmdarg_vec.  Update filling for options 'x' and
9493         'X'.  Replace cmdarg processing by cmdarg_vec processing.  Remove xfree
9494         of CMDARG.
9495
9496 2012-03-19  Tom Tromey  <tromey@redhat.com>
9497
9498         * gnu-v3-abi.c (gnuv3_print_vtable): Initialize 'result_vec'.
9499
9500 2012-03-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
9501
9502         PR symtab/13777
9503         * dwarf2read.c (process_full_comp_unit): Set LOCATIONS_VALID only for
9504         GCC >=4.5.
9505
9506 2012-03-16  Chris January  <chris.january@allinea.com>
9507
9508         * tui-tui.win.c (tui_resize_all): Use erase and clearok instead
9509         of clear.
9510
9511 2012-03-16  Chris January  <chris.january@allinea.com>
9512
9513         * source.c (add_path): Use memmove instead of strcpy because the
9514         strings overlap.
9515
9516 2012-03-16  Joel Brobecker  <brobecker@adacore.com>
9517
9518         * value.h (set_value_parent): Add declaration.
9519         * value.c (set_value_parent): New function.
9520         (value_address): If VALUE->PARENT is not NULL, then use it as
9521         the base address instead of VALUE->LOCATION.address.
9522         * ada-lang.c (ada_value_primitive_packed_val): Keep V's address
9523         the same as OBJ's address.  Adjust V's offset accordingly.
9524         Set V's parent.
9525
9526 2012-03-16  Gary Benson  <gbenson@redhat.com>
9527
9528         PR breakpoints/10738
9529         * dwarf2read.c (use_deprecated_index_sections): New global.
9530         (struct partial_die_info): New member may_be_inlined.
9531         (read_partial_die): Set may_be_inlined where appropriate.
9532         (add_partial_subprogram): Add partial symbols for partial
9533         DIEs that may be inlined.
9534         (new_symbol_full): Add inlined subroutines to the current
9535         scope.
9536         (write_psymtabs_to_index): Bump version number.
9537         (dwarf2_read_index): Read only version 6 indices unless
9538         use_deprecated_index_sections is set.
9539         * linespec.c (symbol_and_data_callback): New structure.
9540         (iterate_inline_only): New function.
9541         (iterate_over_all_matching_symtabs): New argument
9542         "include_inline".  If nonzero, also call the callback for
9543         symbols representing inlined subroutines.
9544         (lookup_prefix_sym): Pass extra argument to the above.
9545         (find_function_symbols): Likewise.
9546         (add_matching_symbols_to_info): Likewise.
9547         * NEWS: Mention that GDB can now set breakpoints on inlined
9548         functions.
9549
9550 2012-03-16  Pierre Muller  <muller@ics.u-strasbg.fr>
9551
9552         * p-typeprint.c (pascal_type_print_method_args):
9553         Fix display of parameter of methods.
9554
9555 2012-03-16  Pierre Muller  <muller@ics.u-strasbg.fr>
9556
9557         * amd64-windows-nat.c (_initialize_amd64_windows_nat):
9558         Add missing prototype.
9559
9560 2012-03-16  Yao Qi  <yao@codesourcery.com>
9561             Jan Kratochvil  <jan.kratochvil@redhat.com>
9562
9563         Fix false compilation warning.
9564         * gnu-v3-abi.c (print_one_vtable): Initialize ADDR.
9565
9566 2012-03-15  Jonathan Larmour  <jifl@eCosCentric.com>
9567             Pedro Alves  <pedro@codesourcery.com>
9568
9569         * arm-tdep.c: Include "remote.h" and "features/arm-with-m-fpa-layout.c".
9570         (arm_register_g_packet_guesses): New function.
9571         (arm_gdbarch_init): Don't force a target description with
9572         registers when the executable is detected as M-profile.  Instead
9573         set gdbarch->tdep->is_m.  Register `g' packet guesses.
9574         (_initialize_arm_tdep): Initialize the new target description.
9575         * features/arm-with-m-fpa-layout.xml: New description.
9576         * features/arm-with-m-fpa-layout.c: New, generated.
9577
9578 2012-03-15  Joel Brobecker  <brobecker@adacore.com>
9579
9580         * breakpoint.c (breakpoint_xfer_memory): Add assertion.
9581         Update function description.
9582         (insert_bp_location): Do not wipe bl->target_info out.
9583         * mem-break.c: #include "gdb_string.h".
9584         (default_memory_insert_breakpoint): Do not call target_read_memory
9585         with a pointer to the breakpoint's shadow_contents buffer.  Use
9586         a local buffer instead.
9587         * m32r-tdep.c (m32r_memory_insert_breakpoint): Ditto.
9588
9589 2012-03-15  Tom Tromey  <tromey@redhat.com>
9590
9591         * NEWS: Mention "info vtbl", not "info vtable".
9592         * cp-support.c (info_vtbl_command): Fix comment.
9593         (_initialize_cp_support): Fix text.
9594
9595 2012-03-15  Tom Tromey  <tromey@redhat.com>
9596
9597         * cp-valprint.c (cp_print_value_fields): Use
9598         print_function_pointer_address for vtable slot.
9599
9600 2012-03-15  Tom Tromey  <tromey@redhat.com>
9601
9602         * gnu-v3-abi.c (struct value_and_voffset): New.
9603         (hash_value_and_voffset, eq_value_and_voffset)
9604         (compare_value_and_voffset, compute_vtable_size)
9605         (print_one_vtable, gnuv3_print_vtable): New functions.
9606         (init_gnuv3_ops): Initialize 'print_vtable' field.
9607         * cp-support.c (info_vtbl_command): New function.
9608         (_initialize_cp_support): Add "info vtbl".
9609         * cp-abi.h (cplus_print_vtable): Declare.
9610         (struct cp_abi_ops) <print_vtable>: New field.
9611         * cp-abi.c (cplus_print_vtable): New function.
9612         * NEWS: Update.
9613
9614 2012-03-15  Tom Tromey  <tromey@redhat.com>
9615
9616         * d-lang.c (d_language_defn) <la_iterate_over_symbols>: Set to
9617         iterate_over_symbols.
9618
9619 2012-03-14  Doug Evans  <dje@google.com>
9620
9621         * dwarf2read.c (dwarf_stack_op_name): Add DW_OP_GNU_encoded_addr,
9622         DW_OP_GNU_parameter_ref.
9623
9624 2012-03-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
9625
9626         Fix double prompt of 'interpreter-exec mi'.
9627         * mi/mi-interp.c (mi_execute_command_input_handler): New prototype.
9628         (mi_interpreter_resume): use it.
9629         (mi_execute_command_input_handler): New function.
9630         * mi/mi-main.c (mi_execute_command): Move prompt printing to
9631         mi_execute_command_input_handler.
9632
9633 2012-03-13  Josh Matthews  <josh@joshmatthews.net>  (tiny change)
9634
9635         * darwin-nat-info.c (_initialize_darwin_info_commands): Add
9636         prototype.
9637         (darwin_debug_port_info): Make static.
9638         * darwin-nat.c (_initialize_darwin_inferior): Add prototype.
9639         * machoread.c (_initialize_machoread): Add prototype.
9640         * i386-darwin-nat.c (i386_darwin_dr_set, i386_darwin_dr_get)
9641         (i386_darwin_set_control, i386_darwin_get_control)
9642         i386_darwin_dr_set_addr, i386_darwin_get_addr)
9643         i386_darwin_get_status, i386_darwin_get_control):
9644         Comment out with HW_WATCHPOINT_NOT_YET_ENABLED macro.
9645
9646 2012-03-13  Joel Brobecker  <brobecker@adacore.com>
9647
9648         * ax-gdb.c (gen_usual_unary): Remove special handling of
9649         enum and bool types.
9650
9651 2012-03-13  Joel Brobecker  <brobecker@adacore.com>
9652
9653         * ax-gdb.c (gen_fetch): Add handling for TYPE_CODE_RANGE types.
9654
9655 2012-03-13  Joel Brobecker  <brobecker@adacore.com>
9656
9657         * aix-thread.c (supply_fprs): Make more consistent with fill_fprs.
9658
9659 2012-03-13  Chris January  <chris.january@allinea.com>
9660
9661         * aix-thread.c (fill_sprs): Store the floating point registers
9662         at the correct offsets into vals.
9663
9664 2012-03-13  Doug Evans  <dje@google.com>
9665
9666         * NEWS: Mention symbol-reloading has been deleted.
9667         * symfile.c (symbol_reloading): Delete.
9668         (show_symbol_reloading): Delete.
9669         (_initialize_symfile): Delete set/show symbol-reloading.
9670
9671         * dwarf2read.c (load_partial_comp_unit): Defer adding cu to
9672         read_in_chain until we have successfully read it in.
9673         (load_full_comp_unit): Ditto.
9674         (read_signatured_type): Add comment.
9675
9676 2012-03-13  Chris January  <chris.january@allinea.com>
9677
9678         * stabsread.c (fix_common_block): Change type of valu argument
9679         to CORE_ADDR.
9680
9681 2012-03-13  Chris January  <chris.january@allinea.com>
9682
9683         * rs6000-tdep.c (skip_prologue): Support the oril r29, r1, 0x0
9684         instruction.
9685
9686 2012-03-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
9687
9688         * common/linux-procfs.c (linux_proc_get_int): New, from
9689         linux_proc_get_tgid, change its LWPID type to pid_t, add parameter
9690         field.
9691         (linux_proc_get_tgid): Only call linux_proc_get_int.
9692         (linux_proc_get_tracerpid): New.
9693         (linux_proc_pid_has_state): New, from linux_proc_pid_is_zombie.
9694         (linux_proc_pid_is_stopped, linux_proc_pid_is_zombie): Only call
9695         linux_proc_pid_has_state.
9696         * common/linux-procfs.h (linux_proc_get_tracerpid): New declaration.
9697         * common/linux-ptrace.c: Include linux-procfs.h and buffer.h.
9698         (linux_ptrace_attach_warnings): New.
9699         * common/linux-ptrace.h (struct buffer, linux_ptrace_attach_warnings):
9700         New declaration.
9701         * linux-nat.c: Include exceptions.h, linux-ptrace.h and buffer.h.
9702         (linux_nat_attach): New variables ex, buffer, message and message_s.
9703         Wrap to_attach by TRY_CATCH and call linux_ptrace_attach_warnings.
9704
9705 2012-03-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
9706
9707         * Makefile.in (linux-ptrace.o): New.
9708         * common/linux-procfs.c (linux_proc_pid_is_zombie): New,
9709         from linux-nat.c.
9710         * common/linux-procfs.h (linux_proc_pid_is_zombie): New declaration.
9711         * common/linux-ptrace.c: New file.
9712         * config/alpha/alpha-linux.mh (NATDEPFILES): Add linux-ptrace.o.
9713         * config/arm/linux.mh: Likewise.
9714         * config/i386/linux.mh: Likewise.
9715         * config/i386/linux64.mh: Likewise.
9716         * config/ia64/linux.mh: Likewise.
9717         * config/m32r/linux.mh: Likewise.
9718         * config/m68k/linux.mh: Likewise.
9719         * config/mips/linux.mh: Likewise.
9720         * config/pa/linux.mh: Likewise.
9721         * config/powerpc/linux.mh: Likewise.
9722         * config/powerpc/ppc64-linux.mh: Likewise.
9723         * config/powerpc/spu-linux.mh: Likewise.
9724         * config/s390/s390.mh: Likewise.
9725         * config/sparc/linux.mh: Likewise.
9726         * config/sparc/linux64.mh: Likewise.
9727         * config/xtensa/linux.mh: Likewise.
9728         * linux-nat.c (linux_lwp_is_zombie): Remove, move it to
9729         common/linux-procfs.c.
9730         (wait_lwp): Rename linux_lwp_is_zombie to linux_proc_pid_is_zombie.
9731
9732 2012-03-13  Hui Zhu  <teawater@gmail.com>
9733             Pedro Alves  <palves@redhat.com>
9734
9735         * breakpoint.c (init_breakpoint_sal): New flags parameter.  Handle
9736         CREATE_BREAKPOINT_FLAGS_INSERTED.
9737         (create_breakpoint_sal, create_breakpoints_sal)
9738         (base_breakpoint_create_breakpoints_sal)
9739         (tracepoint_create_breakpoints_sal)
9740         (strace_marker_create_breakpoints_sal): New flags parameter.  Pass
9741         down.
9742         (break_command_1, handle_gnu_v3_exceptions, trace_command)
9743         (ftrace_command, strace_command): Adjust.
9744         (create_tracepoint_from_upload): Pass
9745         CREATE_BREAKPOINT_FLAGS_INSERTED.
9746         * breakpoint.h (enum breakpoint_create_flags): New.
9747         (create_breakpoint): New flags parameter.
9748         * mi/mi-cmd-break.c (mi_cmd_break_insert): Adjust.
9749         * python/py-breakpoint.c (bppy_init): Adjust.
9750         * python/py-finishbreakpoint.c (bpfinishpy_init): Adjust.
9751         * spu-tdep.c (spu_catch_start): Adjust.
9752
9753 2012-03-13  Pedro Alves  <palves@redhat.com>
9754             Hui Zhu  <teawater@gmail.com>
9755             Yao Qi  <yao@codesourcery.com>
9756
9757         * remote.c (struct remote_state): New field `starting_up'.
9758         (remote_start_remote): Set and clear it.
9759         (remote_can_download_tracepoint): If starting up, return false.
9760
9761 2012-03-13  Yao Qi  <yao@codesourcery.com>
9762
9763         * inferior.h (struct inferior): Remove fields any_syscall_count,
9764         syscalls_counts and total_syscalls_count.  Move them to new
9765         struct catch_syscall_inferior_data in breakpoint.c.
9766         * breakpoint.c: Call DEF_VEC_I(int).
9767         (struct catch_syscall_inferior_data): New.
9768         (get_catch_syscall_inferior_data): New.
9769         (catch_syscall_inferior_data_cleanup): New.
9770         (insert_catch_syscall): Update to access data in
9771         struct catch_syscall_inferior_data.
9772         (insert_catch_syscall): Likewise.
9773         (remove_catch_syscall): Likewise.
9774         (remove_catch_syscall): Likewise.
9775         (is_syscall_catchpoint_enabled): Likewise.
9776         (add_catch_command): Likewise.
9777         (_initialize_breakpoint): Register cleanup.
9778         * breakpoint.h: Removed DEF_VEC_I(int).
9779         * dwarf2loc.c: Call DEF_VEC_I(int).
9780         * mi/mi-main.c: Likewise.
9781
9782 2012-03-12  Mark Kettenis  <kettenis@gnu.org>
9783
9784         * inf-ptrace.c (inf_ptrace_post_attach): Make static.
9785
9786 2012-03-12  Chris January  <chris.january@allinea.com>
9787
9788         * aix-thread.c (_initialize_aix_thread): Add prototype.
9789         * rs6000-nat.c (_initialize_rs6000_nat): Ditto.
9790         * xcoffsolib.c (_initialize_xcoffsolib): Ditto.
9791
9792 2012-03-12  Joel Brobecker  <brobecker@adacore.com>
9793
9794         * amd64bsd-nat.c: Move #include of "amd64bsd-nat.h" after
9795         include of "amd64-nat.h".
9796
9797 2012-03-12  Tom Tromey  <tromey@redhat.com>
9798
9799         * buildsym.c (record_pending_block): Now static.
9800         * buildsym.h: (record_pending_block): Remove.
9801
9802 2012-03-12  Andreas Tobler  <andreast@fgznet.ch>
9803
9804         * amd64bsd-nat.c: Include amd64bsd-nat.h.
9805
9806 2012-03-09  Tom Tromey  <tromey@redhat.com>
9807
9808         * dwarf2read.c (struct dwarf2_cu) <checked_producer,
9809         producer_is_gxx_lt_4_6>: New fields.
9810         (producer_is_gxx_lt_4_6): Use and update producer cache fields.
9811
9812 2012-03-09  Tom Tromey  <tromey@redhat.com>
9813
9814         * dwarf2read.c (dwarf2_attr): Avoid tail-recursive call.
9815
9816 2012-03-08  Joel Brobecker  <brobecker@adacore.com>
9817
9818         * ravenscar-sparc-thread.c (_initialize_ravenscar_sparc): Add
9819         prototype.
9820
9821 2012-03-08  Joel Brobecker  <brobecker@adacore.com>
9822
9823         * ravenscar-thread.c (_initialize_ravenscar): Add prototype.
9824
9825 2012-03-08  Jan Kratochvil  <jan.kratochvil@redhat.com>
9826
9827         Fix -Wmissing-prototypes build.
9828         * arm-linux-nat.c (get_thread_id): Make it static.
9829         * xtensa-linux-nat.c (get_thread_id): Likewise.
9830
9831 2012-03-08  Joel Brobecker  <brobecker@adacore.com>
9832
9833         * server.c (process_point_options): If a conditional expression
9834         is found, only print a message if remote_debug is nonzero.
9835
9836 2012-03-08  Luis Machado  <lgustavo@codesourcery.com>
9837
9838         * ax-gdb.c (gen_fetch): Fail gracefully and use error instead
9839         of internal error for unknown/unsupported types.
9840
9841 2012-03-08  Jan Kratochvil  <jan.kratochvil@redhat.com>
9842
9843         Fix CU relative vs. absolute DIE offsets.
9844         * dwarf2loc.h (dwarf2_fetch_die_location_block): Rename parameter
9845         offset to offset_in_cu.
9846         * dwarf2read.c (process_enumeration_scope): Add CU offset to
9847         TYPE_OFFSET.
9848         (dwarf2_fetch_die_location_block): Rename parameter offset to
9849         offset_in_cu.  New variable offset, add CU offset to OFFSET_IN_CU.
9850
9851 2012-03-08  Jan Kratochvil  <jan.kratochvil@redhat.com>
9852
9853         * libunwind-frame.c: Rename to ...
9854         * ia64-libunwind-tdep.c: ... here.
9855         * libunwind-frame.h: Rename to ...
9856         * ia64-libunwind-tdep.h: ... here.
9857         * Makefile.in (HFILES_NO_SRCDIR): Rename libunwind-frame.h to
9858         ia64-libunwind-tdep.h.
9859         (ALLDEPFILES): Rename libunwind-frame.c to ia64-libunwind-tdep.c.
9860         * README (--with-libunwind): Rename to ...
9861         (--with-libunwind-ia64): ... here, note it is ia64 specific now.
9862         * config.in: Regenerate.
9863         * configure: Regenerate.
9864         * configure.ac: New option --with-libunwind-ia64, make the
9865         AS_HELP_STRING ia64 specific.  Deprecate option --with-libunwind.
9866         Remove AC_DEFINE for HAVE_LIBUNWIND.
9867         * ia64-libunwind-tdep.c: Make the file top comment ia64 specific.
9868         Rename libunwind-frame.h #include to ia64-libunwind-tdep.h.
9869         Rename libunwind-frame in the general comment.
9870         * ia64-libunwind-tdep.h: Make the file top comment ia64 specific.
9871         Rename symbol LIBUNWIND_FRAME_H to IA64_TDEP_LIBUNWIND_FRAME_H.
9872         Move forward declarations inside #ifndef.  Rename libunwind-frame in
9873         the general comment.
9874         * ia64-tdep.c: Rename libunwind-frame.h #include to
9875         ia64-libunwind-tdep.h.
9876         (ia64_gdb2uw_regnum, ia64_uw2gdb_regnum, ia64_is_fpreg)
9877         (ia64_libunwind_descr): Rename libunwind-frame to
9878         ia64-libunwind-tdep in these function comments.
9879         * ia64-tdep.h: Rename libunwind-frame.h #include to
9880         ia64-libunwind-tdep.h.
9881         * ia64-vms-tdep.c (ia64_vms_libunwind_descr): Rename libunwind-frame to
9882         ia64-libunwind-tdep in that data comment.
9883
9884 2012-03-08  Jan Kratochvil  <jan.kratochvil@redhat.com>
9885
9886         * libunwind-frame.h (struct frame_unwind): New declaration.
9887
9888 2012-03-08  Joel Brobecker  <brobecker@adacore.com>
9889
9890         * breakpoint.c (_initialize_breakpoint): Fix error in help of
9891         "set breakpoint condition-evaluation" command.
9892
9893 2012-03-08  Tristan Gingold  <gingold@adacore.com>
9894
9895         * sparc-stub.c: Move to stubs/
9896         * sh-stub.c: Likewise.
9897         * m68k-stub.c: Likewise.
9898         * m32r-stub.c: Likewise.
9899         * i386-stub.c: Likewise.
9900
9901 2012-03-08  Andreas Schwab  <schwab@linux-m68k.org>
9902
9903         * m68klinux-tdep.c (m68k_linux_init_abi): Register
9904         linux_get_siginfo_type.
9905
9906         * m68klinux-nat.c: Include "gdb_proc_service.h".
9907         (PTRACE_GET_THREAD_AREA): Define.
9908         (ps_get_thread_area): New function.
9909
9910 2012-03-08  Yao Qi  <yao@codesourcery.com>
9911
9912         * remote.c (remote_get_noisy_reply): Replace `sprintf' with
9913         `xsnprintf'.
9914         (remote_query_attached): Likewise.
9915         (remote_static_tracepoint_marker_at): Likewise.
9916         (remote_set_permissions): Likewise.
9917         (remote_detach_1, extended_remote_attach_1): Likewise.
9918         (send_g_packet, remote_vkill): Likewise.
9919         (extended_remote_disable_randomization): Likewise.
9920         (remote_add_target_side_condition): Likewise.
9921         (remote_insert_breakpoint): Likewise.
9922         (remote_remove_breakpoint): Likewise.
9923         (remote_insert_watchpoint): Likewise.
9924         (remote_remove_watchpoint): Likewise.
9925         (remote_insert_hw_breakpoint): Likewise.
9926         (remote_insert_hw_breakpoint): Likewise.
9927         (remote_remove_hw_breakpoint): Likewise.
9928         (remote_download_command_source): Likewise.
9929         (remote_download_tracepoint): Likewise.
9930         (remote_download_trace_state_variable): Likewise.
9931         (remote_disable_tracepoint): Likewise.
9932         (remote_trace_set_readonly_regions): Likewise.
9933         (remote_get_tracepoint_status): Likewise.
9934         (remote_trace_find): Likewise.
9935         (remote_get_trace_state_variable_value): Likewise.
9936         (remote_set_disconnected_tracing): Likewise.
9937         (remote_set_circular_trace_buffer): Likewise.
9938         (remote_get_min_fast_tracepoint_insn_len): Likewise.
9939         (remote_use_agent): Likewise.
9940         (remote_add_target_side_condition): Add one parameter BUF_SIZE.
9941         Update callers.
9942
9943 2012-03-07  Pedro Alves  <palves@redhat.com>
9944
9945         * NEWS: Mention QProgramSignals.
9946         * inferior.h (update_signals_program_target): Declare.
9947         * infrun.c: (update_signals_program_target): New.
9948         (handle_command): Update the target of the new program signals
9949         array changes.
9950         * remote.c (PACKET_QProgramSignals): New enum.
9951         (last_program_signals_packet): New global.
9952         (remote_program_signals): New.
9953         (remote_start_remote): Update the target with the program signals
9954         list.
9955         (remote_protocol_features): Add entry for QPassSignals.
9956         (remote_open_1): Free anc clear last_program_signals_packet.
9957         (init_remote_ops): Install remote_program_signals.
9958         * target.c (update_current_target): Adjust.
9959         (target_program_signals): New.
9960         * target.h (struct target_ops) <to_program_signals>: New field.
9961         (target_program_signals): Declare.
9962
9963 2012-03-07  Pedro Alves  <palves@redhat.com>
9964
9965         * NEWS: Add subtitle for new z0/z1 conditional breakpoint
9966         extensions.
9967
9968 2012-03-07  Andreas Schwab  <schwab@linux-m68k.org>
9969
9970         * m68klinux-nat.c (getregs_supplies): Make static.
9971         (getfpregs_supplies): Likewise.
9972         (have_ptrace_getregs): Likewise.
9973
9974 2012-03-06  Joel Brobecker  <brobecker@adacore.com>
9975
9976         * dwarf2read.c (dwarf2_get_die_type): Pass absolute offset
9977         in call to get_die_type_at_offset.
9978
9979 2012-03-06  Stan Shebs  <stan@codesourcery.com>
9980
9981         * mi/mi-cmd-break.c: Enforce coding standards, fix comments.
9982         * mi/mi-cmd-disas.c: Ditto.
9983         * mi/mi-cmd-env.c: Ditto.
9984         * mi/mi-cmd-file.c: Ditto.
9985         * mi/mi-cmd-stack.c: Ditto.
9986         * mi/mi-cmd-target.c: Ditto.
9987         * mi/mi-cmd-var.c: Ditto.
9988         * mi/mi-cmds.c: Ditto.
9989         * mi/mi-cmds.h: Ditto.
9990         * mi/mi-console.c: Ditto.
9991         * mi/mi-getopt.c: Ditto.
9992         * mi/mi-getopt.h: Ditto.
9993         * mi/mi-interp.c: Ditto.
9994         * mi/mi-main.c: Ditto.
9995         * mi/mi-out.c: Ditto.
9996         * mi/mi-parse.c: Ditto.
9997         * mi/mi-parse.h: Ditto.
9998         * mi/mi-symbol-cmds.c: Ditto.
9999
10000         * mi/mi-getopt.h: Move mi_opt struct up.
10001         * mi/mi-main.c (captured_mi_execute_command): Remove redundant
10002         return.
10003         * mi/mi-out.c (_initialize_mi_out): Remove empty initialize.
10004
10005 2012-03-06  Tom Tromey  <tromey@redhat.com>
10006
10007         * proc-service.c (ps_pglobal_lookup): Set the current program
10008         space.
10009
10010 2012-03-06  Pedro Alves  <palves@redhat.com>
10011
10012         * gregset.h [HAVE_SYS_PROCFS_H]: Include <sys/procfs.h>.
10013
10014 2012-03-05  Joel Brobecker  <brobecker@adacore.com>
10015
10016         * MAINTAINERS: List Maciej W. Rozycki as the mips maintainer.
10017
10018 2012-03-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
10019
10020         Code cleanup.
10021         * common/linux-osdata.c (linux_common_core_of_thread): New function
10022         comment.
10023         * linux-nat.c (linux_nat_wait_1): Replace linux_nat_core_of_thread_1
10024         call by linux_common_core_of_thread.
10025         (linux_nat_core_of_thread_1): Remove.
10026         * linux-nat.h (linux_nat_core_of_thread_1): Remove declaration.
10027         * linux-thread-db.c: Include linux-osdata.h.
10028         (update_thread_core): Replace linux_nat_core_of_thread_1 call by
10029         linux_common_core_of_thread.
10030
10031 2012-03-05  Tom Tromey  <tromey@redhat.com>
10032
10033         * value.c (value_primitive_field): Don't fetch contents for
10034         non-virtual bases.
10035
10036 2012-03-05  Tom Tromey  <tromey@redhat.com>
10037
10038         * jv-valprint.c (java_value_print): Correctly compute 'obj_addr'.
10039
10040 2012-03-05  Andreas Arnez  <arnez@linux.vnet.ibm.com>
10041
10042         * s390-nat.c: Include "gregset.h".
10043
10044 2012-03-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
10045
10046         * libunwind-frame.c (LIBUNWIND_SO): Change .7 to .8.
10047         [!LIBUNWIND_SO] (LIBUNWIND_SO_7): New #define.
10048         (libunwind_load): New variable so_error, use it for dlerror.  Try to
10049         load also LIBUNWIND_SO_7.
10050
10051 2012-03-05  Pedro Alves  <palves@redhat.com>
10052
10053         * i387-tdep.c (i387_supply_xsave): Assert the xsave section buffer
10054         is not NULL, and remove resulting dead code.
10055
10056 2012-03-05  Thomas Schwinge  <thomas@codesourcery.com>
10057
10058         * sh-tdep.c (sh_skip_prologue): Provide an upper limit on the function
10059         prologue to sh_analyze_prologue.
10060         (sh_analyze_prologue): Make better use of such an upper limit, and
10061         generally be more cautious about accessing memory.
10062
10063 2012-03-05  Tom Tromey  <tromey@redhat.com>
10064
10065         * ia64-vms-tdep.c (_initialize_ia64_vms_tdep): Rename from
10066         _initialize_ia64_hpux_tdep.
10067
10068 2012-03-05  Pedro Alves  <palves@redhat.com>
10069
10070         PR gdb/13766
10071
10072         * i387-tdep.c (i387_supply_xsave): If we have an xsave buffer, and
10073         the register state is clear, supply explicit zero, instead of
10074         marking the register unavailable.
10075
10076 2012-03-05  Tristan Gingold  <gingold@adacore.com>
10077
10078         * NEWS: Mention OpenVMS ia64 new target.
10079
10080 2012-03-05  Tristan Gingold  <gingold@adacore.com>
10081
10082         * ia64-tdep.h: Include libunwind-frame.h and libunwind-ia64.h.
10083         (ia64_unw_accessors, ia64_unw_rse_accessors)
10084         (ia64_libunwind_descr): Declare.
10085         * ia64-vms-tdep.c: New file.
10086         * ia64-tdep.c (ia64_unw_accessors, ia64_unw_rse_accessors)
10087         (ia64_libunwind_descr): Make them public.
10088         * configure.tgt: Add ia64-*-*vms*.
10089         * Makefile.in (ALL_64_TARGET_OBS): Add ia64-vms-tdep.o
10090         (ALLDEPFILES): Add ia64-vms-tdep.c
10091
10092 2012-03-05  Tristan Gingold  <gingold@adacore.com>
10093
10094         * target.h (target_object): Add TARGET_OBJECT_OPENVMS_UIB.
10095         * remote.c (PACKET_qXfer_uib): New enum value.
10096         (remote_protocol_features): Add entry for PACKET_qXfer_uib.
10097         (remote_xfer_partial): Handle TARGET_OBJECT_OPENVMS_UIB.
10098         (_initialize_remote): Call add_packet_config_cmd for
10099         xfer:uib packet.
10100
10101 2012-03-05  Tristan Gingold  <gingold@adacore.com>
10102
10103         * osabi.c (gdb_osabi_names): Add OpenVMS.
10104         (generic_elf_osabi_sniffer): Likewise.
10105         * defs.h (gdb_osabi): Add GDB_OSABI_OPENVMS.
10106
10107 2012-03-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
10108
10109         Removed unused code.
10110         * libunwind-frame.c (libunwind_frame_unwind)
10111         (libunwind_frame_base_address): Remove.
10112         * libunwind-frame.h (libunwind_frame_base_address): Remove declaration.
10113
10114 2012-03-04  Yao Qi  <yao@codesourcery.com>
10115
10116         * common/agent.c (gdb_connect_sync_socket): Add _ markup and
10117         remove trailing new line.
10118         (agent_run_command, agent_run_command): Add _ markup.
10119         (agent_capability_check): Likewise.
10120
10121 2012-03-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
10122
10123         * breakpoint.c (set_condition_evaluation_mode): Set
10124         CONDITION_EVALUATION_MODE unconditionally.
10125
10126 2012-03-03  Yao Qi  <yao@codesourcery.com>
10127
10128         * common/agent.c (agent_look_up_symbols): Add one parameter 'arg'.
10129         * common/agent.h: Update declaration.
10130         * inf-child.c (inf_child_use_agent): New.
10131         (inf_child_can_use_agent): New.
10132         (inf_child_target): Initialize fields `to_use_agent'
10133         and `to_can_use_agent'.
10134         * agent.c (agent_new_objfile): New.
10135         (_initialize_agent): Add agent_new_objfile to new_objfile
10136         observer.
10137
10138         * linux-nat.c (linux_child_static_tracepoint_markers_by_strid):
10139         New.
10140         (linux_target_install_ops): Initialize field
10141         `to_static_tracepoint_markers_by_strid'.
10142         * remote.c (free_current_marker): Move it to ...
10143         * tracepoint.c (free_current_marker): ... here.  New.
10144         (cleanup_target_stop): New.
10145         * tracepoint.h: Declare free_current_marker.
10146         * NEWS: Add one entry about `info static-tracepoint-marker'.
10147
10148 2012-03-03  Yao Qi  <yao@codesourcery.com>
10149
10150         * common/agent.c (agent_loaded_p): New.
10151         (agent_look_up_symbols): New global.
10152         * common/agent.h: Declare agent_loaded_p.
10153
10154 2012-03-03  Yao Qi  <yao@codesourcery.com>
10155
10156         * common/agent.c (struct ipa_sym_addresses) <addr_capability>: New.
10157         (agent_capability_check, agent_capability_invalidate): New.
10158         (symbol_list): New array element.
10159         * common/agent.h (enum agent_capa): New.
10160         * target.c (target_pre_inferior): Call agent_capability_invalidate.
10161
10162 2012-03-03  Yao Qi  <yao@codesourcery.com>
10163
10164         * target.h (struct target_ops) <to_use_agent>: New field.
10165         (struct target_ops) <to_can_use_agent>: New field.
10166         (target_use_agent, target_can_use_agent): New macro.
10167         * target.c (update_current_target): Update.
10168         * remote.c: New enum `PACKET_QAgent'.
10169         (remote_protocol_features): Add a new element.
10170         (remote_use_agent, remote_can_use_agent): New.
10171         (init_remote_ops): Initialize field `can_use_agent' with
10172         remote_can_use_agent.  Intiailize field `use_agent' with
10173         remote_use_agent.
10174         * common/agent.c (use_agent): New global.
10175         * common/agent.h: Declare it.
10176         * tracepoint.c (info_static_tracepoint_markers_command): Add
10177         comment.
10178         * Makefile.in (SFILES): Add common/agent.c and agent.c.
10179         (COMMON_OBS): Add common/agent.o and agent.o
10180         (common-agent.o): New rule.
10181         * agent.c: New.
10182
10183 2012-03-03  Yao Qi  <yao@codesourcery.com>
10184
10185         * common/agent.c: New.
10186         * common/agent.h: New.
10187         * configure.ac: Add `sys/socket.h' and `sys/un.h' to
10188         AC_CHECK_HEADERS.
10189         * configure, configh.in: Regenerated.
10190
10191 2012-03-02  Kevin Buettner  <kevinb@redhat.com>
10192
10193         * sh-tdep.c (sh_frame_cache): Don't fetch the FPSCR register
10194         unless it exists for this architecture.
10195
10196 2012-03-02  Joel Brobecker  <brobecker@adacore.com>
10197
10198         * language.h (struct language_defn): New "method" la_read_var_value.
10199         * findvar.c: #include "language.h".
10200         (default_read_var_value): Renames read_var_value.  Rewrite
10201         function description.
10202         (read_var_value): New function.
10203         * value.h (default_read_var_value): Add prototype.
10204         * ada-lang.c (ada_read_renaming_var_value, ada_read_var_value):
10205         New functions.
10206         (ada_language_defn): Add entry for la_read_var_value.
10207         * c-lang.c, d-lang.c, f-lang.c, jv-lang.c, language.c,
10208         * m2-lang.c, objc-lang.c, opencl-lang.c, p-lang.c: Update
10209         language_defn structures to add entry for new la_read_var_value
10210         field.
10211
10212 2012-03-02  Tom Tromey  <tromey@redhat.com>
10213             Pedro Alves  <palves@redhat.com>
10214
10215         PR breakpoints/13776:
10216         * breakpoint.c (breakpoint_init_inferior): Delete step-resume
10217         breakpoints.
10218         (delete_longjmp_breakpoint_at_next_stop): New.
10219         * breakpoint.h (delete_longjmp_breakpoint_at_next_stop): Declare.
10220         * target.c (generic_mourn_inferior): Call mark_breakpoints_out
10221         before deleting the inferior.  Add comments.
10222         * thread.c (clear_thread_inferior_resources): Don't delete lonjmp
10223         breakpoints immediately, but only on next stop.  Move that code
10224         next to where we mark other breakpoints for deletion.
10225
10226 2012-03-02  Joel Brobecker  <brobecker@adacore.com>
10227
10228         * mips-linux-nat.c (mips_linux_read_description): Add missing i18n
10229         marker.
10230         * mips-tdep.c (mips_linux_reg_names): Improve comment to avoid ARI
10231         violation.
10232
10233 2012-03-02  Pedro Alves  <palves@redhat.com>
10234
10235         * linux-thread-db.c (attach_thread): Avoid in_thread_list call.
10236
10237 2012-03-02  Ulrich Weigand  <uweigand@de.ibm.com>
10238
10239         Fix -Wmissing-prototypes build.
10240         * ppc-linux-nat.c (ppc_linux_get_hwcap): Make static.
10241         * remote-sim.c (gdbsim_has_all_memory): Likewise.
10242         (gdbsim_has_memory): Likewise.
10243
10244 2012-03-02  Yao Qi  <yao@codesourcery.com>
10245
10246         Fix -Wmissing-prototypes build.
10247         * charset.c (phony_iconv_open): Make static.
10248         (phony_iconv_close, phony_iconv): Likewise.
10249         * i386-linux-nat.c (_initialize_i386_linux_nat): New prototype.
10250         * i386-windows-nat.c (_initialize_i386_windows_nat): New
10251         prototype.
10252         * mingw-hdep.c (_initialize_mingw_hdep): New prototype.
10253         * ser-mingw.c (create_select_thread): Make static.
10254         * windows-termcap.c (tgetent): New prototype.
10255         (tgetnum, tgetflag, tgetstr, tputs, tgoto): Likewise.
10256
10257 2012-03-02  Zhang Yuanhui  <asmwarrior@gmail.com>
10258
10259         Fix -Wmissing-prototypes build.
10260         * windows-nat.c (dll_symbol_command, ctrl_c_handler): Make them static.
10261         (_initialize_windows_nat, _initialize_check_for_gdb_ini)
10262         (_initialize_loadable): New prototypes.
10263
10264 2012-03-02  Doug Evans  <dje@google.com>
10265
10266         * dwarf2read.c (load_full_comp_unit): Remove unnecessary reading of
10267         abbrev table, read_comp_unit will do it.
10268
10269 2012-03-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
10270
10271         Fix -Wmissing-prototypes build.
10272         * alpha-tdep.c (alpha_deal_with_atomic_sequence): Make it static.
10273         * amd64-darwin-tdep.c (_initialize_amd64_darwin_tdep): New prototype.
10274         * amd64-windows-tdep.c (_initialize_amd64_windows_tdep): Likewise.
10275         * arm-symbian-tdep.c (arm_symbian_skip_trampoline_code): Make it static.
10276         (_initialize_arm_symbian_tdep): New prototype.
10277         * arm-wince-tdep.c (arm_wince_skip_main_prologue): Make it static.
10278         * i386-darwin-tdep.c (_initialize_i386_darwin_tdep): New prototype.
10279         * i386-linux-tdep.c (i386_linux_displaced_step_copy_insn): Make it
10280         static.
10281         * lm32-tdep.c (_initialize_lm32_tdep): New prototype.
10282         * microblaze-linux-tdep.c (_initialize_microblaze_linux_tdep): New
10283         prototype.
10284         * microblaze-tdep.c (microblaze_debug, microblaze_fetch_instruction)
10285         (microblaze_skip_prologue, microblaze_frame_cache): Make them static.
10286         * mips-linux-tdep.c (mips_linux_regset_from_core_section): Make it
10287         static.
10288         * moxie-tdep.c (moxie_process_record): Likewise.
10289         * remote-mips.c (mips_can_use_watchpoint, mips_insert_watchpoint)
10290         (mips_remove_watchpoint, mips_stopped_by_watchpoint): Make them static.
10291         * rl78-tdep.c (rl78_breakpoint_from_pc): Make it static.
10292         (_initialize_rl78_tdep): New prototype.
10293         * rx-tdep.c (rx_breakpoint_from_pc): Make it static.
10294         (_initialize_rx_tdep): New prototype.
10295         * solib-darwin.c (darwin_in_dynsym_resolve_code): Make it static.
10296         (_initialize_darwin_solib): New prototype.
10297         * solib-spu.c: Include solib-spu.h.
10298         (_initialize_spu_solib): New prototype.
10299         * spu-multiarch.c (_initialize_spu_multiarch): New prototype.
10300         * tic6x-tdep.c (tic6x_analyze_prologue, tic6x_skip_prologue)
10301         (tic6x_breakpoint_from_pc, tic6x_frame_unwind_cache)
10302         (tic6x_software_single_step): Make it static.
10303         (_initialize_tic6x_tdep): New prototype.
10304
10305 2012-03-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
10306
10307         Fix -Wmissing-prototypes build.
10308         * cris-tdep.c (cris_can_use_hardware_watchpoint)
10309         (cris_region_ok_for_watchpoint, cris_stopped_data_address): Remove.
10310
10311 2012-03-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
10312
10313         Fix -Wmissing-prototypes build.
10314         * frv-tdep.c (frv_check_watch_resources, frv_stopped_data_address)
10315         (frv_have_stopped_data_address): Remove.
10316
10317 2012-03-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
10318
10319         Fix -Wmissing-prototypes build.
10320         * Makefile.in (HFILES_NO_SRCDIR): Add sh64-tdep.h.
10321         * sh-tdep.c: Include sh64-tdep.h.
10322         * sh-tdep.h (sh64_gdbarch_init, sh64_show_regs): Remove declarations.
10323         * sh64-tdep.c: Include sh64-tdep.h.
10324         * sh64-tdep.h: New file.
10325
10326 2012-03-01  Maciej W. Rozycki <macro@codesourcery.com>
10327
10328         * mips-tdep.c (mips32_scan_prologue): Correct indentation.
10329
10330 2012-03-01  Maciej W. Rozycki  <macro@codesourcery.com>
10331
10332         * mips-tdep.c (mips_gdbarch_init): Only set pc_regnum and
10333         sp_regnum once the gdbarch_init_osabi hook has been called.
10334
10335 2012-03-01  Maciej W. Rozycki  <macro@codesourcery.com>
10336
10337         * mips-tdep.c (mips32_bc1_pc): New function.
10338         (mips32_next_pc): Handle BC1ANY2F, BC1ANY2T, BC1ANY4F, BC1ANY4T,
10339         BPOSGE32 and BPOSGE64 instructions.
10340         (deal_with_atomic_sequence): Likewise.
10341         (mips32_instruction_has_delay_slot): Likewise.
10342
10343 2012-03-01  Maciej W. Rozycki  <macro@mips.com>
10344             Chris Dearman  <chris@mips.com>
10345             Maciej W. Rozycki  <macro@codesourcery.com>
10346             Joseph Myers  <joseph@codesourcery.com>
10347
10348         * features/mips-dsp.xml: New file.
10349         * features/mips64-dsp.xml: New file.
10350         * features/mips-dsp-linux.xml: New file.
10351         * features/mips64-dsp-linux.xml: New file.
10352         * features/Makefile (WHICH): Add mips-dsp-linux and
10353         mips64-dsp-linux.
10354         (mips-dsp-expedite, mips64-dsp-expedite): New variables.
10355         * features/mips-dsp-linux.c: New file.
10356         * features/mips64-dsp-linux.c: New file.
10357         * regformats/mips-dsp-linux.dat: New file.
10358         * regformats/mips64-dsp-linux.dat: New file.
10359         * mips-linux-nat.c (mips_linux_register_addr): Handle DSP
10360         registers.
10361         (mips64_linux_register_addr): Likewise.
10362         (mips64_linux_regsets_fetch_registers): Likewise.
10363         (mips64_linux_regsets_store_registers): Likewise.
10364         (mips64_linux_fetch_registers): Update call to
10365         mips64_linux_regsets_fetch_registers.
10366         (mips64_linux_store_registers): Update call to
10367         mips64_linux_regsets_store_registers.
10368         (mips_linux_read_description): Probe for DSP registers.
10369         (_initialize_mips_linux_nat): Call initialize_tdesc_mips_dsp_linux
10370         and initialize_tdesc_mips64_dsp_linux.
10371         * mips-linux-tdep.c (supply_gregset, mips64_supply_gregset):
10372         Remove padding of no longer used embedded register slots.
10373         * mips-linux-tdep.h (DSP_BASE, DSP_CONTROL): New macros.
10374         (MIPS_RESTART_REGNUM): Redefine enum value.
10375         * mips-tdep.c (mips_generic_reg_names): Remove trailing null
10376         strings.
10377         (mips_tx39_reg_names): Likewise.
10378         (mips_linux_reg_names): New array of register names for Linux
10379         targets.
10380         (mips_register_name): Check for a null pointer in
10381         mips_processor_reg_names and return an empty string.
10382         (mips_register_type): Exclude embedded registers for the IRIX
10383         and Linux ABIs.
10384         (mips_pseudo_register_type): Likewise.  Use dynamic numbers to
10385         refer to FP registers, LO, HI, BadVAddr, Cause and PC.  Handle
10386         DSP registers.
10387         (mips_stab_reg_to_regnum): Handle DSP accumulators.
10388         (mips_dwarf_dwarf2_ecoff_reg_to_regnum): Likewise.
10389         (mips_gdbarch_init): Likewise.  Initialize internal register
10390         indices for the Linux ABI.  Use dynamic numbers to refer to
10391         registers, as applicable, while parsing the target description.
10392         * mips-tdep.h (struct mips_regnum): Add dspacc/dspctl offsets.
10393
10394 2012-03-01  Joel Brobecker  <brobecker@adacore.com>
10395
10396         * frame.h (read_frame_register_unsigned): Fix typo in function
10397         description.
10398
10399 2012-03-01  Pedro Alves  <palves@redhat.com>
10400
10401         * jit-reader.in [!__cplusplus]
10402         (GDB_DECLARE_GPL_COMPATIBLE_READER): Add missing backslash.
10403
10404 2012-03-01  Pedro Alves  <palves@redhat.com>
10405
10406         * configure.ac (build_warnings): Add -Wmissing-prototypes.
10407         * configure: Regenerate.
10408
10409 2012-03-01  Pedro Alves  <palves@redhat.com>
10410
10411         * amd64-linux-tdep.c (amd64_linux_record_signal): Make static.
10412         * breakpoint.c (create_exception_master_breakpoint, trace_command)
10413         (ftrace_command, strace_command): Make static.
10414         * d-lang.c (_initialize_d_language): Declare.
10415         * dwarf2expr.c (_initialize_dwarf2expr): Declare.
10416         * dwarf2loc.c (_initialize_dwarf2loc):
10417         * dwarf2read.c (process_psymtab_comp_unit): Make static.
10418         * exec.c (exec_get_section_table): Make static.
10419         * i386-linux-tdep.c (i386_linux_record_signal): Make static.
10420         * infcmd.c (ensure_valid_thread, ensure_not_tfind_mode): Make static.
10421         * inferior.c (remove_inferior_command, add_inferior_command)
10422         (clone_inferior_command): Make static.
10423         * linux-nat.c (linux_nat_thread_address_space)
10424         (linux_nat_core_of_thread): Make static.
10425         * linux-tdep.c (_initialize_linux_tdep): Declare.
10426         * objc-lang.c (_initialize_objc_lang): Declare.
10427         * opencl-lang.c (builtin_opencl_type, opencl_language_arch_info):
10428         Make static.
10429         (_initialize_opencl_language): Declare.
10430         * record.c (_initialize_record): Declare.
10431         * remote.c (demand_private_info, remote_get_tib_address)
10432         (remote_supports_cond_tracepoints)
10433         (remote_supports_fast_tracepoints, remote_get_tracepoint_status):
10434         Make static.
10435         * skip.c (_initialize_step_skip): Declare.
10436         * symtab.c (skip_prologue_using_lineinfo): Make static.
10437         * tracepoint.c (delete_trace_state_variable)
10438         (trace_variable_command, delete_trace_variable_command)
10439         (get_uploaded_tsv, find_matching_tracepoint_location)
10440         (find_matching_tsv, create_tsv_from_upload, get_traceframe_info):
10441         Make static.
10442         * value.c (pack_unsigned_long): Make static.
10443         * varobj.c (varobj_ensure_python_env): Make static.
10444         * windows-tdep.c (_initialize_windows_tdep): Declare.
10445         * xml-syscall.c (make_cleanup_free_syscalls_info): Make static.
10446
10447 2012-03-01  Pedro Alves  <palves@redhat.com>
10448
10449         * linux-tdep.c (linux_has_shared_address_space): Make static.  Add
10450         gdbarch parameter.
10451         (linux_init_abi): Install it as has_shared_address_space gdbarch
10452         callback.
10453
10454 2012-03-01  Pedro Alves  <palves@redhat.com>
10455
10456         * observer.c (observer_test_first_notification_function)
10457         (observer_test_second_notification_function)
10458         (observer_test_third_notification_function): Add declarations.
10459
10460 2012-03-01  Pedro Alves  <palves@redhat.com>
10461
10462         * common/signals.c (default_target_signal_to_host)
10463         (default_target_signal_from_host): Move ...
10464         * arch-utils.c: ... here.
10465         * arch-utils.h (default_target_signal_to_host)
10466         (default_target_signal_from_host): Declare.
10467
10468         * common/signals.c (target_signal_from_command): Move ...
10469         * infrun.c: ... here.
10470         * inferior.h (target_signal_from_command): Declare.
10471         * target.h (target_signal_from_command)
10472         (default_target_signal_from_host, default_target_signal_to_host):
10473         Delete declarations.
10474
10475         * common/signals.c (_initialize_signals): Delete.
10476
10477 2012-03-01  Pedro Alves  <palves@redhat.com>
10478
10479         * jit-reader.in (plugin_is_GPL_compatible): Add declarations for
10480         both __cplusplus and !__cplusplus.
10481
10482 2012-03-01  Pedro Alves  <palves@redhat.com>
10483
10484         * psymtab.c (find_and_open_source): Delete declaration.
10485         * source.c (find_and_open_source): Move comment ...
10486         * source.h (find_and_open_source): ... to this new declaration.
10487
10488 2012-03-01  Pedro Alves  <palves@redhat.com>
10489
10490         * inline-frame.c: Include inline-frame.h.
10491
10492 2012-03-01  Pedro Alves  <palves@redhat.com>
10493
10494         * tui/tui-data.c (set_gen_win_origin): Delete.
10495         * tui/tui-data.h (tui_set_gen_win_origin): Delete declaration.
10496         * tui/tui-regs.c (tui_last_reg_element_no_in_line): Delete.
10497
10498 2012-03-01  Pedro Alves  <palves@redhat.com>
10499
10500         * remote.c (encode_actions): Delete declaration.
10501         * tracepoint.c (encode_actions): Make extern.
10502         * tracepoint.h (encode_actions): Declare.
10503
10504 2012-03-01  Pedro Alves  <palves@redhat.com>
10505
10506         * python/py-breakpoint.c: Include python.h.
10507         * python/py-continueevent.c (create_continue_event_object): Make
10508         static.
10509         * python/py-lazy-string.c (stpy_get_type): Make static.
10510         * python/py-newobjfileevent.c (create_new_objfile_event_object):
10511         Make static.
10512         * python/py-utils.c (unicode_to_target_python_string): Make
10513         static.
10514         * python/py-value.c: Include python.h.
10515
10516 2012-03-01  Pedro Alves  <palves@redhat.com>
10517
10518         * inferior.c (delete_threads_of_inferior): Delete.
10519
10520 2012-03-01  Pedro Alves  <palves@redhat.com>
10521
10522         Import fallback definitions from glibc.
10523
10524         * gdb_proc_service.h [!HAVE_PROC_SERVICE_H] (struct
10525         ps_prochandle): Forward declare.
10526         (ps_err_e): Use glibc's comments.
10527         [!HAVE_PROC_SERVICE_H] (ps_pdread, ps_pdwrite, ps_ptread)
10528         (ps_ptwrite, ps_lgetregs, ps_lsetregs, ps_lgetfpregs)
10529         (ps_lsetfpregs, ps_getpid, ps_get_thread_area, ps_pglobal_lookup)
10530         (ps_pstop, ps_pcontinue, ps_lstop, ps_lcontinue, ps_lgetxregsize)
10531         (ps_lgetxregs, ps_lsetxregs, ps_plog): Declare.
10532         (struct ps_prochandle): Adjust comment.
10533
10534 2012-03-01  Pedro Alves  <palves@redhat.com>
10535
10536         * ada-lang.c (ada_modulus_from_name): Delete.
10537         * ada-lex.l (lexer_init): Make static.
10538
10539 2012-03-01  Pedro Alves  <palves@redhat.com>
10540
10541         PR gdb/13767
10542
10543         * frame.c (read_frame_register_unsigned): New.
10544         * frame.h (read_frame_register_unsigned): Declare.
10545         * i387-tdep.c (print_i387_status_word): New parameter `status_p'.
10546         Handle it.
10547         (print_i387_control_word): New parameter `control_p'.  Handle it.
10548         (i387_print_float_info): Handle unavailable float registers.
10549
10550 2012-03-01  Keith Seitz  <keiths@redhat.com>
10551
10552         * linespec.c (decode_line_2): Sort the list of methods
10553         alphabetically before presenting the user with a selection
10554         menu.
10555
10556 2012-03-01  Doug Evans  <dje@google.com>
10557
10558         * dwarf2read.c (dwarf2_cu): Remove unused members has_form_ref_addr,
10559         has_namespace_info.
10560         (dwarf2_read_abbrevs): Remove corresponding initialization.
10561
10562 2012-03-01  Scott J. Goldman <scottjg@vmware.com>
10563
10564         * NEWS: Mention new python command class gdb.COMMAND_USER.
10565         * cli/cli-cmds.c (show_user): Print error when used on a python
10566         command.
10567         (init_cli_cmds): Update documentation strings for "show user" and
10568         "set/show max-user-call-depth" to clarify that it does not apply to
10569         python commands.
10570         * python/py-cmd.c (cmdpy_init): Treat class_user as a valid class in
10571         error check.
10572         (gdbpy_initialize_commands): Add COMMAND_USER as a constant in
10573         gdb python api.
10574         * top.c (execute_command): Only execute a user-defined command as a
10575         legacy macro if c->user_commands is set.
10576
10577 2012-03-01  Tom Tromey  <tromey@redhat.com>
10578
10579         * valprint.h (struct generic_val_print_decorations): New.
10580         (generic_val_print): Declare.
10581         * valprint.c (generic_val_print): New function.
10582         * p-valprint.c (p_decorations): New global.
10583         (pascal_val_print) <TYPE_CODE_REF, TYPE_CODE_ENUM,
10584         TYPE_CODE_FLAGS, TYPE_CODE_FUNC, TYPE_CODE_RANGE, TYPE_CODE_INT,
10585         TYPE_CODE_FLT, TYPE_CODE_VOID, TYPE_CODE_ERROR, TYPE_CODE_UNDEF,
10586         TYPE_CODE_BOOL, TYPE_CODE_CHAR>: Call generic_val_print.
10587         * m2-valprint.c (m2_decorations): New global.
10588         (m2_val_print) <TYPE_CODE_REF, TYPE_CODE_ENUM, TYPE_CODE_FUNC,
10589         TYPE_CODE_BOOL, TYPE_CODE_RANGE, TYPE_CODE_INT, TYPE_CODE_CHAR,
10590         TYPE_CODE_FLT, TYPE_CODE_METHOD, TYPE_CODE_VOID, TYPE_CODE_UNDEF,
10591         TYPE_CODE_ERROR>: Call generic_val_print.
10592         * f-valprint.c (f_decorations): New global.
10593         (f_val_print): Use print_function_pointer_address.
10594         <TYPE_CODE_REF, TYPE_CODE_FUNC, TYPE_CODE_CHAR, TYPE_CODE_FLAGS,
10595         TYPE_CODE_FLT, TYPE_CODE_VOID, TYPE_CODE_ENUM, TYPE_CODE_RANGE,
10596         TYPE_CODE_BOOL, TYPE_CODE_COMPLEX, TYPE_CODE_UNDEF>: Call
10597         generic_val_print.
10598         * c-valprint.c (c_decorations): New global.
10599         (c_val_print) <TYPE_CODE_MEMBERPTR, TYPE_CODE_REF, TYPE_CODE_ENUM,
10600         TYPE_CODE_FLAGS, TYPE_CODE_FUNC, TYPE_CODE_METHOD, TYPE_CODE_BOOL,
10601         TYPE_CODE_RANGE, TYPE_CODE_CHAR, TYPE_CODE_FLT,
10602         TYPE_CODE_DECFLOAT, TYPE_CODE_VOID, TYPE_CODE_ERROR,
10603         TYPE_CODE_UNDEF, TYPE_CODE_COMPLEX>: Call generic_val_print.
10604         * ada-valprint.c (ada_val_print_1) <TYPE_CODE_FLAGS>: Remove
10605         case.
10606
10607 2012-03-01  Tom Tromey  <tromey@redhat.com>
10608
10609         * valprint.c (val_print): Update.
10610         * p-valprint (pascal_val_print): Return void.
10611         * p-lang.h (pascal_val_print): Return void.
10612         * m2-valprint.c (m2_val_print): Return void.
10613         * m2-lang.h (m2_val_print): Return void.
10614         * language.h (struct language_defn) <la_val_print>: Return void.
10615         * language.c (unk_lang_val_print): Return void.
10616         * jv-valprint.c (java_val_print): Return void.
10617         * jv-lang.h (java_val_print): Return void.
10618         * f-valprint.c (f_val_print): Return void.
10619         * f-lang.h (f_val_print): Return void.
10620         * d-valprint.c (d_val_print): Return void.
10621         (dynamic_array_type): Update.
10622         * d-lang.h (d_val_print): Return void.
10623         * c-valprint.c (c_val_print): Return void.
10624         * c-lang.h (c_val_print): Return void.
10625         * ada-valprint.c (ada_vada_val_print, ada_val_print_1): Return
10626         void.
10627         * ada-lang.h (ada_val_print): Return void.
10628
10629 2012-03-01  Tom Tromey  <tromey@redhat.com>
10630
10631         * value.h (val_print): Return void.
10632         * valprint.c (val_print): Return void.
10633
10634 2012-03-01  Tom Tromey  <tromey@redhat.com>
10635
10636         * value.h (common_val_print): Return void.
10637         * valprint.c (common_val_print): Return void.
10638
10639 2012-03-01  Tom Tromey  <tromey@redhat.com>
10640
10641         * value.h (value_print): Return void.
10642         * valprint.c (value_print): Return void.
10643         * p-valprint.c (pascal_value_print): Return void.
10644         * p-lang.h (pascal_value_print): Return void.
10645         * language.h (struct language_defn) <la_value_print>: Return
10646         void.
10647         * language.c (unk_lang_value_print): Return void.
10648         * jv-valprint.c (java_value_print): Return void.
10649         * jv-lang.h (java_value_print): Return void.
10650         * f-valprint.c (c_value_print): Don't declare.
10651         Include c-lang.h.
10652         * c-valprint.c (c_value_print): Return void.
10653         * c-lang.h (c_value_print): Return void.
10654         * ada-valprint.c (ada_value_print): Return void.
10655         * ada-lang.h (ada_value_print): Return void.
10656
10657 2012-03-01  Tom Tromey  <tromey@redhat.com>
10658
10659         * value.c (value_primitive_field): Handle virtual base classes.
10660
10661 2012-03-01  Tom Tromey  <tromey@redhat.com>
10662
10663         * gdbtypes.h (struct vbase): Remove.
10664
10665 2012-03-01  Tom Tromey  <tromey@redhat.com>
10666
10667         * c-valprint.c (print_function_pointer_address): Move...
10668         * valprint.c: ... here.  Make non-static.
10669         * m2-valprint.c (print_function_pointer_address): Remove.
10670         * valprint.h (print_function_pointer_address): Declare.
10671
10672 2012-03-01  Joel Brobecker  <brobecker@adacore.com>
10673
10674         * NEWS: Document the fact that one can provide a condition when
10675         creating an Ada exception catchpoint.
10676
10677 2012-03-01  Tom Tromey  <tromey@redhat.com>
10678
10679         * valprint.c (val_print_type_code_flags): Fix placement of
10680         trailing brace.
10681
10682 2012-03-01  Joel Brobecker  <brobecker@adacore.com>
10683
10684         * copyright.py (MULTILINE_COMMENT_PREFIXES): Delete.
10685         (update_files): Do not set MULTILINE_COMMENT_PREFIXES
10686         environment variable before calling update-copyright.
10687
10688 2012-03-01  Joel Brobecker  <brobecker@adacore.com>
10689
10690         * gnulib/extra/update-copyright: Update to the latest from
10691         gnulib's git repository.
10692         * copyright.py: Set UPDATE_COPYRIGHT_USE_INTERVALS environment
10693         variable to 2 instead of 1.
10694
10695 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
10696
10697         * varobj.c (c_value_of_variable): Remove dead code.
10698
10699 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
10700
10701         * ada-lex.p (processId): Do not modify already encoded IDs.
10702         Update function documentation.
10703
10704 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
10705
10706         * ada-lang.h (ada_find_renaming_symbol): Replace parameter
10707         "name" with "struct symbol *name_sym".
10708         * ada-exp.y (write_var_or_type): Update call to
10709         ada_find_renaming_symbol.
10710         "name" with "struct symbol *name_sym". Adjust Implementation
10711         accordingly.  Adjust the function documentation.
10712
10713 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
10714
10715         * ada-lang.h (ada_find_any_symbol, ada_find_any_type): Delete.
10716         * ada-lang.c (ada_find_any_type): Add advance declaration.
10717         Make static.  Replace ada_find_any_symbol by
10718         ada_find_any_type_symbol.
10719         (ada_find_any_type_symbol): Renames ada_find_any_symbol.
10720         Improve function description.  Make static.
10721         (ada_find_renaming_symbol, find_old_style_renaming_symbol):
10722         Replace ada_find_any_symbol by ada_find_any_type_symbol.
10723
10724 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
10725
10726         * ada-lang.c (struct tag_args): Delete.
10727         (ada_get_tsd_type): Function body moved up in source file.
10728         (ada_tag_name_1, ada_tag_name_2): Delete.
10729         (ada_get_tsd_from_tag): New function.
10730         (ada_tag_name_from_tsd): New function.
10731         (ada_tag_name): Use a TRY_CATCH block instead of catch_errors
10732         to determine the tag name.
10733
10734 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
10735
10736         * ada-lang.h (ada_get_decoded_value, ada_get_decoded_type): Add
10737         declaration.
10738         * ada-lang.c (ada_get_decoded_value, ada_get_decoded_type): New
10739         function.
10740
10741 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
10742
10743         * ada-lang.c (ada_is_ignored_field): Rewrite wrong comment.
10744
10745 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
10746
10747         * ada-lang.c (ada_lookup_symbol_list): Only cache the result of
10748         full searches.
10749
10750 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
10751
10752         * ada-lang.c (constrained_packed_array_type): If there is a
10753         parallel XA type, use it to determine the array index type.
10754
10755 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
10756
10757         * ada-valprint.c (ada_val_print_1): If our value is a reference
10758         to an array descriptor, dereference it before converting it
10759         to a simple array.
10760
10761 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
10762
10763         * ada-lang.c (ada_to_fixed_value): Call unwrap_value before
10764         creating fixed value.
10765         (ada_value_ind, ada_coerce_ref, assign_component)
10766         (ada_evaluate_subexp): Remove call to unwrap_value before
10767         call to ada_to_fixed_value.
10768
10769 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
10770
10771         * ada-lang.c (to_fixed_array_type): Set result's type name.
10772
10773 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
10774
10775         * ada-lang.c (catch_ada_exception_command_split): Add new
10776         argument cond_string.  Add support for condition at end of
10777         "catch exception" commands.
10778         (ada_decode_exception_location): Add new argument cond_string.
10779         Update call to catch_ada_exception_command_split.
10780         (create_ada_exception_catchpoint): Add new argument cond_string.
10781         Set the breakpoint condition if needed.
10782         (catch_ada_exception_command): Update call to
10783         ada_decode_exception_location.
10784         (ada_decode_assert_location): Add function documentation.
10785         Add support for condition at end of "catch assert" command.
10786         (catch_assert_command): Update calls to ada_decode_assert_location
10787         and create_ada_exception_catchpoint.
10788
10789 2012-02-29  Jan Kratochvil  <jan.kratochvil@redhat.com>
10790
10791         Fix disp-step-syscall.exp: fork: single step over fork.
10792         * i386-linux-tdep.c (-i386_linux_get_syscall_number): Rename to ...
10793         (i386_linux_get_syscall_number_from_regcache): ... here, new function
10794         comment, change parameters gdbarch and ptid to regcache.  Remove
10795         parameter regcache, initialize gdbarch from regcache here.
10796         (i386_linux_get_syscall_number, i386_linux_displaced_step_copy_insn):
10797         New functions.
10798         (i386_linux_init_abi): Install i386_linux_displaced_step_copy_insn
10799         instead.
10800         * i386-tdep.c (i386_syscall_p): Check also for 'sysenter' and
10801         'syscall'.  Make the 'int' check more strict.
10802
10803 2012-02-29  Jan Kratochvil  <jan.kratochvil@redhat.com>
10804
10805         Fix reverse mode for syscall on AMD CPUs in 32-bit mode.
10806         * i386-linux-tdep.c (i386_linux_intx80_sysenter_record): Rename to ...
10807         (i386_linux_intx80_sysenter_syscall_record): ... here.
10808         (i386_linux_init_abi): Initialize also I386_SYSCALL_RECORD.
10809         Use the renamed function name.
10810
10811 2012-02-29  Jan Kratochvil  <jan.kratochvil@redhat.com>
10812
10813         * arm-linux-tdep.c (arm_linux_copy_svc): Reset stale FRAME.
10814         * breakpoint.c (until_break_command): Likewise.
10815         * elfread.c (elf_gnu_ifunc_resolver_stop): Likewise.
10816         * infcall.c (call_function_by_hand): Likewise.
10817         * infcmd.c (finish_forward): Likewise.
10818         * infrun.c (insert_exception_resume_breakpoint): Likewise.
10819
10820 2012-02-28  Tristan Gingold  <gingold@adacore.com>
10821
10822         * ada-tasks.c (ada_tasks_inferior_data_sniffer): Rework code to
10823         avoid variable assignments inside condition.
10824
10825 2012-02-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
10826
10827         Fix static analysis issue found by cppcheck.
10828         * microblaze-tdep.c (microblaze_extract_return_value): Fix
10829         uninitialized BUF for size 2.
10830
10831 2012-02-27  Chris Dearman  <chris@mips.com>
10832             Nathan Froyd  <froydnj@codesourcery.com>
10833             Maciej W. Rozycki  <macro@codesourcery.com>
10834
10835         * mips-tdep.c (mips32_instruction_has_delay_slot): New function.
10836         (mips16_instruction_has_delay_slot): Likewise.
10837         (mips_segment_boundary): Likewise.
10838         (mips_adjust_breakpoint_address): Likewise.
10839         (mips_gdbarch_init): Use mips_adjust_breakpoint_address.
10840
10841 2012-02-27  Maciej W. Rozycki  <macro@mips.com>
10842             Maciej W. Rozycki  <macro@codesourcery.com>
10843
10844         * infrun.c (handle_inferior_event): Don't proceed through
10845         shared library trampolines if stepping at the machine
10846         instruction level.
10847
10848 2012-02-27  Maciej W. Rozycki  <macro@codesourcery.com>
10849
10850         * mips-linux-tdep.c (mips_linux_init_abi): Set num_pseudo_regs
10851         too.
10852
10853 2012-02-27  Thomas Schwinge  <thomas@codesourcery.com>
10854
10855         * sh-tdep.c (sh_make_stub_cache, sh_stub_this_id)
10856         (sh_stub_unwind_sniffer): New functions.
10857         (sh_stub_unwind): New variable.
10858         (sh_gdbarch_init): Wire everything.
10859
10860 2012-02-27  Pedro Alves  <palves@redhat.com>
10861
10862         * linux-nat.c (pid_is_stopped): Delete, moved to common/.
10863         (linux_nat_post_attach_wait): Adjust to use
10864         linux_proc_pid_is_stopped.
10865         * common/linux-procfs.h (linux_proc_pid_is_stopped): Declare.
10866         * common/linux-procfs.c (linux_proc_pid_is_stopped): New function,
10867         based on pid_is_stopped from both linux-nat.c and
10868         gdbserver/linux-low.c, and renamed.
10869
10870 2012-02-24  Maciej W. Rozycki  <macro@codesourcery.com>
10871
10872         * remote.c (remote_watchpoint_addr_within_range): New function.
10873         (init_remote_ops): Use it.
10874
10875 2012-02-24  Maciej W. Rozycki  <macro@codesourcery.com>
10876
10877         * target.h (target_watchpoint_addr_within_range): Document macro.
10878
10879 2012-02-24  Pedro Alves  <palves@redhat.com>
10880
10881         * stack.c (set_last_displayed_sal): Issue internal_error instead
10882         of warning, and issue it after clearing the last displayed sal.
10883
10884 2012-02-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
10885             Pedro Alves  <palves@redhat.com>
10886
10887         * breakpoint.c (until_break_command): Install breakpoints after
10888         all frame manipulations.
10889
10890 2012-02-24  Luis Machado  <lgustavo@codesourcery.com>
10891
10892         * remote.c (remote_supports_cond_breakpoints): New forward
10893         declaration.
10894         (remote_add_target_side_condition): New function.
10895         (remote_insert_breakpoint): Add target-side breakpoint
10896         conditional if supported.
10897         (remote_insert_hw_breakpoint): Likewise.
10898         (init_remote_ops): Set to_supports_evaluation_of_breakpoint_conditions
10899         hook.
10900
10901         * target.c (update_current_target): Inherit
10902         to_supports_evaluation_of_breakpoint_conditions.
10903         Default to_supports_evaluation_of_breakpoint_conditions to return_zero.
10904
10905         * target.h (struct target_ops)
10906         <to_supports_evaluation_of_breakpoint_conditions>: New field.
10907         (target_supports_evaluation_of_breakpoint_conditions): New #define.
10908
10909         * breakpoint.c (get_first_locp_gte_addr): New forward declaration.
10910         (condition_evaluation_both, condition_evaluation_auto,
10911         condition_evaluation_host, condition_evaluation_target,
10912         condition_evaluation_enums, condition_evaluation_mode_1,
10913         condition_evaluation_mode): New static globals.
10914         (translate_condition_evaluation_mode): New function.
10915         (breakpoint_condition_evaluation_mode): New function.
10916         (gdb_evaluates_breakpoint_condition_p): New function.
10917         (ALL_BP_LOCATIONS_AT_ADDR): New helper macro.
10918         (mark_breakpoint_modified): New function.
10919         (mark_breakpoint_location_modified): New function.
10920         (set_condition_evaluation_mode): New function.
10921         (show_condition_evaluation_mode): New function.
10922         (bp_location_compare_addrs): New function.
10923         (get_first_location_gte_addr): New helper function.
10924         (set_breakpoint_condition): Free condition bytecode if locations
10925         has become unconditional.  Call mark_breakpoint_modified (...).
10926         (condition_command): Call update_global_location_list (1) for
10927         breakpoints.
10928         (breakpoint_xfer_memory): Use is_breakpoint (...).
10929         (is_breakpoint): New function.
10930         (parse_cond_to_aexpr): New function.
10931         (build_target_condition_list): New function.
10932         (insert_bp_location): Handle target-side conditional
10933         breakpoints and call build_target_condition_list (...).
10934         (update_inserted_breakpoint_locations): New function.
10935         (insert_breakpoint_locations): Handle target-side conditional
10936         breakpoints.
10937         (bpstat_check_breakpoint_conditions): Add comment.
10938         (bp_condition_evaluator): New function.
10939         (bp_location_condition_evaluator): New function.
10940         (print_breakpoint_location): Print information on where the condition
10941         will be evaluated.
10942         (print_one_breakpoint_location): Likewise.
10943         (init_bp_location): Call mark_breakpoint_location_modified (...) for
10944         breakpoint location.
10945         (force_breakpoint_reinsertion): New functions.
10946         (update_global_location_list): Handle target-side breakpoint
10947         conditions.
10948         Reinsert locations that are already inserted if conditions have
10949         changed.
10950         (bp_location_dtor): Free agent expression bytecode.
10951         (disable_breakpoint): Call mark_breakpoint_modified (...).
10952         Call update_global_location_list (...) with parameter 1 for breakpoints.
10953         (disable_command): Call mark_breakpoint_location_modified (...).
10954         Call update_global_location_list (...) with parameter 1 for breakpoints.
10955         (enable_breakpoint_disp): Call mark_breakpoint_modified (...).
10956         (enable_command): mark_breakpoint_location_modified (...).
10957         (_initialize_breakpoint): Update documentation and add
10958         condition-evaluation breakpoint subcommand.
10959
10960         * breakpoint.h: Include ax.h.
10961         (condition_list): New data structure.
10962         (condition_status): New enum.
10963         (bp_target_info) <cond_list>: New field.
10964         (bp_location) <condition_changed, cond_bytecode>: New fields.
10965         (is_breakpoint): New prototype.
10966
10967 2012-02-24  Luis Machado  <lgustavo@codesourcery.com>
10968
10969         * remote.c (remote_state) <cond_breakpoints>: New field.
10970         (PACKET_ConditionalBreakpoints): New enum.
10971         (remote_cond_breakpoint_feature): New function.
10972         (remote_protocol_features): Add new ConditionalBreakpoints entry.
10973         (remote_supports_cond_breakpoints): New function.
10974         (_initialize_remote): Add new packet configuration for
10975         target-side conditional breakpoints.
10976
10977 2012-02-24  Luis Machado  <lgustavo@codesourcery.com>
10978
10979         * NEWS: Mention target-side conditional breakpoint support,
10980         new condition-evaluation breakpoint subcommand and remote
10981         packet extensions.
10982
10983 2012-02-24  Luis Machado  <lgustavo@codesourcery.com>
10984
10985         * breakpoint.c (bp_location_compare): Sort by pspace before sorting by
10986         number.
10987
10988 2012-02-24  Thomas Schwinge  <thomas@codesourcery.com>
10989
10990         * sh-tdep.c (sh_skip_prologue): Use skip_prologue_using_sal.
10991         (after_prologue): Remove.
10992
10993 2012-02-23  Tom Tromey  <tromey@redhat.com>
10994
10995         * jv-valprint.c (java_val_print): Remove dead code.
10996
10997 2012-02-23  Tristan Gingold  <gingold@adacore.com>
10998
10999         * ada-tasks.c (struct ada_tasks_inferior_data): Add
11000         known_tasks_element and known_tasks_length fields.
11001         (read_known_tasks_array): Change argument type.  Use pointer type
11002         and number of elements from DATA.  Adjust.
11003         (read_known_tasks_list): Likewise.
11004         (get_known_tasks_addr): Remove.
11005         (ada_set_current_inferior_known_tasks_addr): Renamed to ...
11006         (ada_tasks_inferior_data_sniffer): ... this.  Use symtab for element
11007         type and array length.  Merge former get_known_tasks_addr code.
11008
11009 2012-02-23  Jan Kratochvil  <jan.kratochvil@redhat.com>
11010
11011         PR backtrace/13716
11012         * infcmd.c (finish_forward): New variable frame_id, initialize it, use
11013         it after set_momentary_breakpoint.
11014
11015 2012-02-22  Sterling Augustine  <saugustine@google.com>
11016
11017         PR 13689:
11018         * breakpoint.c (watchpoint_exp_is_constant): Add UNOP_CAST to switch.
11019
11020 2012-02-22  Gary Benson  <gbenson@redhat.com>
11021
11022         * dwarf2read.c (dwarf2_read_index): Correct misspelling.
11023         (find_slot_in_mapped_hash): Likewise.
11024
11025 2012-02-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
11026
11027         PR build/13638
11028         * configure.ac (MAKEINFO): Replace AC_CHECK_PROG by AC_ARG_VAR.
11029         (MAKEINFOFLAGS): Replace static string by AC_ARG_VAR.
11030         * configure: Regenerate.
11031
11032 2012-02-21  Tristan Gingold  <gingold@adacore.com>
11033             Pedro Alves  <palves@redhat.com>
11034
11035         * ia64-tdep.c: Do not include libunwind-ia64.h.
11036         * libunwind-frame.h: Remove #ifdef HAVE_LIBUNWIND_H guard.
11037         Include libunwind-ia64.h instead of libunwind.h.
11038         * configure.ac (--with-libunwind, $enable_libunwind): Don't check
11039         for libunwind.h existence.
11040         * configure, config.in: Regenerate.
11041
11042 2012-02-21  Anton Gorenkov  <xgsa@yandex.ru>
11043
11044         * c-valprint.c (c_value_print): Use value_rtti_indirect_type
11045         instead of value_rtti_target_type.
11046         * eval.c (evaluate_subexp_standard): Use value_rtti_indirect_type
11047         instead of value_rtti_target_type.
11048         * typeprint.c (whatis_exp): Use value_rtti_indirect_type instead of
11049         value_rtti_target_type.
11050         * valops.c (value_ind): Extract function readjust_indirect_value_type.
11051         (value_rtti_target_type): Rename to ...
11052         (value_rtti_indirect_type): ... here and make it indirect.  Update
11053         function comment.
11054         * value.c (readjust_indirect_value_type): New function.
11055         (coerce_ref): Support for enclosing type setting for references
11056         with readjust_indirect_value_type.
11057         * value.h (readjust_value_type): New declaration.
11058         (value_rtti_target_type): Rename to ...
11059         (value_rtti_indirect_type): ... here.
11060
11061 2012-02-21  Anton Gorenkov  <xgsa@yandex.ru>
11062
11063         * MAINTAINERS (Write After Approval): Add myself to the list.
11064
11065 2012-02-20  Doug Evans  <dje@google.com>
11066
11067         * objfiles.c (add_to_objfile_sections): Remove outdated comments.
11068         Rename objfile_p_char parameter to objfilep.
11069         (build_objfile_section_table): Result is now void.  All callers
11070         updated.
11071         * objfiles.h (struct objfile): Tweak comments, whitespace.
11072         (build_objfile_section_table): Update.
11073
11074         * elfread.c (elf_symfile_segments): Fix warning text.
11075
11076 2012-02-20  Tom Tromey  <tromey@redhat.com>
11077
11078         PR gdb/13498:
11079         * dwarf2read.c (dw2_expand_symtabs_matching): Only visit a
11080         particular set of file names once.
11081         (dw2_map_symbol_filenames): Likewise.
11082
11083 2012-02-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
11084
11085         Code cleanup.
11086         * main.c (write_files): Remove the declaration.
11087         (external_editor_command): Move the declaration ...
11088         [GDBTK] (external_editor_command): ... here.  Fix the comment.
11089
11090 2012-02-20  Tom Tromey  <tromey@redhat.com>
11091
11092         * dwarf2read.c (dw2_map_symtabs_matching_filename): Remove
11093         extraneous block.
11094
11095 2012-02-20  Tristan Gingold  <gingold@adacore.com>
11096
11097         * darwin-nat.h (enum darwin_msg_state): Add comments.
11098
11099 2012-02-20  Tristan Gingold  <gingold@adacore.com>
11100
11101         * amd64-darwin-tdep.c (x86_darwin_init_abi_64): Fix jb_pc_offset
11102         value.
11103
11104 2012-20-18  Joel Brobecker  <brobecker@adacore.com>
11105
11106         * breakpoint.c (watchpoint_exp_is_const): Add missing empty line
11107         between function description and implementation.
11108
11109 2012-02-17  Tom Tromey  <tromey@redhat.com>
11110
11111         PR python/12070:
11112         * python/py-event.c (event_object_getset): New global.
11113         (event_object_type): Reference it.
11114         * python/py-type.c (field_object_getset): New global.
11115         (field_object_type): Reference it.
11116         * python/python-internal.h (gdb_py_generic_dict): Declare.
11117         * python/py-utils.c (gdb_py_generic_dict): New function.
11118
11119 2012-02-17  Tristan Gingold  <gingold@adacore.com>
11120
11121         * solib-darwin.c (darwin_current_sos): Check magic and filetype
11122
11123 2012-02-17  Thomas Schwinge  <thomas@codesourcery.com>
11124
11125         * sh-tdep.c (sh_is_renesas_calling_convention): Fix handling of
11126         TYPE_CALLING_CONVENTION annotation.
11127
11128 2012-02-16  Kevin Buettner  <kevinb@redhat.com>
11129
11130         * MAINTAINERS: Add rx to target ISA section.
11131         * Makefile.in (ALL_TARGET_OBS): Add rx-tdep.o.
11132         (ALLDEPFILES): Add rx-tdep.c.
11133
11134 2012-02-16  Tom Tromey  <tromey@redhat.com>
11135
11136         * symfile.c (symbol_file_add_main_1): Use inferior's
11137         symfile_flags.
11138         * solib.c (solib_read_symbols): Use inferior's symfile_flags.
11139         * linux-nat.c (linux_child_follow_fork): Set symfile_flags on
11140         inferior.
11141         * infrun.c (handle_vfork_child_exec_or_exit): Set symfile_flags on
11142         inferior.
11143         (follow_exec): Use inferior's symfile_flags.
11144         * inferior.h (struct inferior) <symfile_flags>: New field.
11145
11146 2012-02-16  Mike Frysinger  <vapier@gentoo.org>
11147
11148         PR gdb/9734:
11149         * remote-sim.c (gdbsim_create_inferior): Call error() when
11150         sim_create_inferior() fails.
11151
11152 2012-02-16  Josh Matthews  <josh@joshmatthews.net>
11153
11154         * machoread.c: Initialize nbr_syms to avoid warnings-as-errors failure.
11155
11156 2012-02-16  Tom Tromey  <tromey@redhat.com>
11157
11158         PR c++/13653:
11159         * thread.c (struct current_thread_cleanup) <was_removable>: New
11160         field.
11161         (restore_current_thread_cleanup_dtor): Restore 'removable' field.
11162         (make_cleanup_restore_current_thread): Initialize new field.
11163
11164 2012-02-15  Kevin Buettner  <kevinb@redhat.com>
11165
11166         * MAINTAINERS: Add rl78 to target ISA section.
11167         * Makefile.in (ALL_TARGET_OBS): Add rl78-tdep.o.
11168         (ALLDEPFILES): Add rl78-tdep.c.
11169         * NEWS: Mention rl78 as a new target.
11170
11171 2012-02-15  Aleksandar Ristovski  <aristovski@qnx.com>
11172
11173         * frame.c (find_frame_sal): Initialize sal->pspace field from frame
11174         data.
11175         * stack.c (set_last_displayed_sal): Validate that PSPACE is not NULL.
11176
11177 2012-02-15  Tom Tromey  <tromey@redhat.com>
11178
11179         PR gdb/12659:
11180         * infcmd.c (registers_info): Print just the current register's
11181         name.
11182
11183 2012-02-15  Tom Tromey  <tromey@redhat.com>
11184
11185         * python/py-symbol.c (sympy_value): Use _().
11186
11187 2012-02-15  Pedro Alves  <palves@redhat.com>
11188
11189         * remote.c (remote_detach_1, extended_remote_attach_1): Tweak
11190         output to be like native targets'.
11191         (remote_pid_to_str): Special case the null ptid.
11192
11193 2012-02-14  Stan Shebs  <stan@codesourcery.com>
11194
11195         * NEWS: Mention enable count command.
11196         * breakpoint.h (struct breakpoint): New field enable_count.
11197         * breakpoint.c (enable_breakpoint_disp): Add count argument.
11198         (enable_breakpoint): Add arg to call.
11199         (struct disp_data): New struct.
11200         (do_enable_breakpoint_disp): Interp arg as disp_data and unpack.
11201         (do_map_enable_once_breakpoint): Create a struct and pass it.
11202         (do_map_enable_delete_breakpoint): Ditto.
11203         (do_map_enable_count_breakpoint): New function.
11204         (enable_count_command): New function.
11205         (bpstat_stop_status): Decrement enable_count.
11206         (print_one_breakpoint_location): Report enable count.
11207         (_initialize_breakpoint): Add enable count command.
11208
11209 2012-02-14  Kevin Buettner  <kevinb@redhat.com>
11210
11211         * rl78-tdep.c (reggroups.h): Include.
11212         (RL78_RAW_BANK0_R0_REGNUM, RL78_RAW_BANK0_R1_REGNUM)
11213         (RL78_RAW_BANK0_R2_REGNUM, RL78_RAW_BANK0_R3_REGNUM)
11214         (RL78_RAW_BANK0_R4_REGNUM, RL78_RAW_BANK0_R5_REGNUM)
11215         (RL78_RAW_BANK0_R6_REGNUM, RL78_RAW_BANK0_R7_REGNUM)
11216         (RL78_RAW_BANK1_R0_REGNUM, RL78_RAW_BANK1_R1_REGNUM)
11217         (RL78_RAW_BANK1_R2_REGNUM, RL78_RAW_BANK1_R3_REGNUM)
11218         (RL78_RAW_BANK1_R4_REGNUM, RL78_RAW_BANK1_R5_REGNUM)
11219         (RL78_RAW_BANK1_R6_REGNUM, RL78_RAW_BANK1_R7_REGNUM)
11220         (RL78_RAW_BANK2_R0_REGNUM, RL78_RAW_BANK2_R1_REGNUM)
11221         (RL78_RAW_BANK2_R2_REGNUM, RL78_RAW_BANK2_R3_REGNUM)
11222         (RL78_RAW_BANK2_R4_REGNUM, RL78_RAW_BANK2_R5_REGNUM)
11223         (RL78_RAW_BANK2_R6_REGNUM, RL78_RAW_BANK2_R7_REGNUM)
11224         (RL78_RAW_BANK3_R0_REGNUM, RL78_RAW_BANK3_R1_REGNUM)
11225         (RL78_RAW_BANK3_R2_REGNUM, RL78_RAW_BANK3_R3_REGNUM)
11226         (RL78_RAW_BANK3_R4_REGNUM, RL78_RAW_BANK3_R5_REGNUM)
11227         (RL78_RAW_BANK3_R6_REGNUM, RL78_RAW_BANK3_R7_REGNUM): Add to
11228         beginning of register list.
11229         (RL78_BANK0_R0_REGNUM, RL78_BANK0_R1_REGNUM, RL78_BANK0_R2_REGNUM)
11230         (RL78_BANK0_R3_REGNUM, RL78_BANK0_R4_REGNUM, RL78_BANK0_R5_REGNUM)
11231         (RL78_BANK0_R6_REGNUM, RL78_BANK0_R7_REGNUM, RL78_BANK1_R0_REGNUM)
11232         (RL78_BANK1_R1_REGNUM, RL78_BANK1_R2_REGNUM, RL78_BANK1_R3_REGNUM)
11233         (RL78_BANK1_R4_REGNUM, RL78_BANK1_R5_REGNUM, RL78_BANK1_R6_REGNUM)
11234         (RL78_BANK1_R7_REGNUM, RL78_BANK2_R0_REGNUM, RL78_BANK2_R1_REGNUM)
11235         (RL78_BANK2_R2_REGNUM, RL78_BANK2_R3_REGNUM, RL78_BANK2_R4_REGNUM)
11236         (RL78_BANK2_R5_REGNUM, RL78_BANK2_R6_REGNUM, RL78_BANK2_R7_REGNUM)
11237         (RL78_BANK3_R0_REGNUM, RL78_BANK3_R1_REGNUM, RL78_BANK3_R2_REGNUM)
11238         (RL78_BANK3_R3_REGNUM, RL78_BANK3_R4_REGNUM, RL78_BANK3_R5_REGNUM)
11239         (RL78_BANK3_R6_REGNUM, RL78_BANK3_R7_REGNUM): Move these into
11240         the pseudo registers.  Rearrange other pseudo registers too so
11241         that the bank registers appear at the end.
11242         (rl78_register_type): Account for the fact that the byte sized
11243         bank registers are now pseudo-registers.
11244         (rl78_register_name): Rearrange the register name array.  Make
11245         initial set of raw banked registers inaccessible.
11246         (rl78_register_reggroup_p, rl78_register_sim_regno): New functions.
11247         (rl78_pseudo_register_read, rl78_pseudo_register_write): Add
11248         case for copying bytes back and forth between raw and pseudo
11249         versions of the banked registers.  Update other cases to reflect
11250         the changed names.
11251         (rl78_return_value): Update to account for changed names of
11252         raw registers.
11253         (rl78_gdbarch_init): Register rl78_register_reggroup_p() and
11254         rl78_register_sim_regno().
11255
11256 2012-02-14  Kevin Buettner  <kevinb@redhat.com>
11257
11258         * rl78-tdep.c (rl78_skip_prologue): Make `const' the type of
11259         the name parameter being passed to find_pc_partial_function().
11260
11261 2012-02-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
11262
11263         * MAINTAINERS: Step down from being ia64 target maintainer.
11264
11265 2012-02-12  Jan Kratochvil  <jan.kratochvil@redhat.com>
11266
11267         * ppc-linux-nat.c (fetch_register, store_register): Fix GCC aliasing
11268         compilation warning.
11269
11270 2012-02-12  Jan Kratochvil  <jan.kratochvil@redhat.com>
11271
11272         Fix crash on loaded shlibs without loaded exec_bfd.
11273         * exec.c (exec_files_info): Do not crash on NULL EXEC_BFD.
11274         (set_section_command): Replace exec_bfd by p->bfd.
11275
11276 2012-02-10  Tom Tromey  <tromey@redhat.com>
11277
11278         * linespec.c (decode_line_internal): Skip symtabs_from_filename
11279         when we have a C++ qualified name.
11280
11281 2012-02-10  Pedro Alves  <palves@redhat.com>
11282
11283         * inferior.c (inferior_pid_to_str): New.
11284         (print_inferior, inferior_command): Use it.
11285
11286 2012-02-10  Pedro Alves  <palves@redhat.com>
11287
11288         * configure.ac (HAVE_ELF test): Put the old CFLAGS at the end of
11289         the test CFLAGS.
11290         * configure: Regenerate.
11291
11292 2012-02-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
11293
11294         * linespec.c (decode_line_internal): Fix comment correctness.
11295
11296 2012-02-09  Valery Khromov  <valery.khromov@gmail.com>
11297
11298         PR gdb/12953
11299         * Makefile.in (HFILES_NO_SRCDIR): Add amd64bsd-nat.h.
11300         * amd64bsd-nat.c: Add support for debug registers (adapted from
11301         i386bsd-nat.c).
11302         [HAVE_PT_GETDBREGS] (amd64bsd_dr_get, amd64bsd_dr_set)
11303         (amd64bsd_dr_set_control, amd64bsd_dr_set_addr)
11304         (amd64bsd_dr_get_addr, amd64bsd_dr_get_status)
11305         (amd64bsd_dr_get_control): New functions.
11306         * amd64bsd-nat.h: New file (adapted from i386bsd-nat.h).
11307         * amd64fbsd-nat.c: Include "amd64bsd-nat.h", "i386-nat.h".
11308         [HAVE_PT_GETDBREGS] (_initialize_amd64fbsd_nat): Add hardware
11309         watchpoints initialization.
11310         * config/i386/fbsd64.mh (NATDEPFILES): Add i386-nat.o.
11311
11312 2012-02-09  Jan Kratochvil  <jan.kratochvil@redhat.com>
11313
11314         * gdb-gdb.py (StructMainTypePrettyPrinter) <struct_field_img>: Print
11315         flds_bnds.fields.
11316         (StructMainTypePrettyPrinter) <bounds_img>: Print flds_bnds.bounds.
11317
11318 2012-02-09  Jan Kratochvil  <jan.kratochvil@redhat.com>
11319
11320         * breakpoint.c (bp_location_compare): Fix comment.  Reindent the code.
11321
11322 2012-02-08  Joel Brobecker  <brobecker@adacore.com>
11323
11324         * language.h (symbol_name_cmp_ftype): Renames
11325         symbol_name_match_p_ftype.
11326         (struct language_defn)[la_get_symbol_name_cmp]: Renames
11327         la_get_symbol_name_match_p.
11328         * ada-lang.c (ada_get_symbol_name_cmp): Renames
11329         ada_get_symbol_name_match_p.  Update comment.
11330         (ada_language_defn)[la_get_symbol_name_cmp]: Update value.
11331         * linespec.c (struct symbol_matcher_data)[symbol_name_cmp]:
11332         Renames symbol_name_match_p.  Update field type.
11333         (iterate_name_matcher, iterate_over_all_matching_symtabs): Adjust.
11334         * c-lang.c, d-lang.c, f-lang.c, jv-lang.c, m2-lang.c, objc-lang.c,
11335         opencl-lang.c, p-lang.c: Replace "la_get_symbol_name_match_p" by
11336         "la_get_symbol_name_cmp" in comments.
11337         * language.c: Likewise.
11338
11339 2012-02-08  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
11340
11341         * amd64-sol2-tdep.c (amd64_sol2_gregset_reg_offset): Correct
11342         %eflags offset.
11343         * i386-sol2-nat.c (amd64_sol2_gregset64_reg_offs)
11344         (amd64_sol2_gregset32_reg_offs): Likewise.
11345
11346 2012-02-08  Joel Brobecker  <brobecker@adacore.com>
11347
11348         * solib-darwin.c (darwin_bfd_open): Make sure that the filename
11349         of the returned BFD is allocated by GDB.
11350
11351 2012-02-07  Tom Tromey  <tromey@redhat.com>
11352
11353         PR python/12027:
11354         * python/python-internal.h (frame_object_type): Declare.
11355         * python/py-symbol.c (sympy_needs_frame): New function.
11356         (sympy_value): New function.
11357         (symbol_object_getset): Add "needs_frame".
11358         (symbol_object_methods): Add "value".
11359         * python/py-frame.c (frame_object_type): No longer static.
11360
11361 2012-02-07  Tom Tromey  <tromey@redhat.com>
11362
11363         PR python/13599:
11364         * python/py-symbol.c (sympy_line): New function.
11365         (symbol_object_getset): Add "line".
11366
11367 2012-02-07  Tom Tromey  <tromey@redhat.com>
11368
11369         * charset.c (find_charset_names): Check 'in' against NULL.
11370
11371 2012-02-06  Doug Evans  <dje@google.com>
11372
11373         * gdbtypes.h (struct main_type): Change type of name,tag_name,
11374         and fields.name members from char * to const char *.  All uses updated.
11375         (struct cplus_struct_type): Change type of fn_fieldlists.name member
11376         from char * to const char *.  All uses updated.
11377         (type_name_no_tag): Update.
11378         (lookup_unsigned_typename, lookup_signed_typename): Update.
11379         * gdbtypes.c (type_name_no_tag): Change result type
11380         from char * to const char *.  All callers updated.
11381         (lookup_unsigned_typename, lookup_signed_typename): Change type of
11382         name parameter from char * to const char *.
11383         * symtab.h (struct cplus_specific): Change type of demangled_name
11384         member from char * to const char *.  All uses updated.
11385         (struct general_symbol_info): Change type of name and
11386         mangled_lang.demangled_name members from char * to const char *.
11387         All uses updated.
11388         (symbol_get_demangled_name, symbol_natural_name): Update.
11389         (symbol_demangled_name, symbol_search_name): Update.
11390         * symtab.c (symbol_get_demangled_name): Change result type
11391         from char * to const char *.  All callers updated.
11392         (symbol_natural_name, symbol_demangled_name): Ditto.
11393         (symbol_search_name): Ditto.
11394         (completion_list_add_name): Change type of symname,sym_text,
11395         text,word parameters from char * to const char *.
11396         (completion_list_objc_symbol): Change type of sym_text,
11397         text,word parameters from char * to const char *.
11398         * ada-lang.c (find_struct_field): Change type of name parameter
11399         from char * to const char *.
11400         (encoded_ordered_before): Similarly for N0,N1 parameters.
11401         (old_renaming_is_invisible): Similarly for function_name parameter.
11402         (ada_type_name): Change result type from char * to const char *.
11403         All callers updated.
11404         * ada-lang.h (ada_type_name): Update.
11405         * buildsym.c (hashname): Change type of name parameter
11406         from char * to const char *.
11407         * buildsym.h (hashname): Update.
11408         * dbxread.c (end_psymtab): Change type of include_list parameter
11409         from char ** to const char **.
11410         * dwarf2read.c (determine_prefix): Change result type
11411         from char * to const char *.  All callers updated.
11412         * f-lang.c (find_common_for_function): Change type of name, funcname
11413         parameters from char * to const char *.
11414         * f-lang.c (find_common_for_function): Update.
11415         * f-valprint.c (list_all_visible_commons): Change type of funcname
11416         parameters from char * to const char *.
11417         * gdbarch.sh (static_transform_name): Change type of name parameter
11418         and result from char * to const char *.
11419         * gdbarch.c: Regenerate.
11420         * gdbarch.h: Regenerate.
11421         * i386-sol2-tdep.c (i386_sol2_static_transform_name): Change type
11422         of name parameter from char * to const char *.
11423         * jv-lang.c (java_primitive_type_from_name): Ditto.
11424         (java_demangled_signature_length): Similarly for signature parameter.
11425         (java_demangled_signature_copy): Ditto.
11426         (java_demangle_type_signature): Ditto.
11427         * jv-lang.h (java_primitive_type_from_name): Update.
11428         (java_demangle_type_signature): Update.
11429         * objc-lang.c (specialcmp): Change type of a,b parameters
11430         from char * to const char *.
11431         * p-lang.c (is_pascal_string_type): Change type of arrayname parameter
11432         from char * to const char *.  All callers updated.
11433         * p-lang.h (is_pascal_string_type): Update.
11434         * solib-frv.c (find_canonical_descriptor_in_load_object): Change type
11435         of name parameter from char * to const char *.
11436         * sparc-sol2-tdep.c (sparc_sol2_static_transform_name): Ditto.
11437         * utils.c (fprintf_symbol_filtered): Ditto.
11438         * defs.h (fprintf_symbol_filtered): Update.
11439         * sparc-tdep.h (sparc_sol2_static_transform_name): Update.
11440         * stabsread.h (end_psymtab): Update.
11441         * stack.c (find_frame_funname): Change type of funname parameter
11442         from char ** to const char **.
11443         * stack.h (find_frame_funname): Update.
11444         * typeprint.c (type_print): Change type of varstring parameter
11445         from char * to const char *.
11446         * value.h (type_print): Update.
11447         * xcoffread.c (xcoff_start_psymtab): Change type of filename parameter
11448         from char * to const char *.  All callers updated.
11449         (xcoff_end_psymtab): Change type of include_list parameter
11450         from char ** to const char **.  All callers updated.
11451         (swap_sym): Similarly for name parameter.  All callers updated.
11452         * coffread.c (patch_type): Add (char*) cast to xfree parameter.
11453         Use xstrdup.
11454         (process_coff_symbol): Use xstrdup.
11455         * stabsread.c (stabs_method_name_from_physname): Renamed from
11456         update_method_name_from_physname.  Change result type from void
11457         to char *.  All callers updated.
11458         (read_member_functions): In has_destructor case, store name in objfile
11459         obstack instead of malloc space.  In !has_stub case, fix mem leak.
11460
11461 2012-02-06  Luca Pizzamiglio  <luca.pizzamiglio@gmail.com>
11462
11463         * configure: Rebuild.
11464         * configure.ac: Put -L../bfd and -L../libiberty at the front of
11465         LDFLAGS.
11466
11467 2012-02-03  Kevin Buettner  <kevinb@redhat.com>
11468
11469         * configure.tgt (rl78-*-elf): New target.
11470         * rl78-tdep.c: New file.
11471
11472 2012-02-03  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
11473
11474         * remote.c (remote_rcmd): Use getpkt_sane to detect timeout
11475         and continue the loop.  Add QUIT statement.
11476
11477 2012-02-03  Tom Tromey  <tromey@redhat.com>
11478
11479         PR gdb/13596:
11480         * solib.h (gdb_bfd_lookup_symbol_from_symtab): Rename from
11481         bfd_lookup_symbol_from_symtab.
11482         * solib-pa64.c (pa64_solib_create_inferior_hook): Use
11483         gdb_bfd_lookup_symbol_from_symtab.
11484
11485 2012-02-03  Joel Brobecker  <brobecker@adacore.com>
11486
11487         * mi/mi-cmd-stack.c (list_args_or_locals): For argument symbols,
11488         use SYMBOL_LINKAGE_NAME to find the corresponding non-argument
11489         symbol.  Add assertion that sym2 is never NULL.
11490
11491 2012-02-02  Doug Evans  <dje@google.com>
11492
11493         * blockframe.c (find_pc_partial_function_gnu_ifunc): Change type of
11494         "name" parameter to const char ** from char **.  All callers updated.
11495         (find_pc_partial_function): Ditto.
11496         (cache_pc_function_name): Change type to const char * from char *.
11497         * symtab.h ((find_pc_partial_function_gnu_ifunc): Update.
11498         (find_pc_partial_function): Update.
11499         * alpha-tdep.h (struct gdbarch_tdep, member pc_in_sigtramp): Change
11500         type of "name" parameter to const char * from char *.
11501         All uses updated.
11502         * arch-utils.c (generic_in_solib_return_trampoline): Change
11503         type of "name" parameter to const char * from char *.
11504         * arch-utils.h (generic_in_solib_return_trampoline): Update.
11505         * frv-linux-tdep.c (frv_linux_pc_in_sigtramp): Change
11506         type of "name" parameter to const char * from char *.
11507         * gdbarch.sh (in_solib_return_trampoline): Ditto.
11508         * gdbarch.c: Regenerate.
11509         * gdbarch.h: Regenerate.
11510         * hppa-hpux-tdep.c (hppa_hpux_in_solib_return_trampoline): Update.
11511         * rs6000-tdep.c (rs6000_in_solib_return_trampoline): Update.
11512         * m32r-linux-tdep.c (m32r_linux_pc_in_sigtramp): Change
11513         type of "name" parameter to const char * from char *.
11514         * skip.c (skip_function_pc): Ditto.
11515         * sparc-sol2-tdep.c (sparc_sol2_pc_in_sigtramp): Ditto.
11516         * sparc-tdep.h (sparc_sol2_pc_in_sigtramp): Update.
11517         * sparc64fbsd-tdep.c (sparc64fbsd_pc_in_sigtramp): Ditto.
11518         * sparc64nbsd-tdep.c (sparc64nbsd_pc_in_sigtramp): Ditto.
11519         * sparc64obsd-tdep.c (sparc64obsd_pc_in_sigtramp): Ditto.
11520         * sparcnbsd-tdep.c (sparc32nbsd_pc_in_sigtramp): Ditto.
11521         * sparcobsd-tdep.c (sparc32obsd_pc_in_sigtramp): Ditto.
11522         * nbsd-tdep.c (nbsd_pc_in_sigtramp): Similary for "func_name".
11523         * nbsd-tdep.h (nbsd_pc_in_sigtramp): Update.
11524
11525 2012-02-02  Pedro Alves  <palves@redhat.com>
11526
11527         * remote.c (remote_get_min_fast_tracepoint_insn_len): Return 0 if
11528         the current inferior has no execution.  Make sure the current
11529         remote process matches gdb's current inferior.
11530
11531 2012-02-02  Tom Tromey  <tromey@redhat.com>
11532
11533         PR gdb/13405:
11534         * tui/tui-win.c (parse_scrolling_args): Don't write to possibly
11535         read-only memory.
11536
11537 2012-02-02  Tom Tromey  <tromey@redhat.com>
11538
11539         PR gdb/9307:
11540         * symtab.c (lookup_language_this): Set block_found.
11541
11542 2012-02-01  Tom Tromey  <tromey@redhat.com>
11543
11544         PR gdb/13431:
11545         * jit.c (struct jit_inferior_data): Rewrite.
11546         (struct jit_objfile_data): New.
11547         (get_jit_objfile_data): New function.
11548         (add_objfile_entry): Update.
11549         (jit_read_descriptor): Return int.  Replace descriptor_addr
11550         argument with inf_data.  Update.  Don't call error.
11551         (jit_breakpoint_re_set_internal): Reorder logic.  Update.  Look up
11552         descriptor here.
11553         (jit_inferior_init): Don't look up descriptor.  Don't call error.
11554         (jit_reset_inferior_data_and_breakpoints)
11555         (jit_inferior_created_observer): Remove.
11556         (jit_inferior_exit_hook): Update.
11557         (jit_executable_changed_observer): Remove.
11558         (jit_event_handler): Update.
11559         (free_objfile_data): Reset inferior data if needed.
11560         (_initialize_jit): Update.
11561
11562 2012-02-01  Tom Tromey  <tromey@redhat.com>
11563
11564         * jit.c (bfd_open_from_target_memory): Move higher in file.
11565
11566 2012-02-01  Tristan Gingold  <gingold@adacore.com>
11567
11568         * libunwind-frame.c (libunwind_load): Display message if dlopen
11569         failed.
11570
11571 2012-02-01  Gary Benson  <gbenson@redhat.com>
11572
11573         * symtab.h (symbol_found_callback_ftype): New typedef.
11574         (iterate_over_symbols): Use the above.
11575         * symtab.c (iterate_over_symbols): Likewise.
11576         * language.h (language_defn->la_iterate_over_symbols): Likewise.
11577         * ada-lang.c (ada_iterate_over_symbols): Likewise.
11578         * linespec.c (iterate_over_all_matching_symtabs): Likewise.
11579         (iterate_name_matcher): Document return values.
11580         (collect_one_symbol): Likewise.
11581         (collect_function_symbols): Likewise.
11582         (collect_symbols): Likewise.
11583
11584 2012-02-01  Tom Tromey  <tromey@redhat.com>
11585
11586         * ada-lang.c (resolve_subexp): Update.
11587         (ada_lookup_symbol_list): Add 'full_search' argument.
11588         (ada_iterate_over_symbols): Pass 0 as full_search argument to
11589         ada_lookup_symbol_list.
11590         (ada_lookup_encoded_symbol): Update.
11591         (get_var_value): Update.
11592         * ada-exp.y (block_lookup): Update.
11593         (write_var_or_type): Update.
11594         (write_name_assoc): Update.
11595         * ada-lang.h (ada_lookup_symbol_list): Update.
11596
11597 2012-01-31  Tom Tromey  <tromey@redhat.com>
11598
11599         * language.h (struct language_defn) <la_iterate_over_symbols>: Fix
11600         comment.
11601
11602 2012-01-31  Doug Evans  <dje@google.com>
11603
11604         * symtab.h: Remove outdated comment.
11605         (SYMBOL_MATCHES_NATURAL_NAME): Delete.
11606
11607 2012-02-01  Josh Matthews  <josh@joshmatthews.net>  (tiny change)
11608
11609         Fix build error in Darwin port.
11610         * i386-darwin-nat.c: Include i386-nat.h.
11611
11612 2012-01-30  Tom Tromey  <tromey@redhat.com>
11613
11614         PR breakpoints/13568:
11615         * dwarf2read.c (dwarf_decode_macro_bytes): Add 'include_hash'
11616         argument.  Check for recursive includes.
11617         (dwarf_decode_macros): Create an include hash.
11618
11619 2012-01-30  Michael Eager  <eager@eagercon.com>
11620
11621         * configure.tgt (powerpc-*-linux*): Add glibc-tdep.o.
11622         * ppc-linux-tdep.c: Include glibc-tdep.h.
11623         (powerpc32_plt_stub, powerpc32_plt_stub_so): Add PLT stub templates.
11624         (powerpc_linux_in_plt_stub): New function.
11625         (powerpc_linux_in_dynsym_resolve_code): New function.
11626         (ppc_skip_trampoline_code): New function.
11627         (ppc_linux_init_abi): Use PPC specific functions rather than generic.
11628         Use glibc_skip_solib_resolver.
11629
11630 2012-01-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
11631
11632         Code cleanup: Make 1440 bytes of data segment read-only.
11633         * arch-utils.c (endian_enum): Make it const char *const [].
11634         * arm-tdep.c (fp_model_strings, arm_abi_strings, arm_mode_strings):
11635         Likewise.
11636         * breakpoint.c (always_inserted_enums): Likewise.
11637         * cli/cli-cmds.c (script_ext_enums): Likewise.
11638         * cli/cli-decode.c (add_setshow_enum_cmd, complete_on_enum): Make the
11639         enumlist parameter const char *const *.
11640         * cli/cli-decode.h (struct cmd_list_element): Make the enums field
11641         const char *const *.
11642         * command.h (complete_on_enum, add_setshow_enum_cmd): Make the enumlist
11643         parameter const char *const *.
11644         * cris-tdep.c (cris_modes): Make it const char *const [].
11645         * filesystem.c (target_file_system_kinds): Likewise.
11646         * i386-tdep.c (valid_flavors, valid_conventions): Likewise.
11647         * infrun.c (follow_fork_mode_kind_names, follow_exec_mode_names)
11648         (can_use_displaced_stepping_enum, scheduler_enums)
11649         (exec_direction_names): Likewise.
11650         * language.c (_initialize_language): Make the type_or_range_names and
11651         case_sensitive_names variables const char *const [].
11652         * mips-tdep.c (mips_abi_strings): Make it const char *const [].
11653         * python/python.c (python_excp_enums): Likewise.
11654         * remote.c (interrupt_sequence_modes): Likewise.
11655         * rs6000-tdep.c (powerpc_vector_strings): Likewise.
11656         * serial.c (logbase_enums): Likewise.
11657         * sh-tdep.c (sh_cc_enum): Likewise.
11658         * stack.c (print_frame_arguments_choices, print_entry_values_choices):
11659         Likewise.
11660         * symtab.c (multiple_symbols_modes): Likewise.
11661         * tui/tui-win.c (tui_border_kind_enums, tui_border_mode_enums):
11662         Likewise.
11663         * utils.c (internal_problem_modes): Likewise.
11664
11665 2012-01-27  Jan Kratochvil  <jan.kratochvil@redhat.com>
11666
11667         Fix the 2012-01-26 regression by la_get_symbol_name_match_p.
11668         * linespec.c (iterate_name_matcher): Negate the SYMBOL_NAME_MATCH_P
11669         result.
11670
11671 2012-01-27  Doug Evans  <dje@google.com>
11672
11673         * configure.ac (with_python): Fix absolute path handling for win32.
11674         * configure: Regenerate.
11675
11676 2012-01-26  Doug Evans  <dje@google.com>
11677
11678         * symtab.c: Whitespace cleanup, no code changes.
11679
11680         * symtab.c (lookup_symbol_in_language): Improve comment.
11681         (lookup_symbol_aux): Fix comment.
11682
11683         * psymtab.c (add_psymbol_to_list): Result is now "void".
11684         * psympriv.h (add_psymbol_to_list): Update.
11685
11686         * dwarf2read.c (add_partial_symbol): Delete local psym, unused.
11687
11688 2012-01-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
11689
11690         Do not open script filenames twice.
11691         * cli/cli-cmds.c (source_script_from_stream): Pass to
11692         source_python_script also STREAM.
11693         * python/py-auto-load.c (source_section_scripts): Pass to
11694         source_python_script_for_objfile also STREAM.
11695         (auto_load_objfile_script): Pass to source_python_script_for_objfile
11696         also INPUT.
11697         * python/python-internal.h (source_python_script_for_objfile): New
11698         parameter file, rename parameter file to filename.
11699         * python/python.c (python_run_simple_file): Call PyRun_SimpleFile
11700         instead if !_WIN32.  Update the function comment.
11701         (source_python_script, source_python_script_for_objfile)
11702         (source_python_script): New parameter file, rename parameter file to
11703         filename.  Pass FILENAME to python_run_simple_file.
11704         * python/python.h (source_python_script): New parameter file, rename
11705         parameter file to filename.
11706
11707 2012-01-26  Pedro Alves  <palves@redhat.com>
11708
11709         * corelow.c (core_has_fake_pid): Delete.
11710         (core_close): Delete references to `core_has_fake_pid'.
11711         (add_to_thread_list): Adjust to mark the inferior's pid as fake.
11712         (core_open): Delete references to `core_has_fake_pid'.
11713         (core_pid_to_str): Adjust to check inferior->fake_pid_p instead of
11714         the removed global.
11715
11716 2012-01-26  Joel Brobecker  <brobecker@adacore.com>
11717
11718         * symfile.h (struct quick_symbol_functions) [expand_symtabs_matching]:
11719         Remove language parameter from name_matcher.  Adjust the comment.
11720         * symtab.c (search_symbols_name_matches, expand_partial_symbol_name):
11721         Remove language parameter.
11722         * ada-lang.c (ada_expand_partial_symbol_name): Likewise.
11723         * linespec.c (iterate_name_matcher): Likewise.
11724         * dwarf2read.c (dw2_expand_symtabs_matching): Adjust type of
11725         name_matcher.  Adjust call accordingly.
11726         * psymtab.c (expand_symtabs_matching_via_partial): Likewise.
11727         (maintenance_check_symtabs): Adjust type of parameter "fun".
11728         * psymtab.h (maintenance_check_symtabs): Likewise.
11729
11730 2012-01-26  Joel Brobecker  <brobecker@adacore.com>
11731
11732         * language.h (symbol_name_match_p_ftype): New typedef.
11733         (struct language_defn): Replace field la_symbol_name_compare
11734         by la_get_symbol_name_match_p.
11735         * ada-lang.c (ada_get_symbol_name_match_p): New function.
11736         (ada_language_defn): Use it.
11737         * linespec.c (struct symbol_matcher_data): New type.
11738         (iterate_name_matcher): Rewrite.
11739         (iterate_over_all_matching_symtabs): Pass a pointer to
11740         a symbol_matcher_data struct to expand_symtabs_matching
11741         instead of just the lookup name.
11742         * c-lang.c, d-lang.c, jv-lang.c, m2-lang.c, objc-lang.c,
11743         opencl-lang.c, p-lang.c, language.c: Delete field
11744         la_symbol_name_compare, and replace by NULL for new field
11745         la_get_symbol_name_match_p.
11746         * symfile.h (struct quick_symbol_functions): Update comment.
11747
11748 2012-01-25  Tom Tromey  <tromey@redhat.com>
11749
11750         * breakpoint.c (bpstat_stop_status): Check 'breakpoint_at' before
11751         dereferencing.
11752
11753 2012-01-24  Tom Tromey  <tromey@redhat.com>
11754
11755         PR symtab/12406:
11756         * solib.c (update_solib_list): Update the program space's
11757         added_solibs and deleted_solibs fields.
11758         * progspace.h (struct program_space) <added_solibs,
11759         deleted_solibs>: New fields.
11760         (clear_program_space_solib_cache): Declare.
11761         * progspace.c (release_program_space): Call
11762         clear_program_space_solib_cache.
11763         (clear_program_space_solib_cache): New function.
11764         * infrun.c (handle_inferior_event) <TARGET_WAITKIND_LOADED>: Call
11765         bpstat_stop_status.  Use handle_solib_event.
11766         * breakpoint.c: Include gdb_regex.h.
11767         (print_solib_event): New function.
11768         (bpstat_print): Use print_solib_event.
11769         (bpstat_stop_status): Add special case for bp_shlib_event.
11770         (handle_solib_event): New function.
11771         (bpstat_what): Use handle_solib_event.
11772         (struct solib_catchpoint): New.
11773         (dtor_catch_solib, insert_catch_solib, remove_catch_solib)
11774         (breakpoint_hit_catch_solib, check_status_catch_solib)
11775         (print_it_catch_solib, print_one_catch_solib)
11776         (print_mention_catch_solib, print_recreate_catch_solib): New
11777         functions.
11778         (catch_solib_breakpoint_ops): New global.
11779         (catch_load_or_unload, catch_load_command_1)
11780         (catch_unload_command_1): New functions.
11781         (internal_bkpt_check_status): Add special case for
11782         bp_shlib_event.
11783         (internal_bkpt_print_it): Use print_solib_event.
11784         (initialize_breakpoint_ops): Initialize
11785         catch_solib_breakpoint_ops.
11786         (_initialize_breakpoint): Register "catch load" and "catch
11787         unload".
11788         * breakpoint.h (handle_solib_event): Declare.
11789         * NEWS: Add entry for "catch load" and "catch unload".
11790
11791 2012-01-24  Tom Tromey  <tromey@redhat.com>
11792
11793         * ada-lang.c: Include gdb_vecs.h.
11794         * charset.c: Include gdb_vecs.h.
11795         * tracepoint.h: Include gdb_vecs.h.
11796         * gdb_vecs.h: New file.
11797
11798 2012-01-24  Pedro Alves  <pedro@codesourcery.com>
11799
11800         * breakpoint.c (breakpoint_hit_catch_fork)
11801         (breakpoint_hit_catch_vfork, breakpoint_hit_catch_syscall)
11802         (breakpoint_hit_catch_exec): Make use of the `ws' argument.
11803         * infrun.c (inferior_has_forked, inferior_has_vforked)
11804         (inferior_has_execd, inferior_has_called_syscall): Delete.
11805         (handle_syscall_event): Get syscall_number from the execution
11806         control state's wait status.
11807         (wait_for_inferior): Don't clear syscall_number.
11808
11809 2012-01-24  Pedro Alves  <palves@redhat.com>
11810
11811         * breakpoint.c (bpstat_check_location, bpstat_stop_status,
11812         pc_at_non_inline_function): Add `ws' parameter, and pass it down.
11813         (breakpoint_hit_catch_fork, breakpoint_hit_catch_vfork)
11814         (breakpoint_hit_catch_syscall, breakpoint_hit_catch_exec): Add
11815         `ws' parameter.
11816         (breakpoint_hit_ranged_breakpoint): Add `ws' parameter.  Return
11817         false for events other than TARGET_SIGNAL_TRAP.
11818         (breakpoint_hit_watchpoint, base_breakpoint_breakpoint_hit):
11819         Add `ws' parameter.
11820         (bkpt_breakpoint_hit): Add `ws' parameter.  Return false for
11821         events other than TARGET_SIGNAL_TRAP.
11822         (tracepoint_breakpoint_hit): Add `ws' parameter.
11823         * breakpoint.h (struct breakpoint_ops) <breakpoint_hit>: Add `ws'
11824         parameter.
11825         (bpstat_stop_status): Same.
11826         (pc_at_non_inline_function): Same.
11827         * infrun.c (handle_syscall_event, handle_inferior_event): Adjust
11828         to pass the current event's waitstatus to bpstat_stop_status
11829         and pc_at_non_inline_function.
11830
11831 2012-01-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
11832
11833         Code cleanup.
11834         * cli/cli-cmds.c (source_script_from_stream): Never fclose STREAM.
11835         Update the function comment for it.
11836         (source_script_with_search): Call make_cleanup_fclose for STREAM.
11837         * cli/cli-script.c (script_from_file): Do not call make_cleanup_fclose
11838         for STREAM.
11839
11840 2012-01-24  Pedro Alves  <palves@redhat.com>
11841
11842         * breakpoint.c (bpstat_stop_status): Moving clearing print_it
11843         outside `bs->stop' block.
11844         (bpstat_what): Rework bp_shlib_event handling.
11845         (internal_bkpt_check_status): If the breakpoint is a
11846         bp_shlib_event, then set bs->stop and bs->print if
11847         stop_on_solib_events is set.
11848
11849 2012-01-24  Gary Benson  <gbenson@redhat.com>
11850
11851         Delete #if 0'd out code.
11852         * stack.c (print_frame_label_vars): Remove.
11853         (catch_info): Likewise.
11854         (_initialize_stack): Remove "info catch" command.
11855         * NEWS: Mention the above.
11856
11857 2012-01-24  Pedro Alves  <palves@redhat.com>
11858
11859         * remote.c (remote_add_inferior): New `fake_pid_p' parameter.  Use
11860         it.
11861         (remote_notice_new_inferior): If the remote end doesn't support
11862         the multiprocess extensions, then the PID is fake.
11863         (add_current_inferior_and_thread): New.
11864         (remote_start_remote): Use it.
11865         (extended_remote_attach_1): Adjust.
11866         (extended_remote_create_inferior_1): Use
11867         add_current_inferior_and_thread.
11868
11869 2012-01-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
11870
11871         Fix watchpoints to be specific for each inferior.
11872         * breakpoint.c (watchpoint_in_thread_scope): Verify also
11873         current_program_space.
11874         * i386-nat.c (i386_inferior_data_cleanup): New.
11875         (i386_inferior_data_get): Replace variable inf_data_local by an
11876         inferior_data call.
11877         (i386_use_watchpoints): Initialize i386_inferior_data.
11878         * linux-nat.c (linux_nat_iterate_watchpoint_lwps): Use INFERIOR_PTID
11879         specific iterate_over_lwps.
11880
11881 2012-01-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
11882
11883         Fix watchpoints across inferior fork.
11884         * amd64-linux-nat.c (update_debug_registers_callback): Update the
11885         comment for linux_nat_iterate_watchpoint_lwps.
11886         (amd64_linux_dr_set_control, amd64_linux_dr_set_addr): Use
11887         linux_nat_iterate_watchpoint_lwps.
11888         (amd64_linux_prepare_to_resume): New comment on Linux kernel.
11889         * i386-linux-nat.c (update_debug_registers_callback): Update the
11890         comment for linux_nat_iterate_watchpoint_lwps.
11891         (i386_linux_dr_set_control, i386_linux_dr_set_addr): Use
11892         linux_nat_iterate_watchpoint_lwps.
11893         (i386_linux_prepare_to_resume): New comment on Linux kernel.
11894         * i386-nat.c: Include inferior.h.
11895         (dr_mirror): Remove.
11896         (i386_inferior_data, struct i386_inferior_data)
11897         (i386_inferior_data_get): New.
11898         (i386_debug_reg_state): Use i386_inferior_data_get.
11899         (i386_cleanup_dregs, i386_update_inferior_debug_regs)
11900         (i386_insert_watchpoint, i386_remove_watchpoint)
11901         (i386_stopped_data_address, i386_insert_hw_breakpoint)
11902         (i386_remove_hw_breakpoint): New variable state, use
11903         i386_debug_reg_state instead of DR_MIRROR.
11904         * linux-nat.c (delete_lwp): New declaration.
11905         (num_lwps): Move here from downwards.
11906         (delete_lwp_cleanup): New.
11907         (linux_child_follow_fork): Create new child_lp, call
11908         linux_nat_new_thread and linux_nat_prepare_to_resume before calling
11909         PTRACE_DETACH.
11910         (num_lwps): Move upwards.
11911         (linux_nat_iterate_watchpoint_lwps): New.
11912         * linux-nat.h (linux_nat_iterate_watchpoint_lwps_ftype): New.
11913         (linux_nat_iterate_watchpoint_lwps_ftype): New declaration.
11914
11915 2012-01-24  Joel Brobecker  <brobecker@adacore.com>
11916
11917         GDB 7.4 released.
11918
11919 2012-01-23  Pedro Alves  <palves@redhat.com>
11920
11921         * top.c (caution): Rename to ...
11922         (confirm): ... this.
11923         (show_caution): Rename to ...
11924         (show_confirm): ... this.
11925         (quit_cover): Adjust.
11926         (init_main): Adjust.
11927         * top.h (caution): Rename to ...
11928         (confirm): ... this.
11929         * utils.c (internal_vproblem, defaulted_query): Adjust.
11930
11931 2012-01-23  Pedro Alves  <palves@redhat.com>
11932
11933         * top.c (caution): Update comment.
11934         (execute_command): Don't consider the current value of `caution'.
11935
11936 2012-01-23  Jan Kratochvil  <jan.kratochvil@redhat.com>
11937
11938         * cli/cli-cmds.c (find_and_open_script): Handle failure of fdopen.
11939
11940 2012-01-23  Ulrich Weigand  <ulrich.weigand@linaro.org>
11941
11942         * inf-child.c: Include "gdb_stat.h" instead of <sys/stat.h>.
11943         * linux-tdep.c (linux_info_proc): Avoid ARI coding style warning.
11944         * target.c (target_fileio_pwrite): Remove buffer address from
11945         debug output.
11946         (target_fileio_pread): Likewise.
11947
11948 2012-01-20  Ulrich Weigand  <ulrich.weigand@linaro.org>
11949
11950         * NEWS: Document remote "info proc" and "generate-core-file".
11951
11952 2012-01-20  Ulrich Weigand  <ulrich.weigand@linaro.org>
11953
11954         * gdbarch.sh (find_memory_regions): New callback.
11955         * gdbarch.c, gdbarch.h: Regenerate.
11956
11957         * gcore.c (gcore_memory_sections): Try gdbarch find_memory_regions
11958         callback before falling back to target method.
11959
11960         * linux-nat.c (read_mapping, linux_nat_find_memory_regions): Remove.
11961         (linux_target_install_ops): No longer install it.
11962
11963         * linux-tdep.c (linux_find_memory_regions): New function.
11964         (linux_init_abi): Install it.
11965
11966 2012-01-20  Ulrich Weigand  <ulrich.weigand@linaro.org>
11967
11968         * gdbarch.sh (make_corefile_notes): New architecture callback.
11969         * gdbarch.c: Regenerate.
11970         * gdbarch.h: Likewise.
11971
11972         * gcore.c (write_gcore_file): Try gdbarch_make_corefile_notes
11973         before target_make_corefile_notes.  If NULL is returned, the
11974         target does not support core file generation.
11975
11976         * linux-nat.c: Include "linux-tdep.h".
11977         (find_signalled_thread, find_stop_signal): Remove.
11978         (linux_nat_do_thread_registers): Likewise.
11979         (struct linux_nat_corefile_thread_data): Likewise.
11980         (linux_nat_corefile_thread_callback): Likewise.
11981         (iterate_over_spus): Likewise.
11982         (struct linux_spu_corefile_data): Likewise.
11983         (linux_spu_corefile_callback): Likewise.
11984         (linux_spu_make_corefile_notes): Likewise.
11985         (linux_nat_collect_thread_registers): New function.
11986         (linux_nat_make_corefile_notes): Replace contents by call to
11987         linux_make_corefile_notes passing linux_nat_collect_thread_registers
11988         as native-only callback.
11989
11990         * linux-tdep.h: Include "bfd.h".
11991         (struct regcache): Add forward declaration.
11992         (linux_collect_thread_registers_ftype): New typedef.
11993         (linux_make_corefile_notes): Add prototype.
11994         * linux-tdep.c: Include "gdbthread.h", "gdbcore.h", "regcache.h",
11995         "regset.h", and "elf-bfd.h".
11996         (find_signalled_thread, find_stop_signal): New functions.
11997         (linux_spu_make_corefile_notes): Likewise.
11998         (linux_collect_thread_registers): Likewise.
11999         (struct linux_corefile_thread_data): New data structure.
12000         (linux_corefile_thread_callback): New funcion.
12001         (linux_make_corefile_notes): Likewise.
12002         (linux_make_corefile_notes_1): Likewise.
12003         (linux_init_abi): Install it.
12004
12005 2012-01-20  Ulrich Weigand  <ulrich.weigand@linaro.org>
12006
12007         * gdbarch.sh (info_proc): New callback.
12008         * gdbarch.c, gdbarch.h: Regenerate.
12009
12010         * infcmd.c (info_proc_cmd_1): Try gdbarch info_proc callback
12011         before falling back to the target info_proc callback.
12012
12013         * linux-nat.c: Do not include "cli/cli-utils.h".
12014         (linux_nat_info_proc): Remove.
12015         (linux_target_install_ops): No longer install it.
12016
12017         * linux-tdep.c: Include "cli/cli-utils.h" and <ctype.h>.
12018         (read_mapping): New function.
12019         (linux_info_proc): Likewise.
12020         (linux_init_abi): Install it.
12021
12022 2012-01-20  Ulrich Weigand  <ulrich.weigand@linaro.org>
12023
12024         * defs.h (enum info_proc_what): Moved here from linux-nat.c
12025         * infcmd.c: (info_proc_cmd_1): New function.
12026         (info_proc_cmd): New function, moved here from equivalent routine
12027         orignally in linux-nat.c.
12028         (info_proc_cmd_mappings): Likewise.
12029         (info_proc_cmd_stat): Likewise.
12030         (info_proc_cmd_status): Likewise.
12031         (info_proc_cmd_cwd): Likewise.
12032         (info_proc_cmd_cmdline): Likewise.
12033         (info_proc_cmd_exe): Likewise.
12034         (info_proc_cmd_all): Likewise.
12035         (_initialize_infcmd): Install "info proc" command and subcommands.
12036
12037         * target.h (struct target_ops): Add to_info_proc.
12038         (target_info_proc): Add prototype.
12039         * target.c (target_info_proc): New function.
12040
12041         * procfs.c (procfs_info_proc): Add prototype.
12042         (info_proc_cmd): Rename into ...
12043         (procfs_info_proc): ... this.  Update argument types as appropriate
12044         for a to_info_proc implementation.  Handle "what" argument.
12045         (procfs_target): Install procfs_info_proc.
12046         (_initialize_procfs): No longer install "info proc" command.
12047
12048         * linux-nat.c: (enum info_proc_what): Remove.
12049         (linux_nat_info_proc_cmd_1): Rename into ...
12050         (linux_nat_info_proc): ... this.  Update argument types as appropriate
12051         for a to_info_proc implementation.
12052         (linux_nat_info_proc_cmd): Remove.
12053         (linux_nat_info_proc_cmd_mappings): Likewise.
12054         (linux_nat_info_proc_cmd_stat): Likewise.
12055         (linux_nat_info_proc_cmd_status): Likewise.
12056         (linux_nat_info_proc_cmd_cwd): Likewise.
12057         (linux_nat_info_proc_cmd_cmdline): Likewise.
12058         (linux_nat_info_proc_cmd_exe): Likewise.
12059         (linux_nat_info_proc_cmd_all): Likewise.
12060         (linux_target_install_ops): Install linux_nat_info_proc.
12061         (_initialize_linux_nat): No longer install "info proc" command
12062         and subcommands.
12063
12064 2012-01-20  Ulrich Weigand  <ulrich.weigand@linaro.org>
12065
12066         * configure.ac [AC_CHECK_FUNCS]: Check for readlink.
12067         * config.in, configure: Regenerate.
12068
12069         * target.h (struct target_ops): Add to_fileio_readlink.
12070         (target_fileio_readlink): Add prototype.
12071         * target.c (target_fileio_readlink): New function.
12072
12073         * inf-child.c: Conditionally include <sys/param.h>.
12074         (inf_child_fileio_readlink): New function.
12075         (inf_child_target): Install it.
12076
12077         * remote.c (PACKET_vFile_readlink): New enum value.
12078         (remote_hostio_readlink): New function.
12079         (init_remote_ops): Install it.
12080         (_initialize_remote): Handle vFile:readlink packet type.
12081
12082 2012-01-20  Pedro Alves  <palves@redhat.com>
12083             Ulrich Weigand  <ulrich.weigand@linaro.org>
12084
12085         * configure.ac [AC_CHECK_FUNCS]: Check for pread and pwrite.
12086         * config.in, configure: Regenerate.
12087
12088         * target.h (struct target_ops): Add to_fileio_open, to_fileio_pwrite,
12089         to_fileio_pread, to_fileio_close, to_fileio_unlink.
12090         (target_fileio_open): Add prototype.
12091         (target_fileio_pwrite): Likewise.
12092         (target_fileio_pread): Likewise.
12093         (target_fileio_close): Likewise.
12094         (target_fileio_unlink): Likewise.
12095         (target_fileio_read_alloc): Likewise.
12096         (target_fileio_read_stralloc): Likewise.
12097
12098         * target.c: Include "gdb/fileio.h".
12099         (target_read_stralloc): Accept trailing, but not embedded NUL bytes.
12100         (default_fileio_target): New function.
12101         (target_fileio_open): Likewise.
12102         (target_fileio_pwrite): Likewise.
12103         (target_fileio_pread): Likewise.
12104         (target_fileio_close): Likewise.
12105         (target_fileio_unlink): Likewise.
12106         (target_fileio_close_cleanup): Likewise.
12107         (target_fileio_read_alloc_1): Likewise.
12108         (target_fileio_read_alloc): Likewise.
12109         (target_fileio_read_stralloc): Likewise.
12110
12111         * inf-child.c: Include "gdb/fileio.h", <sys/types.h>, <sys/stat.h>,
12112         <fcntl.h>, and <unistd.h>.
12113         (inf_child_fileio_open_flags_to_host): New function.
12114         (inf_child_errno_to_fileio_error): Likewise.
12115         (inf_child_fileio_open): Likewise.
12116         (inf_child_fileio_pwrite): Likewise.
12117         (inf_child_fileio_pread): Likewise.
12118         (inf_child_fileio_close): Likewise.
12119         (inf_child_fileio_unlink): Likewise.
12120         (inf_child_target): Install to_fileio routines.
12121
12122         * remote.c (init_remote_ops): Install to_fileio routines.
12123
12124 2012-01-20  Pedro Alves  <palves@redhat.com>
12125             Ulrich Weigand  <ulrich.weigand@linaro.org>
12126
12127         * remote.c (remote_multi_process_p): Only check for multi-process
12128         protocol feature, do not check for extended protocol.
12129         (remote_supports_multi_process): Check for extended protocol here.
12130         (set_general_process): Likewise.
12131         (extended_remote_kill): Likewise.
12132         (remote_pid_to_str): Likewise.
12133         (remote_query_supported): Always query multiprocess mode.
12134
12135 2012-01-20  Pedro Alves  <palves@redhat.com>
12136             Ulrich Weigand  <ulrich.weigand@linaro.org>
12137
12138         * inferior.h (struct inferior): Add fake_pid_p.
12139         * inferior.c (exit_inferior_1): Clear fake_pid_p.
12140         * remote.c (remote_start_remote): Set fake_pid_p if we have to use
12141         magic_null_ptid since the remote side doesn't provide a real PID.
12142
12143 2012-01-19  Tom Tromey  <tromey@redhat.com>
12144
12145         * NEWS: Combine the two Python sections.
12146
12147 2012-01-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
12148
12149         * target.h (target_close): Update comment on the target's unpush state.
12150
12151 2012-01-19  Pedro Alves  <palves@redhat.com>
12152
12153         * linux-nat.c (linux_nat_close): Call linux_nat_is_async_p and
12154         linux_nat_async directly instead of going through the target
12155         vector.
12156         * target.c (unpush_target): Close target after unpushing it, not
12157         before.
12158
12159 2012-01-19  Gary Benson  <gbenson@redhat.com>
12160
12161         * mdebugread.c (sort_blocks): Replace integer constants with ones
12162         derived from FIRST_LOCAL_BLOCK.
12163
12164 2012-01-18  Paul Pluzhnikov  <ppluzhnikov@google.com>
12165             Jan Kratochvil  <jan.kratochvil@redhat.com>
12166
12167         PR gdb/9538
12168         * symfile.c (find_separate_debug_file): New function.
12169         (terminate_after_last_dir_separator): Likewise.
12170         (find_separate_debug_file_by_debuglink): Also try realpath.
12171         * configure.ac (AC_CHECK_FUNCS): Add lstat.
12172         * configure: Regenerate.
12173         * config.in: Regenerate.
12174
12175 2012-01-18  Doug Evans  <dje@google.com>
12176
12177         * Makefile.in (TARGET_SYSTEM_ROOT, TARGET_SYSTEM_ROOT_DEFINE): Delete.
12178         (main.o): Remove rule.
12179         * configure.ac (BINDIR): Define with AC_DEFINE_DIR.
12180         (--with-sysroot): Rewrite.
12181         * configure: Regenerate.
12182         * config.in: Regenerate.
12183
12184 2012-01-18  Sergio Durigan Junior  <sergiodj@redhat.com>
12185
12186         * parse.c (initialize_expout): New function.
12187         (reallocate_expout): Likewise.
12188         (parse_exp_in_context): Use `initialize_expout' and
12189         `reallocate_expout' when appropriate.
12190
12191 2012-01-18  Pedro Alves  <palves@redhat.com>
12192
12193         * record.c (struct record_breakpoint, record_breakpoint_p)
12194         (record_breakpoints): New.
12195         (record_insert_breakpoint, record_remove_breakpoint): Manage
12196         record breakpoints list.  Only remove breakpoints from the
12197         inferior if they had been inserted there in the first place.
12198
12199 2012-01-17  Doug Evans  <dje@google.com>
12200
12201         * linespec.c (decode_line_internal): Don't call symtabs_from_filename
12202         if we know we don't have a file name to look for.
12203
12204 2012-01-17  Pedro Alves  <palves@redhat.com>
12205
12206         * dwarf2-frame.c (dwarf2_frame_cfa): Throw NOT_AVAILABLE_ERROR, if
12207         the frame's stop reason is UNWIND_UNAVAILABLE.
12208
12209 2012-01-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
12210
12211         Fix compilation error.
12212         * m2-exp.y (yyerror): Use ANSI C prototype.
12213
12214 2012-01-16  Sergio Durigan Junior  <sergiodj@redhat.com>
12215
12216         * f-exp.y (parse_number): Convert prototype from K&R to ANSI C.
12217         (growbuf_by_size): Likewise.
12218         (yyerror): Likewise.
12219         * m2-exp.y (make_qualname): Remove function (was #if 0'ed).
12220         (modblock): Remove variable (was #if 0'ed).
12221         (parse_number): Convert prototype from K&R to ANSI C.
12222         (yyerror): Likewise.
12223         * objc-exp.y (parse_number): Likewise.
12224         (yyerror): Likewise.
12225         (yylex): Remove #if 0'ed code.
12226         * p-exp.y (uptok): Convert prototype from K&R to ANSI C.
12227         (yyerror): Likewise.
12228
12229 2012-01-16  Tom Tromey  <tromey@redhat.com>
12230
12231         * NEWS: Add item.
12232         * symtab.h (compare_filenames_for_search): Declare.
12233         * symtab.c (compare_filenames_for_search): New function.
12234         (iterate_over_some_symtabs): Use it.
12235         * symfile.h (struct quick_symbol_functions)
12236         <map_symtabs_matching_filename>: Change spec.
12237         * psymtab.c (partial_map_symtabs_matching_filename): Use
12238         compare_filenames_for_search.  Update for new spec.
12239         * dwarf2read.c (dw2_map_symtabs_matching_filename): Use
12240         compare_filenames_for_search.  Update for new spec.
12241         * breakpoint.c (clear_command): Use compare_filenames_for_search.
12242
12243 2012-01-16  Tom Tromey  <tromey@redhat.com>
12244
12245         PR python/13281:
12246         * gdbtypes.h (TYPE_FLAG_ENUM): New macro.
12247         (struct main_type) <flag_flag_enum>: New field.
12248         * dwarf2read.c (process_enumeration_scope): Detect "flag" enums.
12249         * NEWS: Add entries.
12250         * c-valprint.c (c_val_print) <TYPE_CODE_ENUM>: Handle "flag"
12251         enums.
12252         * python/lib/gdb/printing.py (_EnumInstance): New class.
12253         (FlagEnumerationPrinter): Likewise.
12254
12255 2012-01-16  Sergio Durigan Junior  <sergiodj@redhat.com>
12256
12257         * breakpoint.c (create_sals_from_address_default): New function.
12258         (create_breakpoints_sal_default): Likewise.
12259         (decode_linespec_default): Likewise.
12260         (is_marker_spec): Removed.
12261         (strace_marker_p): New function.
12262         (init_breakpoint_sal): Using `strace_marker_p' instead of
12263         `is_marker_spec'.
12264         (create_breakpoint): Call method `create_sals_from_address' from
12265         breakpoint_ops, replacing code that created SALs conditionally
12266         on the type of the breakpoint.  Call method `create_breakpoints_sal',
12267         replacing code that created breakpoints conditionally on the type
12268         wanted.
12269         (base_breakpoint_create_sals_from_address): New function.
12270         (base_breakpoint_create_breakpoints_sal): Likewise.
12271         (base_breakpoint_decode_linespec): Likewise.
12272         (base_breakpoint_ops): Add methods
12273         `base_breakpoint_create_sals_from_address',
12274         `base_breakpoint_create_breakpoints_sal' and
12275         `base_breakpoint_decode_linespec'.
12276         (bkpt_create_sals_from_address): New function.
12277         (bkpt_create_breakpoints_sal): Likewise.
12278         (bkpt_decode_linespec): Likewise.
12279         (tracepoint_create_sals_from_address): Likewise.
12280         (tracepoint_create_breakpoints_sal): Likewise.
12281         (tracepoint_decode_linespec): Likewise.
12282         (strace_marker_create_sals_from_address): Likewise.
12283         (strace_marker_create_breakpoints_sal): Likewise.
12284         (strace_marker_decode_linespec): Likewise.
12285         (strace_marker_breakpoint_ops): New variable.
12286         (addr_string_to_sals): Remove `marker_spec'.  Call method
12287         `decode_linespec' from breakpoint_ops, replacing code that decoded
12288         an address string into a SAL.  Use `strace_marker_p' instead of
12289         `marker_spec'.
12290         (strace_command): Decide whether we are dealing with a static
12291         tracepoint with marker or not.  Use the appropriate breakpoint_ops.
12292         (initialize_breakpoint_ops): Initialize new fields of breakpoint_ops.
12293         * breakpoint.h (linespec_result, linespec_sals): New forward
12294         declarations.
12295         (breakpoint_ops) <create_sals_from_address>,
12296         <create_breakpoints_sal>, <decode_linespec>: New methods.
12297
12298 2012-01-14  Doug Evans  <dje@google.com>
12299
12300         * NEWS: Update text for "maint set python print-stack".
12301         It is deprecated in gdb 7.4 and deleted in 7.5.
12302
12303 2012-01-13  Eli Zaretskii  <eliz@gnu.org>
12304
12305         * gdb_curses.h (MOUSE_MOVED) [__MINGW32__]: Undefine before
12306         including curses.h.
12307
12308 2012-01-12  Jan Kratochvil  <jan.kratochvil@redhat.com>
12309
12310         * configure: Regenerate.
12311         * config.in: Regenerate.
12312
12313 2012-01-12  Keith Seitz  <keiths@redhat.com>
12314
12315         PR mi/10586
12316         * varobj.c (ANONYMOUS_STRUCT_NAME): Define.
12317         (ANONYMOUS_UNION_NAME): Define.
12318         (is_path_expr_parent): New function.
12319         (get_path_expr_parent): New function.
12320         (is_anonymous_child): New function.
12321         (create_child_with_value): If the child is anonymous and without
12322         a name, assign an object name to it.
12323         (c_describe_child): Use get_path_expr_parent to determine
12324         the parent expression.
12325         If there field represents an anonymous struct or union and
12326         has no name, set an appropriate display name and expression.
12327         (cplus_describe_child): Likewise.
12328
12329 2012-01-12  Pedro Alves  <palves@redhat.com>
12330
12331         * i386-tdep.c (i386_frame_cache_1): Also mark the frame base as
12332         available when %ebp is found to be zero (outermost).
12333
12334 2012-01-11  Andreas Tobler  <andreast@fgznet.ch>
12335
12336         * common/gdb_assert.h (gdb_static_assert): Rename static_assert to
12337         an internal gdb_static_assert.
12338         * mi/mi-common.c: Rename static_assert to gdb_static_assert.
12339
12340 2012-01-11  Tom Tromey  <tromey@redhat.com>
12341
12342         PR gdb/9598:
12343         * breakpoint.c (_initialize_breakpoint): Fix help for "catch
12344         catch" and "catch throw".
12345
12346 2012-01-11  Paul Hilfinger  <hilfingr@adacore.com>
12347
12348         * blockframe.c (block_innermost_frame): Start search from selected
12349         frame, if present, or otherwise the current frame.
12350
12351         * c-exp.y (variable): Update innermost_block for
12352         'block COLONCOLON NAME' clause.
12353         * m2-exp.y (variable): Ditto.
12354         * objc-exp.y (variable): Ditto.
12355
12356 2012-01-10  Tom Tromey  <tromey@redhat.com>
12357
12358         PR python/13199:
12359         * python/python.c (finish_python_initialization): Set sys.argv.
12360
12361 2012-01-10  Doug Evans  <dje@google.com>
12362
12363         * dwarf2read.c (dwarf_decode_lines): Remove arg "abfd".  New arg
12364         "want_line_info".  All callers updated.
12365         (dwarf_decode_lines_1): New function.
12366         (handle_DW_AT_stmt_list): Add function comment.
12367         New arg "want_line_info".  All callers updated.
12368         (read_file_scope,read_type_unit_scope): Move comment from
12369         handle_DW_AT_stmt_list to here.
12370
12371 2012-01-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
12372
12373         Fix regression after libiberty/ update for GCC PR 6057 and others.
12374         * c-exp.y (operator) <OPERATOR DELETE>
12375         (operator) <OPERATOR DELETE '[' ']'>: Add trailing space.
12376         * cp-name-parser.y (fill_comp, make_operator, make_dtor)
12377         (make_builtin_type, make_name): New variable i, add gdb_assert.
12378         (operator) <OPERATOR NEW>: Update ARGS to 3.
12379         (operator) <OPERATOR DELETE>: Add trailing space.
12380         (operator) <OPERATOR NEW '[' ']'>: Update ARGS to 3.
12381         (operator) <OPERATOR DELETE '[' ']'>: Add trailing space.
12382         * cp-support.c (cp_canonicalize_string): Check NULL from
12383         cp_comp_to_string, call warning and return.
12384
12385 2012-01-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
12386
12387         Fix duplicate .o files after omitting libbfd.a.
12388         * Makefile.in (ALL_TARGET_OBS): Remove corelow.o.
12389         (SFILES): Add corelow.c.
12390         (COMMON_OBS): Add corelow.o.
12391         (ALLDEPFILES): Remove corelow.c.
12392         * config/alpha/alpha-linux.mh (NATDEPFILES): Remove corelow.o.
12393         * config/alpha/alpha-osf3.mh: Likewise.
12394         * config/alpha/fbsd.mh: Likewise.
12395         * config/arm/nbsdaout.mh: Likewise.
12396         * config/arm/nbsdelf.mh: Likewise.
12397         * config/i386/i386gnu.mh: Likewise.
12398         * config/ia64/hpux.mh: Likewise.
12399         * config/ia64/linux.mh: Likewise.
12400         * config/m32r/linux.mh: Likewise.
12401         * config/m68k/linux.mh: Likewise.
12402         * config/mips/irix5.mh: Likewise.
12403         * config/mips/irix6.mh: Likewise.
12404         * config/pa/hpux.mh: Likewise.
12405         * config/pa/linux.mh: Likewise.
12406         * config/powerpc/aix.mh: Likewise.
12407         * config/sparc/linux.mh: Likewise.
12408         * config/sparc/linux64.mh: Likewise.
12409         * config/sparc/sol2.mh: Likewise.
12410         * config/vax/vax.mh: Likewise.
12411         * configure.tgt (alpha*-*-freebsd* alpha*-*-kfreebsd*-gnu)
12412         (alpha*-*-netbsd*, alpha*-*-knetbsd*-gnu, alpha*-*-openbsd*)
12413         (am33_2.0*-*-linux*, arm*-wince-pe, arm*-*-mingw32ce*, arm*-*-linux*)
12414         (arm*-*-openbsd*, cris*, frv-*-*, hppa*-*-hpux*, hppa*-*-netbsd*)
12415         (hppa*-*-openbsd*, i[34567]86-*-dicos*, i[34567]86-*-freebsd*)
12416         (i[34567]86-*-kfreebsd*-gnu, i[34567]86-*-netbsd*)
12417         (i[34567]86-*-knetbsd*-gnu, i[34567]86-*-openbsd*, i[34567]86-*-nto*)
12418         (i[34567]86-*-solaris2.1[0-9]*, x86_64-*-solaris2.1[0-9]*)
12419         (i[34567]86-*-solaris*, i[34567]86-*-linux*, i[34567]86-*-cygwin*)
12420         (i[34567]86-*-mingw32*, m68*-*-netbsd*, m68*-*-knetbsd*-gnu)
12421         (m68*-*-openbsd*, m88*-*-openbsd*, microblaze*-linux-*)
12422         (microblaze*-*-linux*, mips*-*-linux*, mips*-*-netbsd*)
12423         (mips*-*-knetbsd*-gnu, mips64*-*-openbsd*, powerpc-*-netbsd*)
12424         (powerpc-*-knetbsd*-gnu, powerpc-*-openbsd*, powerpc-*-linux*)
12425         (powerpc64-*-linux*, s390*-*-*, score-*-*, sh*-*-linux*)
12426         (sh*-*-netbsdelf*, sh*-*-knetbsd*-gnu, sh*-*-openbsd*)
12427         (sparc*-*-freebsd*, sparc*-*-kfreebsd*-gnu, sparc-*-netbsd*)
12428         (sparc-*-knetbsd*-gnu, sparc64-*-netbsd*, sparc64-*-knetbsd*-gnu)
12429         (sparc-*-openbsd*, sparc64-*-openbsd*, tic6x-*-*linux, vax-*-netbsd*)
12430         (vax-*-knetbsd*-gnu, vax-*-openbsd*, x86_64-*-dicos*, x86_64-*-linux*)
12431         (x86_64-*-freebsd*, x86_64-*-kfreebsd*-gnu, x86_64-*-netbsd*)
12432         (x86_64-*-knetbsd*-gnu, x86_64-*-openbsd*, xtensa*-*-linux*): Remove
12433         corelow.o from gdb_target_obs.
12434         * corefile.c (core_target): Update the comment on NULL value.
12435         (core_file_command): Replace error by gdb_assert on CORE_TARGET.
12436         * corelow.c (sniff_core_bfd): Call error instead of warning on zero
12437         MATCHES.  Drop YUMMY set on NULL.
12438         (core_close): Do not call exit_inferior_silent on zero PID.  Do not
12439         reclaim CORE_DATA if it is already NULL.
12440
12441 2012-01-09  Doug Evans  <dje@google.com>
12442
12443         * gdbtypes.c (safe_parse_type): Initialize type to keep gcc happy.
12444         * varobj.c (varobj_set_value): Initialize val,value to keep gcc happy.
12445
12446 2012-01-09  Keith Seitz  <keiths@redhat.com>
12447
12448         * breakpoint.c (wrapper.h): Don't include.
12449
12450 2012-01-09  Keith Seitz  <keiths@redhat.com>
12451
12452         * Makefile.in (SFILES): Remove wrapper.c.
12453         (HFILES_NO_SRCDIR): Remove wrapper.h.
12454         (COMMON_OBS): Remove wrapper.o.
12455         * cli/cli-interp.c: Don't inlude wrapper.h.
12456         * corelow.c: Likewise.
12457         (core_open): Replace gdb_target_find_new_threads with
12458         TRY_CATCH around target_find_new_threads.
12459         * eval.c (fetch_subexp_value): Likewise for value_fetch_lazy.
12460         * gdbtypes.c (safe_parse_type): Likewise for parse_and_eval_type.
12461         * varobj.c (varobj_create): Likewise for parse_exp_1 and
12462         evaluate_expression.
12463         (varobj_set_value): Likewise for evaluate_expression and
12464         value_assign.
12465         (install_new_variable): Likewise for value_fetch_lazy.
12466         (adjust_value_for_child_access): Likewise for value_ind.
12467         (c_describe_child): Likewise for value_subscript and
12468         value_ind.
12469         (c_value_of_root): Likewise for evaluate_expression.
12470         * wrapper.c: Remove.
12471         * wrapper.h: Remove.
12472
12473 2012-01-09  Doug Evans  <dje@google.com>
12474
12475         * dwarf2read.c (read_and_check_comp_unit_head): Renamed from
12476         partial_read_comp_unit_head.  Replace "buffer", "buffer_size" and
12477         "abfd" args with "section".  All callers updated.
12478         Error checking code moved ...
12479         (error_check_comp_unit_head): ... here.  New function.
12480         (read_and_check_type_unit_head): Renamed from read_type_unit_head.
12481         Delete arg "abfd".  New arg "type_offset".  All callers updated.
12482         (create_debug_types_hash_table): Simplify by using
12483         read_and_check_type_unit_head.
12484
12485         * parser-defs.h (namecopy): Delete.
12486         * parse.c (namecopy, namecopy_size): Move into copy_name.
12487
12488 2012-01-09  Jan Kratochvil  <jan.kratochvil@redhat.com>
12489
12490         Partially fix duplicate .o files after omitting libbfd.a.
12491         * config/alpha/alpha-osf3.mh (NATDEPFILES): Remove solib.o.
12492         * config/i386/nbsdaout.mh (NATDEPFILES): Remove solib.o.
12493         * config/i386/obsdaout.mh (NATDEPFILES): Remove solib.o.
12494         * config/m68k/nbsdaout.mh (NATDEPFILES): Remove solib.o.
12495         * config/m68k/obsd.mh (NATDEPFILES): Remove solib.o.
12496         * config/powerpc/aix.mh (NATDEPFILES): Remove xcoffread.o.
12497         * config/vax/nbsdaout.mh (NATDEPFILES): Remove solib.o.
12498
12499 2012-01-09  Pedro Alves  <palves@redhat.com>
12500
12501         * MAINTAINERS: Update my email address.
12502
12503 2012-01-08  Doug Evans  <dje@google.com>
12504
12505         * dwarf2read.c (dwarf2_per_objfile): Rename n_type_comp_units to
12506         n_type_units.  Rename type_comp_units to all_type_units.
12507         All uses updated.
12508         (add_signatured_type_cu_to_table): Renamed from
12509         add_signatured_type_cu_to_list.  All callers updated.
12510
12511         * gdbtypes.h (struct cplus_struct_type): Delete member
12512         nfn_fields_total.  All uses removed.
12513
12514 2012-01-06  Doug Evans  <dje@google.com>
12515
12516         * dwarf2read.c: Move FIXME from dwarf2_build_psymtabs_hard
12517         to top of file.
12518         (dwarf2_find_comp_unit): Delete.
12519         (process_psymtab_comp_unit): Make result "void".
12520         Delete args buffer, info_ptr, buffer_size, and replace with
12521         "section".  All callers updated.
12522         (dwarf2_build_psymtabs_hard): Simplify.
12523
12524 2012-01-06  Sergio Durigan Junior  <sergiodj@redhat.com>
12525             Thiago Jung Bauermann  <bauerman@br.ibm.com>
12526
12527         * ada-lang.c (ada_exception_name_addr): Add `volatile' keyword
12528         before `struct gdb_exception'.
12529         * breakpoint.c (update_global_location_list_nothrow)
12530         (update_breakpoint_locations, enable_breakpoint_disp): Likewise.
12531         * cp-abi.c (value_rtti_type): Likewise.
12532         * cp-support.c (cp_validate_operator): Likewise.
12533         * infrun.c (insert_exception_resume_breakpoint)
12534         (check_exception_resume, keep_going): Likewise.
12535         * mi-interp.c (mi_breakpoint_created)
12536         (mi_breakpoint_modified): Likewise.
12537         * rs6000-aix-tdep.c (rs6000_convert_from_func_ptr_addr): Likewise.
12538         * solib-ia64-hpux.c (ia64_hpux_at_dld_breakpoint_p)
12539         (ia64_hpux_handle_dld_breakpoint_1): Likewise.
12540
12541 2012-01-05  Doug Evans  <dje@google.com>
12542
12543         * dwarf2read.c (statement_prologue): Delete, unused.
12544
12545         * dwarf2read.c (dwarf2_per_cu_addr_size): Make result type an int.
12546         * dwarf2loc.h (dwarf2_per_cu_addr_size): Update.
12547
12548         * dwarf2read.c (comp_unit_header): Delete, unused.
12549
12550 2012-01-05  Ulrich Weigand  <uweigand@de.ibm.com>
12551
12552         * configure.tgt [s390*-*-*] (gdb_target_obs): Add corelow.o.
12553         * config/s390/s390.mh (NATDEPFILES): Remove corelow.o.
12554
12555 2012-01-05  Khoo Yit Phang  <khooyp@cs.umd.edu>
12556
12557         * infrun.c (normal_stop): Don't skip calling the normal_stop
12558         observers if the thread was doing a multi-step, but stopped for
12559         some reason other than stepping.
12560
12561 2012-01-05  Pedro Alves  <alves.ped@gmail.com>
12562
12563         * cli/cli-decode.h: Add comments.
12564         (CMD_LIST_AMBIGUOUS): Moved to command.h
12565         (add_cmd, add_alias_cmd, add_prefix_cmd, add_abbrev_prefix_cmd)
12566         (set_cmd_cfunc, set_cmd_sfunc, set_cmd_completer, cmd_cfunc_eq)
12567         (set_cmd_context, get_cmd_context, lookup_cmd, lookup_cmd_1)
12568         (deprecate_cmd, deprecated_cmd_warning, lookup_cmd_composition)
12569         (add_com, add_com_alias, add_info, add_info_alias)
12570         (complete_on_cmdlist, complete_on_enum, help_list): Remove
12571         declarations.
12572         * command.h: Add and adjust comments.
12573         (CMD_LIST_AMBIGUOUS): Moved here.
12574         (help_cmd, help_cmd_list): Delete declarations.
12575
12576 2012-01-04  Doug Evans  <dje@google.com>
12577
12578         * dwarf2read.c (dwarf2_read_abbrevs): Delete arg "abfd".
12579         All callers updated.
12580         (load_full_type_unit): Renamed from read_signatured_type_at_offset.
12581         Replace all arguments with "per_cu".  All callers updated.
12582
12583         * dwarf2read.c (dwarf2_per_cu_data): Remove outdated comment.
12584
12585         * dwarf2read.c (init_one_comp_unit): Delete arg "objfile".
12586         New arg "per_cu".  All callers updated.
12587
12588         Delete #if 0'd out code.
12589         * language.c (binop_result_type): Delete.
12590         (simple_type, ordered_type, same_type, integral_type): Delete.
12591         (numeric_type, character_type, string_type, boolean_type): Delete.
12592         (float_type, structured_type): Delete.
12593         * language.h: Update.
12594
12595 2012-01-04  Tom Tromey  <tromey@redhat.com>
12596
12597         * python/py-value.c (valpy_binop): Initialize 'res_val'.
12598
12599 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
12600
12601         * corefile.c (close_exec_file): Delete.
12602         (reopen_exec_file): Remove commented out code that seems related
12603         to close_exec_file, which is being deleted here.
12604         * inferior.h (close_exec_file): Delete.
12605         * fork-child.c (fork_inferior): Remove call to fork_inferior.
12606
12607 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
12608
12609         * ada-lang.c: #include "cli/cli-utils.h".
12610         (get_selections): Use skip_spaces.
12611         (ada_get_next_arg): Use skip_spaces and skip_to_space.
12612         (catch_ada_exception_command_split): Use skip_spaces.
12613         (ada_decode_assert_location): Likewise.
12614
12615 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
12616
12617         * linespec.c (decode_line_internal): Check for C++ or Java
12618         compound constructs only if the current language is C, C++
12619         or Java.
12620
12621 2012-01-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
12622
12623         Revert:
12624         2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
12625                     Joel Brobecker  <brobecker@adacore.com>
12626         Fix regression for gdb.cp/gdb2495.exp with gcc-4.7.
12627         * arch-utils.c (displaced_step_at_entry_point): Incrase BP_LEN skip to
12628         3 times.
12629         * infcall.c (call_function_by_hand) <AT_SYMBOL>: Move it upwards and
12630         fall through into AT_ENTRY_POINT.
12631         (call_function_by_hand) <AT_ENTRY_POINT>: New variable bp_len.  Adjust
12632         DUMMY_ADDR with it.
12633         * ppc-linux-tdep.c (ppc_linux_displaced_step_location): Increase
12634         PPC_INSN_SIZE skip to 3 times.
12635
12636 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
12637
12638         * linespec.c (add_minsym): Preserve function descriptors.
12639
12640 2012-01-04  Ulrich Weigand  <uweigand@de.ibm.com>
12641
12642         * breakpoint.c (all_locations_are_pending): Consider locations
12643         in program spaces executing during startup pending as well.
12644
12645 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
12646
12647         Copyright year update in most files of the GDB Project.
12648
12649 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
12650
12651         * copyright.sh: Delete.
12652         * copyright.py: Rewrite.
12653
12654 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
12655
12656         * gnulib/extra/update-copyright: New file, imported from gnulib.
12657
12658 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
12659
12660         * README (Copyright and License Notices): New section.
12661
12662 2012-01-03  Tom Tromey  <tromey@redhat.com>
12663
12664         PR python/12533:
12665         * python/py-value.c (valpy_dereference, valpy_get_address
12666         valpy_get_dynamic_type, valpy_lazy_string, valpy_do_cast)
12667         (valpy_getitem, valpy_call, valpy_binop, valpy_negative)
12668         (valpy_absolute, valpy_richcompare): Free intermediate values.
12669
12670 2011-01-03  Joel Brobecker  <brobecker@adacore.com>
12671
12672         * ada-lang.c: Reformat the copyright notice.
12673
12674 2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
12675
12676         * Makefile.in (ALL_TARGET_OBS): Remove solib-target.o.
12677         * configure.tgt (arm*-wince-pe, arm*-*-mingw32ce*, arm*-*-symbianelf*)
12678         (i[34567]86-*-dicos*, i[34567]86-*-cygwin*, i[34567]86-*-mingw32*)
12679         (x86_64-*-dicos*, x86_64-*-mingw*): Remove solib-target.o.
12680         Revert this part of:
12681         2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
12682         Build gdb directly from *.o files not using libgdb.a.
12683         * Makefile.in (COMMON_OBS): Remove solib-target.o.
12684
12685 2012-01-02  Joel Brobecker  <brobecker@adacore.com>
12686
12687         * gdb/common/gdb_thread_db.h, gdb/dbxread.c, gdb/environ.c,
12688         gdb/gcore.h, gdb/rs6000-tdep.h, gdb/s390-nat.c, gdb/tic6x-tdep.c:
12689         Reformat the copyright header.
12690
12691 2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
12692
12693         Revert this part of:
12694         2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
12695         Remove the gdbtui binary.
12696         * gdb.c (main): Remove args.interpreter_p initialization.
12697         * main.c (captured_main): Set INTERPRETER_P directly by INTERP_CONSOLE.
12698         * main.h (struct captured_main_args): Remove interpreter_p.
12699
12700 2012-01-02  Joel Brobecker  <brobecker@adacore.com>
12701
12702         * config/djgpp/fnchange.lst: Add entry for ChangeLog-2011.
12703
12704 2012-01-02  Joel Brobecker  <brobecker@adacore.com>
12705
12706         * top.c (print_gdb_version): Update copyright year.
12707
12708 2012-01-02  Yao Qi  <yao@codesourcery.com>
12709
12710         * inf-ptrace.c (inf_ptrace_xfer_partial): Reindent.
12711
12712 2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
12713             Joel Brobecker  <brobecker@adacore.com>
12714
12715         Fix regression for gdb.cp/gdb2495.exp with gcc-4.7.
12716         * arch-utils.c (displaced_step_at_entry_point): Incrase BP_LEN skip to
12717         3 times.
12718         * infcall.c (call_function_by_hand) <AT_SYMBOL>: Move it upwards and
12719         fall through into AT_ENTRY_POINT.
12720         (call_function_by_hand) <AT_ENTRY_POINT>: New variable bp_len.  Adjust
12721         DUMMY_ADDR with it.
12722         * ppc-linux-tdep.c (ppc_linux_displaced_step_location): Increase
12723         PPC_INSN_SIZE skip to 3 times.
12724
12725 2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
12726
12727         * amd64-linux-nat.c (update_debug_registers_callback): New comment on
12728         the return value.
12729         * i386-linux-nat.c (update_debug_registers_callback): Likewise.
12730
12731 2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
12732
12733         Build gdb directly from *.o files not using libgdb.a.
12734         * Makefile.in (SUBDIR_TUI_OBS): Remove duplicate tui.o.
12735         (COMMON_OBS): Remove solib-target.o.
12736         (LIBGDB_OBS, libgdb.a): Move it before the gdb$(EXEEXT) rule.
12737         (gdb$(EXEEXT)): Replace libgdb.a with $(LIBGDB_OBS).
12738         (LIBGDB_OBS, libgdb.a): Move it above.
12739         * configure.tgt (alpha*-*-linux*, alpha*-*-freebsd*)
12740         (alpha*-*-kfreebsd*-gnu, alpha*-*-netbsd*, alpha*-*-knetbsd*-gnu)
12741         (alpha*-*-openbsd*, am33_2.0*-*-linux*, arm*-wince-pe)
12742         (arm*-*-mingw32ce*, arm*-*-linux*, arm*-*-netbsd*, arm*-*-knetbsd*-gnu)
12743         (arm*-*-openbsd*, cris*, frv-*-*, hppa*-*-hpux*, hppa*-*-linux*)
12744         (hppa*-*-netbsd*, hppa*-*-openbsd*, i[34567]86-*-darwin*)
12745         (i[34567]86-*-dicos*, i[34567]86-*-freebsd*, i[34567]86-*-kfreebsd*-gnu)
12746         (i[34567]86-*-netbsd*, i[34567]86-*-knetbsd*-gnu, i[34567]86-*-openbsd*)
12747         (i[34567]86-*-nto*, i[34567]86-*-solaris2.1[0-9]*)
12748         (x86_64-*-solaris2.1[0-9]*, i[34567]86-*-solaris*, i[34567]86-*-linux*)
12749         (i[34567]86-*-gnu*, ia64-*-linux*, m32r*-*-linux*, m68*-*-linux*)
12750         (m68*-*-netbsd*, m68*-*-knetbsd*-gnu, m68*-*-openbsd*)
12751         (microblaze*-linux-*, microblaze*-*-linux*, mips*-sgi-irix5*)
12752         (mips*-sgi-irix6*, mips*-*-linux*, mips*-*-netbsd*)
12753         (mips*-*-knetbsd*-gnu, mips64*-*-openbsd*, powerpc-*-netbsd*)
12754         (powerpc-*-knetbsd*-gnu, powerpc-*-openbsd*, powerpc-*-aix*, rs6000-*-*)
12755         (powerpc-*-linux*, powerpc64-*-linux*, powerpc*-*-*, s390*-*-*)
12756         (sh*-*-linux*, sh*-*-netbsdelf*, sh*-*-knetbsd*-gnu, sh*-*-openbsd*)
12757         (sparc-*-linux*, sparc64-*-linux*, sparc*-*-freebsd*)
12758         (sparc*-*-kfreebsd*-gnu, sparc-*-netbsd*, sparc-*-knetbsd*-gnu)
12759         (sparc64-*-netbsd*, sparc64-*-knetbsd*-gnu, sparc-*-openbsd*)
12760         (sparc64-*-openbsd*, sparc-*-solaris2.[0-6], sparc-*-solaris2.[0-6].*)
12761         (sparc-*-solaris2*, sparcv9-*-solaris2*, sparc64-*-solaris2*)
12762         (vax-*-netbsd*, vax-*-knetbsd*-gnu, x86_64-*-darwin*, x86_64-*-dicos*)
12763         (x86_64-*-linux*, x86_64-*-freebsd*, x86_64-*-kfreebsd*-gnu)
12764         (x86_64-*-netbsd*, x86_64-*-knetbsd*-gnu, x86_64-*-openbsd*)
12765         (xtensa*-*-linux*, xtensa*): Remove solib.o from gdb_target_obs.
12766
12767 2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
12768
12769         Remove the gdbtui binary.
12770         * .gitignore (/gdbtui): Remove.
12771         * Makefile.in (TUI): Remove.
12772         (SUBDIR_TUI_OBS): Remove tui-main.o.
12773         (SUBDIR_TUI_SRCS): Remove tui/tui-main.c.
12774         (all-tui, install-tui, uninstall-tui, $(TUI)$(EXEEXT), clean-tui)
12775         (tui-main.o): Remove.
12776         (all_object_files): Remove tui-main.o.
12777         * NEWS: New note for the gdbtui removal.
12778         * configure: Rebuilt.
12779         * configure.ac: No longer add all-tui, clean-tui, install-tui and
12780         uninstall-tui to CONFIG_ALL, CONFIG_CLEAN, CONFIG_INSTALL and
12781         CONFIG_UNINSTALL respectively.
12782         * gdb.c (main): Remove args.interpreter_p initialization.
12783         * main.c (captured_main): Set INTERPRETER_P directly by INTERP_CONSOLE.
12784         * main.h (struct captured_main_args): Remove interpreter_p.
12785         * tui/tui-main.c: Remove.
12786
12787 2012-01-01  Doug Evans  <dje@google.com>
12788
12789         * dwarf2read.c (dwarf2_compute_name): Simplify objfile references.
12790         (dwarf2_physname, read_import_statement): Ditto.
12791         (read_call_site_scope, dwarf2_record_block_ranges): Ditto.
12792         (process_structure_scope read_subroutine_type): Ditto.
12793         (read_typedef, load_partial_dies, read_partial_die): Ditto.
12794         (find_partial_die, dwarf_decode_lines, lookup_die_type): Ditto.
12795         (dwarf2_fetch_die_location_block): Ditto.
12796         (dwarf_decode_macros, dwarf2_symbol_mark_computed): Ditto.
12797
12798         * dwarf2read.c (read_signatured_type): Delete `objfile' arg.
12799         All callers updated.
12800         (load_full_comp_unit, queue_comp_unit, process_queue): Ditto.
12801         (dw2_do_instantiate_symtab, dw2_instantiate_symtab): Ditto.
12802         (process_psymtab_comp_unit, load_partial_comp_unit): Ditto.
12803
12804         * dwarf2read.c (load_cu): Move assert to more useful location.
12805
12806         * dwarf2read.c (free_heap_comp_unit): Renamed from free_one_comp_unit.
12807         All callers updated.
12808
12809         * dwarf2read.c (dwarf2_per_objfile): Add comment.
12810         (dwarf2_elf_names): Minor reformat.
12811         (dwarf2_per_cu_data): Tweak comment.
12812         (dwarf2_read_section): Fix comment.
12813         (create_all_comp_units): Fix comment.
12814         (load_full_comp_unit): Fix comment.
12815         (process_full_comp_unit): Fix comment.
12816         (read_signatured_type): Fix comment.
12817
12818 For older changes see ChangeLog-2011.
12819 \f
12820 Local Variables:
12821 mode: change-log
12822 left-margin: 8
12823 fill-column: 74
12824 version-control: never
12825 coding: utf-8
12826 End: