2012-12-13 Pedro Alves <palves@redhat.com>
[external/binutils.git] / gdb / ChangeLog
1 2012-12-13  Pedro Alves  <palves@redhat.com>
2
3         * gdbarch.sh (do_read): Set IFS to blank.
4
5 2012-12-12  Mircea Gherzan  <mircea.gherzan@intel.com>
6
7         * NEWS: Mention the -catch-load/-catch-unload MI commands.
8
9 2012-12-12  Mircea Gherzan  <mircea.gherzan@intel.com>
10     
11         * Makefile.in (SUBDIR_MI_OBS): Add mi-cmd-catch.o.
12         (SUBDIR_MI_SRCS): Add mi/mi-cmd-catch.c.
13         * breakpoint.c (add_solib_catchpoint): New function that
14         can be used by both CLI and MI, factored out from
15         catch_load_or_unload.
16         (catch_load_or_unload): Strip it down and make it use the
17         new add_solib_catchpoint.
18         * breakpoint.h (add_solib_catchpoint): Declare it.
19         * mi/mi-cmd-break.h: New file.
20         * mi/mi-cmd-break.c: Include mi-cmd-break.h.
21         (setup_breakpoint_reporting): New function used for both
22         catchpoints and breakpoints.
23         (mi_cmd_break_insert): Use setup_breakpoint_reporting.
24         * mi/mi-cmd-catch.c: New file.
25         * mi/mi-cmds.c (mi_cmds): Add the handlers for -catch-load
26         and -catch-unload.
27         * mi/mi-cmds.h: Declare the handlers for -catch-load and
28         -catch-unload.
29
30 2012-11-28  Tom Tromey  <tromey@redhat.com>
31
32         * dbxread.c (read_dbx_symtab): Update.
33         (end_psymtab, dbx_psymtab_to_symtab_1, dbx_psymtab_to_symtab)
34         (read_ofile_symtab): Add 'objfile' argument.
35         * dwarf2read.c (process_psymtab_comp_unit_reader)
36         (build_type_psymtabs_reader): Update.
37         (dwarf2_psymtab_to_symtab): Add 'objfile' argument.
38         * mdebugread.c (mdebug_psymtab_to_symtab): Add 'objfile'
39         argument.
40         (parse_procedure, parse_partial_symbols): Update.
41         (psymtab_to_symtab_1): Add 'objfile' argument.
42         * psympriv.h (struct partial_symtab) <objfile>: Remove.
43         <read_symtab>: Add 'objfile' argument.
44         (sort_pst_symbols, discard_psymtab): Update.
45         * psymtab.c (partial_map_expand_apply): Update.
46         (find_pc_sect_psymtab_closer): Add 'objfile' argument.
47         (find_pc_sect_psymtab, find_pc_sect_symtab_from_partial): Update.
48         (find_pc_sect_psymbol): Add 'objfile' argument.
49         (lookup_symbol_aux_psymtabs): Update.
50         (match_partial_symbol, lookup_partial_symbol, psymtab_to_symtab):
51         Add 'objfile' argument.
52         (find_last_source_symtab_from_partial, dump_psymtab)
53         (dump_psymtabs_for_objfile, read_symtabs_for_function)
54         (expand_partial_symbol_tables, read_psymtabs_with_filename)
55         (find_symbol_file_from_partial, map_matching_symbols_psymtab)
56         (expand_symtabs_matching_via_partial): Update.
57         (sort_pst_symbols): Add 'objfile' argument.
58         (allocate_psymtab): Update.
59         (discard_psymtab): Add 'objfile' argument.
60         (maintenance_info_psymtabs, maintenance_check_symtabs): Update.
61         * stabsread.h (end_psymtab): Update.
62         * xcoffread.c (this_symtab_objfile): New global.
63         (process_linenos, enter_line_range, xcoff_next_symbol_text):
64         Update.
65         (read_xcoff_symtab): Add 'objfile' argument.
66         (read_symbol, read_symbol_lineno): Update.
67         (xcoff_psymtab_to_symtab_1, xcoff_psymtab_to_symtab)
68         (xcoff_end_psymtab): Add 'objfile' argument.
69         (scan_xcoff_symtab): Update.
70
71 2012-12-12  Paul Koning  <paul_koning@dell.com>
72
73         Add support for Python 3.
74         * NEWS: Mention Python 3 support.
75         * varobj.c (value_get_print_value): Use
76         python_string_to_target_string.
77         * python/py-block.c: Use PyVarObject_HEAD_INIT in initialization
78         of type objects.
79         * python/py-breakpoint.c: Ditto.
80         * python/py-cmd.c:  Ditto.
81         * python/py-event.c: Ditto.
82         * python/py-event.h: Ditto.
83         * python/py-evtregistry.c: Ditto.
84         * python/py-finishbreakpoint.c: Ditto.
85         * python/py-frame.c: Ditto.
86         * python/py-function.c: Ditto.
87         * python/py-infthread.c: Ditto.
88         * python/py-lazy-string.c: Ditto.
89         * python/py-progspace.c: Ditto.
90         * /python/py-symbol.c: Ditto.
91         * python/py-evts.c:  (gdbpy_initialize_py_events): Add module
92         initialization for Python 3.
93         * python/py-inferior.c: Use PyVarObject_HEAD_INIT in initialization
94         of type objects.
95         (infpy_read_memory): Return memoryview object if Python 3.
96         (infpy_write_memory): Use "s*" operand parsing code for Python 3.
97         (infpy_search_memory): Ditto.
98         (get_buffer): New function for Python 3.
99         * python/py-objfile.c: Use PyVarObject_HEAD_INIT in initialization
100         of type objects.
101         (objfpy_dealloc): Use Py_TYPE to call tp_free.
102         * python/py-param.c: Use PyVarObject_HEAD_INIT in initialization
103         of type objects.
104         (get_attr): Use PyUnicode_CompareWithASCIIString if Python 3.
105         (set_attr): Ditto.
106         * python/py-prettyprint.c (print_string_repr): use PyBytes methods
107         instead of PyString methods if Python 3.
108         (print_children): Skip push_dummy_python_frame call if Python 3.
109         * python/py-symtab.c: Use PyVarObject_HEAD_INIT in initialization
110         of type objects.
111         (salpy_dealloc): Use Py_TYPE to call tp_free.
112         * python/py-type.c: Use PyVarObject_HEAD_INIT in initialization
113         of type objects.
114         (field_dealloc): Use Py_TYPE to call tp_free.
115         (typy_dealloc): Ditto.
116         (type_object_as_number): Adjust struct initializations for
117         differences in layout for Python 2 vs. Python 3.
118         * python/py-utils.c (python_string_to_unicode): Omit non-Unicode
119         string case for Python 3.
120         (unicode_to_encoded_python_string): Shorten code (no functional
121         change). 
122         (python_string_to_target_python_string): Comment that in Python 3
123         returned value is a Python "bytes" type.
124         (gdbpy_is_string): Omit non-Unicode string check in Python 3.
125         (gdb_py_object_from_longest): Omit non-long integer case in Python
126         3.
127         (gdb_py_object_from_ulongest): Ditto.
128         * python/py-value.c: Use PyVarObject_HEAD_INIT in initialization
129         of type objects.
130         (valpy_dealloc): Use Py_TYPE to call tp_free.
131         (valpy_int): Omit function if Python 3.
132         (convert_value_from_python): Use "%S" format (Python object as a
133         string) if Python 3.
134         (value_object_as_number): Adjust struct initializations for
135         differences in layout for Python 2 vs. Python 3.
136         * python/python-config.py: Adjust syntax for Python 3
137         compatibility. 
138         Include "sys.abiflags" string as part of python library name, if
139         that attribute exists (Python 3).
140         * python/python-internal.h (IS_PY3): Define if Python 3.
141         (Py_TPFLAGS_HAVE_ITER, Py_TPFLAGS_CHECKTYPES): Define with
142         placeholder value if Python 3.
143         (PyInt_Check, PyInt_FromLong, PyInt_AsLong, PyString_FromString,
144         PyString_Decode, PyString_FromFormat, PyString_Check): Define as
145         analogous Python 3 API function if Python 3.
146         (PyVarObject_HEAD_INIT): Define if not already defined.
147         (Py_TYPE): Ditto.
148         * python/python.c (eval_python_command): Omit Py_FlushLine call if
149         Python 3.
150         Check return values of all Python API calls for error.
151         Supply dummy "python" and "python-interactive" commands if Python
152         initialization failed.
153         (_initialize_python): Convert argc to wchar_t** if Python 3.
154         Add module initialization for Python 3.
155         (finish_python_initialization): Pass wchar_t * argument to
156         PySys_SetPath if Python 3.
157         * python/lib/gdb/__init__.py: Define "reload" if Python 3.
158         (_GdbFile): New class for common output file behavior.
159         (GdbOutFile): Subclass from _GdbFile.
160         (GdbOutputErrorFile): Ditto.
161         (auto_load_packages): Adjust syntax for Python 3 compatibility.
162         * python/lib/gdb/printing.py: Define basestr and int if Python 3.
163         * python/lib/gdb/prompt.py: Use sorted() function rather than
164         sort() method.
165         * python/lib/gdb/command/explore.py: Define raw_input if Python 3.
166         Adjust syntax for Python 3 compatibility.
167         * python/lib/gdb/command/pretty_printers.py: Use sorted() function
168         rather than sort() method.
169         Adjust syntax for Python 3 compatibility.
170         * python/lib/gdb/command/type_printers.py: Ditto.
171         * doc/gdb.texinfo (Inferior.read_memory): Mention that the return
172         value is a memoryview object if Python 3.
173
174 2012-12-12  Tom Tromey  <tromey@redhat.com>
175
176         * coffread.c (coff_objfile_data_key): New global.
177         (coff_symfile_init): Use set_objfile_data.
178         (coff_symfile_read): Use objfile_data.
179         (coff_symfile_finish): Don't free deprecated_sym_private.
180         (coff_free_info): New function.
181         (_initialize_coffread): Initialize coff_objfile_data_key.
182         * mdebugread.c (pending_list): Update comment.
183         * objfiles.h (struct objfile) <deprecated_sym_private>: Remove.
184         * symfile.c (reread_symbols): Don't mention
185         deprecated_sym_private.
186         * xcoffread.c (xcoff_objfile_data_key): New global.
187         (XCOFF_DATA): New macro.
188         (process_linenos, enter_line_range, xcoff_next_symbol_text)
189         (read_xcoff_symtab, coff_getfilename, read_symbol_lineno): Use
190         XCOFF_DATA.
191         (xcoff_new_init) Use set_objfile_data.
192         (xcoff_symfile_finish): Don't free deprecated_sym_private.
193         (init_stringtab, swap_sym, scan_xcoff_symtab)
194         (xcoff_get_toc_offset, xcoff_initial_scan): Use XCOFF_DATA.
195         (xcoff_free_info): New function.
196         (_initialize_xcoffread): Initialize xcoff_objfile_data_key.
197
198 2012-12-12  Mircea Gherzan  <mircea.gherzan@intel.com>
199
200         * MAINTAINERS (Write After Approval): Add "Mircea Gherzan".
201
202 2012-12-12  Tom Tromey  <tromey@redhat.com>
203
204         * coffread.c (coff_symfile_init): Use set_objfile_data.
205         (coff_symfile_read): Use DBX_SYMFILE_INFO.
206         * dbxread.c (dbx_objfile_data_key): New global.
207         (dbx_symfile_init): Use set_objfile_data.
208         (dbx_symfile_finish): Don't free deprecated_sym_stab_info.
209         (dbx_free_symfile_info): New function.
210         (coffstab_build_psymtabs, elfstab_build_psymtabs): Use
211         DBX_SYMFILE_INFO.
212         (stabsect_build_psymtabs): Use set_objfile_data.
213         (_initialize_dbxreadb): Initialize dbx_objfile_data_key.
214         * elfread.c (elf_symtab_read): Use DBX_SYMFILE_INFO,
215         set_objfile_data.
216         (free_elfinfo): Use DBX_SYMFILE_INFO.
217         (elf_symfile_finish): Don't free deprecated_sym_stab_info.
218         (elfstab_offset_sections): Use DBX_SYMFILE_INFO.
219         * gdb-stabs.h (dbx_objfile_data_key): Declare.
220         (DBX_SYMFILE_INFO): Rewrite to use objfile_data.
221         * objfiles.h (struct objfile) <deprecated_sym_stab_info>: Remove.
222         * somread.c (som_symfile_finish): Don't free
223         deprecated_sym_stab_info.
224
225 2012-12-12  Joel Brobecker  <brobecker@adacore.com>
226
227         * gdbarch.sh (software_single_step): Remove trailing space in
228         comment (gdbarch.h is already correct).
229
230 2012-12-11  Tom Tromey  <tromey@redhat.com>
231
232         * dwarf2read.c (dwarf2_get_dwz_file): Set 'dwz_file'.
233
234 2012-12-11  Tom Tromey  <tromey@redhat.com>
235
236         * dsrec.c (report_transfer_performance): Don't declare.
237         (load_srec): Use gettimeofday, print_transfer_performance.
238         * symfile.c (report_transfer_performance): Remove.
239
240 2012-12-11  Pedro Alves  <pedro@codesourcery.com>
241             Pedro Alves  <palves@redhat.com>
242
243         * procfs.c (procfs_make_note_section) [NEW_PROC_API]: Output a
244         NT_PSTATUS note.
245         * sol2-tdep.c (sol2_core_pid_to_str): Print process IDs
246         differently from LWP IDs.
247
248 2012-12-11  Pedro Alves  <palves@redhat.com>
249
250         * configure.ac (detect type of /proc): Remove Unixware handling.
251         * configure: Regenerate.
252         * proc-api.c (ioctl_table) [PIOCLSTATUS]: Don't mention Unixware.
253         (ioctl_table) [PCRESET]: Remove entry.
254         * proc-events.c (SYS_lwp_create, SYS_lwp_exit, SYS_lwp_wait)
255         (SYS_lwp_self, SYS_lwp_info, SYS_lwp_private, SYS_lwp_kill)
256         (SYS_lwp_suspend, SYS_lwp_continue): Don't define.
257         * proc-why.c (pr_why_table) [PR_SUSPENDED]: Don't mention Unixware.
258         * procfs.c: Remove all UNIXWARE guarded code, and all traces of
259         Unixware in comments throughout.
260         * i386-tdep.c (i386_svr4_sigtramp_p): Don't match _sigacthandler,
261         and remove mention of Unixware.
262
263 2012-12-10  Doug Evans  <dje@google.com>
264
265         * dwarf2read.c (dwarf2_cu): Enhance comment.
266         (dwarf2_get_pc_bounds): Only add ranges_base for DIEs that live in
267         the DWO file.
268         (dwarf2_record_block_ranges): Ditto.
269
270         * dwarf2read.c (create_dwo_in_dwp): Tweak comment.
271
272         * symtab.c (find_pc_sect_symtab): Add comment.
273
274 2012-12-10  Tom Tromey  <tromey@redhat.com>
275
276         * defs.h: Don't check for definition of LONGEST.
277         (min, max): Remove duplicates.
278
279 2012-12-10  Tom Tromey  <tromey@redhat.com>
280
281         * dwarf2read.c (dwarf2_fetch_die_loc_sect_off): New function.
282         (dwarf2_fetch_die_loc_cu_off): Rename from
283         dwarf2_fetch_die_location_block.  Rewrite to use
284         dwarf2_fetch_die_loc_sect_off.
285         * dwarf2loc.h (dwarf2_fetch_die_loc_sect_off): Declare.
286         (dwarf2_fetch_die_loc_cu_off): Rename.
287         * dwarf2loc.c (indirect_pieced_value): Use
288         dwarf2_fetch_die_loc_sect_off.
289         * dwarf2expr.h (struct dwarf_expr_context) <len, data>: Update
290         comment.
291         (struct dwarf_expr_piece) <v.ptr.die>: Now a sect_offset.
292         * dwarf2expr.c (add_piece): Update.
293         (execute_stack_op) <DW_OP_GNU_implicit_pointer>: Update comment.
294
295 2012-12-10  Tom Tromey  <tromey@redhat.com>
296
297         * buildsym.c (struct pending_block): Move from buildsym.h.
298         (pending_blocks): Likewise; now static.
299         (pending_block_obstack): New global.
300         (free_pending_blocks): Free blocks.
301         (record_pending_block): Use pending_block_obstack.
302         * buildsym.h (struct pending_block): Move definition to
303         buildsym.c.
304         (pending_blocks): Don't declare.
305
306 2012-12-10  Pedro Alves  <palves@redhat.com>
307
308         * solib-svr4.c (svr4_solib_create_inferior_hook) [_SCO_DS]: Remove
309         dead SCO code, and adjust function description comment.
310
311 2012-12-09  Jan Kratochvil  <jan.kratochvil@redhat.com>
312
313         * configure.ac (CC_HAS_LONG_LONG): Replace by AC_MSG_ERROR.
314         * defs.h (LONGEST, ULONGEST): Remove conditionalization for
315         CC_HAS_LONG_LONG.
316         * dwarf2-frame.c (DW64_CIE_ID): Likewise.
317         * dwarf2read.c (extract_cu_value): Remove the function.
318         (create_cus_from_index_list): Make the return type void, inline the
319         extract_cu_value caller, include new gdb_static_assert.
320         (create_cus_from_index): Make the return type void, update the function
321         comment, update the create_cus_from_index_list caller.
322         (create_signatured_type_table_from_index): Make the return type void,
323         inline the extract_cu_value caller, include new gdb_static_assert.
324         (dwarf2_read_index): Update the create_cus_from_index and
325         create_signatured_type_table_from_index caller.
326         * printcmd.c (ui_printf): Remove conditionalizations for
327         CC_HAS_LONG_LONG.
328         * config.in: Regenerate.
329         * configure: Regenerate.
330
331 2012-12-09  Jan Kratochvil  <jan.kratochvil@redhat.com>
332
333         * dwarf2read.c (struct dwarf2_cu): New field producer_is_gcc_lt_4_3.
334         Update the comment for checked_producer.
335         (check_producer): New forward declaration.
336         (producer_is_gcc_lt_4_3): New function.
337         (find_file_and_directory): Simulate *COMP_DIR only for gcc < 4.3.
338         (check_producer): Initialize also PRODUCER_IS_GCC_LT_4_3.
339
340 2012-12-07  Tom Tromey  <tromey@redhat.com>
341
342         * ada-lang.c (ada_make_symbol_completion_list): Add 'code'
343         argument, assertion.
344         * c-exp.y (typebase): Add completion productions.
345         * completer.c (expression_completer): Handle tag completion.
346         * expression.h (parse_expression_for_completion): Add argument.
347         * f-lang.c (f_make_symbol_completion_list): Add 'code'
348         argument.
349         * language.h (struct language_defn)
350         <la_make_symbol_completion_list>: Add 'code' argument.
351         * parse.c (expout_tag_completion_type, expout_completion_name):
352         New globals.
353         (mark_struct_expression): Add assertion.
354         (mark_completion_tag): New function.
355         (parse_exp_in_context): Initialize new globals.
356         (parse_expression_for_completion): Add 'code' argument.  Handle
357         tag completion.
358         * parser-defs.h (mark_completion_tag): Declare.
359         * symtab.c (default_make_symbol_completion_list_break_on): Add
360         'code' argument.  Update.
361         (default_make_symbol_completion_list): Add 'code' argument.
362         (make_symbol_completion_list): Update.
363         (make_symbol_completion_type): New function.
364         * symtab.h (default_make_symbol_completion_list_break_on)
365         (default_make_symbol_completion_list): Update.
366         (make_symbol_completion_type): Declare.
367
368 2012-12-07  Tom Tromey  <tromey@redhat.com>
369
370         * expression.h (parse_expression_for_completion): Rename
371         from parse_field_expression.
372         (parse_completion): Rename from in_parse_field.
373         * c-exp.y (lex_one_token): Update.
374         * completer.c (expression_completer): Update.
375         * go-exp.y (lex_one_token): Update.
376         * p-exp.y (yylex): Update.
377         * parse.c (parse_completion): Rename from in_parse_field.
378         (parse_exp_in_context): Update.
379         (parse_expression_for_completion): Rename from
380         parse_field_expression.  Update.
381
382 2012-12-07  Tom Tromey  <tromey@redhat.com>
383
384         * typeprint.c (_initialize_typeprint): Set completer
385         for "whatis" and "ptype".
386
387 2012-12-07  Joel Brobecker  <brobecker@adacore.com>
388
389         * copyright.py (NOT_FSF_LIST): Remove duplicate entry
390         "sim/common/cgen-fpu.h".  Remove invalid entries
391         "sim/common/sim-fpu.c" and "sim/mn10300/sim-main.h",
392         which actually have an FSF copyright header.
393
394 2012-12-07  Joel Brobecker  <brobecker@adacore.com>
395
396         * osf-share/AT386/cma_thread_io.h: Delete.
397         * osf-share/HP800/cma_thread_io.h: Delete.
398         * osf-share/README: Delete.
399         * osf-share/RIOS/cma_thread_io.h: Delete.
400         * osf-share/cma_attr.h: Delete.
401         * osf-share/cma_deb_core.h: Delete.
402         * osf-share/cma_debug_client.h: Delete.
403         * osf-share/cma_errors.h: Delete.
404         * osf-share/cma_handle.h: Delete.
405         * osf-share/cma_init.h: Delete.
406         * osf-share/cma_list.h: Delete.
407         * osf-share/cma_mutex.h: Delete.
408         * osf-share/cma_sched.h: Delete.
409         * osf-share/cma_semaphore_defs.h: Delete.
410         * osf-share/cma_sequence.h: Delete.
411         * osf-share/cma_stack.h: Delete.
412         * osf-share/cma_stack_int.h: Delete.
413         * osf-share/cma_tcb_defs.h: Delete.
414         * osf-share/cma_util.h: Delete.
415         * Makefile.in (HFILES_NO_SRCDIR): Remove entries for the files
416         in osf-share.
417         * config/djgpp/fnchange.lst: Remove osf-share/cma_stack_int.h entry.
418         * contrib/ari/gdb_find.sh: Remove handling of osf-share.
419         * copyright.sh (NOT_FSF_LIST): Remove "gdb/osf-share" entry.
420
421 2012-12-06  Pedro Alves  <palves@redhat.com>
422             Tom Tromey  <tromey@redhat.com>
423
424         * valops.c (value_cast): Move TYPE_CODE_VOID case earlier.
425
426 2012-12-06  Jens Elmenthaler <jens.elmenthaler@advantest.com>
427
428         PR mi/14741:
429         * mi/mi-cmd-var.c (varobj_update_one): Take value of
430         attribute "dynamic" and "displayhint" from printed child,
431         not the root variable.
432
433 2012-12-06  Joel Brobecker  <brobecker@adacore.com>
434
435         * aix-thread.c (getthrds): Fix type of 4th parameter.
436         (get_signaled_thread): Change type of variable ktid to tid_t.
437
438 2012-12-06  Hui Zhu  <hui_zhu@mentor.com>
439
440         * dwarf2loc.c (dwarf_expr_frame_base): Add check for the return
441         value of get_frame_block.
442
443 2012-12-05  Pierre Muller  <muller@sourceware.org>
444
445         Avoid memory leaks on struct cmd_list_element.doc field.
446         * cli/cli-decode.c (add_alias_cmd): Make a copy of doc field
447         if flags contains DOC_ALLOCATED.
448         (add_setshow_cmd_full): Add DOC_ALLOCATED to set and show
449         flags.
450         (delete_cmd): Handle DOC_ALLOCATED flag.
451         * cli/cli-decode.h (DOC_ALLOCATED): New macro for use
452         in flags filed of struct cmd_list_element.
453         (struct cmd_list_element): Document new flag item.
454
455 2012-12-04  Doug Evans  <dje@google.com>
456
457         * symmisc.c: Whitespace fixes.
458
459 2012-12-04  Karthik Bhat  <kv.bhat@samsung.com>
460
461         * i386-tdep.c (i386_skip_prologue): Using symbol table
462         to find the end of prologue for clang compiled binaries.
463         * amd64-tdep.c (amd64_skip_prologue): Using symbol table
464         to find the end of prologue for clang compiled binaries.
465
466 2012-12-03  Doug Evans  <dje@google.com>
467
468         * dwarf2read.c (struct dwarf2_per_objfile): Clarify comment.
469         (dw2_find_symbol_file): Delete unused local file_data.
470
471 2012-12-03  Tom Tromey  <tromey@redhat.com>
472
473         * ada-exp.y (write_object_renaming, write_var_or_type)
474         (write_ambiguous_var, write_var_from_sym): Make blocks const.
475         * ada-lang.c (replace_operator_with_call)
476         (find_old_style_renaming_symbol): Make blocks const.
477         * ada-lang.h (ada_find_renaming_symbol): Update.
478         (struct ada_symbol_info) <block>: Now const.
479         * breakpoint.c (watch_command_1): Update.
480         * breakpoint.h (struct watchpoint) <exp_valid_block,
481         cond_exp_valid_block>: Now const.
482         * c-exp.y (classify_inner_name, classify_name): Make block
483         argument const.
484         * expprint.c (print_subexp_standard) <OP_VAR_VALUE>: Make 'b'
485         const.
486         * expression.h (innermost_block, parse_exp_1): Update.
487         (union exp_element) <block>: Now const.
488         * gdbtypes.c (lookup_template_type, lookup_enum, lookup_union)
489         (lookup_struct): Make block argument const.
490         * gdbtypes.h (lookup_template_type): Update.
491         * go-exp.y (classify_name, classify_packaged_name)
492         (package_name_p): Make block argument const.
493         * objc-lang.c (lookup_struct_typedef): Make block argument const.
494         * objc-lang.h (lookup_struct_typedef): Update.
495         * parse.c (parse_exp_in_context, parse_exp_1)
496         (write_exp_elt_block): Make block arguments const.
497         (expression_context_block, innermost_block): Now const.
498         * parser-defs.h (write_exp_elt_block): Update.
499         (expression_context_block, innermost_block, block_found): Now
500         const.
501         * printcmd.c (struct display) <block>: Now const.
502         * symtab.h (lookup_struct, lookup_union, lookup_enum): Update.
503         * valops.c (address_of_variable): Make block argument const.
504         * value.h (value_of_variable): Update.
505         * varobj.c (struct varobj_root) <valid_block>: Now const.
506
507 2012-11-30  Yao Qi  <yao@codesourcery.com>
508
509         * breakpoint.c (print_one_breakpoint_location): Indent code.
510
511 2012-11-30  Yao Qi  <yao@codesourcery.com>
512
513         * breakpoint.c (print_one_breakpoint_location): Combine two
514         blocks handling 'hit count' together.
515
516 2012-11-30  Yao Qi  <yao@codesourcery.com>
517
518         * infrun.c (error_is_running, ensure_not_running): Move them
519         to ...
520         * infcmd.c (error_is_running, ensure_not_running): ... here.
521         Make them 'static'.
522         * inferior.h: Remove declarations of error_is_running and
523         ensure_not_running.
524
525 2012-11-30  Yao Qi  <yao@codesourcery.com>
526
527         * tic6x-linux-tdep.c (tic6x_register_sigcontext_offset): Don't
528         check REGNUM >= 0.
529
530 2012-11-30  Yao Qi  <yao@codesourcery.com>
531
532         * infrun.c: Make the declaration of 'init_infwait_state'
533         static.
534         (init_infwait_state): Make it 'static'.
535
536 2012-11-29  Ulrich Weigand  <uweigand@de.ibm.com>
537
538         * python/python.c (finalize_python): Cast unused PyGILState_Ensure
539         return value to void to avoid compiler warning.
540
541 2012-11-29  Ulrich Weigand  <uweigand@de.ibm.com>
542
543         * opencl-lang.c (opencl_print_type): New function.
544         (opencl_language_arch_info): Install it.
545
546 2012-11-29  Tom Tromey  <tromey@redhat.com>
547
548         * contrib/ari/gdb_ari.sh: Remove rules for xasprintf and
549         xvasprintf.
550         * common/common-utils.c (xasprintf, xvasprintf): Remove.
551         * common/common-utils.h (xasprintf, xvasprintf): Remove.
552
553 2012-11-29  Jerome Guitton  <guitton@adacore.com>
554
555         * ada-lang.c (ada_is_interface_tag): New function.
556         (ada_is_ignored_field): Add interface tags to the list
557         of ignored fields.
558
559 2012-11-29  Jerome Guitton  <guitton@adacore.com>
560
561         * ada-lang.h (ada_tag_value_at_base_address): New function
562         declaration.
563         * ada-lang.c (is_ada95_tag, ada_tag_value_at_base_address):
564         New functions.
565         (ada_to_fixed_type_1, ada_evaluate_subexp): Let ada_tag_base_address
566         relocate the class-wide value if need be.
567         (ada_value_struct_elt, ada_value_ind, ada_coerce_ref):
568         Let ada_tag_value_at_base_address relocate the class-wide access/ref
569         before dereferencing it.
570         * ada-valprint.c (ada_val_print_1): Relocate to base address
571         before displaying the content of an interface-wide ref.
572
573 2012-11-29  Jerome Guitton  <guitton@adacore.com>
574
575         * ada-lang.c (ada_evaluate_subexp): Unwrap only in EVAL_NORMAL.
576
577 2012-11-29  Joel Brobecker  <brobecker@adacore.com>
578
579         GDB 7.5.1 released.
580
581 2012-11-29  Yao Qi  <yao@codesourcery.com>
582             Tom Tromey  <tromey@redhat.com>
583
584         * eval.c (evaluate_subexp_standard): Get the correct pointer
585         type for TYPE_CODE_MEMBERPTR.
586
587 2012-11-28  Edjunior Machado  <emachado@linux.vnet.ibm.com>
588
589         * rs6000-tdep.c (gdb_print_insn_powerpc): Remove info->mach checking,
590         since now it is being done by binutils' powerpc_init_dialect().
591
592 2012-11-28  Tom Tromey  <tromey@redhat.com>
593
594         PR gdb/14290:
595         * solib-darwin.c (gdb_bfd_mach_o_fat_extract): New function.
596         (darwin_solib_get_all_image_info_addr_at_init, darwin_bfd_open):
597         Use it.
598         * gdb_bfd.h (gdb_bfd_mark_parent): Declare.
599         * gdb_bfd.c (gdb_bfd_mark_parent): New function.
600         (gdb_bfd_openr_next_archived_file): Use it.
601
602 2012-11-28  Markus Metzger <markus.t.metzger@intel.com>
603
604         * configure.ac: Check for linux/perf_event.h.
605         * config.in: Regenerated.
606         * configure: Regenerated.
607
608 2012-11-28  Yao Qi  <yao@codesourcery.com>
609
610         * breakpoint.c (_initialize_breakpoint): Call add_alias_cmd to
611         abbreviate 'delete tracepoints' to 'delete tr'.
612         * corefile.c (_initialize_core): Call add_alias_cmd to
613         abbreviate 'set gnutarget' to 'set g'.
614         * value.c (_initialize_values): Call add_alias_cmd to abbreviate
615         'show convenience' to 'show conv'.
616
617 2012-11-27  Joel Brobecker  <brobecker@adacore.com>
618
619         * sparc-sol2-nat.c (supply_gregset): Fix first parameter in
620         call to sparc_supply_fpregset.
621         (fill_fpregset): Fix first parameter in call to
622         sparc_collect_fpregset.
623
624 2012-11-27  Daniel Jacobowitz  <dan@codesourcery.com>
625             Kazu Hirata  <kazu@codesourcery.com>
626             Yao Qi  <yao@codesourcery.com>
627
628         * objfiles.c (init_entry_point_info): Call
629         gdbarch_convert_from_func_ptr_addr and
630         gdbarch_addr_bits_remove here ...
631         (entry_point_address_query): ... instead of here.
632         * solib-svr4.c (exec_entry_point): Call
633         gdbarch_addr_bits_remove.
634         * symfile.c (generic_load): Call gdbarch_addr_bits_remove on
635         the entry address.
636
637 2012-11-27  Daniel Jacobowitz  <dan@codesourcery.com>
638             Yao Qi  <yao@codesourcery.com>
639
640         * eval.c (evaluate_subexp_standard): Add handling of
641         TYPE_CODE_MEMBERPTR when calling functions.  Correct the
642         result of ptype for calling a TYPE_CODE_METHODPTR.
643
644 2012-11-27  Yao Qi  <yao@codesourcery.com>
645
646         * symtab.c (symtab_symbol_info): Fix a -Wformat-extra-args
647         warning.
648         Add i18n markup.
649
650 2012-11-26  Alexander Larsson  <alexl@redhat.com>
651             Jan Kratochvil  <jan.kratochvil@redhat.com>
652             Tom Tromey  <tromey@redhat.com>
653
654         * NEWS: Mention mini debuginfo feature.
655         * minidebug.c: New file.
656         * configure.ac: Check for lzma.
657         * configure, config.in: Rebuild.
658         * Makefile.in (LIBLZMA): New variable.
659         (CLIBS): Include LIBLZMA.
660         (SFILES): Mention minidebug.c.
661         (COMMON_OBS): Mention minidebug.o.
662         * symfile.c (read_symbols): New function.
663         (syms_from_objfile, reread_symbols): Call it.
664         * symfile.h (find_separate_debug_file_in_section): Declare.
665
666 2012-11-26  Keith Seitz  <keiths@redhat.com>
667
668         * exec.c (exec_file_attach): Move cleanup after verifying that
669         memory has in fact been allocated.
670
671 2012-11-26  Tom Tromey  <tromey@redhat.com>
672
673         * ada-lang.c (user_select_syms): Use SYMBOL_SYMTAB.
674         * dwarf2read.c (dw2_find_symbol_file, fixup_go_packaging): Use
675         SYMBOL_SYMTAB.
676         * skip.c (skip_info): Use SYMBOL_SYMTAB.
677
678 2012-11-26  Maxime Villard  <rustyBSD@gmx.fr>
679             Pedro Alves  <palves@redhat.com>
680
681         * common/linux-osdata.c (linux_xfer_osdata_fds): Decrease buffer
682         size parameter passed to readlink by one byte.
683         * fbsd-nat.c (fbsd_pid_to_exec_file): Ditto.
684         * linux-nat.c (linux_child_pid_to_exec_file): Ditto.
685         * nbsd-nat.c (nbsd_pid_to_exec_file): Ditto.
686         * inf-child.c (inf_child_fileio_readlink): Decrease local buffer's
687         size by one byte.
688
689 2012-11-26  Yao Qi  <yao@codesourcery.com>
690
691         * f-valprint.c (f77_create_arrayprint_offset_tbl): Remove
692         extraneous parentheses.
693
694 2012-11-26  Yao Qi  <yao@codesourcery.com>
695
696         * remote.c (remote_start_remote): Typo fix.
697
698 2012-11-23  David S. Miller  <davem@davemloft.net>
699
700         * sparc-tdep.h (struct sparc_fpregset): New data structure.
701         (sparc32_sunos4_fpregset, sparc32_bsd_fpregset,
702         sparc32_sol2_fpregset): Declare new globals.
703         (sparc32_supply_fpregset, sparc32_collect_fpregset): Add new
704         'fpregset' argument.
705         * sparc64-tdep.h (sparc64_supply_fpregset,
706         sparc64_collect_fpregset): Likewise.
707         (sparc64_sol2_fpregset, sparc64_bsd_fpregset): Declare new
708         globals.
709         * sparc-nat.h (struct sparc_fpregset): Add forward declaration.
710         (sparc_fpregset): Declare new global.
711         (sparc_supply_fpregset, sparc_collect_fpregset): Add new
712         'fpregset' argument.
713         * sparc-linux-nat.c (supply_fpregset): Pass sparc_fpregset down
714         into handler.
715         (fill_fpregset): Likewise.
716         (_initialize_sparc_linux_nat): Set sparc_fpregset to
717         sparc32_bsd_fpregset.
718         * sparc-linux-tdep.c (sparc32_linux_supply_core_fpregset): Pass
719         sparc32_bsd_fpregset down into handler.
720         (sparc32_linux_collect_core_fpregset): Likewise.
721         * sparc-nat.c (sparc_fpregset): Define.
722         (sparc_supply_fpregset): Add 'fpregset' argument.
723         (sparc_collect_fpregset): Likewise.
724         (sparc_fetch_inferior_registers): Pass sparc_fpregset down
725         into fpregset handler.
726         (sparc_store_inferior_registers): Likewise.
727         (_initialize_sparc_nat): Set sparc_fpregset to
728         sparc32_sunos4_fpregset if NULL.
729         * sparc-sol2-nat.c (supply_gregset): Pass sparc_sol2_fpregset
730         down into handler.
731         (fill_fpregset): Likewise.
732         * sparc-sol2-tdep.c (sparc32_sol2_fpregset): Define.
733         * sparc-tdep.c (sparc32_supply_fpregset): Add fpregset arg and
734         use it to compute offsets.
735         (sparc32_collect_fpregset): Likewise.
736         (sparc32_sunos4_fpregset, sparc32_bsd_fpregset): Define.
737         * sparc64-linux-nat.c (supply_fpregset): Pass sparc64_bsd_fpregset
738         down into handler.
739         (fill_fpregset): Likewise.
740         * sparc64-linux-tdep.c (sparc64_linux_supply_core_fpregset):
741         Likewise.
742         (sparc64_linux_collect_core_fpregset): Likewise.
743         * sparc64-sol2-tdep.c (sparc64_sol2_fpregset): Define.
744         * sparc64-tdep.c (sparc64_supply_fpregset): Add fpregset arg and
745         use it to compute offsets.
746         (sparc64_collect_fpregset): Likewise.
747         (sparc64_bsd_fpregset): Define.
748         * sparc64fbsd-tdep.c (sparc64fbsd_supply_fpregset): Padd
749         sparc64_bsd_fpregset down into handler.
750         (sparc64fbsd_collect_fpregset): Likewise.
751         * sparc64nbsd-nat.c (sparc64nbsd_supply_fpregset): Add fpregset arg
752         and pass sparc{32,64}_bsd_fpregset down into handler.
753         (sparc64nbsd_collect_fpregset): Likewise.
754         * sparc64nbsd-tdep.c (sparc64nbsd_supply_fpregset): Pass
755         sparc64_bsd_fpregset down into handler.
756         * sparc64obsd-tdep.c (sparc64obsd_supply_gregset): Likewise.
757         * sparcnbsd-nat.c (_initialize_sparcnbsd_nat): Set sparc_fpregset
758         to sparc32_bsd_fpregset.
759         * sparcnbsd-tdep.c (sparc32nbsd_supply_gregset): Pass
760         sparc32_bsd_fpregset down into sparc32_supply_fpregset.
761         (sparc32nbsd_supply_fpregset): Likewise.
762
763 2012-11-21  Tom Tromey  <tromey@redhat.com>
764
765         * gdbtypes.h (struct cplus_struct_type) <localtype_ptr>: Remove
766         field.
767         (TYPE_LOCALTYPE_PTR, TYPE_LOCALTYPE_FILE, TYPE_LOCALTYPE_LINE):
768         Remove.
769         * c-typeprint.c (c_type_print_base): Update.
770
771 2012-11-21  Yao Qi  <yao@codesourcery.com>
772
773         PR tdep/7438
774         * gdbarch.sh (smash_text_address): Remove.
775         * gdbarch.c, gdbarch.h: Regenerate.
776         * arm-tdep.c (arm_smash_text_address): Remove.
777         (arm_gdbarch_init): Don't call set_gdbarch_smash_text_address.
778         * hppa-tdep.c (hppa_smash_text_address): Remove.
779         (hppa_addr_bits_remove): Rename from hppa_smash_text_address.
780         (hppa_gdbarch_init): Don't call set_gdbarch_smash_text_address.
781         Caller update.
782         * coffread.c (coff_symtab_read): Caller update.
783         * dbxread.c (process_one_symbol): Likewise.
784         * elfread.c (record_minimal_symbol): Likewise.
785         * somread.c (som_symtab_read): Likewise.
786
787 2012-11-20  Pierre Muller  <muller@sourceware.org>
788
789         ARI fixes: sprintf rule.
790         Replace sprintf function calls for char arrays by
791         calls to xsnprintf calls.
792         * arm-tdep.c (arm_push_dummy_call): Replace sprintf by xsnprintf.
793         (arm_dwarf_reg_to_regnum, arm_return_value): Ditto.
794         (arm_neon_quad_read, arm_pseudo_read): Ditto.
795         (arm_neon_quad_write, arm_pseudo_write): Ditto.
796         * breakpoint.c (condition_completer): Ditto.
797         (create_tracepoint_from_upload): Ditto.
798         * dwarf2read.c (file_full_name): Ditto.
799         * gcore.c (gcore_command): Ditto.
800         * gnu-nat.c (proc_string, gnu_pid_to_str): Ditto.
801         * go32-nat.c (go32_sysinfo): Ditto.
802         * interps.c (interp_set): Ditto.
803         * m32c-tdep.c (make_types): Ditto.
804         * ppc-linux-nat.c (fetch_register, store_register): Ditto.
805         * remote-m32r-sdi.c (m32r_open): Ditto.
806         * sol-thread.c (td_err_string): Ditto.
807         (td_state_string, solaris_pid_to_str): Ditto.
808         * symtab.c (gdb_mangle_name): Ditto.
809         * cli/cli-script.c (execute_control_command): Ditto.
810         (define_command, document_command): Ditto.
811         * tui/tui-io.c (tui_rl_display_match_list): Ditto.
812         * tui/tui-stack.c (tui_make_status_line): Ditto.
813         * tui/tui-win.c (tui_update_gdb_sizes): Ditto.
814
815 2012-11-20  Mike Frysinger  <vapier@gentoo.org>
816
817         * cli/cli-decode.c (complete_on_cmdlist): Add a fourth arg and check
818         it when looking at ptr->func.
819         * command.h (complete_on_cmdlist): Add a fourth arg.
820         * completer.c (complete_line_internal): Add local ignore_help_classes,
821         and set it to 1 when reason is not handle_help.  Pass this down to
822         lookup_cmd_1 and complete_on_cmdlist.
823
824 2012-11-20  Tom Tromey  <tromey@redhat.com>
825
826         * completer.c (count_struct_fields): Remove.
827         (expression_completer): Don't call count_struct_fields.
828
829 2012-11-20  Pedro Alves  <palves@redhat.com>
830
831         * annotate.c (breakpoints_changed): Rename to ...
832         (annotate_breakpoints_changed): ... this.
833         (annotate_stopped, breakpoint_changed): Adjust caller.
834         * annotate.h (breakpoints_changed): Rename to ...
835         (annotate_breakpoints_changed): ... this.
836         * breakpoint.c (set_breakpoint_condition, breakpoint_set_commands)
837         (do_map_commands_command, init_raw_breakpoint, clear_command)
838         (set_ignore_count, enable_breakpoint_disp): Adjust callers.
839
840 2012-11-20  David S. Miller  <davem@davemloft.net>
841
842         * common/linux-osdata.c (get_number_of_cpu_cores): Delete.
843         (linux_xfer_osdata_processes): Fetch _SC_NPROCESSORS_ONLN via
844         sysconf.
845         (get_cores_used_by_process): Update comment.
846
847 2012-11-20  Yao Qi  <yao@codesourcery.com>
848
849         * objfiles.c (init_entry_point_info): Remove trailing spaces.
850
851 2012-11-20  Yao Qi  <yao@codesourcery.com>
852
853         * infrun.c (handle_inferior_event): Pass 'saved_singlestep_ptid'
854         to deprecated_context_hook.
855
856 2012-11-19  Yao Qi  <yao@codesourcery.com>
857
858         * infrun.c (infwait_state): Add static.
859
860 2012-11-16  Keith Seitz  <keiths@redhat.com>
861
862         PR c++/13615
863         * cp-namespace.c (cp_lookup_symbol_in_namespace): Add SEARCH
864         parameter and pass it to lookup_symbol_file.
865         (cp_lookup_symbol_imports): Tell cp_lookup_symbol_in_namespace
866         to search base classes.
867         (cp_lookup_symbol_namespace): Likewise.
868         (lookup_namespace_scope): Likewise.
869         (lookup_symbol_file): Add SEARCH parameter.
870         If SEARCH is non-zero and no symbol is found, lookup the class
871         and call cp_lookup_nested_symbol.
872         (find_symbol_in_baseclass): New function.
873         (cp_lookup_nested_symbol): Do not let
874         cp_lookup_symbol_in_namespace search through base classes.
875         Do that later when there is no global symbol match.
876
877 2012-11-16  Doug Evans  <dje@google.com>
878
879         * main.c (gdb_datadir_provided): New static global.
880         (get_init_files): If --data-directory is provided,
881         and SYSTEM_GDBINIT lives in data-directory, look for it there.
882         * NEWS: Mention it.
883
884 2012-11-15  Pierre Muller  <muller@sourceware.org>
885
886         ARI fixes: move gdb_wait and gdb_stat headers to common subdirectory.
887         * gdb_stat.h: Delete. Moved to common directory.
888         * common/gdb_stat.h: New file.
889         * gdb_wait.h: Delete. Moved to common directory.
890         * common/gdb_wait.h: New file.
891         * Makefile.in (H_FILES_NO_SRC): Adapt to new header
892         location.
893         * contrib/ari/gdb_ari.sh (wait.h rule): Adapt to new gdb_wait.h
894         location.
895         (stat.h rule): Adapt to new gdb_stat.h location.
896         * common/linux-osdata.c: Include "gdb_stat.h" header instead of
897         <sys/stat.h> header.
898         * common/linux-ptrace.c: Include "gdb_wait.h" header instead of
899         <sys/wait.h> header.
900
901 2012-11-15  Pierre Muller  <muller@sourceware.org>
902
903         * configure.ac (AC_HEADER_STAT): Remove.
904         * gdb_stat.h (STAT_MACROS_BROKEN): Remove macro use
905         and corresponding code.
906         * configure: Regenerate.
907         * config.in: Regenerate.
908
909 2012-11-15  Pierre Muller  <muller@sourceware.org>
910
911         ARI xasprintf rule fixes.
912         * dwarf2read.c (create_dwo_in_dwp): Use xstrprintf function
913         instead of xasprintf.
914         (open_and_init_dwp_file): Ditto.
915
916 2012-11-14  Luis Machado  <lgustavo@codesourcery.com>
917
918         * value.c (value_actual_type): Check for TYPE_CODE_STRUCT
919         target types.
920
921 2012-11-14  Tom Tromey  <tromey@redhat.com>
922
923         * configure, config.in: Rebuild.
924         * configure.ac: Don't check for ctype.h, time.h.
925         * expprint.c: Don't use HAVE_CTYPE_H.
926
927 2012-11-13  Tom Tromey  <tromey@redhat.com>
928
929         * gdbarch.h, gdbarch.c: Rebuild.
930         * gdbarch.sh (set_target_gdbarch): Rename from
931         deprecated_target_gdbarch_select_hack.
932         * arch-utils.c (gdbarch_update_p): Update.
933         (set_gdbarch_from_file): Update.
934
935 2012-11-14  Pierre Muller  <muller@sourceware.org>
936
937         * MAINTAINERS (Responsible Maintainers/misc): Add myself
938         as responsible of contrib/ari directory.
939
940 2012-11-14  Daniel Jacobowitz  <dan@codesourcery.com>
941             Yao Qi  <yao@codesourcery.com>
942
943         * arm-tdep.c (arm_addr_bits_remove): Do not adjust the low
944         bit of EXC_RETURN.
945         (arm_m_exception_cache, arm_m_exception_this_id)
946         (arm_m_exception_prev_register, arm_m_exception_unwind_sniffer)
947         (arm_m_exception_unwind): New.
948         (arm_gdbarch_init): Register arm_m_exception_unwind.
949
950 2012-11-13  Giuseppe Montalto  <giuseppe.montalto@st.com>
951
952         * mi/mi-main.c (mi_cmd_data_write_memory): Handle additional
953         parameter COUNT, for pattern filling of memory regions.
954         * NEWS: Mention it.
955
956 2012-11-13 Markus Metzger <markus.t.metzger@intel.com>
957
958         * disasm.h (DISASSEMBLY_FILENAME): New macro.
959         * disasm.c (do_mixed_source_and_assembly): Pass filename flag on
960         to print_source_lines ().
961         * symtab.h (PRINT_SOURCE_LINES_FILENAME): New print source lines
962         flag.
963         * source.c (print_source_lines_base): Prefix source line with
964         filename if PRINT_SOURCE_LINES_FILENAME flag is set.
965
966 2012-11-13 Markus Metzger <markus.t.metzger@intel.com>
967
968         * symtab.h (print_source_lines_flags): New enum.
969         * source.c (print_source_lines_base): Change noerror to flags.
970         (print_source_lines): Change noerror to flags.
971
972 2012-11-13  Pierre Muller  <muller@sourceware.org>
973
974         ARI fixes: Avoid sprintf function use rule.
975         * charset.c (convert_between_encodings): Use xsnprintf.
976         * cli-out.c (cli_field_int): Likewise.
977         * cp-namespace.c (cp_lookup_nested_symbol): Likewise.
978         * expprint.c (op_name_standard): Likewise.
979         * frv-tdep.c (set_variant_num_gprs): Likewise.
980         (set_variant_num_fprs): Likewise.
981         * m68hc11-tdep.c (m68hc11_initialize_register_info): Likewise.
982         * nto-tdep.c (nto_find_and_open_solib): Likewise.
983         (nto_init_solib_absolute_prefix): Likewise.
984         * source.c (init_source_path): Likewise.
985         (print_source_lines_base): Likewise.
986         * valprint.c (print_wchar): Likewise.
987         * mi/mi-out.c (mi_field_int): Likewise.
988         windows-nat.c (windows_pid_to_exec_file): Likewise.
989         (windows_create_inferior): Likewise.
990         (_initialize_check_for_gdb_ini): Likewise.
991
992 2012-11-12  Joel Brobecker  <brobecker@adacore.com>
993
994         * frame.h (deprecated_frame_register_read): Renames
995         frame_register_read.
996         * frame.c (deprecated_frame_register_read): Renames
997         frame_register_read.  Update all callers.
998         * i386-tdep.c: Update all callers of frame_register_read.
999         * infcmd.c: Likewise.
1000         * jit.c: Likewise.
1001         * mips-tdep.c: Likewise.
1002         * mt-tdep.c: Likewise.
1003         * sh64-tdep.c: Likewise.
1004
1005 2012-11-12  Joel Brobecker  <brobecker@adacore.com>
1006
1007         * frame.h (frame_register_read): Remove FIXME comment.
1008         * frame.c (frame_register_read): Add suggestion explaining
1009         which function to use in place of this one.
1010
1011 2012-11-12  Tom Tromey  <tromey@redhat.com>
1012
1013         * python/python.c (start_type_printers): Initialize 'result_obj'.
1014
1015 2012-11-12  Tom Tromey  <tromey@redhat.com>
1016
1017         * NEWS: Update.
1018         * data-directory/Makefile.in (PYTHON_FILES): Add
1019         type_printers.py.
1020         * python/lib/gdb/command/type_printers.py: New file.
1021         * python/lib/gdb/command/types.py (TypePrinter): New class.
1022         (_get_some_type_recognizers, get_type_recognizers,
1023         apply_type_recognizers, register_type_printer): New
1024         functions.
1025         * python/py-objfile.c (objfile_object) <type_printers>: New
1026         field.
1027         (objfpy_dealloc): Decref new field.
1028         (objfpy_new): Set new field.
1029         (objfpy_get_type_printers, objfpy_set_type_printers): New
1030         functions.
1031         (objfile_to_objfile_object): Set new field.
1032         (objfile_getset): Add "type_printers".
1033         * python/py-progspace.c (pspace_object) <type_printers>: New
1034         field.
1035         (pspy_dealloc): Decref new field.
1036         (pspy_new): Set new field.
1037         (pspy_get_type_printers, pspy_set_type_printers): New functions.
1038         (pspace_to_pspace_object): Set new field.
1039         (pspace_getset): Add "type_printers".
1040         * python/python.c (start_type_printers, apply_type_printers,
1041         free_type_printers): New functions.
1042         (_initialize_python): Set gdb.type_printers.
1043         * python/python.h (start_type_printers, apply_type_printers,
1044         free_type_printers): Declare.
1045         * typeprint.c (type_print_raw_options, default_ptype_flags):
1046         Update for new fields.
1047         (do_free_global_table, create_global_typedef_table,
1048         find_global_typedef): New functions.
1049         (find_typedef_in_hash): Use find_global_typedef.
1050         (whatis_exp): Use create_global_typedef_table.  Change cleanup
1051         handling.
1052         * typeprint.h (struct type_print_options) <global_typedefs,
1053         global_printers>: New fields.
1054
1055 2012-11-12  Tom Tromey  <tromey@redhat.com>
1056
1057         * c-typeprint.c (find_typedef_for_canonicalize,
1058         print_name_maybe_canonical): New functions.
1059         (c_print_type): Look up type name.
1060         (cp_type_print_derivation_info): Add flags argument.  Use
1061         print_name_maybe_canonical.
1062         (cp_type_print_method_args): Add wrapping.
1063         (c_type_print_varspec_prefix): Use print_name_maybe_canonical.
1064         (c_type_print_template_args): New function.
1065         (c_type_print_base): Change wrapping.  Use
1066         print_name_maybe_canonical.
1067         <TYPE_CODE_STRUCT>: Possibly create a typedef hash, and do
1068         type name lookups.
1069         * gdbtypes.c (types_equal): No longer static.
1070         * gdbtypes.h (types_equal): Declare.
1071         * typeprint.c (type_print_raw_options, default_ptype_flags):
1072         Update.
1073         (struct typedef_hash_table): New.
1074         (hash_typedef_field, eq_typedef_field,
1075         recursively_update_typedef_hash, add_template_parameters,
1076         create_typedef_hash, free_typedef_hash, do_free_typedef_hash,
1077         make_cleanup_free_typedef_hash, copy_typedef_hash_element,
1078         copy_typedef_hash, find_typedef_in_hash): New functions.
1079         * typeprint.h (struct type_print_options) <local_typedefs>:
1080         New field.
1081         (recursively_update_typedef_hash, add_template_parameters,
1082         create_typedef_hash, free_typedef_hash,
1083         make_cleanup_free_typedef_hash, copy_typedef_hash,
1084         find_typedef_in_hash): Declare.
1085
1086 2012-11-12  Tom Tromey  <tromey@redhat.com>
1087
1088         * cp-support.c (inspect_type,
1089         replace_typedefs_qualified_name, replace_typedefs): Add
1090         finder, data arguments.  Call as needed.
1091         (cp_canonicalize_string_full): New function.
1092         (cp_canonicalize_string_no_typedefs): Rewrite.
1093         * cp-support.h (canonicalization_ftype): New typedef.
1094         (cp_canonicalize_string_full): Declare.
1095
1096 2012-11-12  Tom Tromey  <tromey@redhat.com>
1097
1098         * NEWS: Update.
1099         * c-typeprint.c (c_type_print_base): Handle print_method and
1100         print_typedefs flags.
1101         * gdbcmd.h (setprinttypelist, showprinttypelist): Declare.
1102         * python/py-type.c (typy_str): Use LA_PRINT_TYPE and raw
1103         options.
1104         * typeprint.c (type_print_raw_options, default_ptype_flags):
1105         Update for new field.s
1106         (whatis_exp): Parse flags.  Use LA_PRINT_TYPE.
1107         (setprinttypelist, showprinttypelist, print_methods,
1108         print_typedefs): New globals.
1109         (set_print_type, show_print_type, set_print_type_methods,
1110         show_print_type_methods, set_print_type_typedefs,
1111         show_print_type_typedefs): New functions.
1112         (_initialize_typeprint): Update documentation.  Add "print
1113         type methods" and "print type typedefs" parameters.
1114         * typeprint.h (struct type_print_options) <print_methods,
1115         print_typedefs>: New fields.
1116
1117 2012-11-12  Tom Tromey  <tromey@redhat.com>
1118
1119         * c-typeprint.c (cp_type_print_method_args): Add flags
1120         argument.  Call c_print_type, not type_print.
1121         (c_type_print_base): Call c_print_type, not type_print.
1122         Update.
1123
1124 2012-11-12  Tom Tromey  <tromey@redhat.com>
1125
1126         * ada-lang.c (user_select_syms, ada_print_subexp): Pass flags
1127         to type-printing functions.
1128         * ada-lang.h (ada_print_type): Add argument.
1129         * ada-typeprint.c (print_array_type, print_variant_clauses,
1130         print_variant_part, print_selected_record_field_types,
1131         print_record_field_types, print_unchecked_union_type,
1132         print_func_type, ada_print_type): Add flags argument.
1133         (ada_print_typedef): Update.
1134         * c-exp.y (OPERATOR conversion_type_id): Update.
1135         * c-lang.h (c_print_type, c_type_print_base): Update.
1136         * c-typeprint.c (c_print_type, c_type_print_varspec_prefix,
1137         c_type_print_modifier, c_type_print_args,
1138         c_type_print_varspec_suffix, c_type_print_base): Add flags
1139         argument.
1140         * cp-valprint.c (cp_print_class_member): Update.
1141         * dwarf2read.c (dwarf2_compute_name): Update.
1142         * f-lang.h (f_print_type): Add argument.
1143         * f-typeprint.c (f_print_type): Add flags argument.
1144         * gnu-v3-abi.c (gnuv3_print_method_ptr): Update.
1145         * go-lang.h (go_print_type): Add argument.
1146         * go-typeprint.c (go_print_type): Add flags argument.
1147         * jv-lang.h (java_print_type): Add argument.
1148         * jv-typeprint.c (java_type_print_base, java_print_type): Add
1149         flags argument.
1150         * language.c (unk_lang_print_type): Add flags argument.
1151         * language.h (struct language_defn) <la_print_type>: Add flags
1152         argument.
1153         (LA_PRINT_TYPE): Likewise.
1154         * m2-lang.h (m2_print_type): Add argument.
1155         * m2-typeprint.c (m2_print_type, m2_range, m2_typedef,
1156         m2_array, m2_pointer, m2_ref, m2_procedure, m2_long_set,
1157         m2_unbounded_array, m2_record_fields): Add flags argument.
1158         * p-lang.h (pascal_print_type, pascal_type_print_base,
1159         pascal_type_print_varspec_prefix): Add argument.
1160         * p-typeprint.c (pascal_print_type,
1161         pascal_type_print_varspec_prefix, pascal_print_func_args,
1162         pascal_type_print_varspec_suffix, pascal_type_print_base): Add
1163         flags argument.
1164         * symmisc.c (print_symbol): Update.
1165         * typeprint.c (type_print_raw_options, default_ptype_flags):
1166         New globals.
1167         (type_print): Update.
1168         * typeprint.h (struct type_print_options): New.
1169         (type_print_raw_options): Declare.
1170         (c_type_print_varspec_suffix, c_type_print_args): Add argument.
1171
1172 2012-11-10  Keith Seitz  <keiths@redhat.com>
1173
1174         * breakpoint.c (clear_command): Add cleanup for
1175         sals.sals if an argument is given.
1176
1177         * linespec.c (parse_linespec): Do cleanups after
1178         parsing a convenience variable.
1179
1180 2012-11-10  Keith Seitz  <keiths@redhat.com>
1181
1182         PR gdb/14288
1183         * c-valprint.c (c_val_print): For character arrays
1184         with "print null" option on, print ellipses if
1185         the output is truncated and the next character is not \000.
1186         * valprint.c (MAX_WCHARS): Define.
1187         (WCHAR_BUFLEN): Likewise.
1188         (WCHAR_BUFLEN_MAX): Likewise.
1189         (struct converted_character): New structure.
1190         (count_next_character): New function.
1191         (print_converted_chars_to_obstack): New function.
1192         (generic_printstr): Rewrite using count_next_character
1193         and print_converted_chars_to_obstack.
1194
1195 2012-11-10  Stephane Carrez  <Stephane.Carrez@gmail.com>
1196
1197         * tui/tui.c (tui_rl_command_key): Switch to TUI_ONE_COMMAND_MODE
1198         while executing the gdb command.
1199         (tui_rl_startup_hook): Do not switch back to TUI_SINGLE_KEY_MODE if we
1200         are called from prompt_for_continue.
1201         * tui/tui-io.c (tui_redisplay_readline): Likewise.
1202
1203 2012-11-10  Stephane Carrez  <Stephane.Carrez@gmail.com>
1204
1205         PR tui/9584
1206
1207         * tui/tui.c (tui_rl_command_key): Do not call execute_command
1208         but insert the command to execute in readline's buffer.
1209
1210 2012-11-09  Tom Tromey  <tromey@redhat.com>
1211
1212         * gdbarch.sh (target_gdbarch): Remove macro.
1213         (get_target_gdbarch): Rename to target_gdbarch.
1214         * gdbarch.c, gdbarch.h: Rebuild.
1215         * ada-tasks.c, aix-thread.c, amd64-linux-nat.c, arch-utils.c,
1216         arm-tdep.c, auxv.c, breakpoint.c, bsd-uthread.c, corefile.c,
1217         darwin-nat-info.c, dcache.c, dsrec.c, exec.c, fbsd-nat.c,
1218         filesystem.c, gcore.c, gnu-nat.c, i386-darwin-nat.c, i386-nat.c,
1219         ia64-vms-tdep.c, inf-ptrace.c, infcmd.c, jit.c, linux-nat.c,
1220         linux-tdep.c, linux-thread-db.c, m32r-rom.c, memattr.c,
1221         mep-tdep.c, microblaze-tdep.c, mips-linux-nat.c,
1222         mips-linux-tdep.c, mips-tdep.c, monitor.c, moxie-tdep.c,
1223         nto-procfs.c, nto-tdep.c, ppc-linux-nat.c, proc-service.c,
1224         procfs.c, progspace.c, ravenscar-thread.c, record.c,
1225         remote-m32r-sdi.c, remote-mips.c, remote-sim.c, remote.c,
1226         rl78-tdep.c, rs6000-nat.c, rx-tdep.c, s390-nat.c, sol-thread.c,
1227         solib-darwin.c, solib-dsbt.c, solib-frv.c, solib-ia64-hpux.c,
1228         solib-irix.c, solib-pa64.c, solib-som.c, solib-spu.c,
1229         solib-sunos.c, solib-svr4.c, solib.c, spu-linux-nat.c,
1230         spu-multiarch.c, spu-tdep.c, symfile-mem.c, symfile.c, symtab.c,
1231         target-descriptions.c, target.c, target.h, tracepoint.c,
1232         windows-nat.c, windows-tdep.c, xcoffsolib.c, cli/cli-dump.c,
1233         common/agent.c, mi/mi-interp.c, python/py-finishbreakpoint.c,
1234         python/py-inferior.c, python/python.c: Update.
1235
1236 2012-11-09  Andrew Burgess  <aburgess@broadcom.com>
1237
1238         * source.c (print_source_lines_base): Add fullname field giving
1239         full path to file in mi output.
1240         * NEWS: Mention the new fullname field.
1241
1242 2012-11-09  Yao Qi  <yao@codesourcery.com>
1243
1244         * NEWS: Mention the fix to the ambiguity of 'fo' command.
1245
1246 2012-11-09  Pedro Alves  <palves@redhat.com>
1247
1248         PR gdb/14306
1249
1250         * infrun.c: Include target-descriptions.h.
1251         (follow_exec): Fetch new target description.
1252
1253 2012-11-09  Yao Qi  <yao@codesourcery.com>
1254
1255         * i386-tdep.c (i386_analyze_frame_setup): Handle opcode
1256         0x8d (lea).
1257
1258 2012-11-09  Yao Qi  <yao@codesourcery.com>
1259
1260         * breakpoint.c: Declare set_tracepoint_count.
1261         (install_breakpoint): Call set_tracepoint_count if B is a
1262         tracepoint.
1263         (trace_command): Don't call set_tracepoint_count.  Re-indent.
1264         (strace_command, ftrace_command):
1265         (create_tracepoint_from_upload): Likewise.
1266
1267 2012-11-09  Pedro Alves  <palves@redhat.com>
1268
1269         * gdbarch.sh (target_gdbarch) <gdbarch.h>: Reimplement as macro.
1270         (get_target_gdbarch) <gdbarch.h>: New function.
1271         (startup_gdbarch) <gdbarch.h>: Declare.
1272         <gdbarch.c> (target_gdbarch): Delete.
1273         <gdbarch.c> (deprecated_target_gdbarch_select_hack): Set the
1274         current inferior's gdbarch.
1275         <gdbarch.c> (get_target_gdbarch): New function.
1276         * inferior.c: Include target-descriptions.h.
1277         (free_inferior): Free target description info.
1278         (add_inferior_with_spaces): Set the inferior's initial
1279         architecture.
1280         (clone_inferior_command): Copy the original inferior's target
1281         description if it was user specified.
1282         (initialize_inferiors): Add comment.
1283         * inferior.h (struct target_desc_info): Forward declare.
1284         (struct inferior) <gdbarch>: New field.
1285         * linux-nat.c: Include target-descriptions.h.
1286         (linux_child_follow_fork): Copy the parent's architecture and
1287         target description to the child.
1288         * target-descriptions.c: Include inferior.h.
1289         (struct target_desc_info): New structure, holding the equivalents
1290         of ...
1291         (target_desc_fetched, current_target_desc)
1292         (target_description_filename): ... these removed globals.
1293         (get_tdesc_info, target_desc_info_from_user_p)
1294         (copy_inferior_target_desc_info, target_desc_info_free): New.
1295         (target_desc_fetched, current_target_desc)
1296         (target_description_filename): Reimplemented as convenience
1297         macros.
1298         (tdesc_filename_cmd_string): New global.
1299         (set_tdesc_filename_cmd): Copy the string manipulated by the "set
1300         tdescs filename ..." commands to the per-inferior equivalent.
1301         (show_tdesc_filename_cmd): Get the value to show from the
1302         per-inferior description filename.
1303         (_initilize_target_descriptions): Change the "set/show tdesc
1304         filename" commands' variable.
1305         * target-descriptions.h (struct target_desc, struct target_desc_info)
1306         (struct inferior): Forward declare.
1307         (target_find_description, target_clear_description)
1308         (target_current_description): Adjust comments.
1309         (copy_inferior_target_desc_info, target_desc_info_free)
1310         (target_desc_info_from_user_p). Declare.
1311
1312 2012-11-08  Stephane Carrez  <Stephane.Carrez@gmail.com>
1313
1314         * tui/tui-hooks.c (tui_about_to_proceed): New function.
1315         (tui_target_wait_hook): Remove.
1316         (tui_install_hooks): Install the about_to_proceed observer.
1317         (tui_remove_hooks): And remove it here.
1318
1319 2012-11-08  Tom Tromey  <tromey@redhat.com>
1320
1321         * linux-tdep.c (linux_make_siginfo_note): New function.
1322         (linux_make_corefile_notes): Use it.
1323         * corelow.c (get_core_siginfo): New function.
1324         (core_xfer_partial) <TARGET_OBJECT_SIGNAL_INFO>: New case.
1325
1326 2012-11-08  Tom Tromey  <tromey@redhat.com>
1327
1328         PR gdb/14704:
1329         * gdb_bfd.c (gdb_bfd_ref): Set BFD_DECOMPRESS.
1330         (zlib_decompress_section): Remove.
1331         (gdb_bfd_map_section): Only check for compressed section
1332         in mmap case.  Use bfd_get_full_section_contents.
1333         * osabi.c (check_note): Add 'sectsize' argument.  Read
1334         section data.
1335         (generic_elf_osabi_sniff_abi_tag_sections): Don't read
1336         section data.  Update for check_note change.
1337         * xcoffread.c (xcoff_initial_scan): Use
1338         bfd_get_full_section_contents.
1339         * py-auto-load.c (auto_load_section_scripts): Use
1340         bfd_get_full_section_contents.
1341         * contrib/cc-with-tweaks.sh: Add -Z option.
1342
1343 2012-11-08  Tom Tromey  <tromey@redhat.com>
1344
1345         * python/py-bpevent.c: Include defs.h.
1346         * python/py-continueevent.c: Include defs.h.
1347         * python/py-event.c: Include defs.h.
1348         * python/py-event.h: Don't include defs.h.
1349         * python/py-events.h: Don't include defs.h.
1350         * python/py-evts.c: Include defs.h.
1351         * python/py-exitedevent.c: Include defs.h.
1352         * python/py-newobjfileevent.c: Include defs.h.
1353         * python/py-signalevent.c: Include defs.h.
1354         * python/py-stopevent.c: Include defs.h.
1355         * python/py-threadevent.c: Include defs.h.
1356
1357 2012-11-08  Pierre Muller  <muller@sourceware.org>
1358
1359         * update-web-ari.sh (print_heading): Add number of files
1360         checked.
1361         (nb_files): New variable counting the number of sources
1362         files found by gdb_find.sh script.
1363         (debug_awk): New variable to allow extra debug output.
1364         (indexes): Add more information if DEBUG_AWK is set.
1365
1366 2012-11-08  Edjunior Machado  <emachado@linux.vnet.ibm.com>
1367
1368         * ppc-linux-tdep.c (ppc64_standard_linkage1, ppc64_standard_linkage2,
1369         ppc64_standard_linkage3): Mark ld r11 instructions as optional,
1370         following the change in PLT call stubs on linker.
1371
1372 2012-11-08  Pierre Muller  <muller@sourceware.org>
1373
1374         * contrib/ari/gdb_ari.sh (LANG, LC_ALL): Use 'C' instead of 'c'
1375         as default language.
1376         (AWK): Use = instead of == for sh test to avoid warning.
1377         (Linux rule): Correct [:digit] into [[:digit:]].
1378         (__func__ rule): Adapt to "gdb_assert.h" move to common subdirectory.
1379         (vasprintf rule): Adapt to common subdirectory moves.
1380         (xasprintf rule): Idem.
1381         (xvasprintf rule): Idem.
1382         (var_boolean rule): Accept occurence in == or != test.
1383
1384         * contrib/ari/gdb_find.sh: Also prune gdbtk directory.
1385
1386 2012-11-08  Stephane Carrez  <Stephane.Carrez@gmail.com>
1387
1388         * tui/tui-hooks.c (tui_inferior_exit): New function.
1389         (tui_detach_hook): Remove.
1390         (tui_install_hooks): Install the inferior exit observer.
1391         (tui_remove_hooks): Remove it.
1392
1393 2012-11-08  Yao Qi  <yao@codesourcery.com>
1394
1395         PR gdb/14777.
1396         * source.c (_initialize_source): Call add_com_alias to abbreviate
1397         'forward-search' as 'fo'.
1398
1399 2012-11-07  Pedro Alves  <palves@redhat.com>
1400
1401         * arm-tdep.c: Make defs.h be the first include.
1402         * coff-pe-read.c: Ditto.
1403         * gnu-nat.c: Ditto.
1404         * go32-nat.c: Ditto.
1405         * i386-nat.c: Ditto.
1406         * ppcnbsd-nat.c: Ditto.
1407         * ada-varobj.h: Don't include defs.h.
1408         * i386-darwin-tdep.h: Ditto.
1409         * i386-nat.h: Ditto.
1410
1411 2012-11-07  Pedro Alves  <palves@redhat.com>
1412
1413         * MAINTAINERS: New FSF-appointed maintainers replace the Steering
1414         Committee.
1415
1416 2012-11-07  Pierre Muller  <muller@sourceware.org>
1417
1418         * common/linux-osdata.c (dirent.h): ARI fix: Remove.
1419         File already uses "gdb_dirent.h" header.
1420
1421 2012-11-07  Yao Qi  <yao@codesourcery.com>
1422
1423         * breakpoint.c (get_tracepoint_by_number): Remove 'extern int
1424         tracepoint_count'.
1425
1426 2012-11-06  Tom Tromey  <tromey@redhat.com>
1427
1428         * target.h (inferior_has_forked, inferior_has_vforked)
1429         (inferior_has_execd, inferior_has_called_syscall): Remove
1430         declarations.
1431
1432 2012-11-06  Pierre Muller  <muller@sourceware.org>
1433
1434         * remote.c (remote_insert_hw_breakpoint): ARI fix,
1435         add missing internalization markup.
1436
1437 2012-11-06  Pedro Alves  <palves@redhat.com>
1438
1439         PR gdb/14810
1440
1441         * breakpoint.c (bpstat_stop_status): Skip disabled locations.
1442
1443 2012-11-06  Pierre Muller  <muller@sourceware.org>
1444
1445         * contrib/ari/create-web-ari-in-src.sh: Avoid problem if script
1446         is not executable.
1447
1448 2012-11-05  Joel Brobecker  <brobecker@adacore.com>
1449
1450         * gnulib/update-gnulib.sh: New script.
1451
1452 2012-11-05  Stephane Carrez  <Stephane.Carrez@gmail.com>
1453
1454         * MAINTAINERS: Update my email address.
1455
1456 2012-11-05  Tom Tromey  <tromey@redhat.com>
1457
1458         * frame.c (put_frame_register): Don't use temporary buffer.
1459
1460 2012-11-05  Pedro Alves  <palves@redhat.com>
1461
1462         * inferior.c (exit_inferior_1): Clear 'vfork_parent' in the vfork
1463         child.  Clear 'pending_detach'.
1464         * infrun.c (handle_vfork_child_exec_or_exit): Clear
1465         'pending_detach' in the vfork parent.
1466
1467 2012-11-05  Doug Evans  <dje@google.com>
1468
1469         Add support for DWP files.  http://gcc.gnu.org/wiki/DebugFissionDWP
1470         * contrib/cc-with-tweaks.sh: Add -p parameter to invoke dwp.
1471         * dwarf2read.c: #include "elf-bfd.h".
1472         (struct dwarf2_per_objfile): New members dwp_checked, dwp_file.
1473         (dwop_section_names): Renamed from dwo_section names.  All uses
1474         updated.  Add entries for .debug_cu_index, .debug_tu_index.
1475         (struct dwo_file): Rename dwo_name to name, dwo_bfd to dbfd.
1476         All uses updated.
1477         (struct dwp_sections): New type.
1478         (struct virtual_dwo_sections): New type.
1479         (struct dwp_hash_table): New type.
1480         (struct dwp_file): New type.
1481         (init_cutu_and_read_dies): Ensure DWO info/types section has been
1482         read in.  Handle DWOs coming from DWP files.
1483         (lookup_dwo_file_slot): New function.
1484         (dwarf2_locate_dwo_sections): Move definition closer to use.
1485         (create_dwo_debug_info_hash_table_reader): Renamed from
1486         create_debug_info_hash_table_reader.  All callers updated.
1487         (create_dwo_debug_info_hash_table): Renamed from
1488         create_debug_info_hash_table.  All callers updated.
1489         (create_dwp_hash_table): New function.
1490         (locate_virtual_dwo_sections, create_dwo_in_dwp): New functions.
1491         (lookup_dwo_in_dwp): New function.
1492         (try_open_dwop_file): Renamed from try_open_dwo_file.  New parameter
1493         is_dwp.  All callers updated.
1494         (open_dwop_file): Renamed from open_dwo_file.  All callers updated.
1495         (open_and_init_dwo_file): Renamed from init_dwo_file.
1496         All callers updated.
1497         (lookup_dwo_file): Delete.
1498         (dwarf2_locate_dwp_sections): New function.
1499         (hash_dwp_loaded_cutus, eq_dwp_loaded_cutus): New functions.
1500         (allocate_dwp_loaded_cutus_table): New function.
1501         (open_and_init_dwp_file): New function.
1502         (lookup_dwo_cutu): New function.
1503         (lookup_dwo_comp_unit, lookup_dwo_type_unit): Call it.
1504
1505 2012-11-03  Yao Qi  <yao@codesourcery.com>
1506
1507         Fix PR gdb/14617.
1508         * breakpoint.c (trace_pass_set_count): Call
1509         observer_notify_breakpoint_modified instead of
1510         observer_notify_tracepoint_modified.
1511         * mi/mi-cmd-break.c (mi_cmd_break_passcount): Likewise.
1512
1513 2012-11-02  Tom Tromey  <tromey@redhat.com>
1514
1515         * breakpoint.c (catch_syscall_completer): Pass 'word' as second
1516         argument to complete_on_enum.
1517
1518 2012-11-02  Tom Tromey  <tromey@redhat.com>
1519
1520         * configure: Rebuild.
1521         * configure.ac (build_warnings): Add -Wempty-body.
1522         * m68k-tdep.c (m68k_gdbarch_init): Remove empty 'if'.
1523         * remote.c (handle_notification): Use braces for empty 'else' body.
1524         * s390-tdep.c (s390_analyze_prologue): Use braces for empty
1525         'else' body.
1526         * sh64-tdep.c (sh64_push_dummy_call): Use braces for empty
1527         'else' body.
1528         * solib-som.c (som_relocate_section_addresses): Use braces
1529         for empty 'else' body.
1530         * ui-file.c (stdio_file_write): Use braces for empty 'if' body.
1531         (stdio_file_write_async_safe, stdio_file_fputs): Likewise.
1532
1533 2012-11-02  Pedro Alves  <palves@redhat.com>
1534
1535         PR gdb/14766
1536
1537         * infrun.c (handle_inferior_event)
1538         <TARGET_WAITKIND_EXITED/TARGET_WAITKIND_SIGNALLED>: Switch to
1539         null_ptid before handling a vfork child exec or exit.  Switch to
1540         the event ptid afterwards.
1541
1542 2012-11-02  Yao Qi  <yao@codesourcery.com>
1543
1544         * std-operator.def: Remove OP_LABELED.
1545         * eval.c: Remove the declaration of 'get_label'.
1546         (get_label): Remove.
1547         (evaluate_struct_tuple): Remove code handling OP_LABELED.
1548         Update comment.
1549         Remove local variable 'variantno' and related code.
1550         Replace 'substruct_type' with 'struct_type'.  Replace 'subfieldno'
1551         with 'fieldno'.
1552         * expprint.c (print_subexp_standard): Likewise.
1553         (dump_subexp_body_standard): Likewise.
1554         * parse.c (operator_length_standard): Likewise.
1555
1556 2012-11-01  Pierre Muller  <muller@ics.u-strasbg.fr>
1557
1558         Incorporate ARI web page generator into GDB sources.
1559         * contrib/ari/create-web-ari-in-src.sh: New file.
1560         * contrib/ari/gdb_ari.sh: New file.
1561         * contrib/ari/gdb_find.sh: New file.
1562         * contrib/ari/update-web-ari.sh: New file.
1563
1564 2012-10-31  Tom Tromey  <tromey@redhat.com>
1565
1566         * gdbarch.c: Rebuild.
1567         * gdbarch.sh: Remove references to gdbarch_swap.
1568         * corelow.c (core_open): Remove obsolete comment.
1569
1570 2012-10-31  Andrew Burgess  <aburgess@broadcom.com>
1571
1572         PR cli/14772
1573         * c-typeprint.c (c_print_type): Don't print a space for vector
1574         types, this is handled within the suffix.
1575         (c_type_print_varspec_suffix): Add a space to vector suffix.
1576
1577 2012-10-26  Pedro Alves  <palves@redhat.com>
1578
1579         * amd64-tdep.c (amd64_relocate_instruction): Use
1580         store_unsigned_integer instead of memcpy.
1581         * i386-tdep.c (i386_relocate_instruction): Ditto.
1582
1583 2012-10-26  Pedro Alves  <palves@redhat.com>
1584
1585         * infrun.c (handle_inferior_event): Merge handling of
1586         TARGET_WAITKIND_EXITED and TARGET_WAITKIND_SIGNALLED into a single
1587         switch case.
1588
1589 2012-10-26  Pedro Alves  <palves@redhat.com>
1590
1591         * infrun.c (handle_inferior_event) <TARGET_WAITKIND_SIGNALLED>:
1592         Remove comment.
1593
1594 2012-10-26  Pedro Alves  <palves@redhat.com>
1595
1596         * target.c (target_waitstatus_to_string): Handle
1597         TARGET_WAITKIND_VFORK_DONE.
1598
1599 2012-10-26  Pedro Alves  <palves@redhat.com>
1600
1601         * infrun.c (handle_inferior_event): Print TARGET_WAITKIND_VFORKED
1602         as "TARGET_WAITKIND_VFORKED", not "TARGET_WAITKIND_FORKED".
1603
1604 2012-10-24  Tristan Gingold  <gingold@adacore.com>
1605
1606         * ravenscar-sparc-thread.c (ravenscar_sparc_fetch_registers):
1607         Add comments.
1608
1609 2012-10-24  Joel Brobecker  <brobecker@adacore.com>
1610
1611         * ravenscar-thread.c (ravenscar_wait): Only update the list
1612         of threads and inferior_ptid if the inferior is still alive.
1613
1614 2012-10-24  Joel Brobecker  <brobecker@adacore.com>
1615
1616         * ada-lang.c (is_known_support_routine): Use lbasename when
1617         matching the symtab's filename against
1618         known_runtime_file_name_patterns.
1619
1620 2012-10-24  Joel Brobecker  <brobecker@adacore.com>
1621
1622         * ada-lang.c (ada_same_array_size_p): New function.
1623         (ada_promote_array_of_integrals): New function.
1624         (coerce_for_assign): Add handling of arrays where the elements
1625         are integrals of a smaller size than the size of the target
1626         array element type.
1627
1628 2012-10-24  Joel Brobecker  <brobecker@adacore.com>
1629
1630         * doublest.c (convert_doublest_to_floatformat): Fix comparison
1631         against maximum exponent value.
1632
1633 2012-10-24  Joel Brobecker  <brobecker@adacore.com>
1634
1635         * ada-lang.h (ADA_KNOWN_RUNTIME_FILE_NAME_PATTERNS): Add entry for
1636         "unwind-seh.c".
1637
1638 2012-10-24  Joel Brobecker  <brobecker@adacore.com>
1639
1640         * ada-lang.c (ada_template_to_fixed_record_type_1): Do not
1641         strip typedef layer when computing the fixed type's field type,
1642         only when computing its size.
1643
1644 2012-10-24  Mark Kettenis  <kettenis@gnu.org>
1645
1646         PR gdb/12783
1647         * i386-tdep.c (i386_return_value): Handle complex double and long
1648         double.
1649
1650 2012-10-24  Joel Brobecker  <brobecker@adacore.com>
1651
1652         * windows-nat.c (windows_create_inferior) [!__CYGWIN__]:
1653         New local variable args_len.
1654         Quote the name of the executable when computing the command line.
1655
1656 2012-10-23  Mark Kettenis  <kettenis@gnu.org>
1657
1658         PR gdb/12796
1659         PR gdb/12798
1660         PR gdb/12800
1661         * amd64-tdep.h (enum amd64_regnum): Add AMD64_ST1_REGNUM and
1662         AMD64_FTAG_REGNUM.
1663         * amd64-tdep.c (amd64_classify): Classify complex types.
1664         (amd64_return_value): Handle the COMPLEX_X87 class.
1665
1666 2012-10-23  Joel Brobecker  <brobecker@adacore.com>
1667
1668         * rs6000-aix-tdep.c (rs6000_aix_auto_wide_charset): New function.
1669         (rs6000_aix_init_osabi): Set auto_wide_charset gdbarch method.
1670
1671 2012-10-23  Joel Brobecker  <brobecker@adacore.com>
1672
1673         * amd64-windows-tdep.c (amd64_windows_auto_wide_charset): New
1674         function.
1675         (amd64_windows_init_abi): Set auto_wide_charset gdbarch method
1676         to amd64_windows_auto_wide_charset.
1677
1678 2012-10-23  Yao Qi  <yao@codesourcery.com>
1679
1680         * event-top.c (mark_async_signal_handler_wrapper): Remove.
1681         * event-top.h: Remove its declaration.
1682         (async_request_quit): Call mark_async_signal_handler instead of
1683         mark_async_signal_handler_wrapper.
1684         (async_do_nothing, async_disconnect): Likewise.
1685         (async_stop_sig): Likewise.
1686         * remote.c (handle_remote_sigint): Likewise.
1687         (handle_remote_sigint_twice): Likewise.
1688
1689 2012-10-23  Yao Qi  <yao@codesourcery.com>
1690
1691         * event-top.c (sigint_token, sighup_token): Replace 'void *'
1692         with 'static struct async_signal_handler *'.
1693         (sighup_token, sigquit_token, sigstp_token): Likewise.
1694
1695 2012-10-22  Ali Anwar  <ali_anwar@codesourcery.com>
1696
1697         * gdbarch.sh (function_list): Use 'pstring' when printing
1698         a variable which could return NULL.
1699         * gdbarch.c: Regenerate.
1700
1701 2012-10-10  Joel Brobecker  <brobecker@adacore.com>
1702             Tom Tromey  <tromey@redhat.com>
1703
1704         * rs6000-aix-tdep.c (rs6000_aix_osabi_sniffer): Replace
1705         inneffective if condition by gdb assertion.  Add function
1706         description comment.
1707
1708 2012-10-19  Joel Brobecker  <brobecker@adacore.com>
1709
1710         * parser-defs.h (struct exp_descriptor): Document constraint
1711         on return value for "op_name" callbacks.
1712
1713 2012-10-18  Tom Tromey  <tromey@redhat.com>
1714
1715         * tracepoint.c (print_one_static_tracepoint_marker): Constify.
1716         * symtab.c (iterate_over_some_symtabs): Constify.
1717         * source.h (symtab_to_fullname): Return 'const char *'.
1718         * source.c (symtab_to_fullname): Return 'const char *'.
1719         * python/py-symtab.c (stpy_fullname): Constify.
1720         * cli/cli-cmds.c (edit_command): Constify.
1721         * breakpoint.c (print_breakpoint_location)
1722         (update_static_tracepoint): Constify.
1723
1724 2012-10-18  Tom Tromey  <tromey@redhat.com>
1725
1726         * breakpoint.c (compare_breakpoints): Fix comparison.
1727
1728 2012-10-18  Tom Tromey  <tromey@redhat.com>
1729
1730         * valprint.c (generic_emit_char, generic_printstr): Pass size of
1731         gdb_wchar_t to convert_between_encodings.
1732
1733 2012-10-17  Yao Qi  <yao@codesourcery.com>
1734
1735         * breakpoint.c (invalidate_bp_value_on_memory_change): Add one
1736         more parameter 'inferior'.
1737         * corefile.c (write_memory_with_notification): Caller update.
1738
1739         * mi/mi-cmd-var.c: Include "mi-main.h".
1740         (mi_cmd_var_assign): Set mi_suppress_notification.data_write_memory
1741         to 1 and restore it later.
1742         * mi/mi-cmds.c (mi_cmd mi_cmds): Update for "data-write-memory"
1743         and "data-write-memory-bytes.
1744         * mi/mi-interp.c: Include objfiles.h.
1745         (mi_interpreter_init): Call observer_attach_memory_changed.
1746         (mi_memory_changed): New.
1747         * mi/mi-main.h (struct mi_suppress_notification) <memory>:
1748         New field.
1749
1750         * NEWS: Mention new MI notification "memory-changed".
1751
1752 2012-10-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
1753
1754         * dwarf2loc.c (dwarf_expr_reg_to_entry_parameter): Remove comment.
1755
1756 2012-10-15  Doug Evans  <dje@google.com>
1757
1758         New option -nh: inhibit loading of ~/.gdbinit.
1759         * NEWS: Mention -nh.
1760         * main.c (captured_main): Recognize and process -nh.
1761         (print_gdb_help): Mention -nh.
1762         * gdb.1: Mention -nh.  Remove erroneous docs on -nx behavior.
1763
1764 2012-10-15  H.J. Lu  <hongjiu.lu@intel.com>
1765
1766         PR backtrace/14646
1767         PR gdb/14647
1768         * i386-tdep.h (gdbarch_tdep): Remove sp_regnum_from_eax and
1769         pc_regnum_from_eax.
1770         * i386-tdep.c (i386_gdbarch_init): Don't use sp_regnum_from_eax
1771         nor pc_regnum_from_eax.
1772         * amd64-tdep.c (amd64_x32_init_abi): Don't set sp_regnum_from_eax
1773         nor pc_regnum_from_eax.
1774
1775 2012-10-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
1776
1777         Fix entry values resolving in inlined frames.
1778         * dwarf2loc.c (dwarf_expr_reg_to_entry_parameter): Move func_addr,
1779         gdbarch and caller_frame initialization later.  Skip INLINE_FRAME
1780         entries of FRAME.
1781
1782 2012-10-15  Joel Brobecker  <brobecker@adacore.com>
1783
1784         * configure.ac: Build with -DMS_WIN64 if building with Python
1785         enabled using GCC on amd64-windows.
1786         * configure: Regenerate.
1787
1788 2012-10-15  Tom Tromey  <tromey@redhat.com>
1789
1790         PR python/14635:
1791         * python/py-symtab.c (del_objfile_sal): Set 'symtab' field
1792         to Py_None.
1793
1794 2012-10-15  Tom Tromey  <tromey@redhat.com>
1795
1796         PR python/14634:
1797         * python/py-symbol.c (sympy_dealloc): Check for NULL symbol.
1798
1799 2012-10-11  Andrew Burgess  <aburgess@broadcom.com>
1800
1801         * remote-sim.c (gdbsim_create_inferior): Call init_thread_list to
1802         reset thread numbering back to 1.
1803
1804 2012-10-11  Doug Evans  <dje@google.com>
1805
1806         PR breakpoints/14643.
1807         * linespec.c (struct ls_parser): New member keyword_ok.
1808         (linespec_lexer_lex_string): Add comment.
1809         (linespec_lexer_lex_one): Ignore keywords if it's the wrong place
1810         for one.
1811         (parse_linespec): Set keyword_ok.
1812
1813 2012-10-10  Doug Evans  <dje@google.com>
1814
1815         * dwarf2read.c (process_psymtab_comp_unit_reader): Remove duplicate
1816         "0x" prefix on address in log message.
1817
1818         * dwarf2read.c (read_1_byte): Add const to buf parameter.
1819         (read_1_signed_byte, read_2_bytes, read_2_signed_bytes): Ditto.
1820         (read_4_bytes, read_4_signed_bytes, read_8_bytes): Ditto.
1821         (lookup_dwo_file): Add const to dwo_name parameter.
1822         (lookup_dwo_comp_unit, lookup_dwo_type_unit): Ditto.
1823
1824 2012-10-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
1825
1826         Fix crash during stepping on ppc32.
1827         * ppc-linux-tdep.c (powerpc_linux_in_dynsym_resolve_code): Test NULL
1828         SYM.
1829
1830 2012-10-03  Doug Evans  <dje@google.com>
1831
1832         PR symtab/14601
1833         * buildsym.c (buildsym_init): Reset using_directives to NULL.
1834
1835 2012-10-02  Andrew Burgess  <aburgess@broadcom.com>
1836
1837         * remote-sim.c (dump_mem): Always dump buffer contents, zero fill
1838         output and use uint32_t not long to ensure 4 byte size.
1839
1840 2012-10-02  Joel Brobecker  <brobecker@adacore.com>
1841
1842         * rs6000-nat.c (add_vmap): Set "last" to "next" after having
1843         unref'ed it.
1844
1845 2012-10-01  Andrew Burgess  <aburgess@broadcom.com>
1846
1847         * target.c (simple_search_memory): Include access length in
1848         warning message.
1849
1850 2012-09-28  Nathan Miller  <nathanm2@us.ibm.com>
1851             Edjunior Machado  <emachado@linux.vnet.ibm.com>
1852
1853         PR gdb/13989
1854         * solib.c (solib_find): Prevent GDB from loading native libraries when
1855         debugging a cross-target corefile.
1856
1857 2012-09-28  selven  <pcthegreat@gmail.com>
1858
1859         Make definition match declaration.
1860
1861         * regcache.c (regcache_register_status): Change return type to
1862         enum register_status.
1863
1864 2012-09-28  Yao Qi  <yao@codesourcery.com>
1865
1866         * mi/mi-main.c (mi_cmd_data_write_memory): Call
1867         write_memory_with_notification instead of write_memory.
1868         (mi_cmd_data_write_memory_bytes): Call write_memory_with_notification
1869         instead of target_write_memory.
1870
1871 2012-09-28  Yao Qi  <yao@codesourcery.com>
1872
1873         * mi/mi-main.c (mi_cmd_data_write_memory_bytes): Emit error
1874         when the length of content is not an even number.
1875
1876 2012-09-27  Tom Tromey  <tromey@redhat.com>
1877
1878         Fix https://bugzilla.redhat.com/show_bug.cgi?id=849357
1879         * cp-valprint.c (cp_print_value_fields): Use get_vptr_fieldno.
1880
1881 2012-09-27  Joel Brobecker  <brobecker@adacore.com>
1882
1883         * sol-thread.c (sol_thread_fetch_registers)
1884         (sol_thread_store_registers): Delete commented out code.
1885
1886 2012-09-27  Joel Brobecker  <brobecker@adacore.com>
1887
1888         * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
1889         Move these functions to sparc-sol-thread.c.
1890         * sparc-sol-thread.c: New file.
1891         * configure.ac: Add sparc-sol-thread.o to CONFIG_OBS and
1892         sparc-sol-thread.c to CONFIG_SRCS for sparc-solaris native
1893         configurations.
1894         * configure: Regenerate.
1895
1896 2012-09-27  Joel Brobecker  <brobecker@adacore.com>
1897
1898         * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
1899         Remove commented-out code.
1900
1901 2012-09-27  Joel Brobecker  <brobecker@adacore.com>
1902
1903         * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
1904         Enable this code for sparc hosts only.
1905
1906 2012-09-27  Joel Brobecker  <brobecker@adacore.com>
1907
1908         * procfs.h (procfs_find_LDT_entry): Add declaration.
1909         * sol-thread.c (ps_lgetLDT): Delete local declaration of
1910         function procfs_find_LDT_entry.
1911
1912 2012-09-27  Joel Brobecker  <brobecker@adacore.com>
1913
1914         * procfs.c (proc_get_LDT_entry): Make static.
1915
1916 2012-09-27  Joel Brobecker  <brobecker@adacore.com>
1917
1918         * procfs.c (proc_find_memory_regions): Fix declaration.
1919
1920 2012-09-27  Siddhesh Poyarekar  <siddhesh@redhat.com>
1921
1922         * amd64-tdep.c (amd64_return_value): Revert previous change
1923         that used TYPE_LENGTH directly.
1924         * bfin-tdep.c (bfin_extract_return_value): Likewise.
1925         (bfin_store_return_value): Likewise.
1926         * cris-tdep.c (cris_store_return_value): Likewise.
1927         (cris_extract_return_value): Likewise.
1928         * h8300-tdep.c (h8300_extract_return_value): Likewise.
1929         * hppa-tdep.c (hppa64_return_value): Likewise.
1930         * lm32-tdep.c (lm32_store_return_value): Likewise.
1931         * microblaze-tdep.c (microblaze_store_return_value): Likewise.
1932         * spu-tdep.c (spu_value_from_register): Likewise.
1933         * vax-tdep.c (vax_return_value): Likewise.
1934
1935 2012-09-27  Siddhesh Poyarekar  <siddhesh@redhat.com>
1936
1937         * gdbtypes.c (lookup_array_range_type): Expand parameters
1938         LOW_BOUND and HIGH_BOUND to LONGEST.
1939         (lookup_string_range_type): Likewise.
1940         * gdbtypes.h (lookup_array_range_type): Likewise.
1941         (lookup_string_range_type): Likewise.
1942         * valops.c (value_cstring): Expand parameter LEN to ssize_t.
1943         Expand HIGHBOUND to ssize_t.
1944         (value_string): Likewise.
1945         * value.h (value_cstring): Expand parameter LEN to ssize_t.
1946         (value_string): Likewise.
1947
1948 2012-09-27  Yao Qi  <yao@codesourcery.com>
1949
1950         PR breakpoints/13898
1951         * breakpoint.h (tracepoint_breakpoint_ops): Forward declaration.
1952         * mi/mi-cmd-break.c (mi_cmd_break_insert): Set breakpoint_ops
1953         per breakpoint type.
1954
1955 2012-09-26  Pierre Muller  <muller@ics.u-strasbg.fr>
1956
1957         * procfs.c: Add gdb_bfd header.
1958         * rs6000-nat.c: Likewise.
1959         * solib-pa64.c: Likewise.
1960         * spu-linux-nat.c: Likewise.
1961         * windows-nat.c: Likewise.
1962
1963 2012-09-26  Tom Tromey  <tromey@redhat.com>
1964
1965         * f-lang.h (BLANK_COMMON_NAME_LOCAL): Remove.
1966
1967 2012-09-26  Tom Tromey  <tromey@redhat.com>
1968
1969         * dwarf2read.c (mark_common_block_symbol_computed): New function.
1970         (read_common_block): Handle child DIEs with
1971         DW_AT_data_member_location.
1972         (new_symbol_full): Add special case for common blocks.
1973
1974 2012-09-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
1975             Tom Tromey  <tromey@redhat.com>
1976
1977         * dwarf2read.c (read_common_block): Rewrite.
1978         (new_symbol_full): Handle DW_TAG_common_block.
1979         * f-lang.c (head_common_list, find_common_for_function):
1980         Remove.
1981         * f-lang.h (struct common_entry, struct saved_f77_common,
1982         SAVED_F77_COMMON, SAVED_F77_COMMON_PTR, COMMON_ENTRY,
1983         COMMON_ENTRY_PTR, head_common_list, find_common_for_function,
1984         BLANK_COMMON_NAME_LOCAL): Remove.
1985         (struct common_block): New.
1986         * f-valprint.c (list_all_visible_commons): Remove.
1987         (info_common_command_for_block): New function.
1988         (info_common_command): Use it.
1989         * stack.c (iterate_over_block_locals): Special case for
1990         COMMON_BLOCK_DOMAIN.
1991         * symtab.h (enum domain_enum_tag) <COMMON_BLOCK_DOMAIN>: New
1992         constant.
1993         (struct general_symbol_info) <value.common_block>: New field.
1994         (SYMBOL_VALUE_COMMON_BLOCK): New define.
1995
1996 2012-09-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
1997             Tom Tromey  <tromey@redhat.com>
1998
1999         * f-lang.c (allocate_saved_bf_node,
2000         allocate_saved_function_node, allocate_saved_f77_common_node,
2001         allocate_common_entry_node, tail_common_list, current_common,
2002         saved_bf_list, saved_bf_list_end, current_head_bf_list,
2003         tmp_bf_ptr, add_common_block, add_common_entry,
2004         find_first_common_named, patch_common_entries,
2005         patch_all_commons_by_name, ADD_BF_SYMNUM, clear_bf_list,
2006         global_remote_debug, get_bf_for_fcn, saved_function_list,
2007         saved_function_list_end, clear_function_list, struct saved_fcn,
2008         struct saved_bf_symnum, SAVED_FUNCTION, SAVED_FUNCTION_PTR,
2009         SAVED_BF, SAVED_BF_PTR): Remove.
2010         * f-lang.h (tail_common_list, current_common,
2011         UNINITIALIZED_SECNUM, COMMON_NEEDS_PATCHING,
2012         BLANK_COMMON_NAME_ORIGINAL, BLANK_COMMON_NAME_MF77,
2013         DEFAULT_UPPER_BOUND, DEFAULT_LOWER_BOUND, real_main_name,
2014         real_main_c_value): Remove.
2015         * f-valprint.c (there_is_a_visible_common_named): Remove.
2016
2017 2012-09-26  Andrew Burgess  <aburgess@broadcom.com>
2018
2019         * breakpoint.c (update_global_location_list): Ignore previous
2020         duplicate status of a breakpoint when starting a new scan for
2021         duplicate breakpoints.
2022
2023 2012-09-26  Karthik Bhat  <kv.bhat@samsung.com>
2024         PR breakpoints/14419
2025         * arm-tdep.c (arm_skip_prologue): Extending producer check to
2026         support LLVM compiler.
2027
2028 2012-09-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
2029
2030         * amd64-tdep.c (amd64_return_value): Use TYPE_LENGTH directly.
2031         * bfin-tdep.c (bfin_extract_return_value): Likewise.
2032         (bfin_store_return_value): Likewise.
2033         * cris-tdep.c (cris_store_return_value): Likewise.
2034         (cris_extract_return_value): Likewise.
2035         * h8300-tdep.c (h8300_extract_return_value): Likewise.
2036         * hppa-tdep.c (hppa64_return_value): Likewise.
2037         * lm32-tdep.c (lm32_store_return_value): Likewise.
2038         * microblaze-tdep.c (microblaze_store_return_value): Likewise.
2039         * spu-tdep.c (spu_value_from_register): Likewise.
2040         * vax-tdep.c (vax_return_value): Likewise.
2041
2042 2012-09-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
2043
2044         * breakpoint.c (invalidate_bp_value_on_memory_change): Expand
2045         parameter LEN to ssize_t.
2046
2047 2012-09-25  Siddhesh Poyarekar  <siddhesh@redhat.com>
2048
2049         * ada-valprint.c (ada_val_print_1): Eliminate single-use
2050         variable LEN.
2051         * alpha-tdep.c (alpha_extract_return_value): Use TYPE_LENGTH
2052         directly.
2053         (alpha_store_return_value): Likewise.
2054         * amd64-tdep.c (amd64_classify_aggregate): Likewise.
2055         (amd64_push_arguments): Likewise.
2056         * ax-gdb.c (gen_trace_static_fields): Likewise.
2057         (gen_traced_pop): Likewise.
2058         * bfin-tdep.c (bfin_push_dummy_call): Likewise.
2059         * breakpoint.c (update_watchpoint): Likewise.
2060         * findcmd.c (parse_find_args): Use local variable for type
2061         instead of length.
2062         * findvar.c (default_read_var_value): Use TYPE_LENGTH directly.
2063         * h8300-tdep.c (h8300h_extract_return_value): Likewise.
2064         (h8300_store_return_value): Likewise.
2065         * i386-darwin-tdep.c (i386_darwin_push_dummy_call): Likewise.
2066         Use i386_darwin_arg_type_alignment directly.
2067         * infcall.c (call_function_by_hand): Use TYPE_LENGTH directly.
2068         * lm32-tdep.c (lm32_push_dummy_call): Likewise.
2069         * m68hc11-tdep.c (m68hc11_push_dummy_call): Likewise.
2070         (m68hc11_extract_return_value): Likewise.
2071         * mep-tdep.c (mep_push_dummy_call): Likewise.
2072         * printcmd.c (float_type_from_length): Likewise.
2073         * s390-tdep.c (s390_value_from_register): Likewise.
2074         * stack.c (read_frame_arg): Likewise.
2075         * tracepoint.c (encode_actions_1): Likewise.
2076         * valops.c (value_fetch_lazy): Use local variable for type
2077         instead of length.  Use TYPE_LENGTH directly.
2078         * value.c (value_contents_equal): Use TYPE_LENGTH directly.
2079
2080 2012-09-25  Joel Brobecker  <brobecker@adacore.com>
2081
2082         * symtab.c (skip_prologue_sal): Fix typo in comment.
2083
2084 2012-09-25  Joel Brobecker  <brobecker@adacore.com>
2085
2086         * linespec.c (create_sals_line_offset): Fix typo in comment.
2087
2088 2012-09-25  Siddhesh Poyarekar  <siddhesh@redhat.com>
2089
2090         * c-typeprint.c (c_type_print_varspec_suffix): Remove cast and
2091         use plongest to print the array size.
2092
2093 2012-09-24  Siddhesh Poyarekar  <siddhesh@redhat.com>
2094
2095         * m2-typeprint.c (m2_enum): Expand LASTVAL to LONGEST.
2096         * p-valprint.c (pascal_type_print_base): Likewise.
2097
2098 2012-09-22  Yao Qi  <yao@codesourcery.com>
2099
2100         * remote.c (remote_get_trace_status): Remove setting default
2101         values of fields of 'ts'.
2102
2103 2012-09-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
2104
2105         Fix internal error on canonicalization of clang types.
2106         * cp-name-parser.y (operator): New comment at make_operator call for
2107         new, delete, new[] and delete[].
2108         (exp): Use "sizeof ".  Add new comment at make_operator call.
2109
2110 2012-09-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
2111
2112         Fix disassemble without parameters in tailcall frame.
2113         * cli/cli-cmds.c (disassemble_current_function): Use
2114         get_frame_address_in_block.
2115
2116 2012-09-21  Tom Tromey  <tromey@redhat.com>
2117
2118         * c-typeprint.c (c_type_print_base) <TYPE_CODE_STRUCT,
2119         TYPE_CODE_UNION>: Unify, removing a goto.
2120
2121 2012-09-21  Tom Tromey  <tromey@redhat.com>
2122
2123         * c-typeprint.c (cp_type_print_derivation_info): Fix comment.
2124
2125 2012-09-21  Andrew Burgess  <aburgess@broadcom.com>
2126
2127         * findvar.c (read_frame_register_value): Mark the result value as
2128         optimized out if any of the input registers have been optimized out.
2129
2130 2012-09-21  Andreas Schwab  <schwab@linux-m68k.org>
2131
2132         * python/python.c (finalize_python): Only define if HAVE_PYTHON.
2133
2134 2012-09-21  Siddhesh Poyarekar  <siddhesh@redhat.com>
2135
2136         * eval.c (evaluate_subexp_standard): Eliminate single-use
2137         variable LOWER.
2138
2139 2012-09-21  Yao Qi  <yao@codesourcery.com>
2140
2141         * mi/mi-interp.c: Declare mi_record_changed.
2142         (mi_interpreter_init): Call observer_attach_record_changed.
2143         (mi_record_changed): New.
2144         * record.c (record_open): Call observer_notify_record_changed.
2145         (cmd_record_stop): Call observer_notify_record_changed.
2146         * NEWS: Mention it.
2147
2148 2012-09-20  Tom Tromey  <tromey@redhat.com>
2149
2150         * NEWS: Update.
2151         * python/python.c (finalize_python): New function.
2152         (_initialize_python): Make a final cleanup.
2153
2154 2012-09-19  Doug Evans  <dje@google.com>
2155
2156         * buildsym.h (param_symbols): Delete, unused.
2157         (context_stack): Delete member "params", unused.
2158         * buildsym.c (push_context): Update.
2159         * dwarf2read.c (read_func_scope): Update.
2160
2161 2012-09-19  Thomas Schwinge  <thomas@codesourcery.com>
2162
2163         * sh-tdep.c (sh_register_convert_to_virtual)
2164         (sh_register_convert_to_raw): Add a gdbarch parameter.  Update
2165         all callers.  Just do a memcpy if not the little-endian case.
2166
2167         * h8300-tdep.c (h8300_gdbarch_init): Invoke
2168         set_gdbarch_double_format and set_gdbarch_long_double_format.
2169         * m68hc11-tdep.c (m68hc11_gdbarch_init): Invoke
2170         set_gdbarch_double_format.
2171         * sh-tdep.c (sh_gdbarch_init): Likewise.
2172
2173         * NEWS: Document the removal of SH's 'regs' command.
2174         * sh-tdep.c (_initialize_sh_tdep): Remove the deprecated 'regs'
2175         command.
2176
2177 2012-09-18  Sergio Durigan Junior  <sergiodj@redhat.com>
2178
2179         * infcmd.c (_initialize_infcmd): Register `j' as an alias for
2180         `jump'.
2181
2182 2012-09-18  Joel Brobecker  <brobecker@adacore.com>
2183
2184         * linespec.c (iterate_over_all_matching_symtabs): Use the correct
2185         language when iterating over symbols.
2186
2187 2012-09-18  Yao Qi  <yao@codesourcery.com>
2188
2189         * mi/mi-interp.c: Declare mi_tsv_created and mi_tsv_deleted.
2190         (mi_interpreter_init): Call observer_attach_tsv_created and
2191         observer_attach_tsv_deleted.
2192         (mi_tsv_created, mi_tsv_deleted): New.
2193         * tracepoint.c (delete_trace_state_variable): Call
2194         observer_notify_tsv_deleted.
2195         (trace_variable_command): Call observer_notify_tsv_created.
2196         (delete_trace_variable_command): Call
2197         observer_notify_tsv_deleted.
2198         (create_tsv_from_upload): Call observer_notify_tsv_created.
2199         * NEWS: Mention it.
2200
2201 2012-09-18  Yao Qi  <yao@codesourcery.com>
2202
2203         * tracepoint.c (tfind_1): Call observer_notify_traceframe_changed
2204         if traceframe changed.
2205         * mi/mi-cmds.c (mi_cmd mi_cmds): Adjust for command
2206         "trace-find".
2207         * mi/mi-interp.c: Declare 'mi_traceframe_changed'.
2208         (mi_interpreter_init): Hook mi_traceframe_changed to observer
2209         'traceframe_changed'.
2210         (mi_traceframe_changed): New.
2211         * mi/mi-main.h (struct mi_suppress_notification) <traceframe>:
2212         New field.
2213         * NEWS: Mention the new MI notification.
2214
2215 2012-09-17  Mike Wrighton  <wrighton@codesourcery.com>
2216
2217         * MAINTAINERS (Write After Approval): Add "Mike Wrighton".
2218
2219 2012-09-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
2220
2221         * common/linux-ptrace.c: Change __i386__ to __i386__ || __x86_64__.
2222         (linux_ptrace_test_ret_to_nx): Extend comment for x86_64.  Change
2223         __i386__ to __i386__ || __x86_64__. Extend code also for __x86_64__.
2224         Extend code also for PaX support.  Convert all gdb_assert to warning
2225         calls.
2226
2227 2012-09-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
2228
2229         Implement auto-load user conveniences suggested by Doug Evans.
2230         * auto-load.c: Include top.h.
2231         (file_is_auto_load_safe): New variable advice_printed.  Print advice.
2232         (_initialize_auto_load): New variable scripts_directory_help.  Mention
2233         GDBPY_AUTO_FILE_NAME and GDB_AUTO_FILE_NAME for set auto-load
2234         scripts-directory.  Document in online help one can use also files for
2235         set auto-load safe-path.
2236         * python/py-auto-load.c: (GDBPY_AUTO_FILE_NAME): Move it from here ...
2237         * python/python.h (GDBPY_AUTO_FILE_NAME): ... to here.
2238
2239 2012-09-17  Siddhesh Poyarekar  <siddhesh@redhat.com>
2240
2241         * tic6x-tdep.c (tic6x_push_dummy_call): Remove unused definition
2242         of LEN.
2243
2244 2012-09-17  Siddhesh Poyarekar  <siddhesh@redhat.com>
2245
2246         * m2-valprint.c (m2_print_array_contents): Eliminate variable
2247         ELTLEN and use TYPE_LENGTH directly.
2248         (m2_val_print): Likewise.
2249         * m68k-tdep.c (m68k_svr4_extract_return_value): Eliminate
2250         variable LEN and use TYPE_LENGTH directly.
2251         (m68k_svr4_store_return_value): Likewise.
2252         * mips-tdep.c (mips_o32_push_dummy_call): Eliminate variable
2253         ARGLEN and use TYPE_LENGTH directly.
2254         (mips_o64_push_dummy_call): Likewise.
2255         * s390-tdep (s390_function_arg_pass_by_reference): Eliminate
2256         variable LENGTH and use TYPE_LENGTH directly.
2257         (s390_function_arg_float): Likewise.
2258         (s390_function_arg_integer): Likewise.
2259         (s390_push_dummy_call): Likewise.
2260         (s390_return_value_convention): Likewise.
2261         * spu-tdep.c (spu_push_dummy_call): Eliminate LEN and use
2262         TYPE_LENGTH directly.
2263
2264 2012-09-17  Yao Qi  <yao@codesourcery.com>
2265
2266         * cli/cli-decode.c (add_setshow_zuinteger_unlimited_cmd): New.
2267         Update comment to add_setshow_integer_cmd.
2268         * cli/cli-setshow.c (do_set_command): Handle case
2269         'var_zuinteger_unlimited'.
2270         (do_show_command): Likewise.
2271         * cli/cli-cmds.c (init_cmds): Call add_setshow_zuinteger_unlimited_cmd
2272         for command 'remotetimeout'.
2273         * command.h (enum var_types): New zuinteger_unlimited.  Update comment
2274         to var_integer.
2275         * source.c (_initialize_source): Call add_setshow_zuinteger_unlimited_cmd
2276         for command 'set listsize'.
2277
2278 2012-09-17  Siddhesh Poyarekar  <siddhesh@redhat.com>
2279
2280         * infrun.c (restore_infcall_suspend_state): Eliminate single-use
2281         variable LEN.
2282
2283 2012-09-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
2284
2285         PR 14119
2286         * frame.c (skip_inlined_frames): Skip also TAILCALL_FRAME frames.
2287         (frame_pop): Drop also TAILCALL_FRAME frames.
2288         * infcmd.c (finish_command): Ignore also TAILCALL_FRAME frames.
2289
2290 2012-09-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
2291             Pedro Alves  <palves@redhat.com>
2292
2293         PR 14548
2294         * infrun.c (handle_inferior_event): Do not reverse-continue back to the
2295         function start if we are already at function start.  Both for
2296         reverse-next and for reverse-step into function without line number
2297         info.
2298
2299 2012-09-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
2300
2301         Code cleanup - rename 'inline' depth to 'artificial' depth.
2302         * breakpoint.c (set_momentary_breakpoint): Rename at a caller to
2303         frame_id_artificial_p, extend the comment.
2304         * dwarf2-frame-tailcall.c (tailcall_frame_this_id): Rename at a user.
2305         * frame.c (fprint_frame_id): Rename at a user, change debug output
2306         text to "artificial=".
2307         (skip_inlined_frames): Rename to ...
2308         (skip_artificial_frames): ... here.  Extend the comment.
2309         (get_stack_frame_id, frame_unwind_caller_id): Rename at a caller.
2310         (frame_id_inlined_p): Rename to ...
2311         (frame_id_artificial_p): ... here.  Rename at a user.
2312         (frame_id_eq, frame_id_inner, frame_unwind_caller_pc)
2313         (frame_unwind_caller_pc_if_available, frame_unwind_caller_arch): Rename
2314         at a user.
2315         * frame.h (struct frame_id): Rename inline_depth to artificial_depth.
2316         Extend the comment.
2317         (frame_id_inlined_p): Rename to ...
2318         (frame_id_artificial_p): ... here.
2319         * inline-frame.c (inline_frame_this_id): Rename at a user.
2320
2321 2012-09-14  Andrew Burgess  <aburgess@broadcom.com>
2322
2323         * c-typeprint.c (c_type_print_varspec_suffix): Display the size of
2324         vector variables using vector_size syntax rather than array
2325         syntax.
2326
2327 2012-09-14  Siddhesh Poyarekar  <siddhesh@redhat.com>
2328
2329         * valarith.c (value_concat): Replace unsafe ALLOCA with
2330         XMALLOC/XFREE.
2331
2332 2012-09-14  Pedro Alves  <palves@redhat.com>
2333
2334         * gdb.1 (SEE ALSO): Expand pointer to GDB's Texinfo manual.
2335
2336 2012-09-14  Khoo Yit Phang  <khooyp@cs.umd.edu>
2337
2338         Point contrib/cc-with-tweaks.sh to the build-local data-directory.
2339         * contrib/cc-with-tweaks.sh (GDB): Add -data-directory
2340         data-directory as appropriate.
2341
2342 2012-09-14  Siddhesh Poyarekar  <siddhesh@redhat.com>
2343
2344         * printcmd.c (ui_printf): Eliminate single-use variable
2345         PARAM_LEN.
2346
2347 2012-09-14  Yao Qi  <yao@codesourcery.com>
2348             Pedro Alves  <palves@redhat.com>
2349
2350         * valops.c (value_assign): Move observer_notify_target_changed
2351         below to replace reinit_frame_cache.
2352
2353 2012-09-13  Khoo Yit Phang  <khooyp@cs.umd.edu>
2354
2355         Refactor Python "gdb" module into a proper Python package, by
2356         introducing a new "_gdb" module for code implemented in C, and
2357         using reload/__import__ instead of exec.
2358         * python/lib/gdb/__init__.py: Import * from _gdb.
2359         (GdbOutputFile, sys.stdout, GdbOutputErrorFile, sys.stderr,
2360         prompt_hook, sys.argv): Moved from finish_python_initialization.
2361         (pretty_printers, PYTHONDIR): Moved from _initialize_python.
2362         (packages, auto_load_packages): New list and function replacing
2363         module_dict and auto-loading code, using __file__ instead of
2364         gdb.PYTHONDIR and reload/__import__ instead of exec.
2365         (GdbSetPythonDirectory): Replacing function of the same name
2366         from finish_python_initialization, using reload/__import__ instead
2367         of exec, as well as call auto_load_packages.
2368         * python/py-prettyprint.c (find_pretty_printer_from_gdb): Check
2369         gdb_python_module and not gdb_module.
2370         * python/python-internal.h (gdb_python_module): Declare.
2371         * python/python.c (gdb_python_module): New global.
2372         (before_prompt_hook): Check gdb_python_module and not gdb_module.
2373         (_initialize_python): Rename gdb module to _gdb.
2374         Move gdb.PYTHONDIR and gdb.pretty_printer to lib/gdb/__init__.py.
2375         (finish_python_initialization): Move Python code to
2376         lib/gdb/__init__.py; instead, set up sys.path and import gdb into
2377         __main__.
2378
2379 2012-09-13  Pedro Alves  <palves@redhat.com>
2380
2381         * Makefile.in (COMMON_OBS): Add registry.o.
2382         * registry.c: New file.
2383         * registry.h (struct registry_container): Declare.
2384         (registry_data_callback): New typedef.
2385         (struct registry_data, struct registry_data_registration, struct
2386         registry_data_registry): New type.
2387         (register_data_with_cleanup, registry_alloc_data)
2388         (registry_callback_adaptor, registry_clear_data)
2389         (registry_container_free_data, registry_set_data, registry_data):
2390         Declare.
2391         (DEFINE_REGISTRY): Refactor structures and functions as shims over
2392         the new common structures and functions.
2393         (DECLARE_REGISTRY): Declare struct TAG ## _data.  Use the tagged
2394         callback typedefs.
2395
2396 2012-09-12  Mike Wrighton  <wrighton@codesourcery.com>
2397
2398         * remote.c (remote_insert_hw_breakpoint): Throw exception if
2399         there is an error inserting hardware breakpoints and use the
2400         error message from the target.
2401
2402         * breakpoint.c (insert_bp_location, insert_breakpoint_locations):
2403         Catch this exception and print the error message contained within. Do not
2404         print the default hardware error breakpoint message in this case.
2405
2406 2012-09-12  Doug Evans  <dje@google.com>
2407
2408         * dwarf2read.c (dwarf2_read_addr_index): Fix handling the case where
2409         cu == NULL.
2410
2411 2012-09-11  Doug Evans  <dje@google.com>
2412
2413         * dwarf2read.c (dw2_do_expand_symtabs_matching): Don't examine
2414         .gdb_index symbol attributes if there are none.
2415
2416 2012-09-11  Joel Brobecker  <brobecker@adacore.com>
2417
2418         * symtab.h (struct minimal_symbol) [has_size]: New field.
2419         (MSYMBOL_SIZE): Adjust to forbid macro from being used as lvalue.
2420         (SET_MSYMBOL_SIZE, MSYMBOL_HAS_SIZE): New macros.
2421         * printcmd.c (build_address_symbolic): Only filter out zero-sized
2422         minimal symbols if the symbol's size is actually known.
2423         * minsyms.c (prim_record_minimal_symbol_full): Adjust setting
2424         of msymbol's size field.  Add comment.
2425         * elfread.c (elf_symtab_read, elf_rel_plt_read): Use
2426         SET_MSYMBOL_SIZE to set the minimal symbol size.
2427
2428 2012-09-11  Joel Brobecker  <brobecker@adacore.com>
2429
2430         * minsyms.c (install_minimal_symbols): Use memset to fill entire
2431         minimal_symbol struct object, rather than setting some of its
2432         fields one by one.
2433
2434 2012-09-11  Andrew Burgess  <aburgess@broadcom.com>
2435
2436         * c-typeprint.c (c_type_print_varspec_prefix): Pass through the
2437         passed_a_ptr flag when displaying typedef types.
2438
2439 2012-09-10  Joel Brobecker  <brobecker@adacore.com>
2440
2441         * ada-lang.c (coerce_unspec_val_to_type): Make sure that
2442         the optimized_out flag is preserved.
2443
2444 2012-09-10  Anthony Green  <green@moxielogic.com>
2445
2446         * moxie-tdep.c (moxie_analyze_prologue): Update for function
2447         prologue changes in GCC.
2448
2449 2012-09-10  Keith Seitz  <keiths@redhat.com>
2450
2451         PR gdb/13483
2452         * gdbtypes.h (BOOL_PTR_CONVERSION_BADNESS): Rename to ...
2453         (BOOL_CONVERSION_BADNESS): ... this.
2454         * gdbtypes.c (BOOL_PTR_CONVERSION_BADNESS): Likewise.
2455         (rank_one_type): Allow all boolean conversions
2456         permitted by the standard.
2457
2458 2012-09-06  Tom Tromey  <tromey@redhat.com>
2459
2460         * python/py-newobjfileevent.c (create_new_objfile_event_object):
2461         Don't decref py_objfile.
2462
2463 2012-09-02  Khoo Yit Phang  <khooyp@cs.umd.edu>
2464
2465         Do not enable -lmcheck by default when Python is enabled with
2466         threading support.
2467         * configure.ac: (python_has_threads) New variable, by testing
2468         if WITH_THREAD is defined in Python.h.
2469         Move --enable-lmcheck after --with-python.
2470         Do not enable -lmcheck by default if python_has_threads=yes.
2471         Warn if --enable-lmcheck and python_has_threads=yes.
2472         * configure: Regenerate.
2473
2474 2012-08-31  Yao Qi  <yao@codesourcery.com>
2475
2476         * mi/mi-cmds.c (mi_cmds): New macros DEF_MI_CMD_CLI
2477         DEF_MI_CMD_MI DEF_MI_CMD_CLI_1 and DEF_MI_CMD_CLI_1.
2478         Update some commands.
2479         * mi/mi-cmds.h (struct mi_cmd) <suppress_notification>: New field.
2480         * mi/mi-main.c (mi_cmd_execute): Set '*parse->cmd->suppress_notification'
2481         to 1.
2482
2483 2012-08-31  Yao Qi  <yao@codesourcery.com>
2484
2485         * mi/mi-cmds.c (mi_cmds): Add 'static'.
2486
2487 2012-08-30  Khoo Yit Phang  <khooyp@cs.umd.edu>
2488
2489         * MAINTAINERS (Write After Approval): Add "Khoo Yit Phang".
2490
2491 2012-08-29  Doug Evans  <dje@google.com>
2492
2493         * main.c (print_gdb_help): Remove reference to
2494         --use-deprecated-index-sections.
2495
2496 2012-08-28  Yao Qi  <yao@codesourcery.com>
2497
2498         * cli/cli-cmds.c (max_user_call_depth): Add 'unsigned'.
2499         (init_cmds): Call add_setshow_uinteger_cmd for command
2500         'max-user-call-depth'.
2501         * cli/cli-script.c (execute_user_command): Add 'unsigned' to the
2502         declaration of 'max_user_call_depth'.
2503         * frame.c (backtrace_limit): Add 'unsigned'.
2504         (_initialize_frame): Call add_setshow_uinteger_cmd for command
2505         'limit'.
2506         * remote.c (remoteaddresssize): Add 'unsigned'.
2507         (remote_address_masked): Change local var 'address_size' to
2508         'unsigned'.
2509         (_initialize_remote): Call add_setshow_uinteger_cmd for
2510         'remoteaddresssize'.
2511         * top.c (history_size): Add 'unsigned'.
2512         (show_commands): Change local variables to 'unsigned'.
2513         (set_history_size_command): Don't check history_size is negative.
2514         Adjust the condition to call unstifle_history and set history_size
2515         to UNIT_MAX.
2516
2517 2012-08-28  Pedro Alves  <palves@redhat.com>
2518
2519         PR gdb/14428
2520
2521         * infcmd.c (default_print_one_register_info): New, factored out
2522         from default_print_registers_info.
2523         (default_print_registers_info): Use it.  Mark value unavailable if
2524         necessary.
2525         (registers_info): Print user registers with
2526         default_print_one_register_info.
2527
2528 2010-08-27  H.J. Lu  <hongjiu.lu@intel.com>
2529
2530         PR tui/14486
2531         * tui/tui-source.c (tui_source_is_displayed): Check if TUI_SRC_WIN
2532         is not NULL before referencing it.
2533
2534 2012-08-27  Jan Kratochvil  <jan.kratochvil@redhat.com>
2535
2536         * breakpoint.c (parse_breakpoint_sals) <(*address) == NULL>: New
2537         variable pc.  Call find_pc_line instead of find_pc_overlay, restore
2538         original PC for it.
2539
2540 2012-08-27  Eli Zaretskii  <eliz@gnu.org>
2541             Jan Kratochvil  <jan.kratochvil@redhat.com>
2542
2543         * auto-load.c (auto_load_objfile_script): Rename to ...
2544         (auto_load_objfile_script_1): ... here, change variable realname to
2545         parameter realname, document it, add return value, add variable retval.
2546         (auto_load_objfile_script): New function.
2547
2548 2012-08-27  Jan Kratochvil  <jan.kratochvil@redhat.com>
2549
2550         * cli/cli-decode.c (print_doc_line): Keep skipping '.' and ',' not
2551         followed by a whitespace.
2552
2553 2012-08-27  Jan Kratochvil  <jan.kratochvil@redhat.com>
2554
2555         PR gdb/14494.
2556         * dwarf2read.c (dwarf2_locate_sections): Move variable aflag here.
2557         Move the SEC_HAS_CONTENTS check here - for any NAMES use.
2558         (dwarf2_locate_sections) <eh_frame>: Move the variable and check from
2559         here.
2560
2561 2012-08-27  Wei-cheng Wang  <cole945@gmail.com>
2562
2563         * memattr.c (create_mem_region): Fix memory region overlapping
2564         checking.
2565
2566 2012-08-24  Siddhesh Poyarekar  <siddhesh@redhat.com>
2567
2568         * h8300-tdep.c (h8300_push_dummy_call): Replace unsafe alloca
2569         with xmalloc/cleanup.
2570         * mt-tdep.c (mt_push_dummy_call): Likewise.
2571         * tilegx-tdep.c (tilegx_push_dummy_call): Likewise.
2572         * xstormy16-tdep.c (xstormy16_push_dummy_call): Likewise.
2573
2574 2012-08-24  Yao Qi  <yao@codesourcery.com>
2575
2576         * jv-exp.y (push_expression_name): Add "." at the end of error
2577         message.
2578
2579 2012-08-23  Khoo Yit Phang <khooyp@cs.umd.edu>
2580
2581         Document how to return from "python-interactive" to GDB.
2582         * python/python.c (_initialize_python): Update documentation.
2583
2584 2012-08-23  Pedro Alves  <palves@redhat.com>
2585
2586         * infrun.c (_initialize_infrun) <handle command help text>:
2587         Mention that multiple signals are supported.
2588
2589 2012-08-23  Pedro Alves  <palves@redhat.com>
2590
2591         * infcmd.c (_initialize_infcmd) <signal command>: Fix typo in help
2592         string.
2593
2594 2012-08-23  Yao Qi  <yao@codesourcery.com>
2595
2596         * tracepoint.c (disconnect_tracing): Call set_tracepoint_num.
2597         (tfind_1): Don't call registers_changed, set_traceframe_num,
2598         and clear_traceframe_info.
2599         Call set_current_traceframe.
2600         (set_current_traceframe): call set_traceframe_num.
2601
2602 2012-08-22  Sergio Durigan Junior  <sergiodj@redhat.com>
2603
2604         * remote-sim.c (_initialize_remote_sim): Pass NULL argument to
2605         `register_inferior_data_with_cleanup', fixing regression on PowerPC64.
2606
2607 2012-08-22  Khoo Yit Phang <khooyp@cs.umd.edu>
2608
2609         Enable readline in Python in a GDB-specific way and block the
2610         standard Python readline module to prevent conflicts with GDB.
2611         * Makefile.in (SUBDIR_PYTHON_OBS): Add py-gdb-readline.o.
2612         (SUBDIR_PYTHON_SRCS): Add python/py-gdb-readline.c.
2613         (py-gdb-readline.o): Add rule to compile python/py-gdb-readline.c.
2614         * python/py-gdb-readline.c: New file.
2615         * python/python-internal.h (gdbpy_initialize_gdb_readline): New
2616         prototype.
2617         * python/python.c (_initialize_python): Call
2618         gdbpy_initialize_gdb_readline.
2619
2620 2012-08-22  Keith Seitz  <keiths@redhat.com>
2621
2622         * defs.h: Include build-gnulib/config.h
2623
2624 2012-08-22  Joseph Myers  <joseph@codesourcery.com>
2625
2626         * arm-tdep.c (thumb_get_next_pc_raw): Mask off low bits for bx pc
2627         and blx pc.
2628
2629 2012-08-22  Khoo Yit Phang <khooyp@cs.umd.edu>
2630
2631         Add a new "python-interactive" command that starts a standard
2632         Python interactive prompt with "pi" as alias, and add "py" as
2633         an alias to "python".
2634         * NEWS: Mention the new commands.
2635         * python/python.c (eval_python_command): New function.
2636         (python_interactive_command): For "python-interactive" with
2637         arguments, call eval_python_command.  For "python-interactive"
2638         without arguments, call PyRun_InteractiveLoop.
2639         (_initialize_python): Add "python-interactive" command with
2640         "pi" as alias, and add "py" as an alias to "python".
2641
2642 2012-08-22  Tom Tromey  <tromey@redhat.com>
2643
2644         * defs.h (quit_flag): Don't declare.
2645         (clear_quit_flag, check_quit_flag, set_quit_flag): Declare.
2646         (QUIT): Use new functions.
2647         * event-top.c (command_handler): Use clear_quit_flag.
2648         (handle_sigint): Use set_quit_flag.
2649         (async_request_quit): Use check_quit_flag.  Don't check
2650         immediate_quit.
2651         * exceptions.c (throw_exception): Use clear_quit_flag.
2652         * main.c (captured_main): Use clear_quit_flag.
2653         * python/python.c (clear_quit_flag, set_quit_flag)
2654         (check_quit_flag): New functions.
2655         * remote-sim.c (gdb_os_poll_quit): Use check_quit_flag,
2656         clear_quit_flag.
2657         * remote.c (remote_wait_as): Use check_quit_flag,
2658         clear_quit_flag.
2659         (remote_start_remote): Call QUIT.
2660         * symfile.c (load_progress): Use check_quit_flag.
2661         * top.c (command_loop): Use clear_quit_flag.
2662         (command_line_input): Call QUIT.
2663         * utils.c (quit_flag): Conditionally define.
2664         (clear_quit_flag, check_quit_flag, set_quit_flag): New
2665         functions.
2666         (prompt_for_continue): Call QUIT.  Use quit, not
2667         async_request_quit.
2668         * remote-mips.c (mips_expect_timeout): Call QUIT.
2669         * monitor.c (monitor_expect): Call QUIT.
2670
2671 2012-08-22  Tom Tromey  <tromey@redhat.com>
2672
2673         * event-top.c (sigwinch_token, handle_sigwinch): Remove.
2674         (async_init_signals): Update.
2675         * utils.c (init_page_info): Don't use SIGWINCH_HANDLER.
2676         (SIGWINCH_HANDLER_BODY): Remove.
2677
2678 2012-08-22  Tom Tromey  <tromey@redhat.com>
2679
2680         * jit.c (jit_object_close_impl): Don't malloc the objfile
2681         name.
2682         * objfiles.c (allocate_objfile): Don't malloc the objfile
2683         name.
2684         (free_objfile): Don't free the objfile name.
2685         * objfiles.h (struct objfile) <name>: Update comment.
2686         * symfile.c (reread_symbols): Fix reference counting.  Don't
2687         malloc objfile name.
2688
2689 2012-08-22  Tom Tromey  <tromey@redhat.com>
2690
2691         * windows-nat.c (windows_make_so): Use gdb_bfd_open.
2692         * symfile.c (bfd_open_maybe_remote): Use gdb_bfd_open.
2693         (symfile_bfd_open): Likewise.
2694         (generic_load): Likewise.
2695         * solib.c (solib_bfd_fopen): Use gdb_bfd_open.
2696         * solib-pa64.c (pa64_solib_create_inferior_hook): Use
2697         gdb_bfd_open.
2698         * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
2699         Use gdb_bfd_open.
2700         * rs6000-nat.c (add_vmap): Use gdb_bfd_open.
2701         * remote-mips.c (mips_load_srec): Use gdb_bfd_open.
2702         (pmon_load_fast): Likewise.
2703         * remote-m32r-sdi.c (m32r_load): Use gdb_bfd_open.
2704         * procfs.c (insert_dbx_link_bpt_in_file): Use gdb_bfd_open.
2705         * machoread.c (macho_symfile_read_all_oso): Use gdb_bfd_open.
2706         (macho_check_dsym): Likewise.
2707         * m32r-rom.c (m32r_load): Use gdb_bfd_open.
2708         (m32r_upload_command): Likewise.
2709         * gdb_bfd.h (gdb_bfd_cache): Declare.
2710         * gdb_bfd.c (struct gdb_bfd_data): New.
2711         (gdb_bfd_cache): New global.
2712         (struct gdb_bfd_cache_search): New.
2713         (hash_bfd): New function.
2714         (eq_bfd): Likewise.
2715         (gdb_bfd_open): Likewise.
2716         (gdb_bfd_ref): Allocate a gdb_bfd_data and attach to the BFD.
2717         (gdb_bfd_unref): Remove closed BFD from cache.  Update for
2718         gdb_bfd_data.
2719         * exec.c (exec_file_attach): Use gdb_bfd_open.
2720         * dsrec.c (load_srec): Use gdb_bfd_open.
2721
2722 2012-08-22  Tom Tromey  <tromey@redhat.com>
2723
2724         * dwarf2read.c (macro_start_file): Update.
2725         * objfiles.c (get_objfile_bfd_data): Initialize macro_cache.
2726         (free_objfile_per_bfd_storage): Destroy macro_cache.
2727         (allocate_objfile, free_objfile): Update.
2728         * objfiles.h (struct objfile_per_bfd_storage) <macro_cache>:
2729         New field.
2730         (struct objfile) <macro_cache>: Remove.
2731         * symfile.c (reread_symbols): Update.
2732         * symmisc.c (print_symbol_bcache_statistics): Update.
2733         (print_objfile_statistics): Update.
2734
2735 2012-08-22  Tom Tromey  <tromey@redhat.com>
2736
2737         * elfread.c (elf_symtab_read): Update.
2738         * objfiles.c (objfiles_bfd_data): New global.
2739         (get_objfile_bfd_data, free_objfile_per_bfd_storage)
2740         (objfile_bfd_data_free, set_objfile_per_bfd): New functions.
2741         (allocate_objfile, free_objfile): Update.
2742         (_initialize_objfiles): Initialize objfiles_bfd_data.
2743         * objfiles.h (struct objfile_per_bfd_storage): New.
2744         (struct objfile) <per_bfd>: New field.
2745         <filename_cache>: Remove.
2746         (set_objfile_per_bfd): Declare.
2747         * symfile.c (reread_symbols): Update.  Call
2748         set_objfile_per_bfd.
2749         (allocate_symtab): Update.
2750         * symmisc.c (print_symbol_bcache_statistics): Update.
2751         (print_objfile_statistics): Print the size of the BFD obstack.
2752
2753 2012-08-22  Tom Tromey  <tromey@redhat.com>
2754
2755         * gdb_bfd.h: Include registry.h.  Use DECLARE_REGISTRY.
2756         * gdb_bfd.c: Use DEFINE_REGISTRY.
2757         (struct gdb_bfd_data): Add REGISTRY_FIELDS.
2758         (gdb_bfd_ref): Call bfd_alloc_data.
2759         (gdb_bfd_unref): Call bfd_free_data.
2760
2761 2012-08-22  Tom Tromey  <tromey@redhat.com>
2762
2763         * registry.h (struct registry_fields): New.
2764         (REGISTRY_FIELDS): Redefine.
2765         (REGISTRY_ACCESS_FIELD): New macro.
2766         (DEFINE_REGISTRY): Add ACCESS argument.  Update defined
2767         functions.
2768
2769 2012-08-22  Tom Tromey  <tromey@redhat.com>
2770
2771         * auto-load.c (_initialize_auto_load): Update.
2772         * solib-svr4.c (_initialize_svr4_solib): Update
2773         * solib-dsbt.c (_initialize_dsbt_solib): Update.
2774         * solib-darwin.c (_initialize_darwin_solib): Update.
2775         * registry.h: New file.
2776         * python/py-progspace.c (gdbpy_initialize_pspace): Update.
2777         * python/py-inferior.c (gdbpy_initialize_inferior): Update.
2778         * progspace.h: Include registry.h.  Use DECLARE_REGISTRY.
2779         (register_program_space_data_with_cleanup)
2780         (register_program_space_data, program_space_alloc_data)
2781         (clear_program_space_data, set_program_space_data)
2782         (program_space_data): Don't declare.
2783         * progspace.c: Use DEFINE_REGISTRY.
2784         (struct program_space_data, struct
2785         program_space_data_registration, struct
2786         program_space_data_registry, program_space_data_registry)
2787         (register_program_space_data_with_cleanup)
2788         (register_program_space_data, program_space_alloc_data)
2789         (program_space_free_data, clear_program_space_data)
2790         (set_program_space_data, program_space_data): Remove.
2791         * objfiles.h: Include registry.h.  Use DECLARE_REGISTRY.
2792         (struct objfile) <data, num_data>: Replace with REGISTRY_FIELDS.
2793         (register_objfile_data_with_cleanup, register_objfile_data)
2794         (clear_objfile_data, set_objfile_data, objfile_data): Don't
2795         declare.
2796         * objfiles.c: Use DEFINE_REGISTRY.
2797         (struct objfile_data, struct objfile_data_registration, struct
2798         objfile_data_registry, objfile_data_registry)
2799         (register_objfile_data_with_cleanup, register_objfile_data)
2800         (objfile_alloc_data, objfile_free_data, clear_objfile_data)
2801         (set_objfile_data, objfile_data): Remove.
2802         (_initialize_objfiles): Update.
2803         * jit.c (_initialize_jit): Update.
2804         * inflow.c (_initialize_inflow): Update.
2805         * inferior.h: Include registry.h.  Use DECLARE_REGISTRY.
2806         (struct inferior) <data, num_data>: Replace with REGISTRY_FIELDS.
2807         (register_inferior_data_with_cleanup, register_inferior_data)
2808         (clear_inferior_data, set_inferior_data, inferior_data): Don't
2809         declare.
2810         * inferior.c: Use DEFINE_REGISTRY.
2811         (struct inferior_data, struct inferior_data_registration, struct
2812         inferior_data_registry, inferior_data_registry)
2813         (register_inferior_data_with_cleanup, register_inferior_data)
2814         (inferior_alloc_data, inferior_free_data  clear_inferior_data)
2815         (set_inferior_data, inferior_data): Remove.
2816         * auxv.c (_initialize_auxv): Update.
2817         * ada-lang.c (_initialize_ada_language): Update.
2818         * breakpoint.c (_initialize_breakpoint): Update.
2819         * i386-nat.c (i386_use_watchpoints): Update.
2820
2821 2012-08-22  Tom Tromey  <tromey@redhat.com>
2822
2823         * exec.c (exec_close, exec_file_attach): Update.
2824         (add_to_section_table): Initialize 'key' field.
2825         (add_target_sections, remove_target_sections): Add 'key' argument.
2826         * exec.h (add_target_sections, remove_target_sections): Add
2827         'key' argument.
2828         * solib.c (solib_map_sections, update_solib_list, clear_solib)
2829         (reload_shared_libraries_1): Update.
2830         * target.h (struct target_section) <key>: New field.
2831
2832 2012-08-22  Tom Tromey  <tromey@redhat.com>
2833
2834         * cli/cli-cmds.c (filter_sals): Handle nelts == 0 case.
2835
2836 2012-08-21  Pierre Muller  <muller@ics.u-strasbg.fr>
2837
2838         * symfile.c (allocate_symtab): Use host_address_to_string
2839         function instead of cast of pointer to long which is not
2840         compatible with x86_64-w64-mingw32 build.
2841
2842 2012-08-19  Andrew Pinski  <apinski@cavium.com>
2843
2844         * mips-tdep.c (is_octeon): New function.
2845         (is_octeon_bbit_op): New function.
2846         (mips32_next_pc): Handle Octeon's bbit instructions.
2847         (mips32_instruction_has_delay_slot): Likewise.
2848
2849 2012-08-19  Andrew Pinski  <apinski@cavium.com>
2850
2851         * mips-tdep.c (mips32_next_pc): Fix line spacing of the comment
2852         before the function.
2853
2854 2012-08-19  Andrew Pinski  <apinski@cavium.com>
2855
2856         * mips-tdep.c (mips32_next_pc): Consolidate calls to itype_op.
2857
2858 2012-08-19  Keith Seitz  <keiths@redhat.com>
2859
2860         PR c++/14365
2861         * c-typeprint.c (c_type_print_varspec_prefix): Pass
2862         -1 for SHOW to c_type_print_base for METHODPTR and MEMBERPTR.
2863
2864 2012-08-18  Eli Zaretskii  <eliz@gnu.org>
2865
2866         * Makefile.in (HFILES_NO_SRCDIR): Fix a typo: golang.h -> go-lang.h.
2867         The typo broke "make TAGS".
2868
2869 2012-08-17  Joel Brobecker  <brobecker@adacore.com>
2870
2871         GDB 7.5 released.
2872
2873 2012-08-17  Keith Seitz  <keiths@redhat.com>
2874
2875         PR c++/13356
2876         * gdbtypes.c (strict_type_checking): New variable.
2877         (show_strict_type_checking): New function.
2878         (rank_one_type): Return NS_POINTER_INTEGER_CONVERSION_BADNESS
2879         if strict type checking is disabled.
2880         (_initialize_gdbtypes): Add "check type" subcommand.
2881         * gdbtypes.h (NS_INTEGER_POINTER_CONVERSION_BADNESS): New struct.
2882
2883 2012-08-17  Keith Seitz  <keiths@redhat.com>
2884
2885         * language.h (type_mode): Remove.
2886         (type_check): Remove.
2887         (struct language_defn): Remove la_type_check.
2888         (STRICT_TYPE): Remove unused macro.
2889         (type_error): Remove.
2890         * language.c (set_type_range_case): Renamed to ...
2891         (set_range_case): ... this.  Update all callers.
2892         Remove type_mode/type_check.
2893         (type_mode): Remove.
2894         (type_check): Remove.
2895         (show_type_command): Remove.
2896         (set_type_command): Remove.
2897         (language_info): Remove type checking output.
2898         (type_error): Remove unused function.
2899         (range_error): Update comment.
2900         (unknown_language_defn): Remove la_type_check.
2901         (auto_language_defn): Likewise.
2902         (local_language_defn): Likewise.
2903         (_initialize_language): Remove "check type" subcommand.
2904         * ada-lang.c (ada_language_defn): Remove la_type_check.
2905         * c-lang.c (c_language_defn): Likewise.
2906         (cplus_language_defn): Likewise.
2907         (asm_language_defn): Likewise.
2908         (minimal_language_defn): Likewise.
2909         * d-lang.c (d_language_defn): Likewise.
2910         * f-lang.c (f_language_defn): Likewise.
2911         * go-lang.c (go_language_defn): Likewise.
2912         * jv-lang.c (java_language_defn): Likewise.
2913         * m2-lang.c (m2_language_defn): Likewise.
2914         * objc-lang.c (objc_language_defn): Likewise.
2915         * opencl-lang.c (opencl_language_defn): Likewise.
2916         * p-lang.c (pascal_language_defn): Likewise.
2917
2918 2012-08-16  Mike Frysinger  <vapier@gentoo.org>
2919
2920         * infcmd.c (_initialize_infcmd): Remove trailing ) in next help text.
2921
2922 2012-08-16  Joel Brobecker  <brobecker@adacore.com>
2923
2924         * ia64-hpux-nat.c (ia64_hpux_get_register_from_save_state_t):
2925         New function.
2926         (ia64_hpux_xfer_memory): Check if inferior_ptid is known before
2927         using the regache.  Use ia64_hpux_get_register_from_save_state_t
2928         to access the bsp and bspstore registers if not.
2929
2930 2012-08-16  Joel Brobecker  <brobecker@adacore.com>
2931
2932         * breakpoint.h (detach_breakpoints): pid parameter is now a ptid.
2933         * breakpoint.c (detach_breakpoints): Change pid parameter into
2934         a ptid.  Adjust code accordingly.
2935         * infrun.c (handle_inferior_event): Delete variable child_pid.
2936         Update call to detach_breakpoints to pass the child ptid for
2937         fork events.
2938         * linux-nat.c (linux_nat_iterate_watchpoint_lwps): Remove
2939         assert that inferior_ptid's lwp is zero.
2940         (linux_handle_extended_wait): Update call to detach_breakpoints.
2941         * inf-ttrace.c (inf_ttrace_follow_fork): Update call to
2942         detach_breakpoints.
2943
2944 2012-08-16  Joel Brobecker  <brobecker@adacore.com>
2945
2946         * inf-ttrace.c (inf_ttrace_follow_fork): When following the
2947         parent, only call detach_breakpoints if tts.tts_event ==
2948         TTEVT_VFORK.
2949
2950 2012-08-16  Joel Brobecker  <brobecker@adacore.com>
2951
2952         * dwarf2-frame.c (dwarf2_frame_cache): Use
2953         get_frame_address_in_block instead of get_frame_pc as
2954         the bound for executing the frame's FDE.
2955
2956 2012-08-16  Yao Qi  <yao@codesourcery.com>
2957
2958         * gdbtypes.h (enum type_code): Define TYPE_CODE_BITSTRING -1.
2959         * arm-tdep.c (arm_type_align): Remove code handling TYPE_CODE_BITSTRING.
2960         * c-typeprint.c (c_type_print_varspec_prefix): Likewise.
2961         (c_type_print_varspec_suffix): Likewise.
2962         * eval.c (evaluate_subexp_standard): Likewise.
2963         * f-typeprint.c (f_type_print_varspec_prefix): Likewise.
2964         (f_type_print_varspec_suffix): Likewise.
2965         * gdbtypes.c (is_scalar_type): Likewise.
2966         (recursive_dump_type): Likewise.
2967         * infcall.c (value_arg_coerce): Likewise.
2968         * m2-valprint.c (m2_val_print): Likewise.
2969         * p-typeprint.c (pascal_type_print_varspec_prefix): Likewise.
2970         (pascal_type_print_varspec_suffix): Likewise.
2971         (pascal_type_print_base): Likewise.
2972         * p-valprint.c (pascal_val_print): Likewise.
2973         (pascal_val_print): Likewise.
2974         * valops.c (value_slice): Likewise.
2975         * valprint.c (scalar_type_p): Likewise.
2976         * valarith.c (value_bitstring_subscript): Remove.
2977         (value_concat): Remove code handling TYPE_CODE_BITSTRING.
2978         Remove comment on TYPE_CODE_BITSTRING.
2979
2980         * stabsread.c (read_type): Don't set TYPE_CODE (type) to
2981         TYPE_CODE_BITSTRING.
2982
2983         * python/py-type.c (pyty_codes): Move ENTRY (TYPE_CODE_BITSTRING) to
2984         slot 0.
2985
2986 2012-08-16  Yao Qi  <yao@codesourcery.com>
2987
2988         * tracepoint.c (trace_find_none_command): Remove.
2989         (_initialize_tracepoint): Call add_alias_cmd for "tfind none".
2990
2991 2012-08-16  Yao Qi  <yao@codesourcery.com>
2992
2993         * remote.c (handle_notification): Remove parameter 'length'.
2994         (putpkt_binary, getpkt_or_notif_sane_1): Caller update.
2995
2996 2012-08-15  Keith Seitz  <keiths@redhat.com>
2997
2998         * gdbtypes.c (opaque_type_resolution): Make static.
2999         Add missing comment.
3000         (overload_debug): Add missing comment.
3001         (show_opaque_type_resolution): Likewise.
3002         (show_overload_debug): Likewise.
3003         (print_bit_vector): Remove unnecessary forward declaration.
3004         (print_arg_types): Likewise.
3005         (dump_fn_fieldlists): Likewise.
3006         (print_cplus_stuff): Likewise.
3007
3008 2012-08-15  Tom Tromey  <tromey@redhat.com>
3009
3010         * gdb_bfd.c (struct gdb_bfd_data) <archive_bfd>: New field.
3011         (gdb_bfd_ref): Initialize new field.
3012         (gdb_bfd_unref): Unref the archive BFD.
3013         (gdb_bfd_openr_next_archived_file): Acquire a reference to the
3014         parent archive.
3015
3016 2012-08-15  Tom Tromey  <tromey@redhat.com>
3017
3018         PR python/14387:
3019         * python/py-bpevent.c (create_breakpoint_event_object): Update
3020         comment.
3021         * python/py-event.c (evpy_add_attribute): Update comment.
3022         * python/py-exitedevent.c (create_exited_event_object): Fix
3023         reference counting and error handling.
3024         * python/py-newobjfileevent.c (create_new_objfile_event_object):
3025         Fix reference counting.
3026         * python/py-signalevent.c (create_signal_event_object): Fix
3027         reference counting and error handling.
3028         * python/py-stopevent.c (emit_stop_event): Fix reference
3029         counting.
3030         * python/py-threadevent.c (get_event_thread): Return a
3031         borrowed reference.
3032         * python/py-type.c (convert_field): Fix reference counting.
3033
3034 2012-08-15  Tom Tromey  <tromey@redhat.com>
3035
3036         * dwarf2read.c (dwarf_decode_macro_bytes)
3037         <DW_MACRO_GNU_transparent_include>: Use pointer to included data
3038         as hash key.
3039
3040 2012-08-14  Mike Frysinger  <vapier@gentoo.org>
3041
3042         * infcmd.c (_initialize_infcmd): Update help text for the signal,
3043         stepi, nexti, finish, next, step, jump, and continue commands.
3044         * infrun.c (_initialize_infrun): Update help text for the handle
3045         command.
3046
3047 2012-08-14  Doug Evans  <dje@google.com>
3048
3049         * gdbtypes.c (struct extra): Delete, unused.
3050
3051         * gdbtypes.c: Whitespace cleanup.
3052         (address_space_name_to_int): Remove "extern" from definition.
3053         (_initialize_gdbtypes): Declare with initialize_file_ftype.
3054
3055         * gdbtypes.c (make_pointer_type): Remove redundant setting of
3056         TYPE_POINTER_TYPE (type).
3057
3058 2012-08-14  Gary Benson  <gbenson@redhat.com>
3059
3060         * solib-svr4.c (svr4_free_library_list): Use free_so.
3061
3062 2012-08-13  Mike Frysinger  <vapier@gentoo.org>
3063
3064         * .gitignore: Add go-exp.c.
3065
3066 2012-08-13  Doug Evans  <dje@google.com>
3067
3068         * value.c (show_convenience): Tweak comment.
3069         (_initialize_values): Mention convenience functions in the help text
3070         for "show convenience".
3071
3072 2012-08-13  Yao Qi  <yao@codesourcery.com>
3073
3074         * std-operator.def: Remove TERNOP_SLICE_COUNT.
3075         * breakpoint.c (watchpoint_exp_is_const): Remove handling to
3076         TERNOP_SLICE_COUNT.
3077         * eval.c (evaluate_subexp_standard): Likewise.
3078         * expprint.c (print_subexp_standard): Likewise.
3079         (dump_subexp_body_standard): Likewise.
3080         * parse.c (operator_length_standard): Likewise.
3081
3082 2012-08-13  Yao Qi  <yao@codesourcery.com>
3083
3084         * std-operator.def: Remove OP_BITSTRING.
3085         * breakpoint.c (watchpoint_exp_is_const): Update.
3086         * eval.c (evaluate_subexp_standard): Remove handling to
3087         OP_BITSTRING.
3088         * expprint.c (print_subexp_standard): Likewise.
3089         (dump_subexp_body_standard): Likewise.
3090         * parse.c (operator_length_standard): Likewise.
3091         * valops.c (value_bitstring): Remove.
3092         * value.h: Remove the declaration of 'value_bitstring'.
3093
3094 2012-08-10  Sergio Durigan Junior  <sergiodj@redhat.com>
3095
3096         * linespec.c (find_methods): Remove unused variables `i1' and
3097         `name_len'.
3098         (decode_line_full): Likewise for `arg_start'.
3099
3100 2012-08-10  Sergio Durigan Junior  <sergiodj@redhat.com>
3101
3102         * gdb_bfd.c (gdb_bfd_unref): Remove unused variable `slot'.
3103         (zlib_decompress_section): Likewise for `section_data'.
3104         (gdb_bfd_map_section): Likewise for `buf' and `retbuf'.
3105
3106 2012-08-10  Doug Evans  <dje@google.com>
3107
3108         Add $_memeq, $_regex, $_streq, $_strlen convenience functions.
3109         * NEWS: Document them.
3110         * data-directory/Makefile.in (PYTHON_FILES): Add function/__init__.py,
3111         function/strfns.py.
3112         * python/py-type.c (typy_array_1): New function.
3113         (typy_array): Call it.
3114         (typy_vector): New function.
3115         (type_object_methods): Add "vector".
3116         * python/lib/gdb/function/__init__.py: New file.
3117         * python/lib/gdb/function/strfns.py: New file.
3118
3119 2012-08-10  Siddhesh Poyarekar  <siddhesh@redhat.com>
3120
3121         * python/py-type.c (convert_field): Use gdb_py_long_from_longest
3122         for TYPE_FIELD_BITPOS.
3123         (typy_get_sizeof): Likewise for TYPE_LENGTH.
3124
3125 2012-08-10  Mike Frysinger  <vapier@gentoo.org>
3126
3127         PR cli/10436:
3128         * common/vec.h (VEC_merge): Define.
3129         (DEF_VEC_ALLOC_FUNC_I): Add a merge helper.
3130         (DEF_VEC_ALLOC_FUNC_P): Likewise.
3131         (DEF_VEC_ALLOC_FUNC_O): Likewise.
3132         * completer.c: Include gdb_signals.h.
3133         (signal_completer): Define.
3134         * completer.h (signal_completer): Add prototype.
3135         * infcmd.c (_initialize_infcmd): Assign the command
3136         completer for "signal" to handle_completer.
3137         * infrun.c: Include completer.h.
3138         (handle_completer): Define.
3139         (_initialize_infrun): Declare a new local variable c.  Store the
3140         result of add_com("handle") to it.  Assign the command
3141         completer for "handle" to handle_completer.
3142
3143 2012-08-09  Yao Qi  <yao@codesourcery.com>
3144
3145         * cli/cli-decode.c (set_cmd_prefix): New.
3146         (lookup_cmd_for_prefixlist): New.
3147         (add_prefix_cmd): Call set_cmd_prefix and update field 'prefix'
3148         of each cmd_list_element in *prefixlist.
3149         (add_setshow_cmd_full): set_cmd_prefix.
3150         (add_alias_cmd): Likewise.
3151         * cli/cli-decode.h (struct cmd_list_element) <prefix>: New field.
3152         Declare 'auto_boolean_enums'.
3153         * cli/cli-setshow.c: Include "observer.h".
3154         (notify_command_param_changed_p): New.
3155         (add_setshow_auto_boolean_cmd): Move auto_boolean_enums out.
3156         Remove 'static'.
3157         (do_setshow_command): Split it to ...
3158         (do_set_command, do_show_command): ... them.  New.
3159         (do_set_command): Call observer_notify_command_param_changed if
3160         notify_command_param_changed_p returns true.
3161         (cmd_show_list): Caller update.
3162         * auto-load.c (set_auto_load_cmd): Likewise.
3163         * remote.c (show_remote_cmd): Likewise.
3164         * cli/cli-setshow.h: Update declarations.
3165         * top.c (execute_command): Call do_set_command and do_show_command.
3166
3167         * NEWS: Mention new MI notification.
3168         * mi/mi-interp.c: Declare mi_command_param_changed.
3169         (mi_interpreter_init): Attach mi_command_param_changed to
3170         observer command_param_changed.
3171         (mi_command_param_changed): New.
3172         Remove mi_suppress_breakpoint_notifications.
3173         Define global variable mi_suppress_notification.
3174         (mi_breakpoint_created): Update.
3175         (mi_breakpoint_deleted): Likewise.
3176         (mi_breakpoint_modified): Likewise.
3177         * mi/mi-main.c (mi_cmd_execute): Likewise.  Check command
3178         'gdb-set' and set mi_suppress_notification.
3179         * mi/mi-main.h: (mi_suppress_notification): New struct.
3180
3181 2012-08-09  Andreas Tobler  <andreast@fgznet.ch>
3182             Jan Kratochvil  <jan.kratochvil@redhat.com>
3183
3184         * fbsd-nat.h (fbsd_find_memory_regions): Use find_memory_region_ftype.
3185
3186 2012-08-09  Yao Qi  <yao@codesourcery.com>
3187
3188         * cli/cli-cmds.c (enablebreaklist): Move it to breakpoint.c.
3189         (skiplist): Move it to skip.c.
3190         (init_cmd_lists): Remove code setting enablebreaklist and
3191         skiplist to NULL.
3192         * breakpoint.c (enablebreaklist): Moved from cli/cli-cmds.c.
3193         * cli/cli-cmds.h: Remove declaration of enablebreaklist and
3194         skiplist.
3195         * gdbcmd.h: Likewise.
3196         * skip.c (_initialize_step_skip): Move 'skiplist' from
3197         cli/cli-cmds.c.
3198
3199 2012-08-09  Yao Qi  <yao@codesourcery.com>
3200
3201         * cli/cli-dump.c: Add 'static' to some cmd_list_element variables.
3202         * gnu-nat.c, symfile.c: Likewise.
3203
3204 2012-08-08  Aaron Gamble  <agamble@google.com>
3205
3206         * utils.c (prompt_for_continue_wait_time): New static global.
3207         (make_command_stats_cleanup): Initialize it.
3208         (report_command_stats): Subtract time waiting for user.
3209         (prompt_for_continue): Track time waiting for user.
3210         (defaulted_query): Track time waiting for user.
3211
3212 2012-08-08  Doug Evans  <dje@google.com>
3213
3214         * eval.c (evaluate_subexp_standard): Fix thinko in handling
3215         UNOP_MEMVAL_TYPE.
3216         * expprint.c (print_subexp_standard, case OP_TYPE): New.
3217         (print_subexp_standard, case UNOP_CAST_TYPE): Don't increment pos.
3218         (print_subexp_standard, case UNOP_DYNAMIC_CAST): Ditto.
3219         (print_subexp_standard, case UNOP_REINTERPRET_CAST): Ditto.
3220         (print_subexp_standard, case UNOP_MEMVAL_TYPE): Ditto.
3221         (dump_subexp_body_standard, case UNOP_DYNAMIC_CAST): Don't increment
3222         elt.
3223         (dump_subexp_body_standard, case UNOP_REINTERPRET_CAST): Ditto.
3224         (dump_subexp_body_standard, case UNOP_CAST_TYPE): Ditto.
3225         (dump_subexp_body_standard, case UNOP_MEMVAL_TYPE): Ditto.
3226         (dump_prefix_expression): Handle OP_TYPE.
3227
3228 2012-08-08  Keith Seitz  <keiths@redhat.com>
3229
3230         * breakpoint.c (parse_breakpoint_sals): Remove unused variable
3231         addr_start.
3232
3233 2012-08-08  Doug Evans  <dje@google.com>
3234
3235         * linux-thread-db.c: #include "gdb_vecs.h".
3236         (try_thread_db_load_from_pdir_1): New arg "subdir".  All callers
3237         updated.
3238         (try_thread_db_load_from_pdir): New arg "subdir".  All callers updated.
3239         (thread_db_load_search): Use a vector to iterate over path elements.
3240         Handle text appearing after "$pdir".
3241
3242         * gdb_string.h: Moved to ...
3243         * common/gdb_string.h: ... here.
3244         * common/vec.h: Remove #ifndef GDBSERVER conditional inclusion of
3245         gdb_string.h and gdb_assert.h.
3246
3247 2012-08-08  Yao Qi  <yao@codesourcery.com>
3248
3249         * tic6x-tdep.c (tic6x_register_to_value): Remove.
3250         (tic6x_value_to_register): Likewise.
3251         (tic6x_gdbarch_init): Don't call set_gdbarch_register_to_value
3252         and set_gdbarch_value_to_register.
3253
3254 2012-08-07  Jan Kratochvil  <jan.kratochvil@redhat.com>
3255             Jean-Marc Saffroy  <saffroy@gmail.com>
3256
3257         PR 11804
3258         * defs.h (find_memory_region_ftype): New comment.  New arg modified.
3259         * fbsd-nat.c (fbsd_find_memory_regions): Add the passed modified value.
3260         * gcore.c (gcore_create_callback): New function comment.  Add modified
3261         parameter.  Only write modified regions.  Set SEC_READONLY exactly
3262         according to MODIFIED.
3263         (objfile_find_memory_regions): Ignore separate debug info files.  Ass
3264         the passed modified value to FUNC.
3265         * gnu-nat.c (gnu_find_memory_regions): Add the passed modified value.
3266         * linux-tdep.c (linux_find_memory_regions): Try to reads smaps file
3267         first.  New variables modified and has_anonymous.  Parse the lines of
3268         smaps file.  Add the passed MODIFIED value to FUNC.
3269         * procfs.c (find_memory_regions_callback): Add the passed modified
3270         value.
3271
3272 2012-08-06  Tom Tromey  <tromey@redhat.com>
3273
3274         * dwarf2-frame.c (clear_pointer_cleanup): New function.
3275         (dwarf2_frame_cache): Use it.
3276         * frame-unwind.h (frame_sniffer_ftype): Document prologue
3277         cache initialization constraint.
3278
3279 2012-08-06  Tom Tromey  <tromey@redhat.com>
3280
3281         PR python/14386:
3282         * varobj.c (update_dynamic_varobj_children): Don't call
3283         PyIter_Check.
3284
3285 2012-08-06  Tom Tromey  <tromey@redhat.com>
3286
3287         PR cli/14392:
3288         * cli/cli-cmds.c (list_command): Filter 'sals_end'.
3289
3290 2012-08-06  Nathaniel Flath  <flat0103@gmail.com>
3291
3292         * NEWS: New entry for 'cd' default parameters.
3293         * cli/cli-cmds.c (cd_command): Replace error_no_arg by DIR assignment.
3294
3295 2012-08-03  Tom Tromey  <tromey@redhat.com>
3296
3297         * dwarf2-frame.c (dwarf2_frame_cache): Call do_cleanups before
3298         return.
3299
3300 2012-08-02  Ulrich Weigand  <ulrich.weigand@linaro.org>
3301
3302         * inf-child.c (inf_child_fileio_pwrite): If pwrite fails, fall back
3303         to attempting lseek/write.
3304         (inf_child_fileio_pread): Likewise for pread.
3305
3306 2012-08-02  Yao Qi  <yao@codesourcery.com>
3307
3308         * dwarf2loc.c (entry_values_debug): Add 'unsigned'.
3309         (_initialize_dwarf2loc): Call add_setshow_zuinteger_cmd instead of
3310         add_setshow_zinteger_cmd.
3311         * dwarf2loc.h: Update the declaration of 'entry_values_debug'.
3312         * dwarf2read.c (dwarf2_die_debug): Add 'unsigned'.
3313         (_initialize_dwarf2_read): Call add_setshow_zuinteger_cmd
3314         instead of add_setshow_zinteger_cmd.
3315         * darwin-nat.c (dwarwin_debug_flag): Add 'unsigned'.
3316         (_initialize_darwin_inferior): Call add_setshow_zuinteger_cmd
3317         instead of add_setshow_zinteger_cmd.
3318         * frame.c (frame_debug): Add 'unsigned'.
3319         (_intialize_frame): Call add_setshow_zuinteger_cmd instead of
3320         add_setshow_zinteger_cmd.
3321         * frame.h: Update the declaration of 'frame_debug'.
3322         * gdbtypes.c (overload_debug): Add 'unsigned'.
3323         (_initialize_gdbtypes): Call add_setshow_zuinteger_cmd instead of
3324         add_setshow_zinteger_cmd.
3325         * inferior.h: Update declaration of 'debug_infrun'.
3326         * infrun.c (debug_infrun): Add 'unsigned'.
3327         (_initialize_infrun): Call add_setshow_zuinteger_cmd instead of
3328         add_setshow_zinteger_cmd.
3329         * jit.c (jit_debug): Add 'unsigned'.
3330         (_initialize_jit): Call add_setshow_zuinteger_cmd instead of
3331         add_setshow_zinteger_cmd.
3332         * linux-nat.c (debug_linux_nat): Add 'unsigned'.
3333         (_initialize_linux_nat): Call add_setshow_zuinteger_cmd
3334         instead of add_setshow_zinteger_cmd.
3335         * linux-thread-db.c (libthread_db_debug): Add 'unsigned'.
3336         (_initialize_thread_db): Call add_setshow_zuinteger_cmd instead of
3337         add_setshow_zinteger_cmd.
3338         * machoread.c (mach_o_debug_level): Add 'unsigned'.
3339         (_initialize_machoread): Call add_setshow_zuinteger_cmd
3340         instead of add_setshow_zinteger_cmd.
3341         * mi/mi-cmd-var.c: Update the declaration of 'varobjdebug'.
3342         * microblaze-tdep.c (microblaze_debug_flag): Add 'unsigned'.
3343         (_initialize_microblaze_tdep): Call add_setshow_zuinteger_cmd
3344         intead of add_setshow_zinteger_cmd.
3345         * mips-tdep.c (mips_debug): Add 'unsigned'.
3346         (_initialize_mips_tdep): Call add_setshow_zuinteger_cmd
3347         instead of add_setshow_zinteger_cmd.
3348         * monitor.c (monitor_debug): Add 'unsigned'.
3349         (_initialize_remote_monitors): Call add_setshow_zuinteger_cmd instead of
3350         add_setshow_zinteger_cmd.
3351         * observer.c (observer_debug): Add 'unsigned'.
3352         (_initialize_observer): Call add_setshow_zuinteger_cmd instead of
3353         add_setshow_zinteger_cmd.
3354         * parse.c (expressiondebug): Add 'unsigned'.
3355         (_initialize_parse): Call add_setshow_zuinteger_cmd instead of
3356         add_setshow_zinteger_cmd.
3357         * record.c (record_debug): Add 'unsigned'.
3358         (_initialize_record): Call add_setshow_zuinteger_cmd instead of
3359         add_setshow_zinteger_cmd.
3360         * record.h: Update the declaration of 'record_debug'.
3361         * stap-probe.c (stap_expression_debug): Add 'unsigned'.
3362         (_initialize_stap_probe): Call add_setshow_zuinteger_cmd instead of
3363         add_setshow_zinteger_cmd.
3364         * serial.c (global_serial_debug_p): Add 'unsigned'.
3365         (_initialize_serial): Call add_setshow_zuinteger_cmd instead of
3366         add_setshow_zinteger_cmd.
3367         * solib-dsbt.c (solib_dsbt_debug): Add 'unsigned'.
3368         (_initialize_dsbt_solib): Call add_setshow_zuinteger_cmd instead of
3369         add_setshow_zinteger_cmd.
3370         * solib-frv.c (solib_frv_debug): Add 'unsigned'.
3371         (_initialize_frv_solib): Call add_setshow_zuinteger_cmd instead of
3372         add_setshow_zinteger_cmd.
3373         * target.c (targetdebug): Add 'unsigned'.
3374         (initialize_targets): Call add_setshow_zuinteger_cmd instead of
3375         add_setshow_zinteger_cmd.
3376         * valops.c (overload_debug): Add 'unsigned'.
3377         * varobj.c (varobjdebug): Add 'unsigned'.
3378         (_initialize_varobj): Call add_setshow_zuinteger_cmd instead of
3379         add_setshow_zinteger_cmd.
3380         * xtensa-tdep.c (xtensa_debug_level): Add 'unsigned'.
3381         (_initialize_xtensa_tdep): Call add_setshow_zuinteger_cmd
3382         instead of add_setshow_zinteger_cmd.
3383
3384         * arch-utils.h: Remove the declaration of 'gdbarch_debug'.
3385         * gdbarch.sh (gdbarch_debug): Add 'unsigned'.
3386         (extern void _initialize_gdbarch): Call add_setshow_zuinteger_cmd
3387         instead of add_setshow_zinteger_cmd.
3388         * gdbarch.c, gdbarch.h: Re-generated.
3389
3390 2012-08-02  Yao Qi  <yao@codesourcery.com>
3391
3392         * nto-tdep.c: Don't include cli/cli-decode.h and
3393         cli/cli-cmds.h.
3394         (_initialize_nto_tdep): Remove.
3395         * nto-tdep.h (struct nto_target_ops) <internal_debugging>:
3396         Remove field.
3397         Remove macro nto_internal_debugging.
3398
3399 2012-08-01  Richard Henderson  <rth@redhat.com>
3400
3401         * configure.tgt (m32c-*-*) [gdb_target_obs]: Remove prologue-value.o.
3402         (mep-*-*) [gdb_target_obs]: Likewise.
3403
3404 2012-07-31  Andreas Schwab  <schwab@linux-m68k.org>
3405
3406         * ppc-linux-tdep.c (ppc_linux_init_abi): Register
3407         linux_get_siginfo_type.
3408
3409 2012-07-31  Jan Kratochvil  <jan.kratochvil@redhat.com>
3410
3411         * infcall.c (call_function_by_hand): Move BP_ADDR comment to
3412         AT_ENTRY_POINT.
3413         (call_function_by_hand) <ON_STACK>: Call write_memory with
3414         gdbarch_breakpoint_from_pc, if possible.
3415         (call_function_by_hand) <AT_ENTRY_POINT>: The BP_ADDR comment is moved
3416         here.
3417
3418 2012-07-31  Yao Qi  <yao@codesourcery.com>
3419
3420         * tracepoint.c: Add 'static' for some variables.
3421
3422 2012-07-31  Yao Qi  <yao@codesourcery.com>
3423
3424         * go32-nat.c: Declare _initialize_go32_nat.
3425         * ser-go32.c: Declare _initialize_ser_dos.
3426         * top.c (do_chdir_cleanup): Add 'static'.
3427
3428 2012-07-30  Keith Seitz  <keiths@redhat.com>
3429
3430         * linespec.c (linespec_lex_number): A number followed
3431         by quotes is a valid number, too.
3432
3433 2012-07-30  Tom Tromey  <tromey@redhat.com>
3434
3435         * remote-sim.c (gdb_os_poll_quit): Don't check immediate_quit.
3436
3437 2012-07-30  Ulrich Weigand  <ulrich.weigand@linaro.org>
3438
3439         * arm-linux-nat.c (arm_linux_hw_breakpoint_initialize): Do not
3440         attempt to 4-byte-align HW breakpoint addresses for Thumb.
3441
3442 2012-07-30  Andrew Burgess  <aburgess@broadcom.com>
3443
3444         * varobj.c (varobj_invalidate_iter): All varobj must be marked as
3445         invalid or reevaluated to prevent prevent references to possibly
3446         delete'd type objects being left in the varobj.
3447
3448 2012-07-27  Tom Tromey  <tromey@redhat.com>
3449             Jan Kratochvil  <jan.kratochvil@redhat.com>
3450
3451         * copying.awk: Print buffer-read-only and vi ro markers.
3452         * copying.c: Rebuild.
3453         * gdbarch.sh (copyright): Print buffer-read-only and vi ro markers.
3454         * gdbarch.c, gdbarch.h: Rebuild.
3455         * target-descriptions.c (maint_print_c_tdesc_cmd): Print
3456         buffer-read-only and vi ro markers.
3457         * features/arm-with-iwmmxt.c: Rebuild.
3458         * features/arm-with-m-fpa-layout.c: Rebuild.
3459         * features/arm-with-m-vfp-d16.c: Rebuild.
3460         * features/arm-with-m.c: Rebuild.
3461         * features/arm-with-neon.c: Rebuild.
3462         * features/arm-with-vfpv2.c: Rebuild.
3463         * features/arm-with-vfpv3.c: Rebuild.
3464         * features/i386/amd64-avx-linux.c: Rebuild.
3465         * features/i386/amd64-avx.c: Rebuild.
3466         * features/i386/amd64-linux.c: Rebuild.
3467         * features/i386/amd64.c: Rebuild.
3468         * features/i386/i386-avx-linux.c: Rebuild.
3469         * features/i386/i386-avx.c: Rebuild.
3470         * features/i386/i386-linux.c: Rebuild.
3471         * features/i386/i386-mmx-linux.c: Rebuild.
3472         * features/i386/i386-mmx.c: Rebuild.
3473         * features/i386/i386.c: Rebuild.
3474         * features/i386/x32-avx-linux.c: Rebuild.
3475         * features/i386/x32-avx.c: Rebuild.
3476         * features/i386/x32-linux.c: Rebuild.
3477         * features/i386/x32.c: Rebuild.
3478         * features/mips-dsp-linux.c: Rebuild.
3479         * features/mips-linux.c: Rebuild.
3480         * features/mips64-dsp-linux.c: Rebuild.
3481         * features/mips64-linux.c: Rebuild.
3482         * features/rs6000/powerpc-32.c: Rebuild.
3483         * features/rs6000/powerpc-32l.c: Rebuild.
3484         * features/rs6000/powerpc-403.c: Rebuild.
3485         * features/rs6000/powerpc-403gc.c: Rebuild.
3486         * features/rs6000/powerpc-405.c: Rebuild.
3487         * features/rs6000/powerpc-505.c: Rebuild.
3488         * features/rs6000/powerpc-601.c: Rebuild.
3489         * features/rs6000/powerpc-602.c: Rebuild.
3490         * features/rs6000/powerpc-603.c: Rebuild.
3491         * features/rs6000/powerpc-604.c: Rebuild.
3492         * features/rs6000/powerpc-64.c: Rebuild.
3493         * features/rs6000/powerpc-64l.c: Rebuild.
3494         * features/rs6000/powerpc-7400.c: Rebuild.
3495         * features/rs6000/powerpc-750.c: Rebuild.
3496         * features/rs6000/powerpc-860.c: Rebuild.
3497         * features/rs6000/powerpc-altivec32.c: Rebuild.
3498         * features/rs6000/powerpc-altivec32l.c: Rebuild.
3499         * features/rs6000/powerpc-altivec64.c: Rebuild.
3500         * features/rs6000/powerpc-altivec64l.c: Rebuild.
3501         * features/rs6000/powerpc-cell32l.c: Rebuild.
3502         * features/rs6000/powerpc-cell64l.c: Rebuild.
3503         * features/rs6000/powerpc-e500.c: Rebuild.
3504         * features/rs6000/powerpc-e500l.c: Rebuild.
3505         * features/rs6000/powerpc-isa205-32l.c: Rebuild.
3506         * features/rs6000/powerpc-isa205-64l.c: Rebuild.
3507         * features/rs6000/powerpc-isa205-altivec32l.c: Rebuild.
3508         * features/rs6000/powerpc-isa205-altivec64l.c: Rebuild.
3509         * features/rs6000/powerpc-isa205-vsx32l.c: Rebuild.
3510         * features/rs6000/powerpc-isa205-vsx64l.c: Rebuild.
3511         * features/rs6000/powerpc-vsx32.c: Rebuild.
3512         * features/rs6000/powerpc-vsx32l.c: Rebuild.
3513         * features/rs6000/powerpc-vsx64.c: Rebuild.
3514         * features/rs6000/powerpc-vsx64l.c: Rebuild.
3515         * features/rs6000/rs6000.c: Rebuild.
3516         * features/s390-linux32.c: Rebuild.
3517         * features/s390-linux32v1.c: Rebuild.
3518         * features/s390-linux32v2.c: Rebuild.
3519         * features/s390-linux64.c: Rebuild.
3520         * features/s390-linux64v1.c: Rebuild.
3521         * features/s390-linux64v2.c: Rebuild.
3522         * features/s390x-linux64.c: Rebuild.
3523         * features/s390x-linux64v1.c: Rebuild.
3524         * features/s390x-linux64v2.c: Rebuild.
3525         * features/tic6x-c62x-linux.c: Rebuild.
3526         * features/tic6x-c62x.c: Rebuild.
3527         * features/tic6x-c64x-linux.c: Rebuild.
3528         * features/tic6x-c64x.c: Rebuild.
3529         * features/tic6x-c64xp-linux.c: Rebuild.
3530         * features/tic6x-c64xp.c: Rebuild.
3531
3532 2012-07-27  Tom Tromey  <tromey@redhat.com>
3533
3534         * c-exp.y (classify_name): Avoid assignment in condition.
3535
3536 2012-07-27  Roland Schwingel  <roland.schwingel@onevision.com>
3537
3538         * amd64-windows-tdep.c: Include "frame.h".
3539         (amd64_windows_skip_trampoline_code): New function.
3540         (amd64_windows_init_abi): Add trampoline registration.
3541
3542 2012-07-27  Yao Qi  <yao@codesourcery.com>
3543
3544         * tracepoint.c (cur_traceframe_number): Remove.
3545         (set_tfile_traceframe): Remove.
3546         (tfile_trace_find, tfile_fetch_registers): Update callers.
3547         (tfile_xfer_partial, tfile_get_trace_state_variable_value): Likewise.
3548         (tfile_open, tfile_trace_find): Likewise.
3549
3550 2012-07-27  Yao Qi  <yao@codesourcery.com>
3551
3552         * thread.c (switch_to_thread): Don't call registers_changed.
3553
3554 2012-07-26  Tom Tromey  <tromey@redhat.com>
3555
3556         * Makefile.in (SFILES): Remove objc-exp.y.
3557         (YYFILES): Remove objc-exp.c.
3558         (YYOBJ): Remove objc-exp.o.
3559         (local-maintainer-clean): Don't mention objc-exp.c.
3560         * c-exp.y: Include objc-lang.h.
3561         (%union) <class>: New field.
3562         (NSSTRING, SELECTOR, CLASSNAME, OBJC_LBRAC): New tokens.
3563         (exp): Clone subscript production for OBJC_LBRAC.  Add various
3564         Objective C productions.
3565         (msglist, msgarglist, msgarg): New productions.
3566         (array_mod, func_mod, operator): Clone productions for
3567         OBJC_LBRAC.
3568         (parse_string_or_char): Handle '@' strings.
3569         (lex_one_token): Return OBJC_LBRAC.  Recognize @selector.
3570         (classify_name): Check la_name_of_this.  Recognize ObjC class
3571         names.
3572         * objc-exp.y: Remove.
3573         * objc-lang.c (objc_language_defn): Use c_parse, c_error.
3574         * objc-lang.h (objc_parse, objc_error): Don't declare.
3575
3576 2012-07-26  Markus Metzger  <markus.t.metzger@intel.com>
3577
3578         * python/py-inferior.c (infpy_threads): Call update_thread_list ().
3579
3580 2012-07-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
3581
3582         * auto-load.c (auto_load_info_scripts): Remove immediate_quit increment
3583         and decrement.
3584
3585 2012-07-26  Tom Tromey  <tromey@redhat.com>
3586
3587         * copying.c: Rebuild.
3588         * copying.awk: Don't use immediate_quit.  Use 'no_set_class', not
3589         'no_class'.
3590
3591 2012-07-26  Tom Tromey  <tromey@redhat.com>
3592
3593         * symmisc.c (print_symbol_bcache_statistics): Use QUIT, not
3594         immediate_quit.
3595         (print_objfile_statistics): Likewise.
3596         (maintenance_print_symbols): Likewise.
3597         (maintenance_print_msymbols): Likewise.
3598         (maintenance_print_objfiles): Likewise.
3599         * psymtab.c (print_partial_symbols): Call QUIT.
3600         (maintenance_print_psymbols): Likewise.  Don't modify
3601         immediate_quit.
3602         * copying.c (show_copying_command): Don't modify immediate_quit.
3603         (show_warranty_command): Likewise.
3604         * cli/cli-cmds.c (show_version): Don't modify immediate_quit.
3605
3606 2012-07-26  Keith Seitz  <keiths@redhat.com>
3607
3608         * linespec.c (linespec_lexer_lex_number): The input
3609         is also a valid number if the next character is a comma
3610         or colon.
3611
3612 2012-07-26  Joel Brobecker  <brobecker@adacore.com>
3613
3614         * NEWS: Document new --enable-libmcheck/--disable-libmcheck
3615         configure options.
3616
3617 2012-07-26  Tristan Gingold  <gingold@adacore.com>
3618
3619         * machoread.c: Include gdb_bfd.h.
3620
3621 2012-07-26  Tristan Gingold  <gingold@adacore.com>
3622
3623         * dwarf2loc.c (locexpr_describe_location_piece): Use uint64_t for
3624         offset.
3625
3626 2012-07-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
3627
3628         * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Expand parameter
3629         SIZE to size_t.
3630         (dwarf2_evaluate_loc_desc): Likewise.
3631         (dwarf2_loc_desc_needs_frame): Likewise.
3632         (locexpr_describe_location_1): Likewise.
3633         * dwarf2loc.h (struct dwarf2_locexpr_baton): Make SIZE as
3634         size_t.
3635         (struct dwarf2_loclist_baton): Likewise.
3636         * dwarf2read.c (struct dwarf_block): Likewise.
3637         (dump_die_shallow): Use pulongest to print dwarf_block.size.
3638         (decode_locdesc): Expand SIZE and I to size_t.
3639
3640 2012-07-25  Jan Kratochvil  <jan.kratochvil@redhat.com>
3641
3642         * contrib/cc-with-tweaks.sh: Put into comment path gdb/contrib/.
3643
3644 2012-07-25  Joel Brobecker  <brobecker@adacore.com>
3645
3646         * doublest.c (convert_doublest_to_floatformat): If the exponent
3647         is too small, treat the value as zero.  If the exponent is too
3648         large, treat the value as infinity.
3649
3650 2012-07-25  Joel Brobecker  <brobecker@adacore.com>
3651
3652         * configure.ac: Add --enable-lmcheck configure option.
3653         * configure: Regenerate.
3654
3655 2012-07-25  Tom Tromey  <tromey@redhat.com>
3656
3657         * NEWS: Mention maint info bfds.
3658         * gdb_bfd.c (all_bfds): New global.
3659         (gdb_bfd_ref, gdb_bfd_unref): Update all_bfds.
3660         (print_one_bfd, maintenance_info_bfds, _initialize_gdb_bfd):
3661         New functions.
3662
3663 2012-07-25  Ralf Corsépius  <ralf.corsepius@rtems.org>
3664
3665         * configure.tgt: Add v850*-*-rtems*.
3666
3667 2012-07-25  Tom Tromey  <tromey@redhat.com>
3668
3669         * macrotab.c (macro_bcache_str): Remove cast.
3670
3671 2012-07-25  Hui Zhu  <hui_zhu@mentor.com>
3672
3673         * linespec.c (linespec_lexer_lex_number): Update comments,
3674         change the return and add check to make sure the input is
3675         the decimal numbers.
3676         (linespec_lexer_lex_one): If linespec_lexer_lex_number return
3677         false, call linespec_lexer_lex_string.
3678
3679 2012-07-24  Tom Tromey  <tromey@redhat.com>
3680
3681         * symfile.c (symbol_file_add): Don't open BFD twice.
3682
3683 2012-07-24  Marc Khouzam  <marc.khouzam@ericsson.com>
3684
3685         * breakpoint.c (create_breakpoint): Store condition for pending
3686         breakpoints.
3687
3688 2012-07-24  Andreas Schwab  <schwab@linux-m68k.org>
3689
3690         * m68k-tdep.c (m68k_reg_struct_return_p): Accept complex types.
3691         (m68k_return_value): Handle complex types like structures.
3692         (m68k_svr4_return_value): Likewise.
3693
3694 2012-07-24  Marcus Shawcroft  <marcus.shawcroft@arm.com>
3695
3696         * gdb_bfd.c (zlib_decompress_section) <!HAVE_ZLIB_H>: Adjust
3697         parameters to bfd_get_section_name.
3698
3699 2012-07-24  Yao Qi  <yao@codesourcery.com>
3700
3701         * cli/cli-setshow.c: Handle case 'var_uinteger'
3702         and 'var_zuninteger' together.  Handle case 'var_integer' and
3703         'var_zinteger' together.
3704
3705 2012-07-23  Keith Seitz  <keiths@redhat.com>
3706
3707         * linespec.c (convert_linespec_to_sal): Don't add
3708         any symbols to the result vector if symbol_to_sal
3709         returns zero.
3710
3711 2012-07-23  Keith Seitz  <keiths@redhat.com>
3712
3713         * linespec.c (decode_objc): Record the function name
3714         in the linespec.
3715
3716 2012-07-23  Tom Tromey  <tromey@redhat.com>
3717
3718         * rs6000-nat.c (add_vmap): Rewrite archive loop.  Fix reference
3719         counting.
3720         * exec.c (exec_close_1): Unconditionally release vmap's BFD.
3721         (map_vmap): Acquire a reference to the BFD.
3722
3723 2012-07-23  Siddhesh Poyarekar  <siddhesh@redhat.com>
3724
3725         * p-valprint.c (pascal_object_print_value): Replace potentially
3726         unsafe alloca with xmalloc/xfree.
3727         * valops.c (search_struct_method): Likewise.
3728
3729 2012-07-23  Tom Tromey  <tromey@redhat.com>
3730
3731         * solib-svr4.c (enable_break): Update.
3732         * bfd-target.h (target_bfd_reopen): Update documentation.
3733
3734 2012-07-23  Tom Tromey  <tromey@redhat.com>
3735
3736         * symfile.c (separate_debug_file_exists): Update.
3737         (gdb_bfd_open_maybe_remote): Rename from bfd_open_maybe_remote.
3738         (reread_symbols): Update.
3739         * elfread.c (build_id_verify): Update.
3740         * symfile.h (gdb_bfd_open_maybe_remote): Rename from
3741         bfd_open_maybe_remote.
3742
3743 2012-07-23  Tom Tromey  <tromey@redhat.com>
3744
3745         * gdb_bfd.c (gdb_bfd_ref, gdb_bfd_unref): Fix comment.
3746
3747 2012-07-23  Tom Tromey  <tromey@redhat.com>
3748
3749         * coffread.c (coff_symfile_read): Make a cleanup for 'debugfile'
3750         and 'abfd'.
3751         * elfread.c (elf_symfile_read): Make a cleanup for 'debugfile'
3752         and 'abfd'.
3753         * jit.c (jit_bfd_try_read_symtab): Make a cleanup for 'nbfd'.
3754         * machoread.c (macho_add_oso_symfile): Make a cleanup for
3755         'abfd'.
3756         (macho_symfile_read): Make a cleanup for 'dsym_bfd'.
3757         * objfiles.c (allocate_objfile): Acquire a new reference.
3758         * rs6000-nat.c (add_vmap): Don't acquire a BFD reference.
3759         * solib.c (solib_read_symbols): Don't acquire a BFD reference.
3760         * spu-linux-nat.c (spu_symbol_file_add_from_memory): Make
3761         a cleanup for 'nbfd'.
3762         * symfile-mem.c (symbol_file_add_from_memory): Make a cleanup
3763         for 'nbfd'.
3764         * symfile.c (symbol_file_add_with_addrs_or_offsets): Don't
3765         make a cleanup for 'abfd'.
3766         (symbol_file_add): Make a BFD cleanup.
3767
3768 2012-07-23  Tom Tromey  <tromey@redhat.com>
3769
3770         * cli/cli-dump.c (bfd_openr_with_cleanup): Use gdb_bfd_openr.
3771         (bfd_openw_with_cleanup): Use gdb_bfd_openw.
3772         * corelow.c (core_open): Use gdb_bfd_fopen.
3773         * dsrec.c (load_srec): Use gdb_bfd_openr.
3774         * exec.c (exec_file_attach): Use gdb_bfd_fopen.
3775         * gcore.c (gcore_memory_sections): Use gdb_bfd_openw.
3776         * gdb_bfd.c (gdb_bfd_fopen, gdb_bfd_openr, gdb_bfd_openw)
3777         (gdb_bfd_openr_iovec, gdb_bfd_openr_next_archived_file)
3778         (gdb_bfd_fdopenr): New functions.
3779         * gdb_bfd.h (gdb_bfd_fopen, gdb_bfd_openr, gdb_bfd_openw)
3780         (gdb_bfd_openr_iovec, gdb_bfd_openr_next_archived_file)
3781         (gdb_bfd_fdopenr): Declare.
3782         * jit.c (bfd_open_from_target_memory): Use gdb_bfd_openr_iovec.
3783         * m32-rom.c (m32r_load, m32r_upload_command): Use gdb_bfd_openr.
3784         * machoread.c (macho_symfile_read_all_oso): Use gdb_bfd_openr,
3785         gdb_bfd_openr_next_archived_file.
3786         (macho_check_dsym): Use gdb_bfd_openr.
3787         (macho_add_oso_symfile): Don't call gdb_bfd_stash_filename.
3788         * procfs.c (insert_dbx_link_bpt_in_file): Use gdb_bfd_fdopenr.
3789         * remote-m32r-sdi.c (m32r_load): Use gdb_bfd_openr.
3790         * remote-mips.c (mips_load_srec, pmon_load_fast): Use
3791         gdb_bfd_openr.
3792         * remote.c (remote_bfd_open): Use gdb_bfd_openr_iovec.
3793         * rs6000-nat.c (add_vmap): Use gdb_bfd_openr, gdb_bfd_fdopenr,
3794         gdb_bfd_openr_next_archived_file.
3795         * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
3796         Use gdb_bfd_openr.
3797         * solib-pa64.c (pa64_solib_create_inferior_hook): Use
3798         gdb_bfd_openr.
3799         * solib-spu.c (spu_bfd_fopen): Use gdb_bfd_openr_iovec.
3800         * solib.c (solib_bfd_fopen): Use gdb_bfd_fopen.
3801         * spu-linux-nat.c (spu_bfd_open): Use gdb_bfd_openr_iovec.
3802         * symfile.c (bfd_open_maybe_remote): Use gdb_bfd_openr.
3803         (symfile_bfd_open): Use gdb_bfd_fopen.
3804         (generic_load): Use gdb_bfd_openr.
3805         * windows-nat.c (windows_make_so): Use gdb_bfd_openr.
3806
3807 2012-07-23  Tom Tromey  <tromey@redhat.com>
3808
3809         * bfd-target.c (target_bfd_reopen): Update.
3810         * cli/cli-dump.c (bfd_openr_with_cleanup)
3811         (bfd_openw_with_cleanup): Update.
3812         * corelow.c (core_open): Update.
3813         * dsrec.c (load_srec): Update.
3814         * exec.c (exec_file_attach): Update.
3815         * gcore.c (create_gcore_bfd): Update.
3816         * gdb_bfd.c (gdb_bfd_ref): Return void.
3817         (gdb_bfd_open): Update.
3818         * gdb_bfd.h (gdb_bfd_ref): Return void.
3819         Update comments.
3820         * jit.c (jit_bfd_try_read_symtab): Update.
3821         * m32r-rom.c (m32r_load, m32r_upload_command): Update.
3822         * machoread.c (macho_symfile_read_all_oso): Update.
3823         (macho_check_dsym): Update.
3824         * procfs.c (insert_dbx_link_bpt_in_file): Update.
3825         * remote-m32r-sdi.c (m32r_load): Update.
3826         * remote-mips.c (mips_load_srec, pmon_load_fast): Update.
3827         * rs6000-nat.c (add_vmap): Update.
3828         * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
3829         Update.
3830         * solib-pa64.c (pa64_solib_create_inferior_hook): Update.
3831         * solib-spu.c (spu_bfd_open): Update.
3832         * solib.c (solib_bfd_fopen, solib_read_symbols): Update.
3833         * spu-linux-nat.c (spu_bfd_open): Update.
3834         * symfile.c (bfd_open_maybe_remote, symfile_bfd_open)
3835         (generic_load): Update.
3836         * windows-nat.c (windows_make_so): Update.
3837
3838 2012-07-22  Siddhesh Poyarekar  <siddhesh@redhat.com>
3839
3840         * sh-tdep.c (sh_treat_as_flt_p): Remove unused variable LEN.
3841
3842 2012-07-20  Jeff Kenton  <jkenton@tilera.com>
3843
3844         * tilegx-linux-tdep.c (tilegx_linux_sigframe_init): Fix
3845         SIGTRAMP_FRAME unwinding.
3846
3847 2012-07-20  Doug Evans  <dje@google.com>
3848
3849         * NEWS: Document new options "set/show use-deprecated-index-sections",
3850         and delete reference to --use-deprecated-index-sections.
3851         * symfile.h (use_deprecated_index_sections): Delete.
3852         * dwarf2read.c (use_deprecated_index_sections): Make static.
3853         (read_index_from_section): Update wording of how to load
3854         deprecated index sections.
3855         (_initialize_dwarf2_read): New options
3856         "set/show use-deprecated-index-sections".
3857         * main.c (captured_main): Delete --use-deprecated-index-sections.
3858
3859 2012-07-20  Pedro Alves  <palves@redhat.com>
3860
3861         PR threads/11692
3862         PR gdb/12203
3863
3864         * infrun.c (handle_inferior_event) <new thread>: Don't special
3865         case minus_one_ptid.
3866         <TARGET_WAITKIND_SPURIOUS>: Ditto.
3867         * linux-thread-db.c (thread_get_info_callback): Don't return early
3868         if the thread is zombie.
3869         (thread_from_lwp): Change return type to void.  Rewrite stale
3870         comment.
3871         (attach_thread): Don't return early if the thread is zombie,
3872         instead set its "dying" flag.
3873         (thread_db_wait): Don't return TARGET_WAITKIND_SPURIOUS anymore.
3874         (find_new_threads_callback): Don't return early if the thread is
3875         zombie.
3876
3877 2012-07-20  Pedro Alves  <palves@redhat.com>
3878
3879         * linux-nat.c (linux_nat_wait): Dump the passed in target options.
3880         * target.c (target_wait): Likewise.
3881         (str_comma_list_concat_elem, do_option, target_options_to_string):
3882         New functions.
3883         * target.h (target_options_to_string): Declare.
3884
3885 2012-07-20  Jan Kratochvil <jan.kratochvil@redhat.com>
3886             Tom Tromey  <tromey@redhat.com>
3887
3888         * dwarf2read.c (dwarf_decode_macros)
3889         <DW_MACRO_GNU_define_indirect_alt, DW_MACRO_GNU_undef_indirect_alt,
3890         DW_MACRO_GNU_transparent_include_alt>: New cases.
3891         (dwarf_decode_macro_bytes) <DW_MACRO_GNU_define_indirect,
3892         DW_MACRO_GNU_undef_indirect>: Examine 'section_is_dwz'.
3893
3894 2012-07-20  Tom Tromey  <tromey@redhat.com>
3895
3896         * dwarf2read.c (try_open_dwo_file): Don't call
3897         gdb_bfd_stash_filename.
3898
3899 2012-07-20  Pedro Alves  <palves@redhat.com>
3900
3901         * i386-tdep.c (i386_record_modrm, i386_record_lea_modrm_addr)
3902         (i386_record_lea_modrm, i386_record_push, i386_record_floats)
3903         (i386_process_record): Tweak description comments.
3904
3905 2012-07-20  Pedro Alves  <palves@redhat.com>
3906
3907         * i386-tdep.c (i386_record_modrm, i386_record_lea_modrm_addr)
3908         (i386_process_record): Use record_read_memory.
3909         * record.c (record_read_memory): New function.
3910         (record_arch_list_add_mem, record_exec_insn): Use
3911         record_read_memory.
3912         * record.h (record_read_memory): Declare.
3913
3914 2012-07-20  Yao Qi  <yao@codesourcery.com>
3915
3916         * cli/cli-setshow.c (do_setshow_command): Don't check pointer is
3917         NULL for xfree.
3918
3919 2012-07-19  Pedro Alves  <palves@redhat.com>
3920
3921         * record.c (record_resume): Ask the target beneath to report all
3922         signals.
3923
3924 2012-07-19  Doug Evans  <dje@google.com>
3925
3926         * dwarf2read.c (dwarf2_ranges_read): Ignore ranges starting at zero if
3927         there's no section at address zero.
3928         (dwarf2_record_block_ranges): Ditto.
3929
3930 2012-07-19  Yao Qi  <yao@codesourcery.com>
3931
3932         * command.h, remote.c: Fix a typo in comment.
3933
3934 2012-07-19  Tom Tromey  <tromey@redhat.com>
3935
3936         PR exp/13206:
3937         * ax-gdb.c (gen_expr) <OP_TYPEOF, OP_DECLTYPE>: New cases.
3938         * breakpoint.c (watchpoint_exp_is_const) <OP_TYPEOF,
3939         OP_DECLTYPE>: New cases.
3940         * c-exp.y (TYPEOF, DECLTYPE): New tokens.
3941         (type_exp): Add new productions.
3942         (ident_tokens): Add __typeof__, typeof, __typeof, __decltype,
3943         and decltype.
3944         * eval.c (evaluate_subexp_standard) <OP_TYPEOF, OP_DECLTYPE>:
3945         New case.
3946         * expprint.c (dump_subexp_body_standard) <OP_TYPEOF,
3947         OP_DECLTYPE>: New case.
3948         * parse.c (operator_length_standard) <OP_TYPEOF, OP_DECLTYPE>:
3949         New case.
3950         * std-operator.def (OP_TYPEOF, OP_DECLTYPE): New constants.
3951         * varobj.c (varobj_create): Handle OP_TYPEOF, OP_DECLTYPE.
3952
3953 2012-07-19  Tom Tromey  <tromey@redhat.com>
3954
3955         * c-exp.y (enum token_flags): New.
3956         (struct token) <cxx_only>: Remove.
3957         <flags>: New field.
3958         (tokentab3, tokentab2, ident_tokens): Update.
3959         (lex_one_token): Update.  Handle FLAG_SHADOW.
3960
3961 2012-07-19  Tom Tromey  <tromey@redhat.com>
3962
3963         * ax-gdb.c (gen_expr): Handle UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE.
3964         * breakpoint.c (watchpoint_exp_is_const): Handle UNOP_CAST_TYPE,
3965         UNOP_REINTERPRET_CAST, UNOP_DYNAMIC_CAST.
3966         * c-exp.y (exp): Emit UNOP_MEMVAL_TYPE, UNOP_CAST_TYPE.  Update
3967         for changes to UNOP_REINTERPRET_CAST, UNOP_DYNAMIC_CAST.  Use
3968         type_exp production where appropriate.
3969         * eval.c (evaluate_subexp_standard) <UNOP_CAST_TYPE>: New case.
3970         <UNOP_DYNAMIC_CAST, UNOP_REINTERPRET_CAST>: Update.
3971         <UNOP_MEMVAL_TYPE>: New case.
3972         (evaluate_subexp_for_address) <UNOP_MEMVAL_TYPE>: New case.
3973         (evaluate_subexp_for_sizeof) <UNOP_MEMVAL_TYPE>: New case.
3974         * expprint.c (print_subexp_standard) <UNOP_CAST_TYPE>: New case.
3975         <UNOP_MEMVAL_TYPE>: New case.
3976         (dump_subexp_body_standard) <UNOP_DYNAMIC_CAST,
3977         UNOP_REINTERPRET_CAST>: Update.
3978         <UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE>: New cases.
3979         * parse.c (operator_length_standard) <UNOP_DYNAMIC_CAST,
3980         UNOP_REINTERPRET_CAST>: Update.
3981         <UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE>: New cases.
3982         * stack.c (return_command): Also check for UNOP_CAST_TYPE.
3983         * std-operator.def (UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE): New
3984         constants.
3985
3986 2012-07-19  Yao Qi  <yao@codesourcery.com>
3987             Jan Kratochvil <jan.kratochvil@redhat.com>
3988
3989         * cli/cli-setshow.c (do_setshow_command): Handle case 'var_filename'
3990         and case 'var_optional_filename' together.
3991         * infcmd.c (_initialize_infcmd): Call add_setshow_string_noescape_cmd
3992         instead of add_setshow_optional_filename_cmd for setshow command
3993         'args'.  Set completer for 'set args'.
3994
3995 2012-07-18  Doug Evans  <dje@google.com>
3996
3997         * common/gdb_vecs.h: Moved here from ./gdb_vecs.h.
3998         * common/gdb_vecs.c: New file, contents from utils.c.
3999         * common/host-defs.h: New file, contents from defs.h.
4000         * utils.h: New file, contents from defs.h.
4001         * defs.h: Move all declarations of objects defined in utils.c
4002         to utils.h (except QUIT() and related).
4003         #include "utils.h", "host-defs.h".
4004         * probe.h (probe_p): Move here from gdb_vecs.h.
4005         * symfile.c: #include "probe.h" instead of "gdb_vecs.h".
4006         * utils.c (free_char_ptr_vec): Moved to common/gdb_vecs.c.
4007         (dirnames_to_char_ptr_vec_append, dirnames_to_char_ptr_vec): Ditto.
4008         * Makefile.in (SFILES): Add common/gdb_vecs.c.
4009         (HFILES_NO_SRCDIR): Add common/gdb_vecs.h, common/host-defs.h, utils.h.
4010         (COMMON_OBS): Add gdb_vecs.o.
4011         (gdb_vecs.o): New rule.
4012
4013 2012-07-18  Keith Seitz  <keiths@redhat.com>
4014
4015         * linespec.c (add_sal_to_sals): Add LITERAL_CANONICAL
4016         parameter.  If non-zero, use SYMNAME as the canonical name
4017         for the SaL.
4018         Update all callers.
4019         (convert_linespec_to_sals): Use add_sal_to_sals for
4020         expressions, too.
4021         (decode_line_full): No need to "fill in missing canonical names"
4022         anymore. Simply make cleanups for the allocated names.
4023
4024 2012-07-18  Keith Seitz  <keiths@redhat.com>
4025
4026         * linespec.c (struct linespec): Constify expression,
4027         source_filename, function_name, and label_name.
4028         (symbol_not_found_error): Make all parameters const.
4029         (linespec_parser_delete): No need to check for NULL
4030         when using xfree. Cast const char * to char * for xfree.
4031
4032 2012-07-18  Keith Seitz  <keiths@redhat.com>
4033
4034         * breakpoint.c (invalid_thread_id_error): New function.
4035         (find_condition_and_thread): Use invalid_thread_id_error.
4036         (watch_command_1): Likewise.
4037
4038 2012-07-18  Tom Tromey  <tromey@redhat.com>
4039
4040         * cc-with-index.sh, cc-with-dwz.sh: Remove.
4041         * contrib/cc-with-tweaks.sh: New file.
4042
4043 2012-07-18  Tom Tromey  <tromey@redhat.com>
4044
4045         * dwarf2read.c (struct dwz_file) <gdb_index>: New field.
4046         (locate_dwz_sections): Recognize .gdb_index.
4047         (create_cus_from_index_list): New function.
4048         (create_cus_from_index): Use it.  Handle .dwz data.
4049         (read_index_from_section): New function, extracted from
4050         dwarf2_read_index.
4051         (dwarf2_read_index): Use it.  Read .gdb_index from dwz file,
4052         if needed.
4053
4054 2012-07-18  Tom Tromey  <tromey@redhat.com>
4055
4056         * dwarf2read.c (struct dwarf2_per_objfile) <dwz_file>: New field.
4057         (struct dwarf2_per_cu_data) <length>: No longer bitfield.
4058         <is_dwz>: New field.
4059         (struct dwz_file): New.
4060         (struct partial_die_info) <is_dwz, spec_is_dwz>: New fields.
4061         (locate_dwz_sections, dwarf2_get_dwz_file)
4062         (get_abbrev_section_for_cu): New functions.
4063         (error_check_comp_unit_head, read_and_check_comp_unit_head)
4064         (read_and_check_type_unit_head): Add abbrev_section argument.
4065         (create_debug_types_hash_table): Update.
4066         (init_cutu_and_read_dies): Use proper abbrev section.
4067         (init_cutu_and_read_dies_no_follow): Likewise.
4068         (set_partial_user): Do nothing if PST==NULL.
4069         (read_comp_units_from_section): New function.
4070         (create_all_comp_units): Use it.
4071         (scan_partial_symbols, partial_die_parent_scope): Update.
4072         (skip_one_die): Handle DW_FORM_GNU_ref_alt, DW_FORM_GNU_strp_alt.
4073         (process_imported_unit_die, read_partial_die): Handle .dwz files.
4074         (find_partial_die): Add offset_in_dwz argument.  Update.
4075         (guess_partial_die_structure_name, fixup_partial_die): Update.
4076         (read_attribute_value): Handle DW_FORM_GNU_ref_alt,
4077         DW_FORM_GNU_strp_alt.
4078         (read_indirect_string_from_dwz): New function.
4079         (dwarf2_const_value_attr): Handle DW_FORM_GNU_strp_alt.
4080         (dump_die_shallow): Handle DW_FORM_GNU_ref_alt, DW_FORM_GNU_strp_alt.
4081         (is_ref_attr): Handle DW_FORM_GNU_ref_alt.
4082         (follow_die_offset): Add offset_in_dwz argument.
4083         (follow_die_ref, dwarf2_fetch_die_location_block): Update.
4084         (skip_form_bytes): Handle DW_FORM_GNU_strp_alt.
4085         (dwarf_decode_macro_bytes): Add section_is_dwz argument.
4086         Handle new macro forms.
4087         (dwarf_decode_macros): Update.
4088         (dwarf2_find_containing_comp_unit): Add offset_in_dwz argument.
4089         (dwarf2_per_objfile_free): Unref dwz_bfd, if it exists
4090         (lookup_die_type): Handle DW_FORM_GNU_ref_alt.
4091         (create_debug_types_hash_table): Use correct abbrev section.
4092         (get_debug_line_section): New function.
4093         (dwarf_decode_line_header, dwarf_decode_lines_1): Use it.
4094         (process_full_comp_unit): Pass 'required' argument to
4095         end_symtab_get_static_block.
4096         * buildsym.h (end_symtab_get_static_block): Update.
4097         * buildsym.c (end_symtab_get_static_block): Add 'required'
4098         argument.
4099         (end_symtab, end_expandable_symtab): Update.
4100
4101 2012-07-18  Tom Tromey  <tromey@redhat.com>
4102
4103         * dwarf2read.c: Don't include zlib.h or sys/mman.h.
4104         (pagesize): Remove.
4105         (struct dwarf2_section_info) <map_addr, map_len>: Remove.
4106         (zlib_decompress_section): Remove.
4107         (dwarf2_read_section): Use gdb_bfd_map_section.
4108         (munmap_section_buffer): Remove.
4109         (free_dwo_file, dwarf2_per_objfile_free): Don't use
4110         munmap_section_buffer.
4111         * gdb_bfd.c: Include zlib.h, sys/mman.h.
4112         (struct gdb_bfd_section_data): New.
4113         (free_one_bfd_section): New function.
4114         (gdb_bfd_close_or_warn): Use free_one_bfd_section.
4115         (get_section_descriptor, zlib_decompress_section)
4116         (gdb_bfd_map_section): New functions.
4117         * gdb_bfd.h (gdb_bfd_map_section): Declare.
4118
4119 2012-07-18  Tom Tromey  <tromey@redhat.com>
4120
4121         * dwarf2read.c (try_open_dwo_file): use gdb_bfd_open.
4122
4123 2012-07-18  Tom Tromey  <tromey@redhat.com>
4124
4125         * gdb_bfd.c (struct gdb_bfd_data): New.
4126         (gdb_bfd_cache): New global.
4127         (struct gdb_bfd_cache_search): New.
4128         (hash_bfd, eq_bfd, gdb_bfd_open): New functions.
4129         (gdb_bfd_ref, gdb_bfd_unref): Use gdb_bfd_data.
4130         * gdb_bfd.h (gdb_bfd_open): Declare.
4131
4132 2012-07-18  Tom Tromey  <tromey@redhat.com>
4133
4134         * utils.c (make_cleanup_bfd_unref): Rename from
4135         make_cleanup_bfd_close.
4136         * defs.h (make_cleanup_bfd_unref): Rename from
4137         make_cleanup_bfd_close.
4138         * cli/cli-dump.c (bfd_openr_with_cleanup): Update.
4139         (bfd_openw_with_cleanup): Update.
4140         * corelow.c (core_open): Update.
4141         * dsrec.c (load_srec): Update.
4142         * m32r-rom.c (m32r_load, m32r_upload_command): Update.
4143         * remote-m32r-sdi.c (m32r_load): Update.
4144         * remote-mips.c (mips_load_srec): Update.
4145         (pmon_load_fast): Update.
4146         * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
4147         Update.
4148         (darwin_bfd_open): Update.
4149         * solib.c (solib_bfd_fopen): Update.
4150         * symfile-mem.c (symbol_file_add_from_memory): Update.
4151         * symfile.c (symbol_file_add_with_addrs_or_offsets): Update.
4152         (symfile_bfd_open): Update.
4153         (generic_load): Update.
4154
4155 2012-07-18  Tom Tromey  <tromey@redhat.com>
4156
4157         * remote-mips.c (mips_load_srec): Use make_cleanup_bfd_close.
4158         (pmon_load_fast): Likewise.
4159         * m32r-rom.c (m32r_load): Use make_cleanup_bfd_close.
4160         (m32r_upload_command): Likewise.
4161         * dsrec.c (load_srec): Use make_cleanup_bfd_close.
4162         * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
4163         Use make_cleanup_bfd_close.
4164
4165 2012-07-18  Tom Tromey  <tromey@redhat.com>
4166
4167         * symfile.c (symfile_bfd_open): Don't copy name.  Call
4168         gdb_bfd_stash_filename.
4169         (load_command): Open the new BFD before freeing the old.
4170         (bfd_open_maybe_remote): Call gdb_bfd_stash_filename.
4171         * symfile-mem.c (symbol_file_add_from_memory): Don't copy name.
4172         Call gdb_bfd_stash_filename.
4173         * spu-linux-nat.c (spu_bfd_open): Don't copy name.
4174         * solib-spu.c (spu_bfd_fopen): Don't copy name.  Call
4175         gdb_bfd_stash_filename.
4176         * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
4177         Free found_pathname.
4178         * rs6000-nat.c (add_vmap): Don't copy filename.  Call
4179         gdb_bfd_stash_filename.
4180         * remote.c (remote_bfd_open): Call gdb_bfd_stash_filename.
4181         * machoread.c (macho_add_oso_symfile): Call
4182         gdb_bfd_stash_filename.
4183         (macho_symfile_read_all_oso): Arrange to free archive_name.  Call
4184         gdb_bfd_stash_filename.
4185         (macho_check_dsym): Don't copy filename.  Call
4186         gdb_bfd_stash_filename.
4187         * jit.c (bfd_open_from_target_memory): Don't copy the filename.
4188         * gdb_bfd.c (gdb_bfd_stash_filename): New function.
4189         * gdb_bfd.h (gdb_bfd_stash_filename): Declare.
4190         * gcore.c (create_gcore_bfd): Call gdb_bfd_stash_filename.
4191         * exec.c (exec_close): Don't free the BFD's filename.
4192         (exec_file_attach): Don't copy the filename.  Call
4193         gdb_bfd_stash_filename.
4194         * corelow.c (core_close): Don't free the BFD's filename.
4195         (core_open): Call gdb_bfd_stash_filename.
4196         * corefile.c (reopen_exec_file): Remove #if 0 code.
4197         * solib.c (solib_bfd_fopen): Call gdb_bfd_stash_filename.  Free
4198         pathname.
4199         * dwarf2read.c (try_open_dwo_file): Call gdb_bfd_stash_filename.
4200
4201 2012-07-18  Tom Tromey  <tromey@redhat.com>
4202
4203         * dwarf2read.c (try_open_dwo_file): Use gdb_bfd_ref and
4204         gdb_bfd_unref.
4205         (free_dwo_file): Use gdb_bfd_unref.
4206         * cli/cli-dump.c: Include gdb_bfd.h.
4207         (bfd_openw_with_cleanup): Use gdb_bfd_ref.
4208         (bfd_openr_with_cleanup): Likewise.
4209         * windows-nat.c (windows_make_so): Use gdb_bfd_ref,
4210         gdb_bfd_unref.
4211         * utils.c: Include gdb_bfd.h.
4212         (do_bfd_close_cleanup): Use gdb_bfd_unref.
4213         * symfile.c: Include gdb_bfd.h.
4214         (separate_debug_file_exists): Use gdb_bfd_unref.
4215         (bfd_open_maybe_remote): Use gdb_bfd_ref.
4216         (symfile_bfd_open): Use gdb_bfd_ref, gdb_bfd_unref.
4217         (generic_load): Use gdb_bfd_ref.
4218         (reread_symbols): Use gdb_bfd_unref.
4219         * symfile-mem.c: Include gdb_bfd.h.
4220         (symbol_file_add_from_memory): Use make_cleanup_bfd_close.
4221         * spu-linux-nat.c (spu_bfd_open): Use gdb_bfd_ref, gdb_bfd_unref.
4222         * solib.c: Include gdb_bfd.h.
4223         (solib_bfd_fopen): Use gdb_bfd_ref.
4224         (solib_bfd_open): Use gdb_bfd_unref.
4225         (free_so_symbols): Use gdb_bfd_unref.
4226         (reload_shared_libraries_1): Use gdb_bfd_unref.
4227         * solib-spu.c: Include gdb_bfd.h.
4228         (spu_bfd_fopen): Use gdb_bfd_ref, gdb_bfd_unref.
4229         * solib-pa64.c (pa64_solib_create_inferior_hook): Use gdb_bfd_ref,
4230         gdb_bfd_unref.
4231         * solib-frv.c: Include gdb_bfd.h.
4232         (enable_break2): Use gdb_bfd_unref.
4233         * solib-dsbt.c: Include gdb_bfd.h.
4234         (enable_break2): Use gdb_bfd_unref.
4235         * solib-darwin.c: Include gdb_bfd.h.
4236         (darwin_solib_get_all_image_info_addr_at_init): Use gdb_bfd_ref,
4237         gdb_bfd_unref.
4238         (darwin_bfd_open): Use gdb_bfd_unref.
4239         * rs6000-nat.c (add_vmap): Use gdb_bfd_ref, gdb_bfd_unref.
4240         * remote-mips.c: Include gdb_bfd.h.
4241         (mips_load_srec): Use gdb_bfd_ref.
4242         (pmon_load_fast): Use gdb_bfd_ref.
4243         * remote-m32r-sdi.c: Include gdb_bfd.h.
4244         (m32r_load): Use gdb_bfd_ref.
4245         * record.c: Include gdb_bfd.h.
4246         (record_save_cleanups): Use gdb_bfd_unref.
4247         (cmd_record_save): Use gdb_bfd_unref.
4248         * procfs.c (insert_dbx_link_bpt_in_file): Use gdb_bfd_ref,
4249         gdb_bfd_unref.
4250         * objfiles.h (gdb_bfd_close_or_warn): Remove.
4251         (gdb_bfd_ref, gdb_bfd_unref): Move to gdb_bfd.h.
4252         * objfiles.c: Include gdb_bfd.h.
4253         (free_objfile): Use gdb_bfd_unref.
4254         (gdb_bfd_close_or_warn, gdb_bfd_ref, gdb_bfd_unref): Move to
4255         gdb_bfd.c.
4256         * machoread.c (macho_add_oso_symfile): Use gdb_bfd_unref.
4257         (macho_symfile_read_all_oso): Use gdb_bfd_ref, gdb_bfd_unref.
4258         (macho_check_dsym): Likewise.
4259         * m32r-rom.c: Include gdb_bfd.h.
4260         (m32r_load): Use gdb_bfd_ref.
4261         (m32r_upload_command): Use gdb_bfd_ref.
4262         * jit.c: Include gdb_bfd.h.
4263         (jit_bfd_try_read_symtab): Use gdb_bfd_ref, gdb_bfd_unref.
4264         * gdb_bfd.h: New file.
4265         * gdb_bfd.c: New file.
4266         * gcore.c: Include gdb_bfd.h.
4267         (create_gcore_bfd): Use gdb_bfd_ref.
4268         (do_bfd_delete_cleanup): Use gdb_bfd_unref.
4269         (gcore_command): Use gdb_bfd_unref.
4270         * exec.c: Include gdb_bfd.h.
4271         (exec_close): Use gdb_bfd_unref.
4272         (exec_close_1): Use gdb_bfd_unref.
4273         (exec_file_attach): Use gdb_bfd_ref.
4274         * elfread.c: Include gdb_bfd.h.
4275         (build_id_verify): Use gdb_bfd_unref.
4276         * dsrec.c: Include gdb_bfd.h.
4277         (load_srec): Use gdb_bfd_ref.
4278         * corelow.c: Include gdb_bfd.h.
4279         (core_close): Use gdb_bfd_unref.
4280         (core_open): Use gdb_bfd_ref.
4281         * bfd-target.c: Include gdb_bfd.h.
4282         (target_bfd_xclose): Use gdb_bfd_unref.
4283         (target_bfd_reopen): Use gdb_bfd_ref.
4284         * Makefile.in (SFILES): Add gdb_bfd.c.
4285         (HFILES_NO_SRCDIR): Add gdb_bfd.h.
4286         (COMMON_OBS): Add gdb_bfd.o.
4287
4288 2012-07-18  Keith Seitz  <keiths@redhat.com>
4289
4290         * breakpoint.c (find_condition_and_thread): Initialize
4291         TASK and REST.
4292         (create_breakpiont): find_condition_and_thread will now
4293         initialize COND_STRING, THREAD, and REST (and TASK).
4294         (addr_string_to_sals): Likewise.
4295
4296 2012-07-18  Pedro Alves  <palves@redhat.com>
4297
4298         * infrun.c (handle_inferior_event) <TARGET_WAITKIND_NO_HISTORY>:
4299         Pull the single step breakpoints out of the target.
4300
4301 2012-07-18  Sergio Durigan Junior  <sergiodj@redhat.com>
4302
4303         * probe.c (probe_safe_evaluate_at_pc): Rename variable `n_probes'.
4304         * stap-probe.c (compile_probe_arg): Likewise.
4305
4306 2012-07-18  Sergio Durigan Junior  <sergiodj@redhat.com>
4307
4308         * elfread.c (elf_get_probe_argument_count): Remove `objfile' argument.
4309         (elf_compile_to_ax): Likewise.
4310         * infrun.c (insert_exception_resume_from_probe): Likewise.
4311         (check_exception_resume): Remove `objfile' variable.
4312         * probe.c (find_probe_by_pc): Remove `objfile' argument.
4313         (struct probe_and_objfile, probe_and_objfile_s): Delete.
4314         (collect_probes): Adjust return value to `VEC (probe_p) *'.
4315         (compare_entries): Rename to...
4316         (compare_probes): ...this.  Adjust function to work with
4317         `struct probe *'.  Rename variables `ea' and `eb' to `pa' and `pb'
4318         respectively.
4319         (gen_ui_out_table_header_info): Adjust `probes' argument to be
4320         `VEC (probe_p) *'.
4321         (print_ui_out_info): Adjust argument to be `struct probe *'.
4322         (info_probes_for_ops): Adjust internal computations to use
4323         `VEC (probe_p) *'.
4324         (probe_safe_evaluate_at_pc): Refactor to not pass `objfile' anymore.
4325         * probe.h (struct probe_ops) <get_probe_argument_count, compile_to_ax,
4326         gen_info_probes_table_values>: Remove `objfile' argument.
4327         (struct probe) <objfile>: New field.
4328         (find_probe_by_pc): Remove `objfile' argument.
4329         * stap-probe.c (stap_parse_probe_arguments): Likewise.
4330         (stap_get_probe_argument_count): Likewise.
4331         (stap_get_arg): Likewise.
4332         (stap_evaluate_probe_argument): Likewise.
4333         (stap_compile_to_ax): Likewise.
4334         (compile_probe_arg): Refactor not to pass `objfile' anymore.
4335         (handle_stap_probe): Fill `objfile' field from `struct probe'.
4336         (stap_gen_info_probes_table_header): Remove `objfile' argument.
4337         * symfile.h (struct sym_probe_fns) <sym_evaluate_probe_argument,
4338         sym_compile_to_ax>: Likewise.
4339
4340 2012-07-18  Terry Guo  <terry.guo@arm.com>
4341
4342         PR 14329
4343         * defs.h (GDB_MI_MSG_WIDTH): New.
4344         * ser_base (ser_base_read_error_fd): New function.
4345         (do_ser_base_readchar): Poll error file descriptor as well as
4346         standard output.
4347         (generic_readchar): Refactor error handling.
4348
4349 2012-07-18  Joel Brobecker  <brobecker@adacore.com>
4350
4351         * NEWS: Create a new section for the next release branch.
4352         Rename the section of the current branch, now that it has
4353         been cut.
4354
4355 2012-07-18  Joel Brobecker  <brobecker@adacore.com>
4356
4357         GDB 7.5 branch created (branch timestamp: 2012-07-18 03:22 UTC)
4358         * version.in: Bump version to 7.5.50.20120718-cvs.
4359
4360 2012-07-17  Keith Seitz  <keiths@redhat.com>
4361
4362         * linespec.c (linespec_parse_line_offset): Make parameter
4363         const.
4364
4365 2012-07-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
4366
4367         PR 11914
4368         * f-valprint.c (info_common_command): New variable frame_id.
4369         Reinitialize FI form FRAME_ID after each print_variable_and_value.
4370         * printcmd.c (print_variable_and_value): Extend function comment.
4371         Add comment for invalidated FRAME.
4372         * stack.c (backtrace_command_1): New variable frame_id.  Reinitialize
4373         FI form FRAME_ID after each print_frame_local_vars.
4374         (struct print_variable_and_value_data): Change frame to frame_id.
4375         (do_print_variable_and_value): New variable frame, initialize it from
4376         p->frame_id.  Add comment for invalidated FRAME.
4377         (print_frame_local_vars, print_frame_arg_vars): New function comment.
4378         Update CB_DATA.FRAME to CB_DATA.FRAME_ID initialization.  Add comment
4379         for invalidated FRAME.
4380
4381 2012-07-16  Marc Khouzam  <marc.khouzam@ericsson.com>
4382             Pedro Alves  <palves@redhat.com>
4383
4384         * linux-nat.c (linux_nat_detach): Don't unregister from the event
4385         loop.
4386
4387 2012-07-16  Tom Tromey  <tromey@redhat.com>
4388
4389         * jv-typeprint.c (c_type_print_varspec_suffix): Don't declare.
4390
4391 2012-07-15  Doug Evans  <dje@google.com>
4392
4393         * dwarf2read.c (stmt_list_hash): New struct.
4394         (type_unit_group): Embed "per_cu" member, remove pointer.
4395         New union member "t", move member "tus" into it, all uses updated.
4396         New member "hash", replaces member "line_offset, all uses updated.
4397         (quick_file_names): Replace member "offset" with "hash", all uses
4398         updated.
4399         (hash_stmt_list_entry, eq_stmt_list_entry): New functions.
4400         (hash_file_name_entry, eq_file_name_entry): Call them.
4401         (hash_type_unit_group, eq_type_unit_group): Ditto.
4402         (dw2_get_cu, dw2_get_primary_cu): Replace assert with a better one.
4403         (dw2_get_file_names_reader): Fix file name table calculation for TUs.
4404         (dw2_get_file_names): Update.
4405         (create_type_unit_group): Replace "per_cu" arg with "cu".
4406         All callers updated.  Fix "quick" (.gdb_index) handling.
4407         (get_type_unit_group): Replace "per_cu" arg with "cu".
4408         All callers updated.
4409         (build_type_unit_groups): Don't reset tu_stats.
4410
4411         * symtab.c (filename_seen_cache): Delete members "tab_alloc_size",
4412         "tab_cur_size".  Change member "tab" to be a htab_t.
4413         (create_filename_seen_cache): Update.
4414         (clear_filename_seen_cache, delete_filename_seen_cache): Update.
4415         (filename_seen): Update.
4416
4417 2012-07-13  Doug Evans  <dje@google.com>
4418
4419         * symtab.c (filename_seen): Update comment.
4420
4421 2012-07-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
4422             Doug Evans  <dje@google.com>
4423
4424         * buildsym.c (end_symtab_1): Split it to ...
4425         (end_symtab_get_static_block): ... this ...
4426         (end_symtab_from_static_block): ... and this function.
4427         (end_symtab, end_expandable_symtab): Call them.
4428         * buildsym.h (end_symtab_get_static_block)
4429         (end_symtab_from_static_block): New declarations.
4430         * dwarf2read.c (process_full_comp_unit): New variable static_block.
4431         Set its valid CU ranges.
4432
4433 2012-07-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
4434
4435         * dwarf2loc.c (disassemble_dwarf_expression): Handle
4436         DW_OP_GNU_parameter_ref.
4437
4438 2012-07-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
4439
4440         * dwarf2read.c (read_call_site_scope): Do not gdb_assert for invalid
4441         read-in CALL_SITE_PARAMETER_PARAM_OFFSET.
4442
4443 2012-07-13  Doug Evans  <dje@google.com>
4444
4445         * symtab.c (output_source_filename): Delete unnecessary forward decl.
4446         (filename_seen_cache): New struct.
4447         (INITIAL_FILENAME_SEEN_CACHE_SIZE): New macro.
4448         (create_filename_seen_cache): New function.
4449         (clear_filename_seen_cache, delete_filename_seen_cache): New functions.
4450         (filename_seen): Delete arg "first".  New arg "cache".  All callers
4451         updated.
4452         (output_source_filename_data): New struct.
4453         (output_source_filename): Delete arg "first".  New arg "data".
4454         All callers updated.
4455         (sources_info): Delete local "first".  New locals "data", "cleanups".
4456         Rewrite to use filename_seen_cache.
4457         (add_partial_filename_data): Delete member "first".  New member
4458         "filename_seen_cache".  All uses updated.
4459         (make_source_files_completion_list): Rewrite to use
4460         filename_seen_cache.
4461
4462 2012-07-12  Doug Evans  <dje@google.com>
4463
4464         * psymtab.c (map_symbol_filenames_psymtab): Skip shared psymtabs.
4465
4466 2012-07-10  Doug Evans  <dje@google.com>
4467
4468         PR gdb/13498
4469         * dwarf2read.c (dwarf2_per_objfile): New members n_type_unit_groups,
4470         all_type_unit_groups, type_unit_groups, tu_stats.
4471         (dwarf2_per_cu_data): Move "imported_symtabs" into new union "s".
4472         All uses updated.  Add type_unit_group to union "s".
4473         (type_unit_group): New struct.
4474         (IS_TYPE_UNIT_GROUP): New macro.
4475         (abbrev_table): Delete unused member "section".
4476         (dw2_do_instantiate_symtab): Early exit if type_unit_group.
4477         (dw2_get_cu): Assert not used with type_unit_group.
4478         (dw2_get_primary_cu): New function.
4479         (dw2_build_type_unit_groups_reader): New function.
4480         (dw2_build_type_unit_groups): New function.
4481         (dw2_get_file_names): Assert not called on type units.
4482         (dw2_map_symtabs_matching_filename): Call dw2_build_type_unit_groups.
4483         Redo loop to iterate over type unit groups instead of type units.
4484         (dw2_expand_symtabs_matching, dw2_map_symbol_filenames): Ditto.
4485         (read_abbrev_offset): New function.
4486         (init_cutu_and_read_dies): New arg "abbrev_table".  All callers
4487         updated.
4488         (create_partial_symtab): New function.
4489         (process_psymtab_comp_unit_reader): Assert not used with type units.
4490         Call create_partial_symtab.
4491         (process_psymtab_type_unit): Delete.
4492         (hash_type_unit_group, eq_type_unit_group): New functions.
4493         (allocate_type_unit_groups_table): New function.
4494         (NO_STMT_LIST_TYPE_UNIT_PSYMTAB): New macro.
4495         (NO_STMT_LIST_TYPE_UNIT_PSYMTAB_SIZE): New macro.
4496         (create_type_unit_group, get_type_unit_group): New functions.
4497         (tu_abbrev_offset): New struct.
4498         (sort_tu_by_abbrev_offset): New function.
4499         (add_type_unit_group_to_table): New function.
4500         (build_type_unit_groups): New function.
4501         (build_type_psymtabs_reader): New function.
4502         (build_type_psymtab_dependencies): New function.
4503         (build_type_psymtabs): Rewrite.
4504         (scan_partial_symbols): Flag an error if a DW_TAG_imported_unit
4505         is seen in a type unit.
4506         (process_queue): Move symtab expansion debugging printfs here.
4507         Call process_full_type_unit for type units.
4508         (compute_symtab_includes): Assert not called for type units.
4509         (process_cu_includes): Don't call compute_symtab_includes for
4510         type units.
4511         (process_full_type_unit): New function.
4512         (process_imported_unit_die): Flag an error if called for type units.
4513         (handle_DW_AT_stmt_list): Delete arg "want_line_info".  All callers
4514         updated.  Assert not called for type units.
4515         (read_file_scope): Call dwarf2_start_symtab.
4516         (setup_type_unit_groups): New function.
4517         (read_type_unit_scope): Rewrite.
4518         (abbrev_table_read_table): Initialize abbrev_table->offset.
4519         (abbrev_table_free_cleanup): New function.
4520         (dwarf2_start_symtab): New function.
4521         (load_full_type_unit): Assert not called for type unit groups.
4522         * buildsym.c (finish_block_internal): New arg "expandable".
4523         All callers updated.
4524         (start_symtab): Move most contents to ...
4525         (restart_symtab): ... here.  New function.
4526         (reset_symtab_globals): New function.
4527         (end_symtab_1): Renamed from end_symtab.  New arg "expandable".
4528         Call reset_symtab_globals.
4529         (end_symtab, end_expandable_symtab): New functions.
4530         (set_missing_symtab, augment_type_symtab): New functions.
4531         * buildsym.h (end_expandable_symtab): Declare.
4532         (augment_type_symtab, restart_symtab): Declare.
4533         * psympriv.h (struct partial_symtab): New member "anonymous".
4534         * psymtab.c (partial_map_symtabs_matching_filename): Ignore
4535         anonymous psymtabs.
4536         (read_psymtabs_with_filename): Ditto.
4537         (map_symbol_filenames_psymtab, psymtab_to_fullname): Ditto.
4538         (expand_symtabs_matching_via_partial): Ditto.
4539         (dump_psymtab): Update.
4540         * dictionary.c (dict_add_pending): New function.
4541         * dictionary.h (dict_add_pending): Declare.
4542
4543 2012-07-09  Doug Evans  <dje@google.com>
4544
4545         * buildsym.c (start_subfile): Remove unnecessary check for
4546         name == NULL.
4547
4548         * psymtab.c (allocate_psymtab): Use host_address_to_string.
4549
4550         * dwarf2read.c (load_full_type_unit): Simplify.
4551
4552         * dwarf2read.c (dwarf2_per_objfile): Change type of all_type_units
4553         to struct signatured_type **.  All uses updated.
4554
4555         * dwarf2read.c (dwarf2_attr_no_follow): Delete unused arg "cu".
4556         All callers updated.
4557
4558 2012-07-09  Tom Tromey  <tromey@redhat.com>
4559
4560         * c-exp.y (check_parameter_typelist): New function.
4561         (parameter_typelist): Call it.
4562         * eval.c (make_params): Handle '(void)' case.
4563         * gdbtypes.c (lookup_function_type_with_arguments): Handle
4564         '(void)' case.
4565
4566 2012-07-07  Jan Kratochvil  <jan.kratochvil@redhat.com>
4567
4568         * common/linux-ptrace.c: Include gdb_assert.h.
4569         <__i386__> (linux_ptrace_test_ret_to_nx_instr): New declaration.
4570         <__i386__>: Include sys/reg.h, sys/mman.h, signal.h, sys/wait.h and
4571         stdint.h.
4572         (linux_ptrace_test_ret_to_nx, linux_ptrace_init_warnings): New
4573         functions.
4574         * common/linux-ptrace.h (linux_ptrace_init_warnings): New declarations.
4575         * linux-nat.c (linux_child_post_attach)
4576         (linux_child_post_startup_inferior): Call linux_ptrace_init_warnings.
4577
4578 2012-07-07  Jan Kratochvil  <jan.kratochvil@redhat.com>
4579
4580         * linux-thread-db.c (thread_db_find_new_threads_silently): Do not apply
4581         nptl <2.7 bug workaround for core files.
4582
4583 2012-07-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
4584
4585         * linux-nat.c (resume_lwp, linux_nat_resume): Remove LP->SIGINFO
4586         clearing.
4587         (save_siginfo): Remove.
4588         (stop_wait_callback, linux_nat_filter_event): Remove the save_siginfo
4589         call.
4590         (resume_stopped_resumed_lwps): Remove LP->SIGINFO clearing.
4591         (linux_nat_get_siginfo): Use PTRACE_GETSIGINFO.
4592         * linux-nat.h (struct lwp_info): Remove field siginfo.
4593
4594 2012-07-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
4595
4596         Code cleanup for the next patch.
4597         * arm-linux-nat.c (arm_linux_stopped_data_address): Change variable
4598         siginfo_p to siginfo, update its users incl. the linux_nat_get_siginfo
4599         call for it.
4600         * ia64-linux-nat.c (ia64_linux_stopped_data_address): Likewise.
4601         (ia64_linux_stopped_data_address):
4602         * linux-nat.c (linux_nat_get_siginfo): Add parameter siginfo, change
4603         the return value.
4604         * linux-nat.h (linux_nat_get_siginfo): Likewise.
4605         * ppc-linux-nat.c (ppc_linux_stopped_data_address): Change variable
4606         siginfo_p to siginfo, update its users incl. the linux_nat_get_siginfo
4607         call for it.
4608
4609 2012-07-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
4610
4611         PR 14321
4612         * findcmd.c (parse_find_args): New variable pattern_buf_size_need.
4613         Increase buffer sizes to 2x we need, not just 2x of the previous size.
4614
4615 2012-07-06  Tom Tromey  <tromey@redhat.com>
4616
4617         * c-exp.y (DOTDOTDOT): New token.
4618         (func_mod, exp): Use parameter_typelist.
4619         (parameter_typelist): New production.
4620         (tokentab3): Add "..." token.
4621         * eval.c (make_params): Handle varargs.
4622         * gdbtypes.c (lookup_function_type_with_arguments): Handle
4623         varargs.
4624
4625 2012-07-06  Tom Tromey  <tromey@redhat.com>
4626
4627         PR exp/9608:
4628         * c-exp.y (%union) <tvec>: Change type.
4629         (func_mod): Now uses <tvec> type.
4630         (exp): Update for tvec change.
4631         (direct_abs_decl): Push the typelist.
4632         (func_mod): Return a typelist.
4633         (nonempty_typelist): Update for tvec change.
4634         * gdbtypes.c (lookup_function_type_with_arguments): New function.
4635         * gdbtypes.h (lookup_function_type_with_arguments): Declare.
4636         * parse.c (pop_type_list): New function.
4637         (push_typelist): New function.
4638         (follow_types): Handle tp_function_with_arguments.
4639         * parser-defs.h (type_ptr): New typedef.  Define a VEC.
4640         (enum type_pieces) <tp_function_with_arguments>: New constant.
4641         (union type_stack_elt) <typelist_val>: New field.
4642         (push_typelist): Declare.
4643
4644 2012-07-06  Tom Tromey  <tromey@redhat.com>
4645
4646         * c-exp.y (%union) <type_stack>: New field.
4647         (abs_decl, direct_abs_decl): Use <type_stack> type.  Update.
4648         (ptr_operator_ts): New production.
4649         (ptype): Update.
4650         * parse.c (type_stack_reserve): New function.
4651         (check_type_stack_depth): Use it.
4652         (pop_type_stack, append_type_stack, push_type_stack)
4653         (get_type_stack, type_stack_cleanup): New functions.
4654         (follow_types): Handle tp_type_stack.
4655         (_initialize_parse): Simplify initialization.
4656         * parser-defs.h (enum type_pieces) <tp_type_stack>: New
4657         constant.
4658         (union type_stack_elt) <stack_val>: New field.
4659         (get_type_stack, append_type_stack, push_type_stack)
4660         (type_stack_cleanup): Declare.
4661
4662 2012-07-06  Tom Tromey  <tromey@redhat.com>
4663
4664         * parser-defs.h (type_stack, type_stack_size, type_stack_depth):
4665         Remove.
4666         (struct type_stack): New.
4667         * parse.c (type_stack, type_stack_size, type_stack_depth):
4668         Remove.
4669         (type_stack): New global.
4670         (parse_exp_in_context, check_type_stack_depth)
4671         (insert_into_type_stack, insert_type, push_type, push_type_int)
4672         (insert_type_address_space, pop_type, pop_type_int)
4673         (_initialize_parse): Update.
4674
4675 2012-07-06  Tom Tromey  <tromey@redhat.com>
4676
4677         * c-exp.y (func_mod, direct_abs_decl, abs_decl, ptr_operator):
4678         Remove %type.
4679
4680 2012-07-06  Siddhesh Poyarekar  <siddhesh@redhat.com>
4681
4682         * c-lang.c (c_printstr): Remove ununsed variable WIDTH.
4683
4684 2012-07-06  Siddhesh Poyarekar  <siddhesh@redhat.com>
4685             Jan Kratochvil  <jan.kratochvil@redhat.com>
4686
4687         * cp-valprint.c (cp_print_value): Replace potentially unsafe
4688         alloca with xmalloc/xfree.
4689
4690 2012-07-06  Siddhesh Poyarekar  <siddhesh@redhat.com>
4691
4692         * MAINTAINERS (Write After Approval): Add myself to the list.
4693
4694 2012-07-05  Doug Evans  <dje@google.com>
4695
4696         * dwarf2read.c (dw2_expand_symtabs_matching): Fix typo.
4697
4698 2012-07-05  Hui Zhu  <hui_zhu@mentor.com>
4699
4700         * ax-gdb.c (cli/cli-utils.h): New include.
4701         (linespec.h): Ditto.
4702         (agent_eval_command_one): New function.
4703         (agent_command_1): Ditto.
4704         (agent_command): Call function agent_command_1.
4705         (agent_eval_command): Ditto.
4706         (_initialize_ax_gdb): Change help for "maint agent"
4707         and "maint agent-eval".
4708
4709 2012-07-05  Hui Zhu  <hui_zhu@mentor.com>
4710
4711         * breakpoint.c (check_for_argument): Move to file cli/cli-utils.c.
4712         * cli/cli-utils.c (check_for_argument): New function.
4713         * cli/cli-utils.h (check_for_argument): Ditto.
4714
4715 2012-07-04  H.J. Lu  <hongjiu.lu@intel.com>
4716
4717         * NEWS: Mention x32 ABI support.
4718
4719 2012-07-04  H.J. Lu  <hongjiu.lu@intel.com>
4720
4721         * amd64-tdep.c (amd64_x32_init_abi): Set sp_regnum_from_eax to
4722         AMD64_RSP_REGNUM and pc_regnum_from_eax to AMD64_RIP_REGNUM.
4723
4724         * i386-tdep.c (i386_gdbarch_init): Initialize sp_regnum_from_eax
4725         and pc_regnum_from_eax to -1.  Update SP regnum from
4726         sp_regnum_from_eax and PC regnum from pc_regnum_from_eax if
4727         needed.
4728
4729         * i386-tdep.h (gdbarch_tdep): Add sp_regnum_from_eax and
4730         pc_regnum_from_eax.
4731
4732 2012-07-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
4733
4734         Fix 'warning: parameter has incomplete type' with gcc-3.4.6.
4735         * dwarf2expr.h: Include gdbtypes.h.
4736         (enum call_site_parameter_kind, union call_site_parameter_u): Remove
4737         these forward declarations.
4738         (cu_offset, sect_offset): Move these ...
4739         * gdbtypes.h: Remove include dwarf2expr.h.
4740         (cu_offset, sect_offset): ... here.
4741
4742 2012-07-03  H.J. Lu  <hongjiu.lu@intel.com>
4743
4744         * amd64-linux-tdep.c (linux_sigtramp_code): Renamed to ...
4745         (amd64_linux_sigtramp_code): This.
4746         (amd64_x32_linux_sigtramp_code): New.
4747         (LINUX_SIGTRAMP_LEN): Updated.
4748         (amd64_linux_sigtramp_start): Check x32 sigtramp.
4749
4750 2012-07-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
4751
4752         * linux-thread-db.c (thread_db_new_objfile): Fix comment typos.
4753
4754 2012-07-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
4755
4756         * config.in: Regenerate.
4757         * configure: Regenerate.
4758         * configure.ac: Remove check for gnu/libc-version.h.
4759         * linux-thread-db.c <HAVE_GNU_LIBC_VERSION_H>: Remove include of
4760         gnu/libc-version.h.
4761         (enable_thread_event_reporting) <HAVE_GNU_LIBC_VERSION_H>: Remove
4762         variables libc_version, libc_major and libc_minor.  Replace sscanf by
4763         inferior_has_bug.  Extend the comment.
4764
4765 2012-07-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
4766
4767         * linux-thread-db.c (inferior_has_bug): New function.
4768         (thread_db_find_new_threads_silently): Return boolean as checked by
4769         inferior_has_bug, describe it in the comments.
4770         (try_thread_db_load_1): Move call to thread_db_find_new_threads_silently
4771         earlier.  Abort the initialization if it returned non-zero.
4772         (thread_db_new_objfile): Exclude debug files.
4773         (thread_db_find_new_threads_2): Preinitialize ERR.  Check errors also
4774         if UNTIL_NO_NEW,
4775
4776 2012-07-02  Doug Evans  <dje@google.com>
4777
4778         * dwarf2read.c (maybe_queue_comp_unit): Move definition next to others
4779         related to queue management.
4780
4781         * dwarf2read.c (create_debug_types_hash_table): Use "debug dwarf2-read"
4782         instead of "debug dwarf2-die" in debugging printfs.
4783         (create_debug_info_hash_table_reader): Ditto.
4784         (create_debug_info_hash_table): Ditto.
4785         (init_dwo_file): Ditto.
4786         (init_cutu_and_read_dies): Add debugging printf.
4787         (init_cutu_and_read_dies_no_follow): Ditto.
4788         (process_psymtab_comp_unit_reader): Ditto.
4789
4790 2012-07-02  Stan Shebs  <stan@codesourcery.com>
4791
4792         Add target-side support for dynamic printf.
4793         * NEWS: Mention the additional style.
4794         * breakpoint.h (struct bp_target_info): New fields tcommands, persist.
4795         (struct bp_location): New field cmd_bytecode.
4796         * breakpoint.c: Include format.h.
4797         (disconnected_dprintf): New global.
4798         (parse_cmd_to_aexpr): New function.
4799         (build_target_command_list): New function.
4800         (insert_bp_location): Call it.
4801         (remove_breakpoints_pid): Skip dprintf breakpoints.
4802         (print_one_breakpoint_location): Ditto.
4803         (dprintf_style_agent): New global.
4804         (dprintf_style_enums): Add dprintf_style_agent.
4805         (update_dprintf_command_list): Add agent case.
4806         (agent_printf_command): New function.
4807         (_initialize_breakpoint): Add new commands.
4808         * common/ax.def (printf): New bytecode.
4809         * ax.h (ax_string): Declare.
4810         * ax-gdb.h (gen_printf): Declare.
4811         * ax-gdb.c: Include cli-utils.h, format.h.
4812         (gen_printf): New function.
4813         (maint_agent_print_command): New function.
4814         (_initialize_ax_gdb): Add maint agent-printf command.
4815         * ax-general.c (ax_string): New function.
4816         (ax_print): Add printf disassembly.
4817         * Makefile.in (SFILES): Add format.c
4818         (COMMON_OBS): Add format.o.
4819         * common/format.h: New file.
4820         * common/format.c: New file.
4821         * printcmd.c: Include format.h.
4822         (ui_printf): Call parse_format_string.
4823         * remote.c (remote_state): New field breakpoint_commands.
4824         (PACKET_BreakpointCommands): New enum.
4825         (remote_breakpoint_commands_feature): New function.
4826         (remote_protocol_features): Add new BreakpointCommands entry.
4827         (remote_can_run_breakpoint_commands): New function.
4828         (remote_add_target_side_commands): New function.
4829         (remote_insert_breakpoint): Call it.
4830         (remote_insert_hw_breakpoint): Ditto.
4831         (_initialize_remote): Add new packet configuration for
4832         target-side breakpoint commands.
4833         * target.h (struct target_ops): New field
4834         to_can_run_breakpoint_commands.
4835         (target_can_run_breakpoint_commands): New macro.
4836         * target.c (update_current_target): Handle
4837         to_can_run_breakpoint_commands.
4838
4839 2012-07-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
4840
4841         Execute -ix and -iex only after system and user gdbinit files.
4842         * main.c (captured_main): Move CMDARG_INIT_FILE and CMDARG_INIT_COMMAND
4843         processing down after gdbinit files.
4844
4845 2012-07-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
4846
4847         Add fnmatch-gnu module.
4848         * gnulib/Makefile.in (aclocal_m4_deps): Add new files and remove one.
4849         * gnulib/configure.ac (AC_INIT): Use now import/memmem.c.
4850         * gnulib/aclocal.m4: Regenerate.
4851         * gnulib/config.in: Regenerate.
4852         * gnulib/configure: Regenerate.
4853         * gnulib/import/dummy.c: Remove.
4854         * gnulib/import/Makefile.am: Regenerate.
4855         * gnulib/import/Makefile.in: Likewise.
4856         * gnulib/import/m4/gnulib-cache.m4: Likewise.
4857         * gnulib/import/m4/gnulib-comp.m4: Likewise.
4858         * gnulib/import/alloca.c: New file.
4859         * gnulib/import/alloca.in.h: Likewise.
4860         * gnulib/import/config.charset: Likewise.
4861         * gnulib/import/fnmatch.c: Likewise.
4862         * gnulib/import/fnmatch.in.h: Likewise.
4863         * gnulib/import/fnmatch_loop.c: Likewise.
4864         * gnulib/import/localcharset.c: Likewise.
4865         * gnulib/import/localcharset.h: Likewise.
4866         * gnulib/import/m4/alloca.m4: Likewise.
4867         * gnulib/import/m4/codeset.m4: Likewise.
4868         * gnulib/import/m4/configmake.m4: Likewise.
4869         * gnulib/import/m4/fcntl-o.m4: Likewise.
4870         * gnulib/import/m4/fnmatch.m4: Likewise.
4871         * gnulib/import/m4/glibc21.m4: Likewise.
4872         * gnulib/import/m4/localcharset.m4: Likewise.
4873         * gnulib/import/m4/locale-fr.m4: Likewise.
4874         * gnulib/import/m4/locale-ja.m4: Likewise.
4875         * gnulib/import/m4/locale-zh.m4: Likewise.
4876         * gnulib/import/m4/mbrtowc.m4: Likewise.
4877         * gnulib/import/m4/mbsinit.m4: Likewise.
4878         * gnulib/import/m4/mbsrtowcs.m4: Likewise.
4879         * gnulib/import/m4/mbstate_t.m4: Likewise.
4880         * gnulib/import/m4/stdbool.m4: Likewise.
4881         * gnulib/import/m4/wchar_h.m4: Likewise.
4882         * gnulib/import/m4/wctype_h.m4: Likewise.
4883         * gnulib/import/m4/wint_t.m4: Likewise.
4884         * gnulib/import/mbrtowc.c: Likewise.
4885         * gnulib/import/mbsinit.c: Likewise.
4886         * gnulib/import/mbsrtowcs-impl.h: Likewise.
4887         * gnulib/import/mbsrtowcs-state.c: Likewise.
4888         * gnulib/import/mbsrtowcs.c: Likewise.
4889         * gnulib/import/ref-add.sin: Likewise.
4890         * gnulib/import/ref-del.sin: Likewise.
4891         * gnulib/import/stdbool.in.h: Likewise.
4892         * gnulib/import/streq.h: Likewise.
4893         * gnulib/import/strnlen1.c: Likewise.
4894         * gnulib/import/strnlen1.h: Likewise.
4895         * gnulib/import/verify.h: Likewise.
4896         * gnulib/import/wchar.in.h: Likewise.
4897         * gnulib/import/wctype.in.h: Likewise.
4898
4899 2012-07-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
4900
4901         Support shell wildcards for 'set auto-load safe-path'.
4902         * auto-load.c: Include fnmatch.h.
4903         (filename_is_in_dir): Rename to ...
4904         (filename_is_in_pattern_1, filename_is_in_pattern): ... here and split
4905         it.  Update function comment.  Rename dir_len to pattern_len.  New
4906         variables filename_len, pattern and filename.  Add more DEBUG_AUTO_LOAD
4907         messages.  Use gdb_filename_fnmatch.
4908         (filename_is_in_auto_load_safe_path_vec): Rename variable dir to
4909         pattern.
4910         (_initialize_auto_load): Extend the "set auto-load safe-path" help text.
4911         * defs.h (gdb_filename_fnmatch): New declaration.
4912         * utils.c: Include fnmatch.h.
4913         (gdb_filename_fnmatch): New function.
4914
4915 2012-07-02  Sergio Durigan Junior  <sergiodj@redhat.com>
4916
4917         * breakpoint.c (BREAK_ARGS_HELP): Include help message for the new
4918         `-probe' and `-probe-stap' options.
4919
4920 2012-07-01  Yao Qi  <yao@codesourcery.com>
4921
4922         * breakpoint.c: Removed always_inserted_auto, always_inserted_on,
4923         always_inserted_off, and always_inserted_enums.
4924         Change always_inserted_mode's type to 'enum auto_boolean'.
4925         (show_always_inserted_mode, breakpoint_always_inserted_mode): Update
4926         callers.
4927         (_initialize_breakpoint): Call add_setshow_auto_boolean_cmd instead
4928         of add_setshow_enum_cmd.
4929         * infrun.c: Remove can_use_displaced_stepping_auto,
4930         can_use_displaced_stepping_on, can_use_displaced_stepping_off, and
4931         can_use_displaced_stepping_enum.
4932         Change can_use_displaced_stepping's type to 'enum auto_boolean'.
4933         (show_can_use_displaced_stepping, use_displaced_stepping): Update callers.
4934         (_initialize_infrun): Call add_setshow_auto_boolean_cmd instead of
4935         add_setshow_enum_cmd.
4936
4937 2012-06-30  Doug Evans  <dje@google.com>
4938
4939         * dwarf2read.c (signatured_type): Make "per_cu" member first.
4940         (init_cutu_and_read_dies): Handle rereading a DWO CU while it's
4941         currently being read.  Propagate DW_AT_comp_dir to DWO DIE.
4942
4943 2012-06-29  Doug Evans  <dje@google.com>
4944
4945         * linespec.c: #include "stack.h".
4946         (decode_line_with_current_source): Moved here from symtab.c and
4947         renamed from decode_line_spec.  All callers updated.
4948         (decode_line_with_last_displayed): Moved here from breakpoint.c and
4949         renamed from decode_line_spec_1.  All callers updated.
4950         * linespec.h (decode_line_with_current_source): Move declaration here
4951         from symtab.h and renamed from decode_line_spec.
4952         (decode_line_with_last_displayed): Move declaration here from symtab.h
4953         and renamed from decode_line_spec_1.
4954         * macrocmd.c: #include "linespec.h".
4955         * symtab.c: Remove #include "linespec.h".
4956
4957 2012-06-28  Doug Evans  <dje@google.com>
4958
4959         * dwarf2read.c (get_cu_length): New function.
4960         (offset_in_cu_p, error_check_comp_unit_head): Call it.
4961         (create_debug_types_hash_table): Ditto.
4962         (init_cutu_and_read_dies): Ditto.
4963         (init_cutu_and_read_dies_no_follow): Ditto.
4964
4965         * dwarf2read.c (dwarf2_find_base_address): Move definition.
4966
4967         * dwarf2read.c (ABBREV_HASH_SIZE): Remove enclosing #ifndef/#endif.
4968         (struct abbrev_table): Define.
4969         (dwarf2_cu): Replace members dwarf2_abbrevs, abbrev_obstack with
4970         abbrev_table.
4971         (init_cutu_and_read_dies): Update.
4972         (abbrev_table_alloc_abbrev): New function.  Replaces
4973         dwarf_alloc_abbrev.  All callers updated.
4974         (abbrev_table_add_abbrev): New function.
4975         (abbrev_table_lookup_abbrev): New function.  Replaces
4976         dwarf2_lookup_abbrev.  All callers updated.
4977         (abbrev_table_read_table): New function.  Contents moved here from
4978         dwarf2_read_abbrevs.
4979         (dwarf2_read_abbrevs): Call it.
4980         (abbrev_table_free): New function.
4981         (dwarf2_free_abbrev_table): Call it.
4982
4983 2012-06-28  Stan Shebs  <stan@codesourcery.com>
4984
4985         * osdata.c (info_osdata_command): Filter out "Title" columns
4986         from non-MI uses.
4987         * common/linux-osdata.c (struct osdata_type): Add title field.
4988         (osdata_table): Add titles to each entry.
4989         (linux_command_xfer_osdata): Add a column for title data.
4990
4991 2012-06-28  Stan Shebs  <stan@codesourcery.com>
4992
4993         Make logging work for MI.
4994         * NEWS: Mention it.
4995         * interps.h (interp_set_logging_ftype): New typedef.
4996         (struct interp_procs): New field set_logging_proc.
4997         (current_interp_set_logging): Declare.
4998         * interps.c (current_interp_set_logging): New function.
4999         * cli/cli-logging.c: Include interps.h.
5000         (set_logging_redirect): Call current_interp_set_logging.
5001         (pop_output_files): Ditto.
5002         (handle_redirections): Ditto, plus skip ui-out redirect if MI.
5003         * mi/mi-console.h (mi_console_set_raw): Declare.
5004         * mi/mi-console.c (mi_console_set_raw): New function.
5005         * mi/mi-interp.c (saved_raw_stdout): New global.
5006         (mi_set_logging): New function.
5007         (_initialize_mi_interp): Add it to interp procs.
5008
5009 2012-06-28  Doug Evans  <dje@google.com>
5010
5011         * symtab.c (lookup_symbol_aux_objfile): Use
5012         ALL_OBJFILE_PRIMARY_SYMTABS.
5013
5014         * gdbtypes.c (lookup_typename): Rename local variable "tmp" to "type".
5015
5016 2012-06-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
5017
5018         * common/buffer.c: Include inttypes.h and stdint.h.
5019         (buffer_xml_printf): Use PRId64, PRIu64, PRIx64 and PRIo64.
5020
5021 2012-06-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
5022             Pedro Alves  <palves@redhat.com>
5023
5024         * gdbthread.h (ALL_THREADS): New macro.
5025         (thread_list): Declare.
5026         * infrun.c (handle_inferior_event) <spurious signal>: Don't keep
5027         going, but instead fall through to the stepping handling.
5028         * linux-nat.c (resume_lwp): New parameter 'signo'.  Resume with
5029         the passed in signal.  Adjust debug output.
5030         (resume_callback): Rename to ...
5031         (linux_nat_resume_callback): ... this.  Pass the thread's last
5032         stop signal, if in "pass" state.
5033         (linux_nat_resume): Adjust to rename.
5034         (stop_wait_callback): New assertion.  Don't respawn signals;
5035         instead let the LWP remain with SIGNALLED set.
5036         (linux_nat_wait_1): Remove flushing of pending SIGSTOPs.
5037         * remote.c (append_pending_thread_resumptions): New.
5038         (remote_vcont_resume): Call it.
5039         * target.h (target_resume): Extend comment.
5040
5041 2012-06-28  Iain Sandoe  <iain@codesourcery.com>
5042
5043         * auxv.c (fprint_target_auxv): Handle extended cache data tags.
5044
5045 2012-06-27  Doug Evans  <dje@google.com>
5046
5047         * dwarf2read.c (dwarf2_cu): Add ranges_base.
5048         Delete have_addr_base, unused.  All uses updated.
5049         (init_cutu_and_read_dies): Process DW_AT_GNU_ranges_base.
5050         (dwarf2_get_pc_bounds): Add ranges_base.
5051         (dwarf2_record_block_ranges): Ditto.
5052
5053 2012-06-27  Tom Tromey  <tromey@redhat.com>
5054
5055         PR macros/7961:
5056         * varobj.c (varobj_create): Update.
5057         (varobj_set_value): Update.
5058         * tracepoint.c (validate_actionline): Update.
5059         (encode_actions_1): Update.
5060         * parse.c (parse_exp_1): Add 'pc' argument.
5061         (parse_exp_in_context): Add 'pc' argument.  Change how
5062         expression_context_pc is set.
5063         (parse_expression): Update.
5064         (parse_field_expression): Update.
5065         * expression.h (parse_exp_1): Update.
5066         * eval.c (parse_to_comma_and_eval): Update.
5067         * breakpoint.c (set_breakpoint_condition): Update.
5068         (update_watchpoint): Update.
5069         (init_breakpoint_sal): Update
5070         (find_condition_and_thread): Update.
5071         (watch_command_1): Update.
5072         (update_breakpoint_locations): Update.
5073         * ada-lang.c (ada_read_renaming_var_value): Update.
5074         (create_excep_cond_exprs): Update.
5075
5076 2012-06-27  Doug Evans  <dje@google.com>
5077
5078         * dwarf2read.c (per_cu_header_read_in): Simplify, and handle
5079         type units.
5080
5081 2012-06-26  Doug Evans  <dje@google.com>
5082
5083         * dwarf2read.c (read_and_check_comp_unit_head): Delete unnecessary
5084         prototype.
5085         (error_check_comp_unit_head): New arg abbrev_section.  All callers
5086         updated.
5087         (read_and_check_comp_unit_head): Ditto.
5088         (read_and_check_type_unit_head): Ditto.
5089
5090 2012-06-26  Siva Chandra Reddy  <sivachandra@google.com>
5091
5092         New attribute 'last' for gdb.Symtab_and_line.
5093         * NEWS (Python Scripting): Add entry about the new attribute.
5094         * python/py-symtab.c (salpy_get_last): New function which
5095         implements the get method for the 'last' attribute of
5096         gdb.Symtab_and_line.
5097         (sal_object_getset): Add entry for the 'last' attribute.
5098
5099 2012-06-26  Doug Evans  <dje@google.com>
5100
5101         * dwarf2read.c (dwo_section_names): Add macinfo_dwo, macro_dwo.
5102         (dwo_sections): Add macinfo, macro.
5103         (dwarf2_locate_dwo_sections): Watch for macro sections.
5104         (dwarf_decode_macros): Remove args lh, abfd, section, section_name.
5105         All callers updated.  Handle DWO files.
5106
5107         * NEWS: Mention new options "set debug dwarf2-read" and
5108         "set debug symtab-create".
5109         * dwarf2read.c (dwarf2_read_debug): New static global.
5110         (dwarf2_build_psymtabs_hard): Add debugging printfs.
5111         (process_queue): Ditto.
5112         (process_full_comp_unit): Ditto.
5113         (_initialize_dwarf2_read): Add new option "set debug dwarf2-read".
5114         * elfread.c (elf_symfile_read): Add debugging printf.
5115         * minsyms.c (install_minimal_symbols): Ditto.
5116         * psymtab.c (allocate_psymtab): Ditto.
5117         * symfile.c (allocate_symtab): Ditto.
5118         * symtab.c (symtab_create_debug): New global.
5119         (_initialize_symtab): Add new option "set debug symtab-create".
5120         * symtab.h (symtab_create_debug): Declare.
5121
5122         * dwarf2read.c (lookup_dwo_comp_unit): Enhance comment.
5123         (lookup_dwo_type_unit): Ditto.
5124
5125 2012-06-26  Roland McGrath  <roland@hack.frob.com>
5126             H.J. Lu  <hongjiu.lu@intel.com>
5127
5128         * amd64-linux-nat.c: Include <sys/user.h>.
5129         (ps_get_thread_area): Use PTRACE_PEEKUSER to get fs_base/gs_base
5130         if HAVE_STRUCT_USER_REGS_STRUCT_FS_BASE or
5131         HAVE_STRUCT_USER_REGS_STRUCT_GS_BASE is defined.
5132
5133         * configure.ac: Check if the fs_base and gs_base members of
5134         `struct user_regs_struct' exist.
5135         * config.in: Regenerated.
5136         * configure: Likewise.
5137
5138 2012-06-25  Michael Eager  <eager@eagercon.com>
5139
5140         PR python/14291
5141         * python/python.c (gdbpy_write): Check for interrupted output.
5142
5143 2012-06-25  Greta Yorsh  <greta.yorsh@arm.com>
5144
5145         * arm-tdep.c (arm_in_function_epilogue_p): Recognize POP with a single
5146         register as a stack alignment in ARM mode.
5147
5148 2012-06-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
5149
5150         Update gnulib to GIT commit a39f53ccb70a613e647e1019fb4c63645220267e.
5151         * gnulib/config.in: Regenerate.
5152         * gnulib/configure: Likewise.
5153         * gnulib/import/m4/extensions.m4: Update it.
5154         * gnulib/import/m4/gnulib-common.m4: Likewise.
5155         * gnulib/import/m4/memmem.m4: Likewise.
5156         * gnulib/import/m4/mmap-anon.m4: Likewise.
5157         * gnulib/import/m4/multiarch.m4: Likewise.
5158         * gnulib/import/stdint.in.h: Likewise.
5159
5160 2012-06-24  Yao Qi  <yao@codesourcery.com>
5161
5162         * corefile.c (write_memory_with_notification): New.
5163         * gdbcore.h: Declare write_memory_with_notification.
5164         * ada-lang.c (ada_value_assign): Replace 'write_memory' and
5165         'observer_notify_memory_changed' with 'write_memory_with_notification'.
5166         * valops.c (value_assign): Likewise.
5167         * python/py-inferior.c (infpy_write_memory): Call
5168         'write_memory_with_notification'.
5169
5170 2012-06-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
5171
5172         * cc-with-index.sh: Use also -ex "set auto-load no".
5173
5174 2012-06-23  Doug Evans  <dje@google.com>
5175
5176         PR 14125
5177         * NEWS: Document additions to .gdb_index.
5178         * dwarf2read.c: #include "gdb/gdb-index.h".
5179         (DW2_GDB_INDEX_SYMBOL_STATIC_SET_VALUE): New macro.
5180         (DW2_GDB_INDEX_SYMBOL_KIND_SET_VALUE): New macro.
5181         (DW2_GDB_INDEX_CU_SET_VALUE): New macro.
5182         (dwarf2_read_index): Recognize version 7.
5183         (dw2_do_expand_symtabs_matching): New args want_specific_block,
5184         block_kind, domain): All callers updated.
5185         (dw2_find_symbol_file): Handle new index CU values.
5186         (dw2_expand_symtabs_matching): Match symbol kind if requested.
5187         (add_index_entry): New args is_static, kind.  All callers updated.
5188         (offset_type_compare, uniquify_cu_indices): New functions
5189         (symbol_kind): New function.
5190         (write_psymtabs_to_index): Remove duplicate CU values.
5191         (write_psymtabs_to_index): Write .gdb_index version 7.
5192
5193 2012-06-22  Joel Brobecker  <brobecker@adacore.com>
5194
5195         * configure.ac (build_warnings): Add -Wdeclaration-after-statement.
5196         * configure: Regenerate.
5197
5198 2012-06-20  Yao Qi  <yao@codesourcery.com>
5199
5200         * python/py-inferior.c: Update comments of infpy_read_memory
5201         and infpy_write_memory.
5202
5203 2012-06-19  Tom Tromey  <tromey@redhat.com>
5204
5205         PR exp/9514:
5206         * parser-defs.h (insert_type, insert_type_address_space): Declare.
5207         (push_type_address_space): Remove.
5208         * parse.c (insert_into_type_stack): New function.
5209         (insert_type): Likewise.
5210         (insert_type_address_space): Rename from push_type_address_space.
5211         Insert tp_space_identifier.
5212         * c-exp.y (ptr_operator): New production.
5213         (abs_decl): Use ptr_operator.
5214         (space_identifier): Call insert_type_address_space.
5215         (ptype): Don't use const_or_volatile_or_space_identifier.
5216         (const_or_volatile_noopt): Call insert_type.
5217         (conversion_type_id, conversion_declarator): New productions.
5218         (operator): Use conversion_type_id.
5219
5220 2012-06-18  Doug Evans  <dje@google.com>
5221
5222         * symtab.h (minimal_symbol): New member created_by_gdb.
5223         * elfread.c (elf_symtab_read): Set created_by_gdb for @plt minsym
5224         created by gdb.
5225         * symtab.c (lookup_symbol_in_objfile_from_linkage_name): New function.
5226         (search_symbols): Call it instead of lookup_symbol.
5227         Skip symbols created by gdb.  Only scan minsyms if nfiles == 0.
5228
5229         * dwarf2expr.c (execute_stack_op): Handle DW_OP_GNU_const_index.
5230         Adjust address for DW_OP_GNU_addr_index.
5231         * dwarf2expr.h (dwarf_expr_context): Update comment.
5232         * dwarf2loc.c (locexpr_describe_location_piece): New arg per_cu,
5233         all callers updated.  Handle TLS vars described with
5234         DW_OP_GNU_const_index.
5235         (disassemble_dwarf_expression): Handle DW_OP_GNU_addr_index
5236         and DW_OP_GNU_const_index.
5237         * dwarf2read.c (decode_locdesc): Handle DW_OP_GNU_addr_index.
5238
5239         * block.c (find_block_in_blockvector): Make explicit the fact that we
5240         ignore GLOBAL_BLOCK.
5241
5242 2012-06-18  Tom Tromey  <tromey@redhat.com>
5243
5244         * c-exp.y (operator): Remove trailing space after "delete" and
5245         "delete[]".
5246
5247 2012-06-18  Mark Kettenis  <kettenis@gnu.org>
5248             Jan Kratochvil  <jan.kratochvil@redhat.com>
5249
5250         Switch i386 and derived targets to ON_STACK.
5251         * amd64-dicos-tdep.c (amd64_dicos_push_dummy_code): Remove.
5252         (amd64_dicos_init_abi): Remove its installment.
5253         * dicos-tdep.c (dicos_init_abi): Remove the
5254         set_gdbarch_call_dummy_location call.  Update the comment here.
5255         * i386-dicos-tdep.c (i386_dicos_push_dummy_code): Remove.
5256         (i386_dicos_init_abi): Remove its installment.
5257         * i386-tdep.c (i386_push_dummy_code): New function.
5258         (i386_gdbarch_init): Call set_gdbarch_call_dummy_location, install
5259         i386_push_dummy_code.
5260
5261 2012-06-18  Jan Kratochvil  <jan.kratochvil@redhat.com>
5262
5263         Remove stale dummy frames.
5264         * breakpoint.c: Include dummy-frame.h.
5265         (longjmp_breakpoint_ops): New variable.
5266         (update_breakpoints_after_exec, breakpoint_init_inferior): Delete also
5267         bp_longjmp_call_dummy.
5268         (bpstat_what, bptype_string, print_one_breakpoint_location)
5269         (init_bp_location): Support bp_longjmp_call_dummy.
5270         (set_longjmp_breakpoint): Use longjmp_breakpoint_ops.  Comment why.
5271         (set_longjmp_breakpoint_for_call_dummy)
5272         (check_longjmp_breakpoint_for_call_dummy, longjmp_bkpt_dtor): New
5273         functions.
5274         (initialize_breakpoint_ops): Initialize longjmp_breakpoint_ops.
5275         * breakpoint.h (enum bptype): New item bp_longjmp_call_dummy.  Delete
5276         FIXME comment and extend the other comment for bp_call_dummy.
5277         (set_longjmp_breakpoint_for_call_dummy)
5278         (check_longjmp_breakpoint_for_call_dummy): New declarations.
5279         * dummy-frame.c: Include gdbthread.h.
5280         (pop_dummy_frame_bpt): New function.
5281         (pop_dummy_frame): Call pop_dummy_frame_bpt.
5282         (dummy_frame_discard): New function.
5283         (cleanup_dummy_frames): Update the comment about longjmps.
5284         * dummy-frame.h (dummy_frame_discard): New declaration.
5285         * gdbthread.h (struct thread_info): Extend initiating_frame comment.
5286         * infcall.c (call_function_by_hand): New variable longjmp_b.  Call
5287         set_longjmp_breakpoint_for_call_dummy.  Chain its breakpoints with BPT.
5288         * infrun.c (handle_inferior_event) <BPSTAT_WHAT_CLEAR_LONGJMP_RESUME>:
5289         Add case 4 comment.  Call check_longjmp_breakpoint_for_call_dummy and
5290         keep_going if IS_LONGJMP and there is no other reason to stop.
5291
5292 2012-06-18  Greta Yorsh  <Greta.Yorsh@arm.com>
5293
5294         * remote-sim.c (sim_command_completer): Initialize
5295         variable 'result'.
5296
5297 2012-06-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
5298
5299         * dwarf2expr.c (execute_stack_op): Support DW_OP_GNU_parameter_ref.
5300         * dwarf2loc.c (call_site_parameter_matches): Support
5301         CALL_SITE_PARAMETER_PARAM_OFFSET.
5302         (needs_dwarf_reg_entry_value): Push stub value.
5303         * dwarf2read.c (read_call_site_scope): New variable origin.  Support
5304         CALL_SITE_PARAMETER_PARAM_OFFSET and its DW_AT_abstract_origin.
5305         * gdbtypes.h (enum call_site_parameter_kind): New item
5306         CALL_SITE_PARAMETER_PARAM_OFFSET.
5307         (struct call_site.parameter.u): New field param_offset.
5308
5309 2012-06-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
5310
5311         Code cleanup: Generalize call_site.parameter key.
5312         * dwarf2expr.c (execute_stack_op) <DW_OP_GNU_entry_value>: Remove
5313         variable dwarf_reg.  New variable kind_u.  Update parameters to
5314         push_dwarf_reg_entry_value.
5315         (ctx_no_push_dwarf_reg_entry_value): Update parameters.
5316         * dwarf2expr.h (enum call_site_parameter_kind)
5317         (union call_site_parameter_u): Forward declarations.
5318         (struct dwarf_expr_context_funcs): Update parameters and their
5319         description for push_dwarf_reg_entry_value.
5320         (ctx_no_push_dwarf_reg_entry_value): Update parameters.
5321         * dwarf2loc.c (call_site_parameter_matches): New function.
5322         (dwarf_expr_reg_to_entry_parameter): Update parameters and their
5323         description.  Use call_site_parameter_matches.
5324         (dwarf_expr_push_dwarf_reg_entry_value, value_of_dwarf_reg_entry):
5325         Update parameters and their description.
5326         (value_of_dwarf_block_entry): Remove variables dwarf_reg and fb_offset.
5327         New variable kind_u.  Adjust the caller for updated parameters.
5328         (needs_dwarf_reg_entry_value): Update parameters.
5329         * dwarf2read.c (read_call_site_scope): New variable loc.  Use it
5330         instead of attr.  Update for the changed fields of struct
5331         call_site_parameter.
5332         * gdbtypes.h: Include dwarf2expr.h.
5333         (enum call_site_parameter_kind): New.
5334         (struct call_site.parameter): New field kind.  Wrap dwarf_reg and
5335         fb_offset into new union u.
5336
5337 2012-06-16  H.J. Lu  <hongjiu.lu@intel.com>
5338
5339         * amd64-tdep.c (amd64_x32_analyze_stack_align): New function.
5340         (amd64_analyze_prologue): Call amd64_x32_analyze_stack_align
5341         for x32.
5342
5343 2012-06-16  H.J. Lu  <hongjiu.lu@intel.com>
5344
5345         * amd64-linux-nat.c (compat_x32_clock_t): New.
5346         (compat_x32_siginfo_t): Likewise.
5347         (compat_x32_siginfo_from_siginfo): Likewise.
5348         (siginfo_from_compat_x32_siginfo): Likewise.
5349         (amd64_linux_siginfo_fixup): Call compat_x32_siginfo_from_siginfo
5350         and siginfo_from_compat_x32_siginfo for x32.
5351
5352 2012-06-15  Hui Zhu  <hui_zhu@mentor.com>
5353
5354         * tracepoint.c (tfile_xfer_partial): Add a lseek.
5355
5356 2012-06-15  H.J. Lu  <hongjiu.lu@intel.com>
5357
5358         * amd64-linux-nat.c (ps_get_thread_area): Check bits_per_word
5359         instead of gdbarch_ptr_bit.
5360         * amd64-nat.c (amd64_native_gregset_reg_offset): Likewise.
5361         (amd64_supply_native_gregset): Likewise.
5362         (amd64_collect_native_gregset): Likewise.
5363         * amd64-tdep.c (amd64_supply_fxsave): Likewise.
5364         (amd64_supply_xsave): Likewise.
5365         (amd64_collect_fxsave): Likewise.
5366         (amd64_collect_xsave): Likewise.
5367
5368 2012-06-15  H.J. Lu  <hongjiu.lu@intel.com>
5369
5370         * amd64-linux-nat.c (AMD64_LINUX_X32_DS): New.
5371         (amd64_linux_read_description): Check DS segment register for
5372         x32 process.
5373
5374 2012-06-15  Tom Tromey  <tromey@redhat.com>
5375
5376         * dwarf2read.c (dw2_find_symbol_file): Unconditionally use
5377         init_cutu_and_read_dies.
5378
5379 2012-06-15  Iain Sandoe <iain@codesourcery.com>
5380
5381         * MAINTAINERS (Write After Approval): Add myself to the list.
5382
5383 2012-06-15  Tom Tromey  <tromey@redhat.com>
5384
5385         * valops.c (value_find_oload_method_list): Now static.
5386         * value.h (value_find_oload_method_list): Don't declare.
5387
5388 2012-06-15  Tom Tromey  <tromey@redhat.com>
5389
5390         * valops.c (find_overload_match): Use value_ind.
5391
5392 2012-06-15  Maciej W. Rozycki  <macro@codesourcery.com>
5393
5394         * infrun.c (handle_inferior_event): Correct indentation.
5395
5396 2012-06-14  Doug Evans  <dje@google.com>
5397
5398         * dwarf2loc.c (debug_loc_kind): Add DEBUG_LOC_START_LENGTH.
5399         (DEBUG_LOC_START_END): Renamed from DEBUG_LOC_NORMAL.
5400         All uses updated.
5401         (decode_debug_loc_dwo_addresses): New arg "byte_order".  All callers
5402         updated.  Handle DEBUG_LOC_START_LENGTH.
5403         (dwarf2_find_location_expression): Handle DEBUG_LOC_START_LENGTH.
5404         (loclist_describe_location): Ditto.
5405
5406 2012-06-14  Maciej W. Rozycki  <macro@codesourcery.com>
5407
5408         PR backtrace/13866
5409         * infrun.c (handle_inferior_event): Re-fetch frame and gdbarch
5410         after hiding inline functions.
5411
5412 2012-06-13  Joel Brobecker  <brobecker@adacore.com>
5413
5414         * inf-ttrace.c (_initialize_hppa_hpux_nat): Rename into
5415         _initialize_inf_ttrace.
5416
5417 2012-06-13  Joel Brobecker  <brobecker@adacore.com>
5418
5419         * ia64-hpux-nat.c (_initialize_ia64_hpux_nat): Renames
5420         _initialize_hppa_hpux_nat.
5421
5422 2012-06-13  Joel Brobecker  <brobecker@adacore.com>
5423
5424         * remote-sim.c (sim_command_completer): Change type of return
5425         value to "VEC (char_ptr) *".  Adjust implementation accordingly.
5426
5427 2012-06-13  Mark Kettenis  <kettenis@gnu.org>
5428             Jan Kratochvil  <jan.kratochvil@redhat.com>
5429
5430         PR tdep/14222
5431         * i386-tdep.c (i386_push_dummy_call): Unconditionally align the
5432         stack on a 16-byte boundary.
5433
5434 2012-06-13  Kaushik Srenevasan  <kaushik@twitter.com>
5435
5436         * jit.c (finalize_symtab): Set function's return type to 'void' by
5437         default.
5438
5439 2012-06-13  Mark Kettenis  <kettenis@gnu.org>
5440             H.J. Lu  <hongjiu.lu@intel.com>
5441
5442         * amd64-linux-tdep.c (amd64_linux_init_abi_common): New function.
5443         Move bits common to both the classic LP64 and the new x32 ILP32
5444         ABI here.
5445         (amd64_linux_init_abi): Call amd64_linux_init_abi_common.
5446         (amd64_x32_linux_init_abi): New function.
5447         (_initialize_amd64_linux_tdep): Register osabi for bfd_mach_x64_32
5448         subtype.
5449
5450         * i386-tdep.h (i386_pseudo_register_name): New prototype.
5451         * i386-tdep.c (i386_pseudo_register_name): Make public.
5452         * amd64-tdep.h (amd64_x32_init_abi): New prototype.
5453         * amd64-tdep.c (amd64_dword_names): Add "eip".
5454         (amd64_x32_pseudo_register_type): New function
5455         (amd64_x32_init_abi): New function.
5456
5457 2012-06-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
5458
5459         PR build/14003
5460         * inferior.h (struct inferior_suspend_state): Comment out.
5461         (struct inferior): Comment out the field suspend.
5462         * infrun.c (struct infcall_suspend_state): Comment out the field
5463         inferior_suspend.
5464         (save_infcall_suspend_state, restore_infcall_suspend_state): Comment
5465         out its assignment.
5466
5467 2012-06-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
5468
5469         PR c++/14177 - Fix parsing TYPENAME:: in parentheses.
5470         * c-exp.y (classify_inner_name): Remove caller assumptions in the
5471         function comment.  Return ERROR for unresolved cases.  Implement
5472         returning proper NAME.
5473         (yylex): Accept also NAME from classify_inner_name.
5474         * cp-namespace.c (cp_lookup_nested_type): Rename to ...
5475         (cp_lookup_nested_symbol): ... here.  Return any found symbol, not just
5476         LOC_TYPEDEF type.
5477         * cp-support.h (cp_lookup_nested_type): Update its declaration.
5478
5479 2012-06-13  Tom Tromey  <tromey@redhat.com>
5480
5481         * breakpoint.c (condition_completer): New function.
5482         (_initialize_breakpoint): Use it.
5483         * value.c (complete_internalvar): New function.
5484         * value.h (complete_internalvar): Declare.
5485
5486 2012-06-13  Tom Tromey  <tromey@redhat.com>
5487
5488         * ada-lang.c (ada_make_symbol_completion_list): Return a VEC.
5489         * breakpoint.c (catch_syscall_completer): Return a VEC.
5490         * cli/cli-cmds.c (complete_command): Update.
5491         * cli/cli-decode.c (complete_on_cmdlist): Return a VEC.
5492         (complete_on_enum): Likewise.
5493         * command.h: Include gdb_vecs.h.
5494         (completer_ftype): Change return type.
5495         (complete_on_cmdlist, complete_on_enum): Likewise.
5496         * completer.c (noop_completer, filename_completer)
5497         (location_completer): Return a VEC.
5498         (add_struct_fields): Remove 'nextp' argument.  Change 'output'
5499         to a VEC.
5500         (expression_completer, complete_line_internal, complete_line)
5501         (command_completer): Return a VEC.
5502         (gdb_completion_word_break_characters, line_completion_function):
5503         Update.
5504         * completer.h: Include gdb_vecs.h.
5505         (complete_line, noop_completer, filename_completer)
5506         (expression_completer, location_completer, command_completer):
5507         Update.
5508         * f-lang.c (f_word_break_characters): Return a VEC.
5509         * interps.c (interpreter_completer): Return a VEC.
5510         * language.h (struct language_defn)
5511         <la_make_symbol_completion_list>: Return a VEC.
5512         * python/py-cmd.c (cmdpy_completer): Return a VEC.
5513         * symtab.c (free_completion_list): Take a VEC.
5514         (return_val_size, return_val_index): Remove.
5515         (return_val): Now a VEC.
5516         (completion_list_add_name): Update.
5517         (default_make_symbol_completion_list_break_on)
5518         (default_make_symbol_completion_list, make_symbol_completion_list)
5519         (make_symbol_completion_list_fn, make_file_symbol_completion_list):
5520         Return a VEC.
5521         (add_filename_to_list): Update.
5522         (struct add_partial_filename_data) <list_used, list_alloced>: Remove.
5523         <list>: Now a VEC.
5524         (maybe_add_partial_symtab_filename): Update.
5525         (make_source_files_completion_list): Return a VEC.
5526         * symtab.h (default_make_symbol_completion_list_break_on)
5527         (default_make_symbol_completion_list, make_symbol_completion_list)
5528         (make_symbol_completion_list_fn, make_file_symbol_completion_list)
5529         (make_source_files_completion_list): Update.
5530
5531 2012-06-13  Tom Tromey  <tromey@redhat.com>
5532
5533         * breakpoint.c (add_catch_command): Use completer_ftype.
5534         * breakpoint.h: Include command.h.
5535         (add_catch_command): Use completer_ftype.
5536         * cli/cli-decode.c (set_cmd_completer): Use completer_ftype.
5537         * cli/cli-decode.h (struct cmd_list_element) <completer>:
5538         Use completer_ftype.
5539         * command.h (completer_ftype): New typedef.
5540         (set_cmd_completer): Use it.
5541         * python/py-cmd.c (struct cmdpy_completer) <completer>: Use
5542         completer_ftype.
5543
5544 2012-06-13  Pedro Alves  <palves@redhat.com>
5545
5546         Partial revert of previous change.
5547
5548         * serial.c (scb_base): New global.
5549         (serial_for_fd): New.
5550         (serial_open, serial_fdopen_ops): Link new serial in open serials
5551         chain.
5552         (do_serial_close): Unlink serial from the open serials chain.
5553
5554 2012-06-12  Pedro Alves  <palves@redhat.com>
5555
5556         * infrun.c (infrun_thread_stop_requested_callback): Don't switch
5557         threads here.
5558         (prepare_for_detach): No longer context switch here in non-stop
5559         mode.
5560         (fetch_inferior_event): Ditto.
5561         (handle_inferior_event) <STOP_QUIETLY || NO_STOP_QUIETLY>: Switch
5562         to the event thread before removing breakpoints.  Switch to the
5563         event thread before inserting breakpoints and resuming.
5564         (handle_inferior_event) <TARGET_WAITKIND_SPURIOUS>: Switch to the
5565         event thread before resuming.
5566         (handle_inferior_event) <stepping_past_singlestep_breakpoint>:
5567         Switch to the event thread before removing breakpoints.
5568
5569 2012-06-12  Eli Zaretskii  <eliz@gnu.org>
5570
5571         * infcmd.c (construct_inferior_arguments) [__MINGW32__]: Quote
5572         special characters correctly for the Windows shells.  See
5573         http://sourceware.org/ml/gdb/2012-06/msg00047.html for the bug
5574         report.
5575         [!__MINGW32__]: Remove extra double quote character from special
5576         characters.
5577
5578 2012-06-11  Stan Shebs  <stan@codesourcery.com>
5579
5580         * ui-out.h: Remove #if 0 declarations.
5581         * ui-out.c: Remove #if 0 functions.
5582
5583 2012-06-11  Pedro Alves  <palves@redhat.com>
5584
5585         * ser-base.c (run_async_handler_and_reschedule): New.
5586         (fd_event, push_event): Use it.
5587         * serial.c (serial_open, serial_fdopen_ops): Set the initial
5588         reference count to 1.
5589         (do_serial_close): Set the bufp field to NULL.  Use serial_unref
5590         instead of xfree.
5591         (serial_is_open, serial_ref, serial_unref): New.
5592         * serial.h (serial_open): Adjust comment.
5593         (serial_is_open): Declare.
5594         (serial_close): Adjust comment.
5595         (serial_ref, serial_unref) Declare.
5596         (struct serial): New field 'refcnt'.
5597
5598 2012-06-11  Pedro Alves  <palves@redhat.com>
5599
5600         Remove #if 0'd "connect" command, and unnecessary associated
5601         refcounting and serial reuse bits.
5602
5603         * serial.h (struct serial): Remove fields 'next' and 'refcnt'.
5604         * serial.c (last_serial_opened): Delete.
5605         (scb_base): Delete.
5606         (serial_open): Adjust.
5607         (serial_for_fd): Delete.
5608         (serial_fdopen_ops, do_serial_close): Adjust.
5609         (serial_fdopen_ops): Adjust.
5610
5611 2012-06-11  Pedro Alves  <palves@redhat.com>
5612
5613         * serial.c (do_serial_close): Remove early return when SCB is
5614         null.
5615
5616 2012-06-11  Tom Tromey  <tromey@redhat.com>
5617
5618         * dwarf2read.c (dw2_get_file_names_reader): Ignore partial units.
5619
5620 2012-06-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
5621
5622         Fix regression by the "ambiguous linespec" series.
5623         * breakpoint.c (parse_breakpoint_sals): New variable cursal.  Use
5624         get_last_displayed_symtab and get_last_displayed_line and depending
5625         on CURSAL.
5626
5627 2012-06-11  Tom Tromey  <tromey@redhat.com>
5628
5629         * dwarf2read.c (dw2_get_primary_filename_reader): New function.
5630         (dw2_find_symbol_file): Use it.
5631
5632 2012-06-11  Michael Eager  <eager@eagercon.com>
5633
5634         * mips-linux-tdep.c (mips_gdb_signal_from_target): New
5635         * mips-linux-tdep.h (mips_signals): New
5636
5637 2012-06-11  Tom Tromey  <tromey@redhat.com>
5638
5639         * infrun.c (handle_inferior_event)
5640         <BPSTAT_WHAT_SET_LONGJMP_RESUME>: Don't delete the step-resume
5641         breakpoint.
5642         <BPSTAT_WHAT_CLEAR_LONGJMP_RESUME>: Remove longjmp logic; use
5643         exception logic in all cases.  Update comments.
5644         (insert_longjmp_resume_breakpoint): Set the exception resume
5645         breakpoint.
5646
5647 2012-06-11  Maciej W. Rozycki  <macro@codesourcery.com>
5648
5649         * mips-tdep.c (mips_push_dummy_code): Handle microMIPS code.
5650
5651 2012-06-09  Siva Chandra Reddy  <sivachandra@google.com>
5652
5653         * valarith.c (binop_types_user_defined_p): Fix a typo.
5654
5655 2012-06-08  Yao Qi  <yao@codesourcery.com>
5656             Chung-Lin Tang <cltang@codesourcery.com>
5657
5658         * arch-utils.c (default_return_in_first_hidden_param_p): New.
5659         * arch-utils.h: Declare.
5660         * gdbarch.sh: Add return_in_first_hidden_param_p.
5661         * gdbarch.c, gdbarch.h: Regenerated.
5662         * infcall.c (call_function_by_hand): Call
5663         gdbarch_return_in_first_hidden_param_p instead of
5664         language_pass_by_reference.
5665
5666         * m68k-tdep.c (m68k_return_in_first_hidden_param_p): New.
5667         (m68k_gdbarch_init): Install m68k_return_in_first_hidden_param_p.
5668         * sh-tdep.c (sh_return_in_first_hidden_param_p): New.
5669         (sh_gdbarch_init): Install sh_return_in_first_hidden_param_p.
5670         * tic6x-tdep.c (tic6x_push_dummy_call): Remove local variable
5671         `cplus_return_struct_by_reference'.
5672         (tic6x_return_value): Handle language cplusplus.
5673         (tic6x_return_in_first_hidden_param_p): New.
5674         (tic6x_gdbarch_init): Install tic6x_return_in_first_hidden_param_p.
5675
5676 2012-06-07  Doug Evans  <dje@google.com>
5677
5678         * dwarf2read.c (dwarf2_cu): Add comment.
5679
5680 2012-06-06  Maciej W. Rozycki  <macro@codesourcery.com>
5681
5682         * mips-tdep.c (mips_pseudo_register_type): Remove tdep local
5683         variable.
5684         (mips_eabi_push_dummy_call): Likewise.
5685         (mips_n32n64_push_dummy_call): Likewise.
5686         (mips_o32_push_dummy_call): Likewise.
5687         (mips_o64_push_dummy_call): Likewise.
5688
5689 2012-06-06  Maciej W. Rozycki  <macro@codesourcery.com>
5690
5691         * mips-tdep.c (mips_convert_register_p): Correct coding style.
5692
5693 2012-06-06  Maciej W. Rozycki  <macro@codesourcery.com>
5694
5695         * mips-tdep.c (mips_pseudo_register_type): Use
5696         mips_float_register_p.
5697
5698 2012-06-06  Pedro Alves  <palves@redhat.com>
5699
5700         * infrun.c (handle_inferior_event): Remove calls to
5701         reinit_frame_cache that follow a context_switch call.
5702
5703 2012-06-06  Pedro Alves  <palves@redhat.com>
5704
5705         * infrun.c (handle_inferior_event) <deferred_step_ptid>: Use
5706         context_switch and remove stale comment.
5707
5708 2012-06-06  Pedro Alves  <palves@redhat.com>
5709
5710         * infrun.c (struct execution_control_state): Remove
5711         `new_thread_event' field.
5712         (handle_inferior_event): Simplify new threads handling; don't
5713         resume the inferior if we find a new thread.
5714
5715 2012-06-06  Thomas Schwinge  <thomas@codesourcery.com>
5716
5717         * NEWS: Document the deprecation of SH's 'regs' command.
5718         * inferior.h (all_registers_info): Add function declaration.
5719         * sh-tdep.c (sh_show_regs): Remove variable.
5720         (sh_generic_show_regs, sh3_show_regs, sh2e_show_regs, sh2a_show_regs)
5721         (sh2a_nofpu_show_regs, sh3e_show_regs, sh3_dsp_show_regs)
5722         (sh4_show_regs, sh4_nofpu_show_regs, sh_dsp_show_regs)
5723         (sh_show_regs_command): Remove functions.
5724         (sh_gdbarch_init): Don't set sh_show_regs.
5725         (_initialize_sh_tdep): Make the 'regs' command an deprecated alias to
5726         'info all-registers'.
5727         * sh64-tdep.c (sh64_show_media_regs, sh64_show_compact_regs)
5728         (sh64_show_regs): Remove functions.
5729         * sh64-tdep.h (sh64_show_regs): Remove function declaration.
5730
5731 2012-06-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
5732
5733         * configure.ac: Move development=true below AC_INIT.
5734         * configure: Regenerate.
5735
5736 2012-06-05  Stan Shebs  <stan@codesourcery.com>
5737
5738         * mi/mi-interp.c (mi_interpreter_init): Set raw_stdout from
5739         gdb_stdout.
5740
5741 2012-06-05  Siddhesh Poyarekar  <siddhesh@redhat.com>
5742
5743         * corefile.c (read_memory, read_stack, write_memory): Accept LEN
5744         argument as ssize_t.
5745         * gdbcore.h (read_memory, read_stack, write_memory): Likewise.
5746         * remote.c (remote_write_bytes_aux, remote_write_bytes): Likewise.
5747         * target.c (target_read_stack, target_write_memory)
5748         (target_write_raw_memory): Likewise.
5749         * target.h (target_read_stack, target_write_memory)
5750         (target_write_raw_memory): Likewise.
5751
5752 2012-06-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
5753
5754         * symfile-mem.c: Change gdb_static_assert to ssize_t.
5755         (target_read_memory_bfd): Cast gdb_assert LEN to ssize_t.
5756         * target.c (target_read_memory): Change LEN to ssize_t.
5757         * target.h (target_read_memory): Change LEN to ssize_t.
5758
5759 2012-06-05  Pedro Alves  <palves@redhat.com>
5760
5761         PR backtrace/13866
5762
5763         * breakpoint.c (until_break_command): Only fetch the selected
5764         frame after decode_line_1.
5765
5766 2012-06-05  Joakim Tjernlund  <Joakim.Tjernlund@transmode.se>
5767
5768         * solib-svr4.c (enable_break): Don't fallback to setting the solib
5769         event breakpoint at _start, __start or main if a program
5770         interpreter is not found.
5771
5772 2012-06-05  Joel Brobecker  <brobecker@adacore.com>
5773
5774         * windows-tdep.h (windows_iterate_over_objfiles_in_search_order):
5775         Add declaration.
5776         * windows-tdep.c: #include "objfiles.h".
5777         (windows_iterate_over_objfiles_in_search_order): New function.
5778         * amd64-windows-tdep.c (amd64_windows_init_abi): Set
5779         iterate_over_objfiles_in_search_order gdbarch method to
5780         windows_iterate_over_objfiles_in_search_order.
5781         * i386-cygwin-tdep.c (i386_cygwin_init_abi): Likewise.
5782
5783 2012-06-05  Joel Brobecker  <brobecker@adacore.com>
5784
5785         * gdbarch.sh: Add generation of
5786         "iterate_over_objfiles_in_search_order_cb_ftype" typedef in
5787         gdbarch.h.  Add include of "objfiles.h" in gdbarch.c.
5788         (iterate_over_objfiles_in_search_order): New gdbarch method.
5789         * gdbarch.h, gdbarch.c: Regenerate.
5790         * objfiles.h (default_iterate_over_objfiles_in_search_order):
5791         Add declaration.
5792         * objfiles.c (default_iterate_over_objfiles_in_search_order):
5793         New function.
5794         * symtab.c (lookup_symbol_aux_objfile): New function, extracted
5795         out of lookup_symbol_aux_symtabs.
5796         (lookup_symbol_aux_symtabs): Replace extracted-out code by
5797         call to lookup_symbol_aux_objfile.
5798         (struct global_sym_lookup_data): New type.
5799         (lookup_symbol_global_iterator_cb): New function.
5800         (lookup_symbol_global): Search for symbol using
5801         gdbarch_iterate_over_objfiles_in_search_order and
5802         lookup_symbol_global_iterator_cb.
5803         * findvar.c (struct minsym_lookup_data): New type.
5804         (minsym_lookup_iterator_cb): New function.
5805         (default_read_var_value) [case LOC_UNRESOLVED]: Resolve the
5806         symbol's address via gdbarch_iterate_over_objfiles_in_search_order
5807         and minsym_lookup_iterator_cb.
5808
5809 2012-06-05  Joel Brobecker  <brobecker@adacore.com>
5810
5811         Revert the following patch:
5812         * findvar.c (default_read_var_value): For LOC_UNRESOLVED symbols,
5813         try locating the symbol in the symbol's own objfile first, before
5814         extending the search to all objfiles.
5815         * symtab.c (lookup_symbol_aux_objfile): New function, extracted
5816         out of lookup_symbol_aux_symtabs.
5817         (lookup_symbol_aux_symtabs): Add new parameter "exclude_objfile".
5818         Replace extracted-out code by call to lookup_symbol_aux_objfile.
5819         Do not search EXCLUDE_OBJFILE.
5820         (lookup_static_symbol_aux): Update call to lookup_symbol_aux_symtabs.
5821         (lookup_symbol_global): Search for matches in the block's objfile
5822         first, before searching all other objfiles.
5823
5824 2012-06-05  Joel Brobecker  <brobecker@adacore.com>
5825
5826         * breakpoint.c (find_condition_and_thread): Stop parsing
5827         as soon as the first invalid keyword is found.
5828
5829 2012-06-05  Joel Brobecker  <brobecker@adacore.com>
5830
5831         * copyright.py (EXCLUDE_LIST): Add 'gdb/CONTRIBUTE' to list.
5832
5833 2012-06-05  Joel Brobecker  <brobecker@adacore.com>
5834
5835         * config/djgpp/djcheck.sh: Add copyright header.
5836
5837 2012-06-05  Joel Brobecker  <brobecker@adacore.com>
5838
5839         * copyright.py (update_files, main): Fix path to update-copyright
5840         script.
5841
5842 2012-06-05  Joel Brobecker  <brobecker@adacore.com>
5843
5844         * copyright.py (MULTIPLE_COPYRIGHT_HEADERS): New constant.
5845         (main): Add MULTIPLE_COPYRIGHT_HEADERS to the list of files
5846         for which a reminder to update by hand is printed.
5847
5848 2012-06-04  Doug Evans  <dje@google.com>
5849
5850         * buildsym.c (make_blockvector): Add comment.
5851
5852 2012-06-04  Pedro Alves  <palves@redhat.com>
5853
5854         * arch-utils.c (default_gdb_signal_from_target): Delete.
5855         * arch-utils.h (default_gdb_signal_from_target): Delete.
5856         * corelow.c (core_open) <signal mapping>: Extended comment.  Check
5857         gdbarch_gdb_signal_from_target_p.
5858         * gdbarch.sh (gdb_signal_from_target): Make it an M method (with
5859         predicate).
5860         * gdbarch.h: Regenerate.
5861         * gdbarch.c: Regenerate.
5862
5863 2012-06-04  Pedro Alves  <palves@redhat.com>
5864
5865         * gdbarch.sh (gdb_signal_from_target): Mention that the
5866         implementation of the method must be host independent.
5867         * gdbarch.h: Regenerate.
5868
5869 2012-06-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
5870
5871         * symfile-mem.c: 3 new gdb_static_assert for target_read_memory_bfd
5872         parameters.
5873         (target_read_memory_bfd): New function.
5874         (symbol_file_add_from_memory): Use it.
5875
5876 2012-06-03  Doug Evans  <dje@google.com>
5877
5878         * symtab.c (lookup_global_symbol_from_objfile): Only scan blockvector
5879         of primary symtab.
5880         (basic_lookup_transparent_type): Ditto.
5881
5882         * objfiles.h (ALL_OBJFILE_PRIMARY_SYMTABS): New macro.
5883         (ALL_PRIMARY_SYMTABS): Use it.
5884         (ALL_PSPACE_PRIMARY_SYMTABS): Ditto.
5885         * dwarf2read.c (dw2_find_symbol_file): Ditto.
5886         * linespec.c (iterate_over_all_matching_symtabs): Ditto.
5887         * symtab.c (lookup_symbol_aux_objfile): Ditto.
5888         (basic_lookup_transparent_type): Ditto.
5889
5890 2012-06-02  Sergio Durigan Junior  <sergiodj@redhat.com>
5891
5892         * symtab.c (symbol_demangled_name): New variable `dem_name'.  Use
5893         it to optimize resolution of demangled name.
5894
5895 2012-06-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
5896
5897         * configure.ac (development): Define new variable.
5898         Call AC_CHECK_LIB for mcheck if $development.
5899         (ERROR_ON_WARNING): Enable it by default only if $development.
5900         * config.in: Regenerate.
5901         * configure: Regenerate.
5902
5903 2012-06-01  Siddhesh Poyarekar  <siddhesh@redhat.com>
5904
5905         * target.c (target_read_memory): Make LEN argument as size_t.
5906         * target.h (target_read_memory): Likewise.
5907
5908 2012-06-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
5909
5910         * tilegx-linux-tdep.c (tilegx_l): Use ULL for 64-bit values.
5911
5912 2012-05-31  Edjunior Machado  <emachado@linux.vnet.ibm.com>
5913
5914         * ppc-linux-nat.c (have_ptrace_booke_interface): Disable ptrace
5915         BookE interface for PowerPC server processors if not available
5916         in the Linux Kernel.
5917
5918 2012-05-31  Keith Seitz  <keiths@redhat.com>
5919
5920         * linespec.c (decode_objc): Add cleanup to free
5921         INFO.FILE_SYMTABS.
5922         (find_linespec_symbols): Add cleanup to free CLASSES.
5923         * symfile.c (find_separate_debug_file_by_debuglink): Add
5924         cleanup to free DEBUGLINK.
5925         * ui-out.c (clear_header_list): No need to check if
5926         HEADER_NEXT.COLHDR is NULL.
5927         Free HEADER_NEXT.COL_NAME.
5928
5929 2012-05-31  Matthew Gretton-Dann  <matthew.gretton-dann@arm.com>
5930
5931         * ada-lang.c (standard_lookup): Prevent uninitialized variable
5932         warning.
5933
5934 2012-05-30  Jeff Kenton  <jkenton@tilera.com>
5935
5936         * configure.host (gdb_host_cpu): Handle tilegx*.
5937         (gdb_host): Handle tilegx-*-linux*.
5938         * tilegx-linux-nat.c: New file.
5939         * config/tilegx/linux.mh: New file.
5940
5941 2012-05-30  Jeff Kenton  <jkenton@tilera.com>
5942
5943         * Makefile.in (ALL_TARGET_OBJS): Add tilegx-tdep.o and
5944         tilegx-linux-tdep.o.
5945         (ALLDEPFILES): Add tilegx-linux-nat.c, tilegx-tdep.c and
5946         tilegx-linux-tdep.c.
5947         * configure.tgt: Handle tilegx-*-linux*.
5948         * tilegx-tdep.h: New file.
5949         * tilegx-tdep.c: New file.
5950         * tilegx-linux-tdep.c: New file.
5951         * regformats/reg-tilegx.dat: New file.
5952
5953 2012-05-30  Edjunior Machado  <emachado@linux.vnet.ibm.com>
5954
5955         * ppc-linux-nat.c (ppc_linux_can_use_hw_breakpoint): fix
5956         accounting of hw watchpoints on ppc.
5957
5958 2012-05-30  Thiago Jung Bauermann  <thiago.bauermann@linaro.org>
5959
5960         * source.c (openp): Expand tilde in path entries.
5961
5962 2012-05-29  Doug Evans  <dje@google.com>
5963
5964         * buildsym.c (block_compar): Fix comment.
5965         (end_symtab): Fix and clarify some comments.
5966
5967         * stabsread.h (cleanup_undefined_stabs_types): Renamed from
5968         cleanup_undefined_types.
5969         * stabsread.c (cleanup_undefined_stabs_types): Ditto.
5970         All callers updated.
5971
5972 2012-05-29  Tom Tromey  <tromey@redhat.com>
5973
5974         * symfile.c (symfile_bfd_open): Don't close desc if bfd_fopen
5975         fails.
5976         * solib.c (solib_bfd_fopen): Don't close fd if bfd_fopen fails.
5977         * exec.c (exec_file_attach): Don't close scratch_chan if bfd_fopen
5978         fails.
5979         * dwarf2read.c (try_open_dwo_file): Don't close fd if bfd_fopen
5980         fails.
5981
5982 2012-05-29  Tristan Gingold  <gingold@adacore.com>
5983
5984         * solib-darwin.c (dyld_all_image_addr, dyld_all_image): Move into...
5985         (struct darwin_info): ... New struct.
5986         (solib_darwin_pspace_data): New variable.
5987         (darwin_pspace_data_cleanup): New function.
5988         (get_darwin_info): Likewise.
5989         (darwin_dyld_version_ok, darwin_load_image_infos)
5990         (darwin_solib_get_all_image_info_addr_at_init)
5991         (darwin_solib_read_all_image_info_addr): Add info argument.
5992         Adjust code.
5993         (darwin_current_sos): Use per pspace structure.
5994         (darwin_solib_create_inferior_hook): Likewise.
5995         (darwin_clear_solib): Likewise.
5996         (_initialize_darwin_solib): Initialize solib_darwin_pspace_data.
5997
5998 2012-05-28  Pedro Alves  <palves@redhat.com>
5999
6000         * infrun.c (wait_for_inferior): Move ecss and ecs locals to the
6001         block that uses them.  Clear ecss before handling each event.
6002
6003 2012-05-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
6004
6005         * solib-svr4.c (svr4_current_sos): New comment on
6006         svr4_current_sos_via_xfer_libraries fall back.
6007
6008 2012-05-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
6009
6010         * psymtab.c (lookup_symbol_aux_psymtabs): New variable stab_best.  Use
6011         it as a fallback for TYPE_IS_OPAQUE.
6012         * symfile.h (struct quick_symbol_functions): Mention TYPE_OPAQUE
6013         symbols for lookup_symbol.
6014
6015 2012-05-24  John Steele Scott  <toojays@toojays.net>
6016
6017         PR symtab/13277: Resolving opaque structures in ICC generated binaries.
6018         * dwarf2read.c (struct dwarf2_cu) <producer_is_icc>: New field.
6019         (producer_is_gxx_lt_4_6): Move the checking and caching to...
6020         (check_producer): ... this new function, which also checks for ICC
6021         and caches the result.
6022         (producer_is_icc): New function.
6023         (read_structure_type): Don't set TYPE_STUB_SUPPORTED if the
6024         producer was ICC.
6025
6026 2012-05-24  Pedro Alves  <palves@redhat.com>
6027
6028         PR gdb/7205
6029
6030         * arch-utils.c (default_gdb_signal_to_host): Rename to ...
6031         (default_gdb_signal_to_target): ... this.  Add comment.
6032         (default_gdb_signal_from_host): Rename to ...
6033         (default_gdb_signal_from_target): ... this.  Add comment.
6034         * arch-utils.h (default_gdb_signal_to_host): Rename to ...
6035         (default_gdb_signal_to_target): ... this.
6036         (default_gdb_signal_from_host): Rename to ...
6037         (default_gdb_signal_from_target): ... this.
6038         * corelow.c (core_open): Adjust to naming change.  Replace comment.
6039         * gdbarch.sh (gdb_signal_from_host): Rename to ...
6040         (gdb_signal_from_target): ... this.  Adjust to
6041         default_gdb_signal_from_host naming change.  Extend comment.
6042         (gdb_signal_to_host): Rename to ...
6043         (gdb_signal_to_target): ... this.  Adjust to
6044         default_gdb_signal_to_host naming change.
6045         * gdbarch.h, gdbarch.c: Renegerate.
6046
6047 2012-05-24  Pedro Alves  <palves@redhat.com>
6048
6049         PR gdb/7205
6050
6051         Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout.
6052
6053 2012-05-24  Pedro Alves  <palves@redhat.com>
6054
6055         PR gdb/7205
6056
6057         Replace target_signal with gdb_signal throughout.
6058
6059 2012-05-24  Pedro Alves  <palves@redhat.com>
6060
6061         PR tui/14159
6062
6063         * tui/tui-hooks.c (tui_query_hook): Pre-compute the question
6064         string, instead of reusing the va_list argument.
6065
6066 2012-05-24  Tom Tromey  <tromey@redhat.com>
6067
6068         * cp-support.h (cp_finalize_namespace, cp_initialize_namespace):
6069         Remove.
6070
6071 2012-05-23  Doug Evans  <dje@google.com>
6072
6073         * symtab.c (search_symbols): Formatting fixes.
6074         (print_symbol_info): Formatting fixes.
6075
6076         * dwarf2-frame.c (execute_cfa_program): Update to handle long long ->
6077         int64_t change to leb128 API.
6078         (read_encoded_value, decode_frame_entry_1): Ditto.
6079         * dwarf2expr.c (safe_read_uleb128, safe_read_sleb128): Ditto.
6080         (dwarf_block_to_dwarf_reg, dwarf_block_to_dwarf_reg_deref): Ditto.
6081         (dwarf_block_to_fb_offset, dwarf_block_to_sp_offset): Ditto.
6082         (execute_stack_op): Ditto.
6083         * dwarf2expr.h (gdb_read_uleb128, gdb_read_sleb128): Ditto.
6084         (safe_read_uleb128, safe_read_sleb128): Ditto.
6085         * dwarf2loc.c (decode_debug_loc_dwo_addresses): Ditto.
6086         (dwarf2_compile_expr_to_ax): Ditto.
6087         (locexpr_describe_location_piece): Ditto.
6088         (disassemble_dwarf_expression): Ditto.
6089         (locexpr_describe_location_1): Ditto.
6090
6091 2012-05-23  Stan Shebs  <stan@codesourcery.com>
6092             Kwok Cheung Yeung  <kcy@codesourcery.com>
6093
6094         * Makefile.in (SUBDIR_MI_OBS): Add mi-cmd-info.o.
6095         (SUBDIR_MI_SRCS): Add mi-cmd-info.c.
6096         (mi-cmd-info.o): New rule.
6097         * osdata.h (info_osdata_command): New declaration.
6098         * osdata.c (info_osdata_command): Change to non-static.
6099         * mi/mi-cmds.h (mi_cmd_info_os): New declaration.
6100         * mi/mi-cmds.c (mi_cmds): Add -info-os MI command.
6101         * mi/mi-cmd-info.c: New file.
6102
6103 2012-05-23  Doug Evans  <dje@google.com>
6104
6105         * symtab.c (search_symbols): Pass NULL for file_matcher to
6106         expand_symtabs_matching if there are no files to match.
6107
6108         * gdbtypes.c (lookup_typename): Simplify.
6109
6110 2012-05-23  Pedro Alves  <palves@redhat.com>
6111
6112         * arch-utils.h (default_target_signal_to_host): Delete.
6113         * arch-utils.c (default_target_signal_to_host): Delete.
6114         * gdbarch.sh (target_signal_to_host): Remove.
6115         * gdbarch.h, gdbarch.c: Regenerate.
6116
6117 2012-05-22  Doug Evans  <dje@google.com>
6118
6119         * dwarf2-frame.c (struct dwarf2_cie): Make initial_instructions, end
6120         "const gdb_byte *".
6121         (struct dwarf2_fde): Make instructions, end "const gdb_byte *".
6122         (execute_cfa_program): Update to match API of leb128 functions.
6123         (read_1_byte, read_4_bytes, read_8_bytes): Make buf parameter
6124         "const gdb_byte *".
6125         (read_unsigned_leb128, read_signed_leb128): Delete.
6126         (read_initial_length): Change type of buf argument to
6127         "const gdb_byte *".
6128         (read_encoded_value): Update to match API of leb128 functions.
6129         (decode_frame_entry): Change result to "const gdb_byte *", and
6130         similarly for "start" parameter.
6131         (decode_frame_entry_1): Ditto.  Use new leb128 reader functions.
6132         (dwarf2_build_frame_info): Change local frame_ptr to
6133         "const gdb_byte *".
6134         * dwarf2expr.c (safe_read_uleb128, safe_read_sleb128): Replaces
6135         read_uleb128, read_sleb128.  All callers updated.
6136         (safe_skip_leb128): New function.
6137         (dwarf_block_to_dwarf_reg): Update to match API of leb128 functions.
6138         Call gdb_read_uleb128, gdb_skip_leb128 instead of read_uleb128.
6139         (dwarf_block_to_dwarf_reg_deref): Update to match API of leb128
6140         functions.  Call gdb_read_uleb128, gdb_read_sleb128 instead of
6141         read_uleb128, read_sleb128.
6142         (dwarf_block_to_fb_offset, dwarf_block_to_sp_offset): Ditto.
6143         (execute_stack_op): Update to match API of leb128 functions.
6144         * dwarf2expr.h: #include "leb128.h".
6145         (read_uleb128, read_sleb128): Delete.
6146         (gdb_read_uleb128, gdb_read_sleb128, gdb_skip_leb128): New functions.
6147         (safe_read_uleb128, safe_read_sleb128, safe_skip_leb128): Declare.
6148         * dwarf2loc.c (debug_loc_kind): New enum.
6149         (decode_debug_loc_addresses): New function.
6150         (decode_debug_loc_dwo_addresses): New function.
6151         (dwarf2_find_location_expression): Rewrite.
6152         (dwarf2_compile_expr_to_ax): Update to match API of leb128 functions.
6153         (locexpr_describe_location_piece): Ditto.
6154         (disassemble_dwarf_expression): Ditto.
6155         (locexpr_describe_location_1): Ditto.
6156         (loclist_describe_location): Rewrite.
6157         * dwarf2loc.h (dwarf2_loclist_baton): New member "from_dwo".
6158         * dwarf2read.c (die_reader_specs): New member "buffer_end".
6159         (dwarf2_section_buffer_overflow_complaint): Renamed from
6160         dwarf2_macros_too_long_complaint.  All callers updated.
6161         (skip_leb128): Delete.
6162         (init_cu_die_reader): Initialize reader->buffer_end.
6163         (skip_one_die): Replace call to skip_leb128 with safe_skip_leb128.
6164         (skip_form_bytes): New arg buffer_end.  All callers updated.
6165         Replace call to skip_leb128 with gdb_skip_leb128.
6166         (skip_unknown_opcode): New arg mac_end.  All callers updated.
6167         (fill_in_loclist_baton): Initialize baton->from_dwo.
6168
6169 2012-05-22  Maciej W. Rozycki  <macro@codesourcery.com>
6170
6171         * mips-linux-nat.c (mips_linux_read_description): Use a more
6172         verbose error message.
6173
6174 2012-05-22  Maciej W. Rozycki  <macro@codesourcery.com>
6175
6176         * NEWS: Add MIPS/Linux DSP support.
6177         * mips-linux-tdep.c: Document post-2.6.12 o32 sigcontext layout.
6178         (SIGCONTEXT_DSPCTL): New macro.
6179         (SIGCONTEXT_HI1, SIGCONTEXT_LO1): Likewise.
6180         (SIGCONTEXT_HI2, SIGCONTEXT_LO2): Likewise.
6181         (SIGCONTEXT_HI3, SIGCONTEXT_LO3): Likewise.
6182         (N64_SIGCONTEXT_HI1, N64_SIGCONTEXT_HI2): Likewise.
6183         (N64_SIGCONTEXT_HI3): Likewise.
6184         (N64_SIGCONTEXT_LO1, N64_SIGCONTEXT_LO2): Likewise.
6185         (N64_SIGCONTEXT_LO3): Likewise.
6186         (N64_SIGCONTEXT_DSPCTL): Likewise.
6187         (N64_SIGCONTEXT_FPCSR): Clarify definition.
6188         (mips_linux_o32_sigframe_init): Handle DSP registers.
6189         (mips_linux_n32n64_sigframe_init): Likewise.
6190
6191 2012-05-22  Pierre Muller  <muller@ics.u-strasbg.fr>
6192
6193         * common/buffer.c (buffer_grow): ARI fix: Remove unneeded
6194         call to abort.
6195
6196 2012-05-22  Pedro Alves  <palves@redhat.com>
6197
6198         * target.h (store_waitstatus): Move declaration ...
6199         * inf-child.h (store_waitstatus): ... here.
6200         * target.c: Move inclusion of gdb_wait.h, and ...
6201         (store_waitstatus): ... this ...
6202         * inf-child.c: ... here.
6203         * linux-nat.c: Include inf-child.h.
6204         * rs6000-nat.c: Include inf-child.h.
6205         * spu-linux-nat.c: Include inf-child.h.
6206
6207 2012-05-22  Pierre Muller  <muller@ics.u-strasbg.fr>
6208
6209         * tracepoint.c (start_tracing): Add missing i18n markup.
6210         (stop_tracing, set_trace_user): Ditto.
6211         (set_trace_notes, set_trace_stop_notes): Ditto.
6212
6213 2012-05-21  Tom Tromey  <tromey@redhat.com>
6214
6215         PR c++/7173:
6216         * gnu-v3-abi.c (gnuv3_baseclass_offset): Return early for Java
6217         types.
6218         * value.h (value_cast_pointers): Update.
6219         * valops.c (value_cast_pointers): Add 'subclass_check' argument.
6220         (value_cast): Update.
6221         (update_search_result): New function.
6222         (do_search_struct_field): New, from search_struct_field.  Check
6223         for ambiguous results.
6224         (search_struct_field): Rewrite.
6225         * infcall.c (value_arg_coerce): Update.
6226         * eval.c (evaluate_subexp_standard) <STRUCTOP_MEMBER>: Use
6227         value_cast_pointers.
6228         * ada-lang.c (ada_convert_actual): Update.
6229
6230 2012-05-21  Tom Tromey  <tromey@redhat.com>
6231
6232         * macroexp.c (macro_stringify): Terminate the string.
6233
6234 2012-05-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
6235
6236         * NEWS (--with-auto-load-dir): Prepend $debugdir to the default path.
6237         Describe it.
6238         * auto-load.c (auto_load_expand_dir_vars): New function.
6239         (auto_load_safe_path_vec_update): Use it, remove the
6240         substitute_path_component call thanks to it.
6241         (auto_load_objfile_script): Remove the debug_file_directory processing.
6242         Use auto_load_expand_dir_vars, remove the substitute_path_component
6243         call thanks to it.
6244         * configure: Regenerate.
6245         * configure.ac (--with-auto-load-dir): Prepend $debugdir to the default
6246         path.  Escape $ also for $debugdir.
6247         (--with_auto_load_safe_path): Escape $ also for $debugdir.
6248         * utils.c (substitute_path_component): Accept also DIRNAME_SEPARATOR.
6249
6250 2012-05-20  Doug Evans  <dje@google.com>
6251
6252         * dwarf2read.c (recursively_find_pc_sect_symtab): Initialize "s"
6253         before use.  Check for symtab->includes == NULL before scanning it.
6254
6255 2012-05-18  Maciej W. Rozycki  <macro@codesourcery.com>
6256
6257         * mips-tdep.c (mips_reg3_to_reg): Optimize storage.
6258
6259 2012-05-18  Maciej W. Rozycki  <macro@codesourcery.com>
6260
6261         * NEWS: Add microMIPS support and "set mips compression",
6262         "show mips compression" commands.
6263         * mips-tdep.h (mips_isa): New enum.
6264         (gdbarch_tdep): Add mips_isa.
6265         (mips_pc_is_mips16): Update prototype.
6266         (mips_pc_is_mips, mips_pc_is_micromips): New prototypes.
6267         * mips-tdep.c (mips_compression_mips16): New variable.
6268         (mips_compression_micromips): Likewise.
6269         (mips_compression_strings): Likewise.
6270         (mips_compression_string): Likewise.
6271         (is_mips16_isa, is_micromips_isa): New functions.
6272         (is_mips16_addr): Rename to...
6273         (is_compact_addr): ... this.
6274         (unmake_mips16_addr): Likewise to...
6275         (unmake_compact_addr): ... this.
6276         (make_mips16_addr): Likewise to...
6277         (make_compact_addr): ... this.
6278         (is_mips_addr, is_mips16_addr, is_micromips_addr): New
6279         functions.
6280         (mips_elf_make_msymbol_special): Handle microMIPS code.
6281         (msymbol_is_special): Rename to...
6282         (msymbol_is_mips16): ... this.
6283         (mips_make_symbol_special, mips_pc_is_mips16): Update
6284         accordingly.
6285         (msymbol_is_mips, msymbol_is_micromips): New functions.
6286         (mips16_to_32_reg): Rename to...
6287         (mips_reg3_to_reg): ... this.
6288         (mips_pc_is_mips, mips_pc_is_micromips): New functions.
6289         (mips_pc_isa): Likewise.
6290         (mips_read_pc, mips_unwind_pc, mips_write_pc): Handle microMIPS
6291         code.
6292         (mips_fetch_instruction): Pass return status instead of printing
6293         an error message if requested.  Handle microMIPS code.  Bail out
6294         on an invalid ISA.
6295         (micromips_op): New macro.
6296         (b0s4_imm, b0s5_imm, b0s5_reg, b0s7_imm, b0s10_imm): Likewise.
6297         (b1s9_imm, b2s3_cc, b4s2_regl, b5s5_op, b5s5_reg): Likewise.
6298         (b6s4_op, b7s3_reg): Likewise.
6299         (b0s6_op, b0s11_op, b0s12_imm, b0s16_imm, b0s26_imm): Likewise.
6300         (b6s10_ext, b11s5_reg, b12s4_op): Likewise.
6301         (mips_insn_size): New function.
6302         (mips32_next_pc): Update mips_fetch_instruction call.
6303         (micromips_relative_offset7): New function.
6304         (micromips_relative_offset10): Likewise.
6305         (micromips_relative_offset16): Likewise.
6306         (micromips_pc_insn_size): Likewise.
6307         (micromips_bc1_pc): Likewise.
6308         (micromips_next_pc): Likewise.
6309         (unpack_mips16): Update mips_fetch_instruction call.
6310         (extended_mips16_next_pc): Update according to change to
6311         mips16_to_32_reg.
6312         (mips_next_pc): Update mips_pc_is_mips16 call.  Handle microMIPS
6313         code.
6314         (mips16_scan_prologue): Update mips_fetch_instruction call.
6315         Update according to change to mips16_to_32_reg.
6316         (mips_insn16_frame_sniffer): Update mips_pc_is_mips16 call.
6317         (mips_insn16_frame_base_sniffer): Likewise.
6318         (micromips_decode_imm9): New function.
6319         (micromips_scan_prologue): Likewise.
6320         (mips_micro_frame_cache): Likewise.
6321         (mips_micro_frame_this_id): Likewise.
6322         (mips_micro_frame_prev_register): Likewise.
6323         (mips_micro_frame_sniffer): Likewise.
6324         (mips_micro_frame_unwind): New variable.
6325         (mips_micro_frame_base_address): New function.
6326         (mips_micro_frame_base): New variable.
6327         (mips_micro_frame_base_sniffer): New function.
6328         (mips32_scan_prologue): Update mips_fetch_instruction call.
6329         (mips_insn32_frame_sniffer): Check for the standard MIPS ISA
6330         rather than for MIPS16.
6331         (mips_insn32_frame_base_sniffer): Likewise.
6332         (mips_addr_bits_remove): Handle microMIPS code.
6333         (deal_with_atomic_sequence): Rename to...
6334         (mips_deal_with_atomic_sequence): ... this.  Update the type
6335         of the variable used to hold an instruction.  Remove the ISA bit
6336         check.  Update mips_fetch_instruction call.
6337         (micromips_deal_with_atomic_sequence): New function.
6338         (deal_with_atomic_sequence): Likewise.
6339         (mips_about_to_return): Handle microMIPS code.  Update
6340         mips_fetch_instruction call.
6341         (heuristic_proc_start): Check for the standard MIPS ISA rather
6342         than for MIPS16.  Update mips_pc_is_mips16 and
6343         mips_fetch_instruction calls.  Handle microMIPS code.
6344         (mips_push_dummy_code): Handle microMIPS code.
6345         (mips_eabi_push_dummy_call): Likewise.
6346         (mips_o32_return_value): Update mips_pc_is_mips16 call.
6347         (mips_o64_push_dummy_call): Handle microMIPS code.
6348         (mips_o64_return_value): Update mips_pc_is_mips16 call.
6349         (is_delayed): Remove function.
6350         (mips_single_step_through_delay): Replace the call to is_delayed
6351         with mips32_instruction_has_delay_slot.  Correct MIPS16 handling.
6352         Handle microMIPS code.
6353         (mips_skip_prologue): Update mips_pc_is_mips16 call.  Handle
6354         microMIPS code.
6355         (mips32_in_function_epilogue_p): Update mips_fetch_instruction
6356         call.
6357         (micromips_in_function_epilogue_p): New function.
6358         (mips16_in_function_epilogue_p): Update mips_fetch_instruction
6359         call.
6360         (mips_in_function_epilogue_p): Update mips_pc_is_mips16 call.
6361         Handle microMIPS.
6362         (gdb_print_insn_mips): Likewise.
6363         (mips_breakpoint_from_pc): Likewise.
6364         (mips_remote_breakpoint_from_pc): New function.
6365         (mips32_instruction_has_delay_slot): Simplify making use of the
6366         updated mips_fetch_instruction interface.
6367         (micromips_instruction_has_delay_slot): New function.
6368         (mips16_instruction_has_delay_slot): Simplify making use of the
6369         updated mips_fetch_instruction interface.
6370         (mips_adjust_breakpoint_address): Check for the standard MIPS
6371         ISA rather than for MIPS16 ISA.  Update for unmake_compact_addr
6372         calls.  Handle microMIPS code.
6373         (mips_get_mips16_fn_stub_pc): Update mips_fetch_instruction call.
6374         (mips_skip_trampoline_code): Handle microMIPS code.
6375         (global_mips_compression): New function.
6376         (mips_gdbarch_init): Handle the compressed ISA setting from ELF
6377         file flags.  Register the microMIPS remote breakpoint handler
6378         and heuristic frame unwinder.
6379         (show_mips_compression): New function.
6380         (_initialize_mips_tdep): Add the "set mips compression" and
6381         "show mips compression" commands.
6382
6383 2012-05-18  Sergio Durigan Junior  <sergiodj@redhat.com>
6384
6385         * ada-lang.c:
6386         * ada-tasks.c:
6387         * ada-varobj.c:
6388         * amd64-darwin-tdep.c:
6389         * arm-symbian-tdep.c:
6390         * arm-tdep.c:
6391         * avr-tdep.c:
6392         * ax-gdb.c:
6393         * bfin-linux-tdep.c:
6394         * breakpoint.c:
6395         * c-valprint.c:
6396         * cli/cli-cmds.c:
6397         * coffread.c:
6398         * cp-support.c:
6399         * cris-tdep.c:
6400         * dwarf2-frame-tailcall.c:
6401         * dwarf2-frame.c:
6402         * dwarf2expr.c:
6403         * dwarf2loc.c:
6404         * dwarf2read.c:
6405         * elfread.c:
6406         * eval.c:
6407         * expprint.c:
6408         * f-valprint.c:
6409         * frv-tdep.c:
6410         * h8300-tdep.c:
6411         * hppa-hpux-tdep.c:
6412         * hppa-tdep.c:
6413         * hppanbsd-tdep.c:
6414         * i386-nto-tdep.c:
6415         * i386-tdep.c:
6416         * i387-tdep.c:
6417         * ia64-tdep.c:
6418         * jit.c:
6419         * linespec.c:
6420         * linux-tdep.c:
6421         * lm32-tdep.c:
6422         * m2-valprint.c:
6423         * m32c-tdep.c:
6424         * m32r-rom.c:
6425         * m32r-tdep.c:
6426         * m68k-tdep.c:
6427         * m68klinux-tdep.c:
6428         * mi/mi-main.c:
6429         * microblaze-tdep.c:
6430         * mips-linux-tdep.c:
6431         * mips-tdep.c:
6432         * mn10300-tdep.c:
6433         * p-valprint.c:
6434         * parse.c:
6435         * ppc-linux-tdep.c:
6436         * ppc-sysv-tdep.c:
6437         * printcmd.c:
6438         * python/py-finishbreakpoint.c:
6439         * python/py-inferior.c:
6440         * python/py-infthread.c:
6441         * python/py-type.c:
6442         * python/python.c:
6443         * remote-fileio.c:
6444         * remote-m32r-sdi.c:
6445         * remote-mips.c:
6446         * reverse.c:
6447         * rl78-tdep.c:
6448         * rs6000-aix-tdep.c:
6449         * rs6000-tdep.c:
6450         * s390-tdep.c:
6451         * score-tdep.c:
6452         * sh64-tdep.c:
6453         * skip.c:
6454         * solib-darwin.c:
6455         * solib-dsbt.c:
6456         * solib-frv.c:
6457         * sparc-tdep.c:
6458         * spu-multiarch.c:
6459         * spu-tdep.c:
6460         * stack.c:
6461         * symfile.c:
6462         * symtab.c:
6463         * tic6x-tdep.c:
6464         * tracepoint.c:
6465         * v850-tdep.c:
6466         * valarith.c:
6467         * valprint.c:
6468         * value.c:
6469         * xcoffread.c:
6470         * xtensa-tdep.c:
6471         * ada-lang.c:
6472         * ada-tasks.c:
6473         * ada-varobj.c:
6474         * amd64-darwin-tdep.c:
6475         * arm-symbian-tdep.c:
6476         * arm-tdep.c: Delete unused variables.
6477
6478 2012-05-18  Jan Kratochvil  <jan.kratochvil@redhat.com>
6479
6480         Rename $ddir to $datadir.
6481         * NEWS (--with-auto-load-dir): Rename $ddir to $datadir.
6482         * auto-load.c (auto_load_safe_path_vec_update)
6483         (auto_load_gdb_datadir_changed, auto_load_objfile_script): Likewise.
6484         * configure: Regenerate.
6485         * configure.ac (--with-auto-load-dir, --with-auto-load-safe-path):
6486         Likewise.  Remove the 'use $ddir' help string.
6487
6488 2012-05-18  Jan Kratochvil  <jan.kratochvil@redhat.com>
6489
6490         * auto-load.c (show_auto_load_safe_path): Accept any combination of
6491         DIRNAME_SEPARATOR and IS_DIR_SEPARATOR for wild-match.
6492
6493 2012-05-18  Tom Tromey  <tromey@redhat.com>
6494
6495         PR exp/13907:
6496         * valprint.h (struct value_print_options) <symbol_print>: New
6497         field.
6498         * valprint.c (user_print_options): Add default for symbol_print.
6499         (show_symbol_print): New function.
6500         (generic_val_print): Respect symbol_print.
6501         (_initialize_valprint): Add "print symbol" setting.
6502         * f-valprint.c (f_val_print): Respect symbol_print.
6503         * c-valprint.c (c_val_print): Respect symbol_print.
6504         * NEWS: Update.
6505         * printcmd.c (print_address_symbolic): Return int.  Ignore some
6506         zero-size symbols.
6507         (print_address_demangle): Return int.
6508         * defs.h: (print_address_symbolic): Return int.
6509         * value.h (print_address_demangle): Return int.
6510
6511 2012-05-18  Tom Tromey  <tromey@redhat.com>
6512
6513         * valprint.c (val_print_string): Don't print leading space.
6514         * p-valprint.c (pascal_val_print) <TYPE_CODE_PTR>: Optionally
6515         print space before string or vtbl.
6516         * m2-valprint.c (print_unpacked_pointer): Optionally print space
6517         before string.
6518         * jv-valprint.c (java_value_print): Print space before string.
6519         * go-valprint.c (print_go_string): Print space before string.
6520         * f-valprint.c (f_val_print) <TYPE_CODE_PTR>: Optionally print
6521         space before string.
6522         * c-valprint.c (c_val_print) <TYPE_CODE_PTR>: Optionally print
6523         space before string or vtbl.
6524         * auxv.c (fprint_target_auxv): Print space after address.
6525
6526 2012-05-18  Tom Tromey  <tromey@redhat.com>
6527
6528         * printcmd.c (print_address_demangle): Remove special case for 0.
6529
6530 2012-05-18  Tom Tromey  <tromey@redhat.com>
6531
6532         * printcmd.c (print_address_demangle): Add 'opts' argument.
6533         * p-valprint.c (pascal_val_print): Update.
6534         * jv-valprint.c (java_val_print): Update.
6535         * value.h: Update.
6536         * valprint.c (generic_val_print): Update.
6537         (print_function_pointer_address): Add 'options' argument.  Remove
6538         'addressprint' argument.  Update.
6539         * m2-valprint.c (print_unpacked_pointer): Update.
6540         * gnu-v3-abi.c (print_one_vtable): Update.
6541         (gnuv3_print_method_ptr): Update.
6542         * f-valprint.c (f_val_print): Update.
6543         * cp-valprint.c (cp_print_value_fields): Update.
6544         * valprint.h (print_function_pointer_address): Update.
6545         * c-valprint.c (c_val_print): Update.
6546
6547 2012-05-18  Tom Tromey  <tromey@redhat.com>
6548
6549         * psymtab.c (find_pc_sect_symtab_from_partial): Return the symtab
6550         directly corresponding to the found psymtab.
6551         * dwarf2read.c (recursively_find_pc_sect_symtab): New function.
6552         (dw2_find_pc_sect_symtab): Use it.
6553         * block.h (blockvector_contains_pc): Declare.
6554         * block.c (find_block_in_blockvector): New function.
6555         (blockvector_for_pc_sect): Use it.
6556         (blockvector_contains_pc): New function.
6557
6558 2012-05-18  Maciej W. Rozycki  <macro@codesourcery.com>
6559
6560         * mips-tdep.h (mips_write_pc): New prototype.
6561         * mips-tdep.c (mips_write_pc): Make external, add description.
6562         * mips-linux-tdep.c (mips_linux_write_pc): Use mips_write_pc,
6563         add description.
6564
6565 2012-05-18  Maciej W. Rozycki  <macro@codesourcery.com>
6566
6567         * mips-tdep.c (mips_read_pc): Use gdbarch_pc_regnum instead of
6568         mips_regnum->pc.
6569         (mips_unwind_pc, mips_write_pc): Likewise.
6570         (mips_gdbarch_init): Remove a comment on gdbarch_pc_regnum and
6571         gdbarch_read_pc.
6572
6573 2012-05-17  Joel Brobecker  <brobecker@adacore.com>
6574
6575         * procfs.c (procfs_find_new_threads, procfs_pid_to_str,
6576         proc_warn, proc_error, proc_get_status, proc_flags,
6577         proc_why, proc_what, proc_nsysarg, proc_sysargs,
6578         proc_set_run_on_last_close, proc_unset_run_on_last_close,
6579         proc_unset_inherit_on_fork, proc_set_async, proc_unset_async,
6580         proc_stop_process, proc_wait_for_stop, proc_run_process,
6581         proc_set_traced_signals, proc_set_traced_faults,
6582         proc_set_traced_sysentry, proc_set_traced_sysexit,
6583         proc_set_held_signals, proc_get_held_signals,
6584         proc_get_traced_signals, proc_get_traced_faults,
6585         proc_get_traced_sysentry, proc_get_traced_sysexit,
6586         proc_clear_current_fault, proc_set_current_signal,
6587         proc_clear_current_signal, proc_get_gregs, proc_get_fpregs,
6588         proc_set_gregs, proc_set_fpregs, proc_kill, proc_parent_pid,
6589         proc_get_nthreads, proc_get_nthreads, proc_get_nthreads,
6590         proc_get_current_thread, proc_get_current_thread,
6591         proc_get_current_thread, proc_update_threads,
6592         proc_update_threads, proc_update_threads, proc_update_threads,
6593         proc_iterate_over_threads, procfs_find_new_threads,
6594         procfs_pid_to_str): Make static.  Remove advance declaration.
6595         (proc_cursig): Make static.  Conditionalized defintion on
6596         PROCFS_DONT_PIOCSSIG_CURSIG being defined.
6597         (proc_syscall, proc_set_kill_on_last_close,
6598         proc_unset_kill_on_last_close, proc_set_inherit_on_fork,
6599         proc_get_pending_signals, proc_get_signal_actions,
6600         proc_trace_signal, proc_ignore_signal): Delete.
6601
6602 2012-05-16  Sergio Durigan Junior  <sergiodj@redhat.com>
6603
6604         * coffread.c (cs_section_address): Passing proper argument for
6605         `bfd_get_section_vma'.
6606         * dwarf2read.c (dwarf2_locate_sections): Likewise, for
6607         `bfd_get_section_flags'.
6608         * remote.c (remote_trace_set_readonly_regions): Likewise, for
6609         `bfd_get_section_vma'.
6610
6611 2012-05-16  Tom Tromey  <tromey@redhat.com>
6612
6613         PR macros/13205:
6614         * macrotab.h: (macro_define_special): Declare.
6615         (enum macro_special_kind): New.
6616         (struct macro_definition) <argc, replacement>: Update comments.
6617         * macrotab.c (new_macro_definition): Unconditionally set 'argc'.
6618         (macro_define_object_internal): New function.
6619         (macro_define_object): Use it.
6620         (macro_define_special): New function.
6621         (fixup_definition): New function.
6622         (macro_lookup_definition, foreach_macro_in_scope)
6623         (foreach_macro): Use fixup_definition.
6624         * macroexp.h (macro_stringify): Declare.
6625         * macroexp.c (free_buffer_return_text): New function.
6626         (stringify): Constify "arg".
6627         (macro_stringify): New function.
6628         * dwarf2read.c (macro_start_file): Call macro_define_special.
6629
6630 2012-05-16  Maciej W. Rozycki  <macro@codesourcery.com>
6631             Maciej W. Rozycki  <macro@mips.com>
6632
6633         * breakpoint.h (bp_location): Add related_address member.
6634         * inferior.h (get_return_value): Take a pointer to struct value
6635         instead of struct type for the function requested.
6636         * value.h (using_struct_return): Likewise.
6637         * gdbarch.sh (return_value): Take a pointer to struct value
6638         instead of struct type for the function requested.
6639         * breakpoint.c (set_breakpoint_location_function): Initialize
6640         related_address for bp_gnu_ifunc_resolver breakpoints.
6641         * elfread.c (elf_gnu_ifunc_resolver_return_stop): Pass the
6642         requested function's address to gdbarch_return_value.
6643         * eval.c (evaluate_subexp_standard): Pass the requested
6644         function's address to using_struct_return.
6645         * infcall.c (call_function_by_hand): Pass the requested
6646         function's address to using_struct_return and
6647         gdbarch_return_value.
6648         * infcmd.c (get_return_value): Take a pointer to struct value
6649         instead of struct type for the function requested.
6650         (print_return_value): Update accordingly.
6651         (finish_command_continuation): Likewise.
6652         * stack.c (return_command): Pass the requested function's
6653         address to using_struct_return and gdbarch_return_value.
6654         * value.c (using_struct_return): Take a pointer to struct value
6655         instead of struct type for the function requested.  Pass the
6656         requested function's address to gdbarch_return_value.
6657         * python/py-finishbreakpoint.c (finish_breakpoint_object):
6658         New function_value member, replacing function_type.
6659         (bpfinishpy_dealloc): Update accordingly.
6660         (bpfinishpy_pre_stop_hook): Likewise.
6661         (bpfinishpy_init): Likewise.  Record the requested function's
6662         address.
6663         * mips-tdep.c (mips_fval_reg): New enum.
6664         (mips_o32_push_dummy_call): For MIPS16 FP doubles do not swap
6665         words put in GP registers.
6666         (mips_o64_push_dummy_call): Update a comment.
6667         (mips_o32_return_value): Take a pointer to struct value instead
6668         of struct type for the function requested and use it to check if
6669         using the MIPS16 calling convention.  Return the designated
6670         general purpose registers for floating-point values returned in
6671         MIPS16 mode.
6672         (mips_o64_return_value): Likewise.
6673         * ppc-tdep.h (ppc_sysv_abi_return_value): Update prototype.
6674         (ppc_sysv_abi_broken_return_value): Likewise.
6675         (ppc64_sysv_abi_return_value): Likewise.
6676         * alpha-tdep.c (alpha_return_value): Take a pointer to struct
6677         value instead of struct type for the function requested.
6678         * amd64-tdep.c (amd64_return_value): Likewise.
6679         * amd64-windows-tdep.c (amd64_windows_return_value): Likewise.
6680         * arm-tdep.c (arm_return_value): Likewise.
6681         * avr-tdep.c (avr_return_value): Likewise.
6682         * bfin-tdep.c (bfin_return_value): Likewise.
6683         * cris-tdep.c (cris_return_value): Likewise.
6684         * frv-tdep.c (frv_return_value): Likewise.
6685         * h8300-tdep.c (h8300_return_value): Likewise.
6686         (h8300h_return_value): Likewise.
6687         * hppa-tdep.c (hppa32_return_value): Likewise.
6688         (hppa64_return_value): Likewise.
6689         * i386-tdep.c (i386_return_value): Likewise.
6690         * ia64-tdep.c (ia64_return_value): Likewise.
6691         * iq2000-tdep.c (iq2000_return_value): Likewise.
6692         * lm32-tdep.c (lm32_return_value): Likewise.
6693         * m32c-tdep.c (m32c_return_value): Likewise.
6694         * m32r-tdep.c (m32r_return_value): Likewise.
6695         * m68hc11-tdep.c (m68hc11_return_value): Likewise.
6696         * m68k-tdep.c (m68k_return_value): Likewise.
6697         (m68k_svr4_return_value): Likewise.
6698         * m88k-tdep.c (m88k_return_value): Likewise.
6699         * mep-tdep.c (mep_return_value): Likewise.
6700         * microblaze-tdep.c (microblaze_return_value): Likewise.
6701         * mn10300-tdep.c (mn10300_return_value): Likewise.
6702         * moxie-tdep.c (moxie_return_value): Likewise.
6703         * mt-tdep.c (mt_return_value): Likewise.
6704         * ppc-linux-tdep.c (ppc_linux_return_value): Likewise.
6705         * ppc-sysv-tdep.c (ppc_sysv_abi_return_value): Likewise.
6706         (ppc_sysv_abi_broken_return_value): Likewise.
6707         (ppc64_sysv_abi_return_value): Likewise.
6708         * ppcnbsd-tdep.c (ppcnbsd_return_value): Likewise.
6709         * rl78-tdep.c (rl78_return_value): Likewise.
6710         * rs6000-aix-tdep.c (rs6000_return_value): Likewise.
6711         * rx-tdep.c (rx_return_value): Likewise.
6712         * s390-tdep.c (s390_return_value): Likewise.
6713         * score-tdep.c (score_return_value): Likewise.
6714         * sh-tdep.c (sh_return_value_nofpu): Likewise.
6715         (sh_return_value_fpu): Likewise.
6716         * sh64-tdep.c (sh64_return_value): Likewise.
6717         * sparc-tdep.c (sparc32_return_value): Likewise.
6718         * sparc64-tdep.c (sparc64_return_value): Likewise.
6719         * spu-tdep.c (spu_return_value): Likewise.
6720         * tic6x-tdep.c (tic6x_return_value): Likewise.
6721         * v850-tdep.c (v850_return_value): Likewise.
6722         * vax-tdep.c (vax_return_value): Likewise.
6723         * xstormy16-tdep.c (xstormy16_return_value): Likewise.
6724         * xtensa-tdep.c (xtensa_return_value): Likewise.
6725         * gdbarch.c: Regenerate.
6726         * gdbarch.h: Regenerate.
6727
6728 2012-05-15  Tom Tromey  <tromey@redhat.com>
6729
6730         * python/python.c (gdbpy_find_pc_line): Use gdb_py_ulongest.
6731
6732 2012-05-15  Joel Brobecker  <brobecker@adacore.com>
6733
6734         * breakpoint.c (init_breakpoint_sal): Add quotes around part
6735         of command in two error message.
6736
6737 2012-05-15  Joel Brobecker  <brobecker@adacore.com>
6738
6739         * breakpoint.c (init_breakpoint_sal): Remove trailing spaces.
6740
6741 2012-05-15  Joel Brobecker  <brobecker@adacore.com>
6742
6743         * breakpoint.c (find_condition_and_thread): Minor reformatting.
6744
6745 2012-05-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
6746
6747         * NEWS (show auto-load scripts-directory): Add forgotten command.
6748
6749 2012-05-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
6750
6751         * spu-tdep.c (spu_catch_start): Update create_breakpoint caller
6752         parameters.
6753
6754 2012-05-14  H.J. Lu  <hongjiu.lu@intel.com>
6755
6756         * amd64-tdep.c: Include features/i386/x32.c and
6757         features/i386/x32-avx.c.
6758         (_initialize_amd64_tdep): Call initialize_tdesc_x32 and
6759         initialize_tdesc_x32_avx.
6760
6761 2012-05-14  Stan Shebs  <stan@codesourcery.com>
6762
6763         Add dynamic printf.
6764         * breakpoint.h (enum bptype): New type bp_dprintf.
6765         (struct breakpoint): New field extra_string.
6766         (struct breakpoint_ops): Add arg to create_breakpoints_sal.
6767         (create_breakpoint): Add extra_string arg.
6768         * breakpoint.c (dprintf_breakpoint_ops): New.
6769         (is_breakpoint): Add bp_dprintf.
6770         (bpstat_what): Add dprintf case.
6771         (bptype_string): Ditto.
6772         (print_one_breakpoint_location): Ditto.
6773         (init_bp_location): Ditto.
6774         (bkpt_print_mention): Ditto.
6775         (dprintf_style_enums): New array.
6776         (dprintf_style): New global.
6777         (dprintf_function): New global.
6778         (dprintf_channel): New global.
6779         (update_dprintf_command_list): New function.
6780         (update_dprintf_commands): New function.
6781         (init_breakpoint_sal): Add extra_string argument, handle it.
6782         (create_breakpoint_sal): Add extra_string argument.
6783         (create_breakpoints_sal): Add extra_string argument, update callers.
6784         (find_condition_and_thread): Add extra argument.
6785         (create_breakpoint): Add extra_string argument, record it.
6786         (dprintf_command): New function.
6787         (break_command_1): Add arg to create_breakpoint call.
6788         (handle_gnu_v3_exceptions): Ditto.
6789         (trace_command): Ditto.
6790         (ftrace_command): Ditto.
6791         (strace_command): Ditto.
6792         (bkpt_print_mention): Add dprintf case.
6793         (create_breakpoint_sal_default): Add extra_string argument.
6794         (_initialize_breakpoint): Add new commands.
6795         * mi/mi-cmd-break.c (mi_cmd_break_insert): Add arg to call.
6796         * python/py-breakpoint.c (bppy_init): Ditto.
6797         * python/py-finishbreakpoint.c (bpfinishpy_init): Ditto.
6798
6799 2012-05-14  Maciej W. Rozycki  <macro@codesourcery.com>
6800
6801         * mips-tdep.c (mips_push_dummy_code): Correct description typo.
6802
6803 2012-05-14  Siva Chandra Reddy  <sivachandra@google.com>
6804
6805         * python/python.c (gdbpy_find_pc_line): Use ULONGEST instead of
6806         unsigned long long.
6807
6808 2012-05-13  Siva Chandra Reddy  <sivachandra@google.com>
6809
6810         Add a new function gdb.find_pc_line to the Python API.
6811         * NEWS (Python Scripting): Add entry about the new function.
6812         * python/python.c (gdbpy_find_pc_line): New function which
6813         implements gdb.find_pc_line.
6814         (GdbMethods): Add entry for the new function.
6815
6816 2012-05-12  Pedro Alves  <palves@redhat.com>
6817
6818         * amd64-linux-tdep.c (_initialize_amd64_linux_tdep): Call
6819         initialize_tdesc_x32_linux and initialize_tdesc_x32_avx_linux.
6820
6821 2012-05-12  Eli Zaretskii  <eliz@gnu.org>
6822
6823         * inferior.c: Include completer.h
6824         (initialize_inferiors): Set completer of add-inferior to
6825         filename_completer.
6826
6827 2012-05-11  H.J. Lu  <hongjiu.lu@intel.com>
6828
6829         * amd64-linux-tdep.c (amd64_linux_core_read_description): Check
6830         gdbarch_ptr_bit for x32 core dump.
6831
6832 2012-05-11  H.J. Lu  <hongjiu.lu@intel.com>
6833
6834         * amd64-linux-tdep.c: Include features/i386/x32-linux.c
6835         and features/i386/x32-avx-linux.c.
6836
6837 2012-05-11  Stan Shebs  <stan@codesourcery.com>
6838             Kwok Cheung Yeung  <kcy@codesourcery.com>
6839
6840         * NEWS: Describe new info os commands.
6841         * common/linux-osdata.c (PID_T, TIME_T): Define.
6842         (MAX_PID_T_STRLEN): New.
6843         (linux_common_core_of_thread): Add comment.  Change to use PID_T and
6844         MAX_PID_T_STRLEN.
6845         (command_from_pid): Add comment.  Change to use PID_T.
6846         (commandline_from_pid):  Change to use PID_T.
6847         (user_from_pid): Add comment.
6848         (get_process_owner): Add comment. Change to use PID_T and
6849         MAX_PID_T_STRLEN.
6850         (get_number_of_cpu_cores): Add comment.
6851         (get_cores_used_by_process): Add comment.  Change to use PID_T and
6852         MAX_PID_T_STRLEN.
6853         (linux_xfer_osdata_processes): Change to use PID_T and
6854         MAX_PID_T_STRLEN.
6855         (compare_processes): New function.
6856         (linux_xfer_osdata_processgroups): New function.
6857         (linux_xfer_osdata_threads): Change to use PID_T.
6858         (linux_xfer_osdata_fds): New function.
6859         (format_socket_state, print_sockets): New functions.
6860         (union socket_addr): New union.
6861         (linux_xfer_osdata_isockets): New function.
6862         (time_from_time_t, group_from_gid): New functions.
6863         (linux_xfer_osdata_shm): New function.
6864         (linux_xfer_osdata_sem): New function.
6865         (linux_xfer_osdata_msg): New function.
6866         (linux_xfer_osdata_modules): New function.
6867         (osdata_table): Add new entries.
6868         * common/buffer.c (buffer_xml_printf): Add support for long and
6869         long long format specifiers.
6870
6871 2012-05-11  H.J. Lu  <hongjiu.lu@intel.com>
6872
6873         * amd64-linux-tdep.h (tdesc_x32_linux): New.
6874         (tdesc_x32_avx_linux): Likewise.
6875
6876 2012-05-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
6877
6878         Implement multi-component --with-auto-load-dir.
6879         * NEWS (set auto-load scripts-directory, --with-auto-load-dir): New
6880         entries.
6881         (--with-auto-load-safe-path): Update the default value description.
6882         * auto-load.c (auto_load_dir, set_auto_load_dir, show_auto_load_dir):
6883         New.
6884         (auto_load_objfile_script): Add DEBUG_AUTO_LOAD output.  Remove
6885         GDB_DATADIR NULL check.  Replace GDB_DATADIR/auto-load by
6886         AUTO_LOAD_DIR.  Support $ddir and multiple components in it.
6887         (_initialize_auto_load): Initialize also auto_load_dir.  Install new
6888         "set auto-load scripts-directory".
6889         * config.in: Regenerate.
6890         * configure: Regenerate.
6891         * configure.ac (--with-auto-load-dir): New configure option.
6892         (--auto-load-safe-path): Change the default to --with-auto-load-dir.
6893
6894 2012-05-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
6895
6896         Provide $ddir substitution for --with-auto-load-safe-path.
6897         * NEWS (--with-auto-load-safe-path, --without-auto-load-safe-path): New
6898         entries.
6899         * auto-load.c: Include observer.h.
6900         (auto_load_safe_path_vec_update): Call substitute_path_component for
6901         each component.  New variable ddir_subst.
6902         (auto_load_gdb_datadir_changed): New function.
6903         (set_auto_load_safe_path): Rename DEFAULT_AUTO_LOAD_SAFE_PATH to
6904         AUTO_LOAD_SAFE_PATH.  New comment.
6905         (_initialize_auto_load): Rename DEFAULT_AUTO_LOAD_SAFE_PATH to
6906         AUTO_LOAD_SAFE_PATH.  Install auto_load_gdb_datadir_changed.
6907         * config.in: Regenerate.
6908         * configure: Regenerate.
6909         * configure.ac (--auto-load-safe-path): Rename
6910         DEFAULT_AUTO_LOAD_SAFE_PATH to AUTO_LOAD_SAFE_PATH.  Default to
6911         GDB_DATADIR/auto-load.
6912         * defs.h (substitute_path_component): New declaration.
6913         * top.c: Include observer.h.
6914         (set_gdb_datadir): New function.
6915         (init_main): Install it for "set data-directory".
6916         * utils.c (substitute_path_component): New function.
6917
6918 2012-05-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
6919
6920         Make auto-load handle multiple components of DEBUG_FILE_DIRECTORY.
6921         * auto-load.c (auto_load_objfile_script): Remove check for NULL
6922         DEBUG_FILE_DIRECTORY.  Handle multiple components of
6923         DEBUG_FILE_DIRECTORY.
6924
6925 2012-05-10  Tom Tromey  <tromey@redhat.com>
6926
6927         * dwarf2read.c (recursively_write_psymbols): New function.
6928         (write_psymtabs_to_index): Use it.
6929
6930         * dwarf2read.c (struct dwarf2_queue_item) <pretend_language>: New
6931         field.
6932         (load_cu, dw2_do_instantiate_symtab, process_psymtab_comp_unit)
6933         (load_partial_comp_unit): Update.
6934         (queue_comp_unit): Add argument 'pretend_language'.
6935         (process_queue): Update.
6936         (psymtab_to_symtab_1): Skip dependencies that have a user.
6937         (load_partial_comp_unit_reader): Give meaning to the 'data'
6938         argument.
6939         (load_full_comp_unit): Add 'pretend_language' argument.
6940         (process_full_comp_unit): Add 'pretend_language' argument.  Set
6941         language on CU.
6942         (process_imported_unit_die, read_file_scope, read_type_unit_scope):
6943         Update.
6944         (maybe_queue_comp_unit): Add 'pretend_language' argument.
6945         (follow_die_offset, follow_die_sig, read_signatured_type_reader):
6946         Update.
6947         (prepare_one_comp_unit): Add 'pretend_language' argument.
6948
6949         * dwarf2read.c: (dwarf2_per_cu_ptr): New typedef.
6950         (struct dwarf2_per_objfile) <just_read_cus>: New field.
6951         (struct dwarf2_per_cu_data) <imported_symtabs>: New field.
6952         (dw2_do_instantiate_symtab): Check whether symtab was read in
6953         before queueing.
6954         (dw2_instantiate_symtab): Add assertion.  Call
6955         process_cu_includes.
6956         (process_psymtab_comp_unit): Compute 'dependencies' for psymtab.
6957         (partial_symtab_p): New typedef.
6958         (set_partial_user): New function.
6959         (dwarf2_build_psymtabs_hard): Use set_partial_user.
6960         (scan_partial_symbols): Add imported CU to imported_symtabs.
6961         (dwarf2_psymtab_to_symtab): Call process_cu_includes.
6962         (psymtab_to_symtab_1): Do nothing if psymtab is readin.
6963         (get_symtab, recursively_compute_inclusions)
6964         (compute_symtab_includes, process_cu_includes)
6965         (process_imported_unit_die): New functions.
6966         (process_die) <DW_TAG_imported_unit>: New case.
6967         (dwarf2_per_objfile_free): Free 'imported_symtabs'.
6968
6969         * dwarf2read.c (struct dwarf2_per_cu_data) <psymtab>: Update
6970         comment.
6971         (struct partial_die_info) <locdesc>: Remove.
6972         <d>: New field.
6973         (process_psymtab_comp_unit): Add 'read_partial' argument.
6974         Update.
6975         (process_type_comp_unit, dwarf2_build_psymtabs_hard): Update.
6976         (scan_partial_symbols): Handle DW_TAG_imported_unit.
6977         (add_partial_symbol): Update.
6978         (process_die): Handle DW_TAG_partial_unit.
6979         (read_file_scope): Update comment.
6980         (load_partial_dies): Handle DW_TAG_imported_unit.
6981         (read_partial_die): Handle DW_TAG_partial_unit, DW_AT_import.
6982         (determine_prefix, dwarf2_name): Handle DW_TAG_partial_unit.
6983
6984 2012-05-10  Tom Tromey  <tromey@redhat.com>
6985
6986         * cc-with-dwz.sh: New file.
6987
6988 2012-05-10  Tom Tromey  <tromey@redhat.com>
6989
6990         * symtab.h (struct symtab) <includes, user>: New fields.
6991         * block.h (struct block_iterator) <d, idx, which>: New fields.
6992         * block.c (initialize_block_iterator, find_iterator_symtab)
6993         (block_iterator_step, block_iter_name_step)
6994         (block_iter_match_step): New functions.
6995         (block_iterator_first, block_iterator_next)
6996         (block_iter_name_first, block_iter_name_next)
6997         (block_iter_match_first, block_iter_match_next): Rewrite.
6998         (get_block_symtab): New function.
6999
7000 2012-05-10  Tom Tromey  <tromey@redhat.com>
7001
7002         * jv-lang.c (get_java_class_symtab): Use allocate_global_block,
7003         set_block_symtab.
7004         * jit.c (finalize_symtab): Use allocate_global_block,
7005         set_block_symtab.
7006         * buildsym.c (finish_block_internal): New function, from old
7007         finish_block.
7008         (finish_block): Rewrite.
7009         (end_symtab): Use finish_block_internal, set_block_symtab.
7010         * block.h (struct global_block): New.
7011         (allocate_global_block, set_block_symtab): Declare.
7012         * block.c (allocate_global_block, set_block_symtab): New
7013         functions.
7014
7015 2012-05-10  Tom Tromey  <tromey@redhat.com>
7016
7017         * psymtab.c (partial_map_expand_apply): Add assertion.
7018         (partial_map_symtabs_matching_filename): Skip included psymtabs.
7019         (psymtab_to_symtab): Find unshared psymtab.
7020         (dump_psymtab): Print including psymtabs.
7021         (recursively_search_psymtabs): New function.
7022         (expand_symtabs_matching_via_partial): Use it.
7023         * psympriv.h (struct partial_symtab) <user, searched_flag>: New
7024         fields.
7025         (enum psymtab_search_status): New.
7026
7027 2012-05-10  Tom Tromey  <tromey@redhat.com>
7028
7029         * tracepoint.c (scope_info): Update.
7030         * symtab.c (lookup_block_symbol, iterate_over_symbols)
7031         (find_pc_sect_symtab, search_symbols)
7032         (default_make_symbol_completion_list_break_on)
7033         (make_file_symbol_completion_list): Update.
7034         * symmisc.c (dump_symtab_1): Update.
7035         * stack.c (print_frame_args, iterate_over_block_locals)
7036         (print_frame_labels, iterate_over_block_arg_vars): Update.
7037         * python/py-block.c (block_object) <dict>: Remove.
7038         <block>: New field.
7039         <iter>: Change type.
7040         (blpy_iter): Update.
7041         (blpy_block_syms_iternext): Update.
7042         * psymtab.c (map_block): Use block iterators.
7043         * objfiles.c (objfile_relocate1): Use ALL_DICT_SYMBOLS.
7044         * mi/mi-cmd-stack.c (list_args_or_locals): Update.
7045         * mdebugread.c (parse_symbol, mylookup_symbol): Update.
7046         * infrun.c (check_exception_resume): Update.
7047         * cp-support.c (make_symbol_overload_list_block): Update.
7048         * coffread.c (patch_opaque_types): Update.
7049         * buildsym.c (finish_block, end_symtab): Use ALL_DICT_SYMBOLS.
7050         * block.h (struct block_iterator): New.
7051         (block_iterator_first, block_iterator_next, block_iter_name_first)
7052         (block_iter_name_next, block_iter_match_first)
7053         (block_iter_match_next): Declare.
7054         (ALL_BLOCK_SYMBOLS): Redefine.
7055         * block.c (block_iterator_first, block_iterator_next)
7056         (block_iter_name_first, block_iter_name_next)
7057         (block_iter_match_first, block_iter_match_next): New functions.
7058         * ada-lang.c (ada_add_block_symbols)
7059         (ada_make_symbol_completion_list): Use block iterator.
7060
7061 2012-05-10  Tom Tromey  <tromey@redhat.com>
7062
7063         * psymtab.c (PSYMTAB_TO_SYMTAB): Remove.
7064         (find_pc_sect_symtab_from_partial, lookup_symbol_aux_psymtabs)
7065         (lookup_partial_symbol, find_last_source_symtab_from_partial)
7066         (read_psymtabs_with_filename, map_matching_symbols_psymtab)
7067         (expand_symtabs_matching_via_partial, maintenance_check_symtabs):
7068         Update.
7069
7070 2012-05-10  Joel Brobecker  <brobecker@adacore.com>
7071
7072         * config/djgpp/fnchange.lst: Add entries for print-file-var-lib1.c,
7073         print-file-var-lib2.c, print-file-var-main.c and
7074         print-file-var.exp (located in gdb/testsuite/gdb.base).
7075
7076 2012-05-10  Joel Brobecker  <brobecker@adacore.com>
7077
7078         * findvar.c (default_read_var_value): For LOC_UNRESOLVED symbols,
7079         try locating the symbol in the symbol's own objfile first, before
7080         extending the search to all objfiles.
7081         * symtab.c (lookup_symbol_aux_objfile): New function, extracted
7082         out of lookup_symbol_aux_symtabs.
7083         (lookup_symbol_aux_symtabs): Add new parameter "exclude_objfile".
7084         Replace extracted-out code by call to lookup_symbol_aux_objfile.
7085         Do not search EXCLUDE_OBJFILE.
7086         (lookup_static_symbol_aux): Update call to lookup_symbol_aux_symtabs.
7087         (lookup_symbol_global): Search for matches in the block's objfile
7088         first, before searching all other objfiles.
7089
7090 2012-05-10  Tristan Gingold  <gingold@adacore.com>
7091
7092         * printcmd.c (set_command): Add pre/post inc/dec.
7093
7094 2012-05-09  Frank Ch. Eigler  <fche@redhat.com>
7095
7096         * gdb.1: Document -ex option.
7097
7098 2012-05-09  Joel Brobecker  <brobecker@adacore.com>
7099
7100         * infcall.c (call_function_by_hand): Remove AT_SYMBOL handling.
7101         * inferior.h (AT_SYMBOL): Delete.
7102
7103 2012-05-09  Joel Brobecker  <brobecker@adacore.com>
7104
7105         * mips-tdep.c (mips_push_dummy_code): New function.
7106         (mips_gdbarch_init): Set the gdbarch call_dummy_location to
7107         ON_STACK and install mips_push_dummy_code as our gdbarch
7108         push_dummy_code routine.
7109
7110 2012-05-09  Pedro Alves  <palves@redhat.com>
7111
7112         * target.c (set_maintenance_target_async_permitted): Rename to ...
7113         (set_target_async_command): ... this.
7114         (show_maintenance_target_async_permitted): Rename to ...
7115         (show_target_async_command): ... this.
7116         (initialize_targets): Adjust.
7117
7118 2012-05-08  Doug Evans  <dje@google.com>
7119
7120         * go-exp.y (classify_name): Add missing assignment of fields of
7121         yylval.ssym.
7122
7123 2012-05-08  Eli Zaretskii  <eliz@gnu.org>
7124
7125         Display the ">" prompt in interactive mode while reading canned
7126         commands, even when the current interpreter is MI.
7127
7128         * interps.c (interp_set_temp): New function.
7129
7130         * interps.h (interp_set_temp): Add prototype.
7131
7132         * cli/cli-script.c (restore_interp): New cleanup function.
7133         (read_command_lines): Temporarily override the current interpreter
7134         with CLI and arrange for restoring the original one.
7135
7136 2012-05-12  Joel Sherrill <joel.sherrill@oarcorp.com>
7137
7138         * microblaze-rom.c (_initialize_picobug_rom): Add prototype.
7139
7140 2012-05-07  Sergio Durigan Junior  <sergiodj@redhat.com>
7141
7142         * probe.c (parse_probes): Move conditional to check for
7143         debuginfo files from here...
7144         * stap-probe.c (stap_get_probes): ... to here.
7145
7146 2012-05-07  Mark Kettenis  <kettenis@gnu.org>
7147             H.J. Lu  <hongjiu.lu@intel.com>
7148
7149         * amd64-tdep.c (amd64_analyze_prologue): Additionally check for
7150         `movl %esp, %ebp' for the X32 ABI.
7151
7152 2012-05-07  Tom Tromey  <tromey@redhat.com>
7153
7154         * dwarf2read.c (dwarf_tag_name): Return const char *.  Use
7155         get_DW_TAG_name.
7156         (dwarf_attr_name): Return const char *.  Use get_DW_AT_name.
7157         (dwarf_form_name): Return const char *.  Use get_DW_FORM_name.
7158         (dwarf_stack_op_name): Remove.
7159         (dwarf_cfi_name): Return const char *.  Use get_DW_ATE_name.
7160         (decode_locdesc): Use get_DW_OP_name.
7161         * dwarf2loc.c (unimplemented): Use get_DW_OP_name.
7162         (dwarf2_compile_expr_to_ax): Likewise.
7163         (disassemble_dwarf_expression): Likewise.
7164         * dwarf2expr.h: (dwarf_stack_op_name): Remove.
7165
7166 2012-05-07  Chung-Lin Tang  <cltang@codesourcery.com>
7167
7168         * sh-linux-tdep.c: Include trad-frame.h and tramp-frame.h.
7169         (sh_linux_sigtramp_cache): New function.
7170         (sh_linux_sigreturn_init): New function.
7171         (sh_linux_rt_sigreturn_init): New function.
7172         (SH_MOVW,SH_TRAP,SH_OR_R0_R0): New symbols for instruction
7173         patterns.
7174         (SH_NR_SIGRETURN,SH_NR_RT_SIGRETURN): New symbols for sigreturn
7175         syscall codes.
7176         (sh_linux_sigreturn_tramp_frame): New tramp_frame definition.
7177         (sh_linux_rt_sigreturn_tramp_frame): Likewise.
7178         (sh_linux_init_abi): Add init calls to register new tramp_frame
7179         definitions under 32-bit SH, update comments.
7180
7181 2012-05-07  Pedro Alves  <palves@redhat.com>
7182
7183         PR gdb/10952
7184
7185         * amd64-linux-tdep.c: Include glibc-tdep.h.
7186         (amd64_linux_init_abi): Install glibc_skip_solib_resolver as
7187         gdbarch_skip_solib_resolver callback.
7188
7189 2012-05-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
7190
7191         * auto-load.c (set_auto_load_safe_path): Reset AUTO_LOAD_SAFE_PATH
7192         back to DEFAULT_AUTO_LOAD_SAFE_PATH if it is being set to "".
7193         (show_auto_load_safe_path): Check any-directory by comparison with "/".
7194         (add_auto_load_safe_path): Change the error message.
7195         (_initialize_auto_load): Change the "safe-path" help text.
7196         * configure: Regenerate
7197         * configure.ac (--without-auto-load-safe-path): Set
7198         WITH_AUTO_LOAD_SAFE_PATH to /.
7199
7200 2012-05-05  Sergio Durigan Junior  <sergiodj@redhat.com>
7201
7202         * stap-probe.h: Do not include unecessary `probe.h'.
7203
7204 2012-05-05  Alan Modra  <amodra@gmail.com>
7205
7206         * elfread.c (elf_symtab_read): Use bfd_abs_section_ptr and
7207         bfd_und_section_ptr.
7208         * machoread.c (macho_symtab_add_minsym): Use bfd_abs_section_ptr
7209         and bfd_com_section_ptr.
7210
7211 2012-05-04  Joel Brobecker  <brobecker@adacore.com>
7212
7213         * MAINTAINERS (Past Maintainers): Add Chris Faylor.
7214
7215 2012-05-04  Joel Brobecker  <brobecker@adacore.com>
7216
7217         * windows-nat.h (segment_register_p_ftype): New typedef.
7218         (windows_set_segment_register_p): Add declaration.
7219         * windows-nat.c (segment_register_p): New static global.
7220         (windows_set_segment_register_p): New function.
7221         (do_windows_fetch_inferior_registers): Add special handling
7222         for segment registers.
7223         * amd64-windows-nat.c: #include "amd64-tdep.h".
7224         (amd64_windows_segment_register_p): New function.
7225         (_initialize_amd64_windows_nat): Call windows_set_segment_register_p.
7226         * i386-windows-nat.c: #include "i386-tdep.h".
7227         (i386_windows_segment_register_p): New function.
7228         (_initialize_i386_windows_nat): Call windows_set_segment_register_p.
7229
7230 2012-05-04  Tristan Gingold  <gingold@adacore.com>
7231
7232         * printcmd.c (set_command): Emit a warning if the expression is not
7233         an assignment.
7234
7235 2012-05-03  Joel Brobecker  <brobecker@adacore.com>
7236
7237         * nto-procfs.c (procfs_find_new_threads, procfs_pid_to_str):
7238         Make static.
7239
7240 2012-05-03  Sergio Durigan Junior  <sergiodj@redhat.com>
7241
7242         * stap-probe.c (stap_is_operator): Change declaration.
7243         (stap_get_opcode): Change return value.
7244         (stap_parse_argument_1): Update calls to `stap_get_opcode' and
7245         `stap_parse_argument_1'.
7246
7247 2012-05-03  Pedro Alves  <pedro@codesourcery.com>
7248
7249         * infrun.c (displaced_step_fixup): Add "displaced:" prefix to
7250         debug log.
7251
7252 2012-05-03  Siva Chandra Reddy  <sivachandra@google.com>
7253
7254         Add two new methods global_block and static_block to gdb.Symtab
7255         objects.
7256         * NEWS (Python scripting): Add entry about the new methods.
7257         * python/py-symtab.c (stpy_global_block): New function which
7258         implements the gdb.Symtab.global_block() method.
7259         (stpy_static_block): New function which implements the
7260         gdb.Symtab.static_block() method.
7261         (symtab_object_methods): Add entries for the two new methods.
7262
7263 2012-05-03  Doug Evans  <dje@google.com>
7264
7265         * dwarf2read.c (dw2_find_symbol_file): Don't crash if there are no
7266         files.
7267
7268 2012-05-03  Yao Qi  <yao@codesourcery.com>
7269
7270         * i386-tdep.c (i386_fetch_pointer_argument): Remove extra
7271         space.
7272         (i386_process_record): Ditto.
7273
7274 2012-05-02  Joel Brobecker  <brobecker@adacore.com>
7275
7276         * infcall.c (unwind_on_signal_p): Make static.
7277
7278 2012-05-02  Joel Brobecker  <brobecker@adacore.com>
7279
7280         * sol-thread.c (solaris_pid_to_str): Make static.
7281         (_initialize_sol_thread): Add prototype.
7282
7283 2012-05-02  Joel Brobecker  <brobecker@adacore.com>
7284
7285         * sol-thread.c (procfs_pid_to_str): Delete extern declaration.
7286
7287 2012-05-02  Christopher Faylor  <me.cygwin2012@cgf.cx>
7288
7289         * MAINTAINERS: Remove myself.
7290
7291 2012-05-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
7292
7293         Fix --without-auto-load-safe-path for MS-Windows host platform.
7294         * auto-load.c (filename_is_in_dir): Return 1 for DIR_LEN 0.
7295
7296 2012-05-02  Eli Zaretskii  <eliz@gnu.org>
7297
7298         * gdb_curses.h: Undefine KEY_EVENT before including curses
7299         headers.  Move "#undef MOUSE_MOVED" before any curses header
7300         inclusion.
7301
7302 2012-05-02  Sergio Durigan Junior  <sergiodj@gmail.com>
7303
7304         * features/i386/i386-mmx-linux.c: Regenerate.
7305         * features/rs6000/powerpc-32.c: Likewise.
7306         * features/rs6000/powerpc-32l.c: Likewise.
7307         * features/rs6000/powerpc-403.c: Likewise.
7308         * features/rs6000/powerpc-403gc.c: Likewise.
7309         * features/rs6000/powerpc-405.c: Likewise.
7310         * features/rs6000/powerpc-505.c: Likewise.
7311         * features/rs6000/powerpc-601.c: Likewise.
7312         * features/rs6000/powerpc-602.c: Likewise.
7313         * features/rs6000/powerpc-603.c: Likewise.
7314         * features/rs6000/powerpc-604.c: Likewise.
7315         * features/rs6000/powerpc-64.c: Likewise.
7316         * features/rs6000/powerpc-64l.c: Likewise.
7317         * features/rs6000/powerpc-750.c: Likewise.
7318         * features/rs6000/powerpc-860.c: Likewise.
7319         * features/rs6000/powerpc-e500.c: Likewise.
7320         * features/rs6000/powerpc-e500l.c: Likewise.
7321         * features/rs6000/powerpc-isa205-32l.c: Likewise.
7322         * features/rs6000/powerpc-isa205-64l.c: Likewise.
7323         * features/rs6000/rs6000.c: Likewise.
7324
7325 2012-05-02  Sergio Durigan Junior  <sergiodj@gmail.com>
7326
7327         * i386-tdep.c (i386_stap_parse_special_token) <s>: Remove unused
7328         variable.
7329         * stap-probe.c (stap_parse_single_operand) <reg_suffix,
7330         reg_ind_suffix, reg_suffix_len, reg_ind_suffix_len>: Likewise.
7331         (stap_parse_argument) <e>: Likewise.
7332         (handle_stap_probe) <byte_order>: Likewise.
7333
7334 2012-04-30  Doug Evans  <dje@google.com>
7335
7336         * dwarf2read.c (init_cutu_and_read_dies): Renamed from
7337         init_and_read_dies_worker.  All callers updated.
7338         (init_cu_and_read_dies, init_tu_and_read_dies): Delete.  All calls
7339         replaced with init_cutu_and_read_dies.
7340         (load_partial_comp_unit): Pass 1 for use_existing_cu.
7341         (find_partial_die): Remove FIXME.  Don't free current CU.
7342
7343 2012-04-30  Sterling Augustine  <saugustine@google.com>
7344
7345         * contrib: New directory.
7346         * contrib/test_pubnames_and_indexes.py: New file.
7347
7348 2012-04-30  Doug Evans  <dje@google.com>
7349
7350         * dwarf2read.c (dwarf_decode_macros): New arg section_name.
7351         All callers updated.
7352         (init_cu_die_reader): Verify the section is non-empty.
7353         (dwarf_decode_line_header): Don't dereference section->asection
7354         until we know the section is present.
7355
7356 2012-04-29  Sergio Durigan Junior  <sergiodj@redhat.com>
7357
7358         * tracepoint.c (start_tracing, stop_tracing): Checking for NULL
7359         probes.
7360
7361 2012-04-29  Yao Qi  <yao@codesourcery.com>
7362
7363         * gdb-code-style.el: New hook gdb-markup-hook
7364         and gdb-comment-hook.
7365
7366 2012-04-28  Doug Evans  <dje@google.com>
7367
7368         Initial support for Fission.  http://gcc.gnu.org/wiki/DebugFission
7369         * symfile.c (default_symfile_relocate): Use sectp->owner instead of
7370         objfile->obfd.
7371         * symfile.h (dwarf2_debug_sections): New member addr.
7372         * dwarf2expr.c (execute_stack_op): New case DW_OP_GNU_addr_index.
7373         (ctx_no_get_addr_index): New function.
7374         * dwarf2expr.h (dwarf_expr_context_funcs): New member get_addr_index.
7375         (ctx_no_get_addr_index): Declare.
7376         * dwarf2-frame.c (dwarf2_frame_ctx_funcs): Update.
7377         * dwarf2loc.c (dwarf_expr_get_addr_index): New function.
7378         (dwarf_expr_ctx_funcs): Update.
7379         (needs_get_addr_index): New function.
7380         (needs_frame_ctx_funcs): Update.
7381         * dwarf2loc.h (dwarf2_read_addr_index): Declare.
7382         * dwarf2read.c: #include "gdbcore.h".
7383         (dwarf2_per_objfile): New members addr, dwo_files.
7384         (dwarf2_elf_names): Add entry for addr.
7385         (struct dwo_section_names): New type.
7386         (dwo_section_names): New static global.
7387         (dwarf2_cu): New members dwo_unit, addr_base, have_addr_base.
7388         (dwarf2_per_cu_data): New member is_debug_types, all boolean uses of
7389         old debug_types_section member updated to use this.
7390         Rename member debug_types_section to info_or_types_section,
7391         all uses updated.
7392         (signatured_type): Rename member type_offset to type_offset_in_tu,
7393         all uses updated.  New member type_offset_in_section.
7394         (struct dwo_sections): New type.
7395         (struct dwo_unit): New type.
7396         (struct dwo_file): New type.
7397         (die_reader_specs): New member dwo_file.
7398         (dwarf2_locate_sections): Watch for .debug_addr.
7399         (zlib_decompress_section): Use sectp->owner instead of objfile->obfd.
7400         (dwarf2_read_section): Get bfd of section from bfd's asection,
7401         instead of objfile.
7402         (create_cus_from_index): Initialize the_cu->info_or_types_section.
7403         (create_signatured_type_table_from_index): Initialize
7404         sig_type->info_or_types_section.
7405         (dw2_get_file_names): Statement lists for type units with DWO files
7406         live in the DWO file.
7407         (create_debug_types_hash_table): New function.
7408         (create_all_type_units): Rewrite.
7409         (init_cu_die_reader): New arg dwo_file, all callers updated.
7410         (init_and_read_dies_worker): Get section from
7411         this_cu->info_or_types_section.  Set sig_type->type_offset_in_section.
7412         Watch for DW_AT_GNU_dwo_name and if present lookup the file and
7413         continue reading the CU/TU from there.
7414         (init_cutu_and_read_dies_no_follow): New arg dwo_file, all callers
7415         updated.  Get section from this_cu->info_or_types_section.
7416         (create_all_comp_units): Initialize this_cu->info_or_types_section.
7417         (skip_one_die): New cases DW_FORM_GNU_addr_index,
7418         DW_FORM_GNU_str_index.
7419         (hash_dwo_file, eq_dwo_file): New functions.
7420         (allocate_dwo_file_hash_table): New function.
7421         (hash_dwo_unit, eq_dwo_unit): New functions.
7422         (allocate_dwo_unit_table): New function.
7423         (dwarf2_locate_dwo_sections): New function.
7424         (struct create_dwo_info_table_data): New type.
7425         (create_debug_info_hash_table_reader): New function.
7426         (create_debug_info_hash_table): New function.
7427         (try_open_dwo_file, open_dwo_file, init_dwo_file): New function.
7428         (lookup_dwo_file): New function.
7429         (lookup_dwo_comp_unit, lookup_dwo_type_unit): New functions.
7430         (free_dwo_file, free_dwo_file_cleanup): New functions.
7431         (free_dwo_file_from_slot, free_dwo_files): New functions.
7432         (dwarf2_get_pc_bounds): Handle DW_FORM_GNU_addr_index.
7433         (dwarf2_record_block_ranges): Ditto.
7434         (read_partial_die): Ditto.
7435         (process_enumeration_scope): Update to use type_offset_in_section.
7436         (read_full_die_1): New function.
7437         (read_full_die): Rewrite.
7438         (read_attribute_value): New cases DW_FORM_GNU_addr_index,
7439         DW_FORM_GNU_str_index.
7440         (read_addr_index_1, read_addr_index): New functions.
7441         (read_addr_index_from_leb128): New function.
7442         (struct dwarf2_read_addr_index_data): New type.
7443         (dwarf2_read_addr_index_reader): New function.
7444         (dwarf2_read_addr_index): New function.
7445         (read_str_index): New function.
7446         (leb128_size): New function.
7447         (dwarf_decode_line_header): Delete arg abfd, all callers updated.
7448         If processing a type unit from a DWO file, get the line section
7449         from the DWO file.
7450         (var_decode_location): Watch for DW_OP_GNU_addr_index.
7451         (dwarf2_const_value_attr): New cases DW_FORM_GNU_addr_index,
7452         DW_FORM_GNU_str_index.
7453         (lookup_die_type): Check whether section offset of type's die is
7454         known before looking it up.  Remove assert.  Condition can
7455         legimately happen for inter-cu type references.
7456         (dwarf_attr_name): Handle Fission attributes.
7457         (dwarf_form_name): Handle Fission forms.
7458         (dump_die_shallow): New cases DW_FORM_GNU_addr_index,
7459         DW_FORM_GNU_str_index.
7460         (follow_die_sig): Update to use type_offset_in_section.
7461         (decode_locdesc): New case DW_OP_GNU_addr_index.
7462         (skip_form_bytes): New cases DW_FORM_GNU_addr_index,
7463         DW_FORM_GNU_str_index.
7464         (cu_debug_loc_section): New function.
7465         (fill_in_loclist_baton, dwarf2_symbol_mark_computed): Call it.
7466         (dwarf2_per_objfile_free): Unmap .debug_addr section.
7467         Free DWO files if present.
7468         * xcoffread.c (dwarf2_xcoff_names): Add .debug_addr.
7469
7470         Refactor DIE reading.
7471         * dwarf2read.c (dwarf2_per_objfile): Replace members
7472         debug_info_type_hash and debug_types_type_hash with die_type_hash.
7473         (die_reader_specs): New member "die_section".  Temporarily make
7474         member "buffer" non-const, pending constifying all info_ptr uses.
7475         (die_reader_func_ftype): New typedef.
7476         (dw2_get_file_names_reader): New function.
7477         (dw2_get_file_names): Rewrite.
7478         (read_and_check_type_unit_head): Rename arg type_offset to
7479         type_offset_in_tu.
7480         (create_all_type_units): Improve debugging message.
7481         Improve dummy type unit check.
7482         (init_cu_die_reader): New arg "section".  All callers updated.
7483         (init_and_read_dies_worker): New function.
7484         (init_cu_and_read_dies, init_tu_and_read_dies): New functions.
7485         (init_cutu_and_read_dies_no_follow): New function.
7486         (init_cutu_and_read_dies_simple): New function.
7487         (process_psymtab_comp_unit_reader): New function.
7488         (process_psymtab_comp_unit): Delete args section,
7489         is_debug_types_section.  Rewrite.  All callers updated.
7490         (process_psymtab_type_unit): Renamed from process_type_comp_unit.
7491         All callers updated.  Rewrite.
7492         (load_partial_comp_unit_reader): New function.
7493         (load_partial_comp_unit): Rewrite.
7494         (skip_children): New arg reader.  Delete args buffer, cu.
7495         All callers updated.
7496         (skip_one_die): New arg reader.  Delete args buffer, cu.
7497         All callers updated.
7498         (locate_pdi_sibling): New arg reader.  Delete args buffer, abfd, cu.
7499         All callers updated.
7500         (load_full_comp_unit_reader): New function.
7501         (load_full_comp_unit): Rewrite.
7502         (read_comp_unit): Delete.
7503         (read_die_and_children_1): Delete, contents moved ...
7504         (read_die_and_children): ... here.
7505         (dwarf2_read_abbrevs): New arg abbrev_section.  All callers updated.
7506         (load_partial_dies): New arg reader.  Delete args abfd, buffer, cu.
7507         All callers updated.
7508         (read_partial_die): New arg reader.  Delete args abfd, buffer, cu.
7509         All callers updated.
7510         (find_partial_die): Rewrite load_all_dies support.
7511         (read_attribute_value): New arg reader.  Delete args abfd, cu.
7512         All callers updated.
7513         (read_attribute): New arg reader.  Delete args abfd, cu.
7514         All callers updated.
7515         (load_full_type_unit): Add assert.
7516         (read_signatured_type_reader): New function.
7517         (read_signatured_type): Rewrite.
7518         (free_stack_comp_unit): Remove call to age_cached_comp_units.
7519         (free_one_cached_comp_unit): Change target_cu arg to target_per_cu.
7520         All callers updated.  Set per_cu->cu = NULL after freeing it.
7521         (dwarf2_per_cu_offset_and_type): Renamed from dwarf2_offset_and_type.
7522         (per_cu_offset_and_type_hash): Renamed from offset_and_type_hash.
7523         (per_cu_offset_and_type_eq): Renamed from offset_and_type_eq.
7524         (set_die_type): Update.
7525         (get_die_type_at_offset): Update.
7526         (read_file_scope): Call prepare_one_comp_unit.
7527         (read_type_unit_scope): Ditto.
7528         (prepare_one_comp_unit): Set producer if present.
7529
7530 2012-04-28  Sergio Durigan Junior  <sergiodj@redhat.com>
7531
7532         * probe.c (compile_rx_or_error): Silence ARI warning about missing
7533          gettext function on `error'.
7534
7535 2012-04-27  Doug Evans  <dje@google.com>
7536
7537         * dwarf2read.c (dwarf2_read_index): Don't use index if symbol table
7538         is empty.
7539
7540 2012-04-27  Sergio Durigan Junior  <sergiodj@redhat.com>
7541             Tom Tromey  <tromey@redhat.com>
7542
7543         * breakpoint.c (struct breakpoint_objfile_data)
7544         <longjmp_searched>,<longjmp_probes>,<exception_searched>,
7545         <exception_probes>: New fields.
7546         (free_breakpoint_probes): New function.
7547         (create_longjmp_master_breakpoint): Prefer SystemTap probe over
7548         `_Unwind_DebugHook'.
7549         (create_exception_master_breakpoint): Likewise.
7550         (_initialize_breakpoint): Registering cleanup for SystemTap probes.
7551         * infrun.c: Including necessary header files for handling SystemTap
7552         probes.
7553         (handle_inferior_event): Handling longjmp breakpoint and exceptions
7554         via SystemTap probes.
7555         (check_exception_resume): Remove `func' argument.  Handle exception
7556         unwinding breakpoint set via a SystemTap probe.
7557         (insert_exception_resume_from_probe): New function.
7558
7559 2012-04-27  Sergio Durigan Junior  <sergiodj@redhat.com>
7560             Tom Tromey  <tromey@redhat.com>
7561             Jan Kratochvil  <jan.kratochvil@redhat.com>
7562
7563         * Makefile.in (SFILES): Add `probe' and `stap-probe'.
7564         (COMMON_OBS): Likewise.
7565         (HFILES_NO_SRCDIR): Add `probe'.
7566         * NEWS: Mention support for static and SystemTap probes.
7567         * amd64-tdep.c (amd64_init_abi): Initializing proper fields used by
7568         SystemTap probes' arguments parser.
7569         * arm-linux-tdep.c: Including headers needed to perform the parsing
7570         of SystemTap probes' arguments.
7571         (arm_stap_is_single_operand): New function.
7572         (arm_stap_parse_special_token): Likewise.
7573         (arm_linux_init_abi): Initializing proper fields used by SystemTap
7574         probes' arguments parser.
7575         * ax-gdb.c (require_rvalue): Removing static declaration.
7576         (gen_expr): Likewise.
7577         * ax-gdb.h (gen_expr): Declaring function.
7578         (require_rvalue): Likewise.
7579         * breakpoint.c: Include `gdb_regex.h' and `probe.h'.
7580         (bkpt_probe_breakpoint_ops): New variable.
7581         (momentary_breakpoint_from_master): Set the `probe' value.
7582         (add_location_to_breakpoint): Likewise.
7583         (break_command_1): Using proper breakpoint_ops according to the
7584         argument passed by the user in the command line.
7585         (bkpt_probe_insert_location): New function.
7586         (bkpt_probe_remove_location): Likewise.
7587         (bkpt_probe_create_sals_from_address): Likewise.
7588         (bkpt_probe_decode_linespec): Likewise.
7589         (tracepoint_probe_create_sals_from_address): Likewise.
7590         (tracepoint_probe_decode_linespec): Likewise.
7591         (tracepoint_probe_breakpoint_ops): New variable.
7592         (trace_command): Using proper breakpoint_ops according to the
7593         argument passed by the user in the command line.
7594         (initialize_breakpoint_ops): Initializing breakpoint_ops for
7595         static probes on breakpoints and tracepoints.
7596         * breakpoint.h (struct bp_location) <probe>: New field.
7597         * cli-utils.c (skip_spaces_const): New function.
7598         (extract_arg): Likewise.
7599         * cli-utils.h (skip_spaces_const): Likewise.
7600         (extract_arg): Likewise.
7601         * coffread.c (coff_sym_fns): Add `sym_probe_fns' value.
7602         * configure.ac: Append `stap-probe.o' to be generated when ELF
7603         support is present.
7604         * configure: Regenerate.
7605         * dbxread.c (aout_sym_fns): Add `sym_probe_fns' value.
7606         * elfread.c: Include `probe.h' and `arch-utils.h'.
7607         (probe_key): New variable.
7608         (elf_get_probes): New function.
7609         (elf_get_probe_argument_count): Likewise.
7610         (elf_evaluate_probe_argument): Likewise.
7611         (elf_compile_to_ax): Likewise.
7612         (elf_symfile_relocate_probe): Likewise.
7613         (stap_probe_key_free): Likewise.
7614         (elf_probe_fns): New variable.
7615         (elf_sym_fns): Add `sym_probe_fns' value.
7616         (elf_sym_fns_lazy_psyms): Likewise.
7617         (elf_sym_fns_gdb_index): Likewise.
7618         (_initialize_elfread): Initialize objfile cache for static
7619         probes.
7620         * gdb_vecs.h (struct probe): New forward declaration.
7621         (probe_p): New VEC declaration.
7622         * gdbarch.c: Regenerate.
7623         * gdbarch.h: Regenerate.
7624         * gdbarch.sh (stap_integer_prefix): New variable.
7625         (stap_integer_suffix): Likewise.
7626         (stap_register_prefix): Likewise.
7627         (stap_register_suffix): Likewise.
7628         (stap_register_indirection_prefix): Likewise.
7629         (stap_register_indirection_suffix): Likewise.
7630         (stap_gdb_register_prefix): Likewise.
7631         (stap_gdb_register_suffix): Likewise.
7632         (stap_is_single_operand): New function.
7633         (stap_parse_special_token): Likewise.
7634         (struct stap_parse_info): Forward declaration.
7635         * i386-tdep.c: Including headers needed to perform the parsing
7636         of SystemTap probes' arguments.
7637         (i386_stap_is_single_operand): New function.
7638         (i386_stap_parse_special_token): Likewise.
7639         (i386_elf_init_abi): Initializing proper fields used by SystemTap
7640         probes' arguments parser.
7641         * i386-tdep.h (i386_stap_is_single_operand): New function.
7642         (i386_stap_parse_special_token): Likewise.
7643         * machoread.c (macho_sym_fns): Add `sym_probe_fns' value.
7644         * mipsread.c (ecoff_sym_fns): Likewise.
7645         * objfiles.c (objfile_relocate1): Support relocation for static
7646         probes.
7647         * parse.c (prefixify_expression): Remove static declaration.
7648         (initialize_expout): Likewise.
7649         (reallocate_expout): Likewise.
7650         * parser-defs.h (initialize_expout): Declare function.
7651         (reallocate_expout): Likewise.
7652         (prefixify_expression): Likewise.
7653         * ppc-linux-tdep.c: Including headers needed to perform the parsing
7654         of SystemTap probes' arguments.
7655         (ppc_stap_is_single_operand): New function.
7656         (ppc_stap_parse_special_token): Likewise.
7657         (ppc_linux_init_abi): Initializing proper fields used by SystemTap
7658         probes' arguments parser.
7659         * probe.c: New file, for generic statically defined probe support.
7660         * probe.h: Likewise.
7661         * s390-tdep.c: Including headers needed to perform the parsing of
7662         SystemTap probes' arguments.
7663         (s390_stap_is_single_operand): New function.
7664         (s390_gdbarch_init): Initializing proper fields used by SystemTap
7665         probes' arguments parser.
7666         * somread.c (som_sym_fns): Add `sym_probe_fns' value.
7667         * stap-probe.c: New file, for SystemTap probe support.
7668         * stap-probe.h: Likewise.
7669         * symfile.h: Include `gdb_vecs.h'.
7670         (struct sym_probe_fns): New struct.
7671         (struct sym_fns) <sym_probe_fns>: New field.
7672         * symtab.c (init_sal): Initialize `probe' field.
7673         * symtab.h (struct probe): Forward declaration.
7674         (struct symtab_and_line) <probe>: New field.
7675         * tracepoint.c (start_tracing): Adjust semaphore on breakpoints
7676         locations.
7677         (stop_tracing): Likewise.
7678         * xcoffread.c (xcoff_sym_fns): Add `sym_probe_fns' value.
7679
7680 2012-04-27  Sergio Durigan Junior  <sergiodj@redhat.com>
7681             Tom Tromey  <tromey@redhat.com>
7682
7683         * ax-gdb.c (gen_expr): Clean up code to handle internal variables
7684         and to compile agent expressions.
7685         * infrun.c (siginfo_make_value): New argument `ignore'.
7686         (siginfo_funcs): New struct.
7687         (_initialize_infrun): New argument when calling
7688         `create_internalvar_type_lazy'.
7689         * thread.c (thread_id_make_value): New argument `ignore'.
7690         (thread_funcs): New struct.
7691         (_initialize_thread): New argument when calling
7692         `create_internalvar_type_lazy'.
7693         * tracepoint.c (sdata_make_value): New argument `ignore'.
7694         (sdata_funcs): New struct.
7695         (_initialize_tracepoint): New argument when calling
7696         `create_internalvar_type_lazy'.
7697         * value.c (make_value): New struct.
7698         (create_internalvar_type_lazy): New argument `data'.
7699         (compile_internalvar_to_ax): New function.
7700         (value_of_internalvar): Properly handling `make_value' case.
7701         (clear_internalvar): Likewise.
7702         (show_convenience): Adding `TRY_CATCH' block.
7703         * value.h (internalvar_make_value): Delete, replace by...
7704         (struct internalvar_funcs): ... this.
7705         (create_internalvar_type_lazy) <fun>: Delete argument.
7706         (create_internalvar_type_lazy) <funcs>, <data>: New arguments.
7707         (compile_internalvar_to_ax): New function.
7708         * windows-tdep.c (tlb_make_value): New argument `ignore'.
7709         (tlb_funcs): New struct.
7710         (_initialize_windows_tdep): New argument when calling
7711         `create_internalvar_type_lazy'.
7712
7713 2012-04-27  Mark Wielaard  <mjw@redhat.com>
7714
7715         * dwarf2read.c (dwarf2_get_pc_bounds): Check DW_AT_high_pc form to
7716         see whether it is an address or a constant offset from DW_AT_low_pc.
7717         (dwarf2_record_block_ranges): Likewise.
7718         (read_partial_die): Likewise.
7719
7720 2012-04-26  Mark Wielaard  <mjw@redhat.com>
7721
7722         * MAINTAINERS (Write After Approval): Add myself to the list.
7723
7724 2012-04-26  Maciej W. Rozycki  <macro@codesourcery.com>
7725
7726         * proc-utils.h (proc_prettyprint_signalset): New prototype.
7727         (proc_prettyprint_signal): Likewise.
7728         (proc_prettyprint_faultset): Likewise.
7729         (proc_prettyprint_fault): Likewise.
7730         (proc_prettyprint_actionset): Likewise.
7731         (proc_prettyprint_flags): Move to new proc-flags.c section.
7732         (proc_prettyfprint_flags): New prototype.
7733         * procfs.c (proc_nsysarg, proc_sysargs): Add prototypes.
7734         (proc_syscall, proc_cursig): Likewise.
7735         (proc_set_kill_on_last_close): Likewise.
7736         (proc_unset_kill_on_last_close): Likewise.
7737         (proc_set_watchpoint): Make static.
7738         (proc_delete_dead_threads): Likewise.
7739         (procfs_set_watchpoint): Likewise.
7740         (_initialize_procfs): Add prototype.
7741         * proc-events.c: Include proc-utils.h.
7742         (init_syscall_table): Make static.
7743         * proc-api.c (_initialize_proc_api): Add prototype.
7744         * proc-flags.c: Include proc-utils.h.
7745
7746 2012-04-26  Maciej W. Rozycki  <macro@codesourcery.com>
7747
7748         * configure.ac: Add AC_ARG_PROGRAM.
7749         * configure: Regenerate.
7750
7751 2012-04-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
7752
7753         Fix DW_AT_lower_bound defaults for DWARF-4+.
7754         * dwarf2read.c (read_subrange_type): Remove initialization of low and
7755         high.  New variable low_default_is_valid.  Implement DWARF-4+
7756         DW_AT_lower_bound defaults.  Print complaint for DW_AT_lower_bound with
7757         no default by the DWARF standard.
7758
7759 2012-04-26  Maciej W. Rozycki  <macro@mips.com>
7760             Maciej W. Rozycki  <macro@codesourcery.com>
7761
7762         * infrun.c (handle_inferior_event): Move the check for return
7763         trampolines ahead of the check for function trampolines.
7764         * mips-tdep.h (MIPS_S2_REGNUM, MIPS_GP_REGNUM): New macros.
7765         * mips-tdep.c (mips_str_mips16_call_stub): New variable.
7766         (mips_str_mips16_ret_stub): Likewise.
7767         (mips_str_call_fp_stub): Likewise.
7768         (mips_str_call_stub): Likewise.
7769         (mips_str_fn_stub): Likewise.
7770         (mips_str_pic): Likewise.
7771         (mips_in_frame_stub): New function.
7772         (mips_unwind_pc): Return the return address rather than the PC
7773         if the PC of an intermediate frame is inside a call thunk.
7774         (mips_is_stub_suffix): New function.
7775         (mips_is_stub_mode): Likewise.
7776         (mips_get_mips16_fn_stub_pc): Likewise.
7777         (mips_skip_mips16_trampoline_code): Update to handle all the
7778         currently generated stub types.  Don't recurse into __fn_stub
7779         thunks.  Remove heuristics to handle stubs beyond etext/_etext.
7780         Use cooked register accesses.
7781         (mips_in_return_stub): Reintroduce function.
7782         (mips_skip_trampoline_code): Traverse trampolines recursively.
7783         (mips_gdbarch_init): Handle MIPS16 return trampolines.
7784
7785 2012-04-26  Joel Brobecker  <brobecker@adacore.com>
7786
7787         GDB 7.4.1 released.
7788
7789 2012-04-26  Jonathan Larmour  <jifl@eCosCentric.com>
7790
7791         * arm-tdep.h (VFP_REGISTER_SIZE): Define.
7792         * features/arm-with-m-vfp-d16.xml: New file. Describes
7793         Cortex-M with VFPv4-sp-d16 FPU register layout.
7794         * features/Makefile (WHICH): Add arm-with-m-vfp-d16.
7795         * features/arm-with-m-vfp-d16.c: New. Generated from above.
7796         * arm-tdep.c: Include arm-with-m-vfp-d16.c.
7797         (arm-register_g_packet_guesses): Add vfp-d16 guess.
7798         (_initialise_arm_tdep): Initialize arm-with-m-vfp-d16 tdesc.
7799
7800 2012-04-25  Doug Evans  <dje@google.com>
7801
7802         * cli/cli-decode.c (print_doc_line): Use stream instead of
7803         current_uiout.
7804
7805 2012-04-25  Sergio Durigan Junior  <sergiodj@redhat.com>
7806
7807         * features/arm-with-iwmmxt.c: Regenerate.
7808         * features/arm-with-m-fpa-layout.c: Likewise.
7809         * features/arm-with-m.c: Likewise.
7810         * features/arm-with-neon.c: Likewise.
7811         * features/arm-with-vfpv2.c: Likewise.
7812         * features/arm-with-vfpv3.c: Likewise.
7813         * features/mips-dsp-linux.c: Likewise.
7814         * features/mips-linux.c: Likewise.
7815         * features/mips64-dsp-linux.c: Likewise.
7816         * features/mips64-linux.c: Likewise.
7817         * features/s390-linux32.c: Likewise.
7818         * features/s390-linux32v1.c: Likewise.
7819         * features/s390-linux32v2.c: Likewise.
7820         * features/s390-linux64.c: Likewise.
7821         * features/s390-linux64v1.c: Likewise.
7822         * features/s390-linux64v2.c: Likewise.
7823         * features/s390x-linux64.c: Likewise.
7824         * features/s390x-linux64v1.c: Likewise.
7825         * features/s390x-linux64v2.c: Likewise.
7826         * features/tic6x-c62x-linux.c: Likewise.
7827         * features/tic6x-c62x.c: Likewise.
7828         * features/tic6x-c64x-linux.c: Likewise.
7829         * features/tic6x-c64x.c: Likewise.
7830         * features/tic6x-c64xp-linux.c: Likewise.
7831         * features/tic6x-c64xp.c: Likewise.
7832         * target-descriptions.c: Only generate `field_type' and `type'
7833         variables when needed.
7834
7835 2012-04-25  Fredrik Hederstierna  <fredrikh.hederstierna@securitas-direct.com>
7836
7837         * cli/cli-cmds.c (cd_command): Use memmove instead of strcpy.
7838
7839 2012-04-25  Doug Evans  <dje@google.com>
7840
7841         Initial pass at Go language support.
7842         * NEWS: Mention Go.
7843         * Makefile.in (SFILES): Add go-exp.y, go-lang.c, go-typeprint.c,
7844         go-valprint.c.
7845         (COMMON_OBS): Add go-lang.o, go-val.print.o, go-typeprint.o.
7846         (YYFILES): Add go-exp.c.
7847         (YYOBJ): Add go-exp.o.
7848         (local-maintainer-clean): Delete go-exp.c.
7849         * defs.h (enum language): Add language_go.
7850         * dwarf2read.c: #include "go-lang.h".
7851         (fixup_go_packaging): New function.
7852         (process_full_comp_unit): Call it when processing Go CUs.
7853         (dwarf2_physname): Add Go support.
7854         (read_file_scope): Handle missing language spec for GNU Go.
7855         (set_cu_language): Handle DW_LANG_Go.
7856         * go-exp.y: New file.
7857         * go-lang.h: New file.
7858         * go-lang.c: New file.
7859         * go-typeprint.c: New file.
7860         * go-valprint.c: New file.
7861         * symtab.c: #include "go-lang.h".
7862         (symbol_set_language): Handle language_go.
7863         (symbol_find_demangled_name, symbol_set_names): Ditto.
7864         (symbol_natural_name, demangle_for_lookup, find_main_name): Ditto.
7865
7866 2012-04-24  Jim Meyering  <meyering@redhat.com>
7867
7868         avoid a few strncpy-induced buffer overruns
7869         * procfs.c (procfs_make_note_section): Be sure to NUL-terminate
7870         fname and psargs before trying to concatenate.
7871         * tui/tui-stack.c (tui_get_function_from_frame): NUL-terminate
7872         "name" before applying strchr.
7873
7874 2012-04-25  Siva Chandra Reddy  <sivachandra@google.com>
7875
7876         * CONTRIBUTE: Use unified diff instead of context diff when
7877         generating patches.
7878
7879 2012-04-24  Maciej W. Rozycki  <macro@codesourcery.com>
7880
7881         * mips-tdep.c (mips_about_to_return): Remove dead MIPS16 support
7882         code.  Handle JR.HB correctly.
7883
7884 2012-04-24  Maciej W. Rozycki  <macro@codesourcery.com>
7885
7886         * mips-tdep.c
7887         (is_mips16_addr, unmake_mips16_addr, make_mips16_addr): Group
7888         with the other MIPS16 helpers.
7889
7890 2012-04-24  Sergio Durigan Junior  <sergiodj@redhat.com>
7891
7892         * observer.sh: Conditionally declare `args', thus cleaning up
7893         unused instances of this variable.
7894
7895 2012-04-24  Yao Qi  <yao@codesourcery.com>
7896
7897         Revert this patch to allow breakpoint always-inserted
7898         in record target.
7899         2011-12-05  Pedro Alves  <pedro@codesourcery.com>
7900         * breakpoint.c: Include record.h.
7901         (breakpoints_always_inserted_mode): Return false when the record
7902         target is in use.
7903
7904         * breakpoint.c (iterate_over_bp_locations): New.
7905         * breakpoint.h: Declare.
7906         New typedef walk_bp_location_callback.
7907         * record.c (record_open): Call record_init_record_breakpoints.
7908         (record_sync_record_breakpoints): New.
7909         (record_init_record_breakpoints): New.
7910         * NEWS: Mention supporting breakpoint always-inserted mode in
7911         record target.
7912
7913 2012-04-24  Marc Khouzam  <marc.khouzam@ericsson.com>
7914
7915         * mi/mi-main.c (mi_cmd_execute): Choose a live thread not just
7916         any thread.
7917
7918 2012-04-24  Yao Qi  <yao@codesourcery.com>
7919
7920         * breakpoint.c (ep_is_catchpoint): Renamed to ...
7921         (is_catchpoint): ... it.
7922         (print_one_breakpoint_location): Caller update.
7923         * breakpoint.h: Update declaration.
7924
7925 2012-04-23  David S. Miller  <davem@davemloft.net>
7926
7927         * configure.tgt (sparc-*-linux*): Set build_gdbserver to yes.
7928
7929 2012-04-23  Tom Tromey  <tromey@redhat.com>
7930
7931         * buildsym.c (add_free_pendings): Remove.
7932         * buildsym.h (add_free_pendings): Remove.
7933
7934 2012-04-23  Doug Evans  <dje@google.com>
7935
7936         * dwarf2read.c (partial_die_full_name): Record DW_FORM_ref_addr in
7937         attr.u.unsnd instead of attr.u.addr.
7938         (read_attribute_value) Ditto for cases DW_FORM_ref_addr,
7939         DW_FORM_ref1, DW_FORM_ref2, DW_FORM_ref4, DW_FORM_reg8,
7940         DW_FORM_ref_udata.
7941         (dump_die_shallow): Update cases DW_FORM_ref_addr,
7942         DW_FORM_ref1, DW_FORM_ref2, DW_FORM_ref4.  Add cases DW_FORM_ref8,
7943         DW_FORM_ref_udata.
7944         (dwarf2_get_ref_die_offset): Use DW_UNSND for reference attributes.
7945
7946 2012-04-23  Maciej W. Rozycki  <macro@codesourcery.com>
7947
7948         * mips-tdep.c (mips_n32n64_return_value): Fix coding style.
7949         (mips_o32_return_value): Likewise.
7950         (mips_o64_return_value): Likewise.
7951
7952 2012-04-21  Paul Hilfinger  <hilfinger@adacore.com>
7953
7954         * ada-lang.c (ada_evaluate_subexp): Add cases for
7955         TYPE_CODE_INTERNAL_FUNCTION and for TYPE_GNU_IFUNC, following
7956         their treatment in eval.c.
7957
7958 2012-04-21  David S. Miller  <davem@davemloft.net>
7959
7960         * sparc-tdep.c (X_DISP10): Define.
7961         (sparc_analyze_control_transfer): Handle compare-and-branch.
7962
7963 2012-04-21  Jonathan Larmour  <jifl@eCosCentric.com>
7964
7965         * features/Makefile (WHICH): Add arm-with-m and arm-with-m-fpa-layout.
7966         * arm-tdep.c (arm_register_g_packet_guesses): Fix comment.
7967
7968 2012-04-20  Nigel Stephens  <nigel@mips.com>
7969             Maciej W. Rozycki  <macro@codesourcery.com>
7970
7971         * mips-tdep.c (mips_float_register_p): New function.
7972         (mips_convert_register_float_case_p): Use mips_float_register_p.
7973         (mips_register_type): Likewise.
7974         (mips_print_register): Likewise.
7975         (print_gp_register_row): Likewise.
7976         (mips_print_registers_info): Likewise.
7977
7978 2012-04-20  Shun-Yen Lu  <dark.asparagus@gmail.com>
7979
7980         * mips-tdep.c (mips_elf_make_msymbol_special): Fix identification
7981         of mips16 symbols.
7982
7983 2012-04-20  Andrew Pinski  <apinski@cavium.com>
7984
7985         * MAINTAINERS (Write After Approval): Add myself to the list.
7986
7987 2012-04-20  Sergio Durigan Junior  <sergiodj@redhat.com>
7988
7989         * MAINTAINERS: Update my e-mail address.
7990
7991 2012-04-20  Pedro Alves  <palves@redhat.com>
7992
7993         * acx_configure_dir.m4 (ACX_CONFIGURE_DIR): Handle absolute
7994         $srcdir.
7995         * configure: Regenerate.
7996
7997 2012-04-20  Sergio Durigan Junior  <sergiodj@redhat.com>
7998
7999         * cp-support.h: Include `gdb_vecs.h'.  Delete `const_char_ptr' VEC
8000         declaration.
8001         * gdb_vecs.h: Declare `const_char_ptr' VEC.
8002
8003 2012-04-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
8004
8005         Fix compilation compatibility with python-2.4
8006         * python/py-type.c (convert_field): Cast ADDRSTRING for
8007         PyObject_SetAttrString as non-const.  New comment.
8008
8009 2012-04-19  Tom Tromey  <tromey@redhat.com>
8010
8011         * top.c (quit_target): Use all_cleanups.
8012         * main.c (captured_command_loop): Use all_cleanups.
8013         * exceptions.c (throw_exception): Use all_cleanups.
8014
8015 2012-04-19  Pedro Alves  <palves@redhat.com>
8016
8017         * Makefile.in (GNULIB_BUILDDIR): New.
8018         (LIBGNU, INCGNU, GNULIB_H): Adjust.
8019         (SUBDIRS): Add $(GNULIB_BUILDDIR).
8020         (CLEANDIRS). Remove gnulib/import.
8021         (REQUIRED_SUBDIRS): Replace gnulib/import with $(GNULIB_BUILDDIR).
8022         (all-lib): Ditto.
8023         (distclean): Remove the $(GNULIB_BUILDDIR) directory.
8024         (gnulib/import/Makefile): Replace gnulib/import with
8025         $(GNULIB_BUILDDIR).  Set CONFIG_FILES to just Makefile.
8026         (ACLOCAL_AMFLAGS): Remove '-I gnulib/import/m4'.
8027         (aclocal_m4_deps): Remove the gnulib dependencies.  Add
8028         acx_configure_dir.m4.
8029         * acinclude.m4: Include acx_configure_dir.m4.
8030         * acx_configure_dir.m4: New file.
8031         * aclocal.m4: Regenerate.
8032         * configure.ac: Remove gl_EARLY, gl_INIT and AM_INIT_AUTOMAKE
8033         calls.  Configure gnulib using ACX_CONFIGURE_DIR.
8034         (GNULIB): New variable.
8035         (GNULIB_STDINT_H): Adjust.
8036         (AC_OUTPUT): Don't output gnulib/Makefile.
8037         * gdb/defs.h: Include build-gnulib/config.h.
8038         * aclocal.m4: Regenerate.
8039         * config.in: Regenerate.
8040         * configure: Regenerate.
8041
8042         * gnulib/Makefile.in: New file.
8043         * gnulib/configure.ac: New file.
8044         * gnulib/aclocal.m4: New file.
8045         * gnulib/config.in: New file.
8046         * gnulib/configure: New file.
8047         * gnulib/: Re-run gnulib-tool to adjust.
8048
8049 2012-04-19  Doug Evans  <dje@google.com>
8050
8051         * cleanups.h (struct cleanup): Move to cleanups.c.
8052         (make_cleanup_dtor_ftype): New typedef.
8053         (make_cleanup_dtor): Use it.
8054         (ALL_CLEANUPS): Replace with ...
8055         (all_cleanups): ... this.  Declare.  All uses updated.
8056         * cleanups.c: #include "gdb_assert.h".
8057         (sentinel_cleanup): New static global.
8058         (SENTINEL_CLEANUP): Define.
8059         (cleanup_chain, final_cleanup_chain): Initialize to SENTINEL_CLEANUP.
8060         (make_my_cleanup2): Assert result is non-NULL.
8061         (all_cleanups): New function.
8062         (save_my_cleanups): Initialize new chain to SENTINEL_CLEANUP instead
8063         of NULL.
8064
8065 2012-04-19  Pedro Alves  <palves@redhat.com>
8066
8067         * Makefile.in (HFILES_NO_SRCDIR): Remove gnulib/wchar.in.h.
8068         Adjust paths to gnulib imported files.
8069
8070 2012-04-19  Pedro Alves  <palves@redhat.com>
8071
8072         * gnulib/: Move whole directory ...
8073         * gnulib/import/: ... here, and re-rerun gnulib-tool to adjust.
8074         * Makefile.in (LIBGNU, INCGNU, GNULIB_H, CLEANDIRS)
8075         (REQUIRED_SUBDIRS, all-lib, gnulib/Makefile, ACLOCAL_AMFLAGS)
8076         (aclocal_m4_deps): Adjust.
8077         * aclocal.m4: Regenerate.
8078         * configure: Regenerate.
8079         * configure.ac: Adjust AC_OUTPUT output.
8080
8081 2012-04-19  Yao Qi  <yao@codesourcery.com>
8082
8083         * Makefile.in (SFILES): Add common/vec.c and remove vec.c.
8084         (vec.o): New rule.
8085         * vec.c: Move it ...
8086         * common/vec.c: ... here.
8087         * vec.h: Move it ...
8088         * common/vec.h: ... here.
8089
8090 2012-04-19  Yao Qi  <yao@codesourcery.com>
8091
8092         * gdb-code-style.el: New.
8093
8094 2012-04-18  Pedro Alves  <palves@redhat.com>
8095
8096         Update gnulib from latest git.
8097         (639ea5ae15e39fe48d43e04864b2997301e4b969)
8098
8099         * gnulib/Makefile.am: Update.
8100         * gnulib/dummy.c: Update.
8101         * gnulib/extra/arg-nonnull.h: Update.
8102         * gnulib/extra/c++defs.h: Update.
8103         * gnulib/extra/update-copyright: Update.
8104         * gnulib/extra/warn-on-use.h: Update.
8105         * gnulib/inttypes.in.h: Update.
8106         * gnulib/m4/00gnulib.m4: Update.
8107         * gnulib/m4/extensions.m4: Update.
8108         * gnulib/m4/gnulib-cache.m4: Update.
8109         * gnulib/m4/gnulib-common.m4: Update.
8110         * gnulib/m4/gnulib-comp.m4: Update.
8111         * gnulib/m4/gnulib-tool.m4: Update.
8112         * gnulib/m4/include_next.m4: Update.
8113         * gnulib/m4/inttypes-pri.m4: Update.
8114         * gnulib/m4/inttypes.m4: Update.
8115         * gnulib/m4/longlong.m4: Update.
8116         * gnulib/m4/memchr.m4: Update.
8117         * gnulib/m4/memmem.m4: Update.
8118         * gnulib/m4/mmap-anon.m4: Update.
8119         * gnulib/m4/multiarch.m4: Update.
8120         * gnulib/m4/onceonly.m4: Update.
8121         * gnulib/m4/stddef_h.m4: Update.
8122         * gnulib/m4/stdint.m4: Update.
8123         * gnulib/m4/string_h.m4: Update.
8124         * gnulib/m4/warn-on-use.m4: Update.
8125         * gnulib/m4/wchar_h.m4: Update.
8126         * gnulib/m4/wchar_t.m4: Update.
8127         * gnulib/m4/wint_t.m4: Update.
8128         * gnulib/memchr.c: Update.
8129         * gnulib/memmem.c: Update.
8130         * gnulib/stddef.in.h: Update.
8131         * gnulib/stdint.in.h: Update.
8132         * gnulib/str-two-way.h: Update.
8133         * gnulib/string.in.h: Update.
8134         * gnulib/wchar.in.h: Update.
8135
8136         * gnulib/extra/arg-nonnull.h: Delete.
8137         * gnulib/extra/c++defs.h: Delete.
8138         * gnulib/extra/warn-on-use.h: Delete.
8139         * gnulib/m4/wchar_h.m4: Delete.
8140         * gnulib/m4/wint_t.m4: Delete.
8141         * gnulib/wchar.in.h: Delete.
8142
8143         * gnulib/extra/snippets/arg-nonnull.h: New.
8144         * gnulib/extra/snippets/c++defs.h: New.
8145         * gnulib/extra/snippets/warn-on-use.h: New.
8146
8147         * aclocal.m4: Regenerate.
8148         * config.in: Regenerate.
8149         * configure: Regenerate.
8150         * gnulib/Makefile.in: Regenerate.
8151
8152 2012-04-18  Pedro Alves  <palves@redhat.com>
8153
8154         Reimport the update-copyright module from gnulib
8155         (250b80067c1e1d8faa0c42fb572f721975b929c5).
8156
8157         * configure: Regenerate.
8158         * gnulib/Makefile.am: Update.
8159         * gnulib/Makefile.in: Regenerate.
8160         * gnulib/extra/update-copyright: Update.
8161         * gnulib/m4/gnulib-cache.m4: Update.
8162         * gnulib/m4/gnulib-comp.m4: Update.
8163
8164 2012-04-18  Tristan Gingold  <gingold@adacore.com>
8165
8166         * configure.ac (aix): Put -lpthread into libs.
8167         * configure: Regenerate.
8168
8169 2012-04-18  Tom Tromey  <tromey@redhat.com>
8170
8171         * linespec.c (convert_linespec_to_sals): Don't use
8172         SYMBOL_OBJ_SECTION.
8173         (compare_msymbols): Arguments are minsym_and_objfile, not
8174         minimal_symbol*.  Don't use SYMBOL_OBJ_SECTION.
8175
8176 2012-04-18  Pedro Alves  <palves@redhat.com>
8177
8178         Revert gnulib/ part of:
8179         2011-01-01  Joel Brobecker  <brobecker@adacore.com>
8180         Copyright year update in most files (performed by copyright.sh).
8181
8182 2012-04-18  Jan Kratochvil  <jan.kratochvil@redhat.com>
8183
8184         Fix 64-bit constants on 32-bit hosts.
8185         * dwarf2read.c (read_unsigned_leb128): Change declaration return type
8186         from unsigned long to ULONGEST.
8187         (read_signed_leb128): Change declaration return type from long to
8188         LONGEST.
8189         (dwarf2_const_value_attr): Change declaration parameter value from long
8190         to LONGEST.
8191         (dwarf2_compute_name): Change variable value from long to LONGEST.
8192         (read_unsigned_leb128): Change return type, variable result and some
8193         casts from unsigned long to ULONGEST.
8194         (read_signed_leb128): Change return type, variable result and some
8195         casts from long to LONGEST.
8196         (dwarf2_const_value_data, dwarf2_const_value_attr): Change parameter
8197         value from long to LONGEST.
8198         (dwarf2_const_value): Change variable value from long to LONGEST.
8199         * symmisc.c (print_symbol): Change SYMBOL_VALUE format strings to use
8200         plongest and hex_string.
8201         * symtab.h (struct general_symbol_info): Change ivalue from long to
8202         LONGEST, remove the comment.
8203         * tracepoint.c (validate_actionline, collect_symbol, scope_info):
8204         Change SYMBOL_VALUE format strings to use plongest and hex_string.
8205
8206 2012-04-18  Siddhesh Poyarekar  <siddhesh@redhat.com>
8207
8208         PR symtab/7259:
8209         * ada-exp.y (convert_char_literal): Use TYPE_FIELD_ENUMVAL.
8210         * ada-lang.c (ada_discrete_type_high_bound)
8211         (ada_discrete_type_low_bound): Fix function comment.  Use
8212         TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
8213         (ada_identical_enum_types_p): Use TYPE_FIELD_ENUMVAL.
8214         (pos_atr, value_val_atr): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
8215         * ada-typeprint.c (print_enum_type): Change variable lastval to LONGEST.
8216         Use TYPE_FIELD_ENUMVAL.
8217         * ada-valprint.c (print_optional_low_bound, ada_print_scalar)
8218         (ada_val_print_1): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
8219         * c-typeprint.c (c_type_print_base): Move variable lastval to inner
8220         block, change it to LONGEST.  Use TYPE_FIELD_ENUMVAL for
8221         TYPE_CODE_ENUM.
8222         * coffread.c (coff_read_enum_type): Use SET_FIELD_ENUMVAL.
8223         * dwarf2read.c (process_enumeration_scope): Likewise.
8224         * gdb-gdb.py (TypeFlagsPrinter): Use field.enumval instead of
8225         field.bitpos.
8226         (class StructMainTypePrettyPrinter): Support also
8227         FIELD_LOC_KIND_ENUMVAL.
8228         * gdbtypes.c (get_discrete_bounds): Use TYPE_FIELD_ENUMVAL for
8229         TYPE_CODE_ENUM.
8230         (recursive_dump_type): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
8231         (copy_type_recursive): Support also FIELD_LOC_KIND_ENUMVAL.
8232         * gdbtypes.h (enum field_loc_kind): New FIELD_LOC_KIND_ENUMVAL.
8233         (struct main_type.flds_bnds.fields.loc): Adjust bitpos comment.  New
8234         field enumval.
8235         (struct main_type.flds_bnds.bields): Adjust loc_kind and bitsize to
8236         accommodate enumval.
8237         (struct call_site): Adjust loc_kind to accommodate enumval.
8238         (FIELD_ENUMVAL, FIELD_ENUMVAL_LVAL, SET_FIELD_ENUMVAL)
8239         (TYPE_FIELD_ENUMVAL): New macros.
8240         * m2-typeprint.c (m2_enum): Use TYPE_FIELD_ENUMVAL.
8241         * mdebugread.c (parse_symbol): Use TYPE_FIELD_ENUMVAL for
8242         TYPE_CODE_ENUM.
8243         * p-typeprint.c (pascal_type_print_base): Likewise.
8244         * python/lib/gdb/printing.py (class FlagEnumerationPrinter): Use
8245         enumval.
8246         * python/lib/gdb/types.py (make_enum_dict): Likewise.
8247         * python/py-type.c (convert_field): New variable addrstring.  Use
8248         TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
8249         (check_types_equal): Support also FIELD_LOC_KIND_ENUMVAL.
8250         * stabsread.c (read_enum_type): Use SET_FIELD_ENUMVAL.
8251         * typepint.c (print_type_scalar): Use TYPE_FIELD_ENUMVAL for
8252         TYPE_CODE_ENUM.
8253         * valprint.c (generic_val_print): Likewise.
8254
8255 2012-04-17  Doug Evans  <dje@google.com>
8256
8257         * dwarf2read.c (lookup_signatured_type): Return NULL instead of 0.
8258
8259         * dwarf2read.c: Whitespace fixes.
8260         (lookup_signatured_type): Tweak comment.
8261         (get_die_type_at_offset): Fix comment.
8262
8263 2012-04-17  Joel Brobecker  <brobecker@adacore.com>
8264
8265         * xcoffread.c (xcoff_secnum_to_sections): New function.
8266         (secnum_to_section, secnum_to_bfd_section): Reimplement
8267         using xcoff_secnum_to_sections.  Rename "secnum" parameter
8268         into "n_scnum".
8269         (RECORD_MINIMAL_SYMBOL): Delete.
8270         (record_minimal_symbol): New function.
8271         (scan_xcoff_symtab): Replace uses of RECORD_MINIMAL_SYMBOL
8272         by call to record_minimal_symbol and set misc_func_recorded
8273         to 1.  Set last_csect_sec to the XCOFF section index instead
8274         of GDB's section_offset index.  Update calls to
8275         prim_record_minimal_symbol_and_info to pass the BFD section
8276         as well.
8277
8278 2012-04-17  Joel Brobecker  <brobecker@adacore.com>
8279
8280         * xcoffread.c (read_xcoff_symtab): Delete variables
8281         last_csect_val and last_csect_sec and associated code.
8282
8283 2012-04-17  Doug Evans  <dje@google.com>
8284
8285         * cleanups.c (make_my_cleanup,make_my_cleanup2): Make static.
8286         (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto.
8287         * cleanups.h (make_my_cleanup,make_my_cleanup2): Delete
8288         (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Delete.
8289
8290         * cleanups.h: New file.
8291         * cleanups.c: New file.
8292         * Makefile.in (SFILES): Add cleanups.c.
8293         (HFILES_NO_SRCDIR): Add cleanups.h.
8294         (COMMON_OBS): Add cleanups.o.
8295         * defs.h (struct cleanup): Moved to cleanups.h.
8296         (do_cleanups,do_final_cleanups): Ditto.
8297         (discard_cleanups,discard_final_cleanups): Ditto
8298         (make_cleanup,make_cleanup_dtor,make_final_cleanup): Ditto.
8299         (save_cleanups,save_final_cleanups): Ditto.
8300         (restore_cleanups,restore_final_cleanups): Ditto.
8301         (null_cleanup): Ditto.
8302         (make_my_cleanup,make_my_cleanup2): Ditto.
8303         (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto.
8304         * utils.c (cleanup_chain,final_cleanup_chain): Moved to cleanups.c.
8305         (do_cleanups,do_final_cleanups): Ditto.
8306         (discard_cleanups,discard_final_cleanups): Ditto
8307         (make_cleanup,make_cleanup_dtor,make_final_cleanup): Ditto.
8308         (save_cleanups,save_final_cleanups): Ditto.
8309         (restore_cleanups,restore_final_cleanups): Ditto.
8310         (null_cleanup): Ditto.
8311         (make_my_cleanup,make_my_cleanup2): Ditto.
8312         (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto.
8313
8314         * utils.c (make_cleanup_freeargv): Use make_cleanup instead of
8315         make_my_cleanup.
8316         (make_cleanup_dyn_string_delete): Ditto.
8317         (make_cleanup_ui_file_delete): Ditto.
8318         (make_cleanup_ui_out_redirect_pop): Ditto.
8319         (make_cleanup_free_section_addr_info): Ditto.
8320         (make_cleanup_restore_integer): Ditto.
8321         (make_cleanup_unpush_target): Ditto.
8322         (make_cleanup_value_free_to_mark): Ditto.
8323         (make_cleanup_value_free): Ditto.
8324         (make_cleanup_free_so): Ditto.
8325
8326 2012-04-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
8327
8328         New option "set debug auto-load".
8329         * NEWS: New commands "set debug auto-load" and "show debug auto-load".
8330         * auto-load.c (debug_auto_load, show_debug_auto_load: New.
8331         (auto_load_safe_path_vec_update)
8332         (filename_is_in_auto_load_safe_path_vec): Call fprintf_unfiltered
8333         if DEBUG_AUTO_LOAD.
8334         (file_is_auto_load_safe): New parameters debug_fmt and ....
8335         Call fprintf_unfiltered if DEBUG_AUTO_LOAD.
8336         (source_gdb_script_for_objfile): Extend the file_is_auto_load_safe
8337         caller by explanatory string.
8338         (_initialize_auto_load): Register "set debug auto-load".
8339         * auto-load.h (file_is_auto_load_safe): New parameters debug_fmt
8340         and ....
8341         * linux-thread-db.c (try_thread_db_load_from_pdir_1)
8342         (try_thread_db_load_from_dir): Extend the file_is_auto_load_safe caller
8343         by explanatory string.
8344         * main.c (captured_main): Likewise.
8345         * python/py-auto-load.c (gdbpy_load_auto_script_for_objfile)
8346         (source_section_scripts): Likewise.
8347
8348 2012-04-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
8349
8350         New option "set auto-load safe-path".
8351         * NEWS: New commands "set auto-load safe-path"
8352         and "show auto-load safe-path".
8353         * auto-load.c: Include gdb_vecs.h, readline/tilde.h and completer.h.
8354         (auto_load_safe_path, auto_load_safe_path_vec)
8355         (auto_load_safe_path_vec_update, set_auto_load_safe_path)
8356         (show_auto_load_safe_path, add_auto_load_safe_path, filename_is_in_dir)
8357         (filename_is_in_auto_load_safe_path_vec, file_is_auto_load_safe): New.
8358         (source_gdb_script_for_objfile): New variable is_safe.  Call
8359         file_is_auto_load_safe.  Return if it is not.
8360         (struct loaded_script): New field loaded.
8361         (maybe_add_script): Add parameter loaded.  Initialize SLOT with it.
8362         (print_script): Use LOADED indicator instead of FULL_PATH.  Change
8363         output "Missing" to "No".
8364         (_initialize_auto_load): New variable cmd.  Initialize
8365         auto_load_safe_path.  Register "set auto-load safe-path",
8366         "show auto-load safe-path" and "add-auto-load-safe-path".
8367         * auto-load.h (maybe_add_script): Add parameter loaded.
8368         (file_is_auto_load_safe): New declaration.
8369         * config.in: Regenerate.
8370         * configure: Regenerate.
8371         * configure.ac: New parameters --with-auto-load-safe-path
8372         and --without-auto-load-safe-path.
8373         * linux-thread-db.c (try_thread_db_load_from_pdir_1)
8374         (try_thread_db_load_from_dir): Check file_is_auto_load_safe first.
8375         * main.c (captured_main): Check file_is_auto_load_safe for
8376         LOCAL_GDBINIT.
8377         * python/py-auto-load.c (gdbpy_load_auto_script_for_objfile): New
8378         variable is_safe.  Call file_is_auto_load_safe.  Return if it is not.
8379         (source_section_scripts): Call file_is_auto_load_safe.  Return if it is
8380         not.
8381
8382 2012-04-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
8383
8384         auto-load: Implementation.
8385         * NEWS: New descriptions for "info auto-load",
8386         "info auto-load gdb-scripts", "info auto-load python-scripts",
8387         "info auto-load local-gdbinit" and "info auto-load libthread-db".
8388         Deprecate "info auto-load-scripts", "set auto-load-scripts on|off"
8389         and "show auto-load-scripts".  New description for "set auto-load",
8390         "show auto-load", "set auto-load gdb-scripts",
8391         "show auto-load gdb-scripts", "set auto-load python-scripts",
8392         "show auto-load python-scripts", "set auto-load local-gdbinit",
8393         "show auto-load local-gdbinit", "set auto-load libthread-db" and
8394         "show auto-load libthread-db".
8395         * auto-load.c: Remove include python/python-internal.h.  Add includes
8396         exceptions.h, cli/cli-script.h, gdbcmd.h, cli/cli-decode.h and
8397         cli/cli-setshow.h.
8398         (GDB_AUTO_FILE_NAME, source_gdb_script_for_objfile)
8399         (auto_load_gdb_scripts, show_auto_load_gdb_scripts): New.
8400         (gdbpy_global_auto_load): Rename to ...
8401         (global_auto_load): ... here.
8402         (auto_load_local_gdbinit, auto_load_local_gdbinit_pathname)
8403         (auto_load_local_gdbinit_loaded, show_auto_load_local_gdbinit)
8404         (script_language_gdb, source_gdb_script_for_objfile): New.
8405         (struct loaded_script): New field language.
8406         (hash_loaded_script_entry, eq_loaded_script_entry): Calculate also
8407         LANGUAGE.
8408         (maybe_add_script): Add parameter language.  Drop redundant
8409         entry.full_path initialization.  Initialize entry.language and
8410         (*slot)->language.
8411         (auto_load_objfile_script): Change parameter suffix to language.
8412         Remove the call of maybe_add_script.
8413         Call language->source_script_for_objfile.
8414         (load_auto_scripts_for_objfile, struct collect_matching_scripts_data):
8415         New.
8416         (collect_matching_scripts): Adjust it for
8417         struct collect_matching_scripts_data.
8418         (auto_load_info_scripts_pattern_nl): New variable.
8419         (info_auto_load_scripts): Rename to ...
8420         (auto_load_info_scripts): ... here, add parameter language.  Adjust it
8421         for struct collect_matching_scripts_data.
8422         (info_auto_load_gdb_scripts, info_auto_load_local_gdbinit)
8423         (set_auto_load_cmd, auto_load_set_cmdlist_get, show_auto_load_cmd)
8424         (auto_load_show_cmdlist_get, info_auto_load_cmd)
8425         (auto_load_info_cmdlist_get): New.
8426         (_initialize_auto_load): Move add_info of "auto-load-scripts" to
8427         python/py-auto-load.c.  New installment for "set auto-load gdb-scripts",
8428         "info auto-load gdb-scripts", "set auto-load local-gdbinit" and
8429         "info auto-load local-gdbinit".
8430         * auto-load.h (struct script_language): New.
8431         (gdbpy_global_auto_load): Rename to ...
8432         (global_auto_load): ... here.
8433         (auto_load_local_gdbinit, auto_load_local_gdbinit_pathname)
8434         (auto_load_local_gdbinit_loaded): New declarations.
8435         (maybe_add_script): New parameter language.
8436         (auto_load_objfile_script): Change parameter suffix to language.
8437         (load_auto_scripts_for_objfile, auto_load_info_scripts_pattern_nl)
8438         (auto_load_info_scripts, auto_load_set_cmdlist_get)
8439         (auto_load_show_cmdlist_get, auto_load_info_cmdlist_get): New
8440         declarations.
8441         * linux-thread-db.c: Include auto-load.h and ctype.h.
8442         (auto_load_thread_db, show_auto_load_thread_db): New.
8443         (struct thread_db_info): New field filename.
8444         (delete_thread_db_info): Call xfree for FILENAME.
8445         (try_thread_db_load): Initialize FILENAME.
8446         (try_thread_db_load_from_pdir, try_thread_db_load_from_dir): Return
8447         if !AUTO_LOAD_THREAD_DB.
8448         (info_auto_load_libthread_db_compare, info_auto_load_libthread_db): New.
8449         (_initialize_thread_db): Install auto_load_thread_db
8450         as "set auto-load libthread-db" and install info_auto_load_libthread_db
8451         as "info auto-load libthread-db".
8452         * main.c (captured_main): Rename gdbpy_global_auto_load to
8453         global_auto_load.  Initialize AUTO_LOAD_LOCAL_GDBINIT_PATHNAME and
8454         AUTO_LOAD_LOCAL_GDBINIT_LOADED.
8455         (print_gdb_help): Extend the help for 'local init file'.
8456         * python/py-auto-load.c: Remove a comment about gdb scripts extension.
8457         (GDBPY_AUTO_SECTION_NAME): Extend the comment it is Python specific.
8458         (auto_load_scripts): Rename to ...
8459         (auto_load_python_scripts): ... here, update the comment.
8460         (gdbpy_load_auto_script_for_objfile): New declaration.
8461         (show_auto_load_python_scripts, script_language_python)
8462         (gdbpy_load_auto_script_for_objfile): New.
8463         (source_section_scripts): Refactor the code.
8464         (load_auto_scripts_for_objfile): Rename to ...
8465         (gdbpy_load_auto_scripts_for_objfile): ... here, update the
8466         auto_load_objfile_script caller, drop GDBPY_GLOBAL_AUTO_LOAD checking.
8467         (info_auto_load_python_scripts): New.
8468         (gdbpy_initialize_auto_load): New variables cmd and cmd_name.
8469         Rename "set auto-load-scripts" to "set auto-load python-scripts".
8470         Register "set auto-load-scripts" as its deprecated alias.  Register
8471         "info auto-load python-scripts".  Register "info auto-load-scripts" as
8472         its deprecated alias.
8473         (load_auto_scripts_for_objfile): Rename to ...
8474         (gdbpy_load_auto_scripts_for_objfile): ... here.
8475         * python/python.h (load_auto_scripts_for_objfile): Rename to ...
8476         (gdbpy_load_auto_scripts_for_objfile): ... here.
8477
8478 2012-04-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
8479
8480         auto-load: Move files.
8481         * Makefile.in (SFILES): Add auto-load.c.
8482         (HFILES_NO_SRCDIR): Add auto-load.h.
8483         (COMMON_OBS): Add auto-load.o.
8484         (distclean): Change .gdbinit for gdb-gdb.gdb.
8485         * auto-load.c: New file, with parts from python/py-auto-load.c.
8486         * auto-load.h: New file, with parts from python/python.h.
8487         * configure: Regenerate.
8488         * configure.ac (AC_OUTPUT): Change .gdbinit for gdb-gdb.gdb.
8489         * gdb-gdb.gdb.in: New file, renamed from gdbinit.in.
8490         * gdbinit.in: Remove file, rename it to gdb-gdb.gdb.in.
8491         * main.c: Include auto-load.h.
8492         * python/py-auto-load.c: Move include filenames.h, gdb_regex.h,
8493         command.h, observer.h and progspace.h to auto-load.c.  Add include
8494         auto-load.h.
8495         (gdbpy_global_auto_load, struct auto_load_pspace_info)
8496         (struct loaded_script, auto_load_pspace_data)
8497         (auto_load_pspace_data_cleanup, get_auto_load_pspace_data)
8498         (hash_loaded_script_entry, eq_loaded_script_entry)
8499         (init_loaded_scripts_info, get_auto_load_pspace_data_for_loading)
8500         (maybe_add_script): Move to auto-load.c.
8501         (source_section_scripts): Change maybe_add_script parameters passing,
8502         use script_not_found_warning_print.
8503         (clear_section_scripts, auto_load_objfile_script)
8504         (auto_load_new_objfile, loaded_script_ptr)
8505         (DEF_VEC_P (loaded_script_ptr), collect_matching_scripts, print_script)
8506         (sort_scripts_by_name, info_auto_load_scripts): Move to auto-load.c.
8507         (gdbpy_initialize_auto_load): Move auto_load_pspace_data,
8508         auto_load_new_objfile and info_auto_load_scripts initizations to
8509         auto-load.c.
8510         * python/python.h (gdbpy_global_auto_load): Move to auto-load.h.
8511
8512 2012-04-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
8513
8514         Code cleanup.
8515         * charset.c (find_charset_names): Remove variables ix and elt.
8516         Use free_char_ptr_vec.
8517         * elfread.c (build_id_to_debug_filename): New variables debugdir_vec,
8518         back_to and ix.  Use dirnames_to_char_ptr_vec.  Remove variable
8519         debugdir_end.  New variable debugdir_len.
8520         * gdb_vecs.h (free_char_ptr_vec, make_cleanup_free_char_ptr_vec)
8521         (dirnames_to_char_ptr_vec_append, dirnames_to_char_ptr_vec): New
8522         declarations.
8523         * progspace.c (clear_program_space_solib_cache): Remove variables ix
8524         and elt.  Use free_char_ptr_vec.
8525         * source.c (add_path): Remove variables argv, arg and argv_index.
8526         New variables dir_vec, back_to, ix and name.
8527         Use dirnames_to_char_ptr_vec_append.  Use freeargv instead of
8528         make_cleanup_freeargv.  Remove variable separator.  Simplify the code
8529         no longer expecting DIRNAME_SEPARATOR.
8530         (openp): Remove variable p, p1 and len.  New variables dir_vec,
8531         back_to, ix and dir.  Use dirnames_to_char_ptr_vec.  Simplify the code
8532         no longer expecting DIRNAME_SEPARATOR.
8533         * symfile.c (find_separate_debug_file): New variables debugdir_vec,
8534         back_to and ix.  Use dirnames_to_char_ptr_vec.  Remove variable
8535         debugdir_end.
8536         * utils.c (free_char_ptr_vec, do_free_char_ptr_vec)
8537         (make_cleanup_free_char_ptr_vec, dirnames_to_char_ptr_vec_append)
8538         (dirnames_to_char_ptr_vec): New functions.
8539
8540 2012-04-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
8541
8542         Code cleanup.
8543         * source.c (add_path): Remove always true conditional 'p == 0' and
8544         unindent its code block.
8545
8546 2012-04-17  Pedro Alves  <palves@redhat.com>
8547
8548         * gdbtypes.h (FIELD_BITPOS): Rename to ...
8549         (FIELD_BITPOS_LVAL): ... this.
8550         (FIELD_BITPOS): New.
8551         (SET_FIELD_BITPOS): Adjust to use FIELD_BITPOS_LVAL.
8552         * dwarf2read.c (dwarf2_add_field): Use SET_FIELD_BITPOS.
8553         * gdbtypes.c (append_composite_type_field_aligned): Adjust to use
8554         SET_FIELD_BITPOS.
8555         * gnu-v3-abi.c (build_gdb_vtable_type): Adjust to use
8556         SET_FIELD_BITPOS.
8557         * stabsread.c (read_cpp_abbrev, read_one_struct_field)
8558         (read_baseclasses): Adjust to use SET_FIELD_BITPOS.
8559         * target-descriptions.c (tdesc_gdb_type): Adjust to use
8560         SET_FIELD_BITPOS.
8561
8562 2012-04-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
8563
8564         Do not rely on FIELD_LOC_KIND_BITPOS being zero.
8565         * ada-lang.c (ada_template_to_fixed_record_type_1): Replace
8566         TYPE_FIELD_BITPOS used as lvalue by SET_FIELD_BITPOS.
8567         * gdbtypes.c (append_flags_type_flag): Likewise, twice.
8568         * jv-lang.c (java_link_class_type): Likewise, once.
8569         * stabsread.c (read_enum_type): Likewise.
8570
8571 2012-04-16  Yao Qi  <yao@codesourcery.com>
8572
8573         * common/agent.c (agent_run_command): Add one more parameter `len'.
8574         Update callers.
8575         * common/agent.h: Update declaration.
8576         * linux-nat.c (linux_child_static_tracepoint_markers_by_strid):
8577         Update.
8578         (linux_child_static_tracepoint_markers_by_strid): Ditto.
8579
8580 2012-04-14  Anton Gorenkov <xgsa@yandex.ru>
8581
8582         PR mi/13393
8583         * value.c (value_actual_type): New function.
8584         * value.h (value_actual_type): New declaration.
8585         * varobj.c (update_type_if_necessary): New function.
8586         (varobj_create): Call value_actual_type instead of
8587         value_type.
8588         (install_dynamic_child): distinct changed and type changed MI variable
8589         objects.
8590         (update_dynamic_varobj_children): Updated for install_dynamic_child
8591         change.  All callers updated.
8592         (varobj_update): Support for MI variable object type change if
8593         the value changed and RTTI is used to determine the type.
8594         (create_child_with_value): Call value_actual_type instead of
8595         value_type.
8596         (adjust_value_for_child_access): Extended with a new parameter which
8597         specify whether the given value should be casted to enclosing type.
8598         All callers updated.
8599
8600 2012-04-14  Yao Qi  <yao@codesourcery.com>
8601
8602         Import gnulib module inttypes from git
8603         (250b80067c1e1d8faa0c42fb572f721975b929c5)
8604         * Makefile.in (HFILES_NO_SRCDIR): Add gnulib/inttypes.in.h.
8605         (aclocal_m4_deps): Add gnulib/m4/inttypes.m4 and
8606         gnulib/m4/inttypes-pri.m4
8607         * aclocal.m4, config.in, configure: Regenerated.
8608         * gnulib/Makefile.am: Update.
8609         * gnulib/Makefile.in: Update.
8610         * gnulib/m4/gnulib-cache.m4: Update.
8611         * gnulib/m4/gnulib-comp.m4: Update.
8612         * gnulib/inttypes.in.h: New.
8613         * gnulib/m4/inttypes-pri.m4: New.
8614         * gnulib/m4/inttypes.m4: New.
8615
8616 2012-04-13  Luis Machado  <lgustavo@codesourcery.com>
8617
8618         * infrun.c (resume): Update PC address to the real PC after
8619         preparing to do displaced stepping.
8620
8621 2012-04-12  Doug Evans  <dje@google.com>
8622
8623         * dwarf2read.c (lookup_signatured_type): Remove arg "objfile", unused.
8624         All callers updated.
8625
8626 2012-04-12  Mark Kettenis  <kettenis@gnu.org>
8627
8628         * i386bsd-nat.c (_initialize_i386bsd_nat): Add missing prototype.
8629
8630 2012-04-12  Doug Evans  <dje@google.com>
8631
8632         * dwarf2read.c (create_all_type_units): Renamed from
8633         create_debug_types_hash_table.  All callers updated.
8634
8635         * dwarf2read.c (create_signatured_type_table_from_index): Rename
8636         local type_sig to sig_type, type_offset to type_offset_in_tu.
8637         (hash_signatured_type): Renamed from hash_type_signature,
8638         all callers updated.
8639         (eq_signatured_type): Renamed from eq_type_signature,
8640         all callers updated.
8641         (create_debug_types_hash_table): Rename local type_sig to sig_type.
8642         (process_enumeration_scope): Ditto.
8643         (lookup_signatured_type_at_offset): Ditto.
8644         (load_full_type_unit, read_signatured_type): Ditto.
8645
8646 2012-04-12  Yao Qi  <yao@codesourcery.com>
8647
8648         * remote.c (async_remote_interrupt): Correct function name in
8649         debug message.
8650         (async_remote_interrupt_twice): Ditto.
8651
8652 2012-04-11  Yuanhui Zhang  <asmwarrior@gmail.com>
8653
8654         * source.c (find_and_open_source): Consistently pass resulting
8655         full path through xfullpath.
8656
8657 2012-04-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
8658
8659         Provide more specific displaced-stepping memory error message.
8660         * infrun.c (displaced_step_prepare): New variable status.  Call
8661         target_read_memory instead of read_memory, provide more specific
8662         error message.
8663
8664 2012-04-11  Tristan Gingold  <gingold@adacore.com>
8665
8666         PR gdb/13901
8667         * darwin-nat.c (darwin_execvp): Revert previous patch.
8668
8669 2012-04-11  Tristan Gingold  <gingold@adacore.com>
8670
8671         PR gdb/13901
8672         * darwin-nat.c (darwin_resume_thread): Call darwin_set_sstep only
8673         in case of change.
8674
8675 2012-04-11  Tristan Gingold  <gingold@adacore.com>
8676
8677         * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Fix
8678         warning.
8679
8680 2012-04-11  Siva Chandra Reddy  <sivachandra@google.com>
8681
8682         New command 'explore' which helps explore values and types in
8683         scope.
8684         * NEWS: Add an entry about the new 'explore' command.
8685         * data-directory/Makefile.in: Add gdb/command/explore.py
8686         * python/lib/gdb/command/explore.py: Implemention of the 'explore'
8687         command using the GDB Python API.
8688
8689 2012-04-10  Maciej W. Rozycki  <macro@codesourcery.com>
8690
8691         * mips-tdep.c (mips_skip_pic_trampoline_code): Correct sign
8692         extension in jump target calculation.
8693
8694 2012-04-10  Maciej W. Rozycki  <macro@codesourcery.com>
8695
8696         * mips-tdep.c (mips32_next_pc): Handle JALX.
8697
8698 2012-04-10  Yao Qi  <yao@codesourcery.com>
8699
8700         * Makefile.in (gnulib/Makefile): Remove duplicated dependency.
8701
8702 2012-04-10  Yao Qi  <yao@codesourcery.com>
8703
8704         * Makefile.in (aclocal_m4_deps): Add gnulib/m4/gnulib-cache.m4
8705         and gnulib/m4/gnulib-tool.m4.
8706
8707 2012-04-10  Doug Evans  <dje@google.com>
8708
8709         * dwarf2read.c (dwarf2_per_cu_data). Clarify comment.
8710         (load_partial_dies): Clarify comment.
8711         (find_partial_die): Support rereading type units.
8712         Clarify CU handling, if we know offset is in CU, don't search for the
8713         containing CU.  Add comment regarding memory waste.
8714
8715 2012-04-10  H.J. Lu  <hongjiu.lu@intel.com>
8716
8717         * features/Makefile (WHICH): Add i386/x32, i386/x32-linux,
8718         i386/x32-avx and i386/x32-avx-linux.
8719         (i386/x32-expedite): New.
8720         (i386/x32-linux-expedite): Likewise.
8721         (i386/x32-avx-expedite): Likewise.
8722         (i386/x32-avx-linux-expedite): Likewise.
8723         ($(outdir)/i386/x32.dat): Likewise.
8724         ($(outdir)/i386/x32-linux.dat): Likewise.
8725         ($(outdir)/i386/x32-avx.dat): Likewise.
8726         ($(outdir)/i386/x32-avx-linux.dat): Likewise.
8727
8728         * features/i386/x32-avx-linux.xml: New file.
8729         * features/i386/x32-avx.xml: Likewise.
8730         * features/i386/x32-core.xml: Likewise.
8731         * features/i386/x32-linux.xml: Likewise.
8732         * features/i386/x32.xml: Likewise.
8733
8734         * features/i386/x32-avx-linux.c: New.  Generated.
8735         * features/i386/x32-avx.c: Likewise.
8736         * features/i386/x32-linux.c: Likewise.
8737         * features/i386/x32.c: Likewise.
8738         * regformats/i386/x32-avx-linux.dat: Likewise.
8739         * regformats/i386/x32-avx.dat: Likewise.
8740         * regformats/i386/x32-linux.dat: Likewise.
8741         * regformats/i386/x32.dat: Likewise.
8742
8743 2012-04-10  Tristan Gingold  <gingold@adacore.com>
8744
8745         * darwin-nat.c (darwin_kill_inferior): Always use the no ptrace
8746         code to kill the inferior.
8747
8748 2012-04-09  Mark Kettenis  <kettenis@gnu.org>
8749
8750         * ada-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
8751         defines.
8752         * c-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
8753         defines.
8754         * cp-name-parser.y (yyss, yysslim, yyssp, yystacksize, yyvs)
8755         (yyvsp): New defines.
8756         * f-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
8757         defines.
8758         * jv-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
8759         defines.
8760         * m2-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
8761         defines.
8762         * objc-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
8763         defines.
8764         * p-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
8765         defines.
8766
8767 2012-04-09  Mark Kettenis  <kettenis@gnu.org>
8768
8769         * sparc64-tdep.c (sparc64_store_arguments)
8770         (sparc64_store_arguments): Fix coding style.
8771
8772 2012-04-07  Mark Kettenis  <kettenis@gnu.org>
8773
8774         * sparc64-tdep.c (sparc64_store_arguments): Fix handling of
8775         complex floats, adjust some related comments and tighten a related
8776         assertion.
8777         (sparc64_extract_return_value): Handle complex floats.
8778
8779 2012-04-07  Doug Evans  <dje@google.com>
8780
8781         * dwarf2read.c (load_partial_dies): Change condition to assert.
8782
8783 2012-04-06  Doug Evans  <dje@google.com>
8784
8785         * amd64-tdep.c (amd64_analyze_prologue): Recognize both variations of
8786         "mov %rsp,%rbp".
8787
8788 2012-04-05  Kevin Buettner  <kevinb@redhat.com>
8789
8790         * v850-tdep.c (E_NUM_OF_V850_REGS, E_NUM_OF_V850E_REGS): Fix
8791         fencepost error.
8792         (v850_frame_cache): Use gdbarch_num_regs() instead of E_NUM_REGS.
8793         (v850_gdbarch_init): Set `num_regs' as appropriate for the
8794         architecture.
8795
8796 2012-04-05  Keith Seitz  <keiths@redhat.com>
8797
8798         * linespec.c (decode_compound): Remove.
8799         (enum offset_relative_sign): New enum.
8800         (struct line_offset): New struct.
8801         (struct linespec): New struct.
8802         (struct linespec_state): Move file_symtabs,
8803         user_filename, and user_function into struct linespec.
8804         Make result an anonymous struct holding vectors of
8805         symbolp and minsym_and_objfile_d.
8806         Add language member.
8807         (enum ls_token_type): New enum.
8808         (linespec_keywords): New array.
8809         (struct ls_token): New struct.
8810         (struct ls_parser): New struct.
8811         (linespec_lexer_lex_number): New function.
8812         (linespec_lexer_lex_keyword): New function.
8813         (is_ada_operator): New function.
8814         (skip_quote_char): New function.
8815         (copy_token_string): New function.
8816         (is_closing_quote_enclosed): New function.
8817         (find_parameter_list_end): New function.
8818         (linespec_lexer_lex_string): New function.
8819         (linespec_lexer_lex_one): New function.
8820         (linespec_lexer_consume_token): New function.
8821         (linespec_lexer_peek_token): New function.
8822         (cplusplus_error): Remove unused function.
8823         (find_methods): Update comment.
8824         (find_toplevel_char): Return const.
8825         (is_objc_method_format): Remove unused function.
8826         (find_toplevel_string): New function.
8827         (is_linespec_boundary): Remove.
8828         (symbol_not_found_error): New function.
8829         (find_method_overload_end): Remove function.
8830         (unexpected_linespec_error): New function.
8831         (keep_name_info): Remove.
8832         (linespec_parse_line_offset): New function.
8833         (linespec_parse_basic): New function.
8834         (canonicalize_linespec): New function.
8835         (decode_line_internal): Remove.
8836         (create_sals_line_offset): New function adapted from
8837         decode_all_digits.
8838         (convert_linespec_to_sals): New function.
8839         (parse_linespec): New function.
8840         (linespec_parser_new): New function.
8841         (linespec_state_destructor): Change parameter type to
8842         struct linespec_state *.
8843         Add language parameter.
8844         Remove freeing of moved members.
8845         (linespec_parser_delete): New function.
8846         (decode_line_full): Use parse_linespec and linespec_parser_new.
8847         (decode_line_1): Likewise.
8848         (decode_indirect): Rename to ...
8849         (linespec_expression_to_pc): ... this and rewrite
8850         to simply find CORE_ADDR, storing this result for later
8851         conversion to SALs.
8852         (locate_first_half): Remove.
8853         (deocde_objc): Add parameter LS.
8854         Initialize new struct collect_info members.
8855         Handle minimal symbols, too.
8856         (decode_compound): Delete.
8857         (lookup_prefix_sym): Rewrite.
8858         (compare_msymbols): New function.
8859         (find_method): Rewrite.
8860         Do not call cplusplus_error.
8861         (symtabs_from_filename): Rewrite.
8862         (collect_function_symbols): Delete.
8863         (find_function_symbols): Rewrite without ARGPTR-style
8864         processing.
8865         (decode_all_digits): Delete. (Rewritten as create_sals_line_offset.)
8866         (decode_dollar): Adapted and renamed to ...
8867         (linespec_parse_variable): ... this.
8868         (find_linespec_symbols): New function.
8869         (decode_label): Adapted and renamed to ...
8870         (find_label_symbols): ... this.
8871         (decode_digits_list_mode): Add and use LS argument.
8872         (decode_digits_ordinary): Likewise.
8873         (collect_symbols): Do not collect SALs, just symbols and msymbols.
8874         If in list mode, allow any symbol class.  Otherwise, only
8875         permit LOC_BLOCK symbols.
8876         (minsym_found): Update comments.
8877         (search_minsyms_for_name): Do not convert the matching symbol
8878         into a SAL.  Simply push the symbol and objfile into the
8879         result vector.
8880         (decode_variable): Delete. Contents adapted into
8881         find_linespec_symbols.
8882
8883         * cp-support.c (SKIP_SPACE): Remove.
8884         (operator_tokens): Remove unused global.
8885         (cp_validate_operator): Remove.
8886         * cp-support.h (cp_validate_operator): Remove declaration.
8887
8888 2012-04-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
8889
8890         * cp-valprint.c (cp_print_value_fields): Check valprint_check_validity
8891         for TYPE_VPTR_FIELDNO.
8892         * valprint.c (valprint_check_validity): Make it global, move the
8893         function comment ...
8894         * value.h (valprint_check_validity): ... to this new declaration.
8895
8896 2012-04-02  Tristan Gingold  <gingold@adacore.com>
8897
8898         * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Use
8899         the STATE32 api for i386 state.
8900         (i386_darwin_store_inferior_registers): Likewise.
8901
8902 2012-04-02  Tristan Gingold  <gingold@adacore.com>
8903
8904         * i386-darwin-tdep.c (i386_darwin_thread_state_reg_offset): Fix
8905         SS offset.
8906         * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Fix
8907         format_string.
8908
8909 2012-04-02  Tristan Gingold  <gingold@adacore.com>
8910
8911         PR gdb/13901
8912         * darwin-nat.c (darwin_execvp): Set binary preference.
8913
8914 2012-04-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
8915
8916         * NEWS (set breakpoint condition-evaluation): Use imperative mood.
8917
8918 2012-03-30  Tom Tromey  <tromey@redhat.com>
8919
8920         * python/python.c (gdbpy_decode_line): Move cleanup creation out
8921         of TRY_CATCH.  Fix error handling.
8922         * python/py-value.c (convert_value_from_python): Move 'old'
8923         declaration to innermost scope.
8924
8925 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
8926             Andrey Smirnov  <andrew.smirnov@gmail.com>
8927
8928         -Wshadow warning fix.
8929         * ada-lang.c (ada_make_symbol_completion_list): Rename parameters
8930         "wild_match" and "encoded" into "wild_match_p" and "encoded_p".
8931         Adjust code accordingly.
8932
8933 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
8934
8935         * ada-lang.c (symbol_completion_add): Rename parameter
8936         "encoded" into "encoded_p".  Ajust code and documentation
8937         accordingly.
8938
8939 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
8940             Andrey Smirnov  <andrew.smirnov@gmail.com>
8941
8942         -Wshadow warning fix.
8943         * ada-lang.c (symbol_completion_add): Rename parameter
8944         "wild_match" into wild_match_p.  Update code and documentation
8945         accordingly.
8946
8947 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
8948
8949         * ada-lang.c (symbol_completion_match): Rename parameter
8950         "encoded" into "encoded_p".  Ajust code and documentation
8951         accordingly.
8952
8953 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
8954             Andrey Smirnov  <andrew.smirnov@gmail.com>
8955
8956         -Wshadow warning fix.
8957         * ada-lang.c (symbol_completion_match): Rename parameter
8958         "wild_match" into "wild_match_p".  Adjust code and function
8959         documentation accordingly.
8960
8961 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
8962             Andrey Smirnov  <andrew.smirnov@gmail.com>
8963
8964         -Wshadow warning fix.
8965         * ada-lang.c (ada_lookup_encoded_symbol): Rename parameter
8966         "symbol_info" into "info".  Adjust code accordingly.
8967         (ada_lookup_symbol): Likewise.
8968
8969 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
8970
8971         * ada-lang.c (ada_lookup_symbol_list): Minor reformatting
8972         of this function's documentation.
8973
8974 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
8975             Andrey Smirnov  <andrew.smirnov@gmail.com>
8976
8977         -Wshadow warning fix.
8978         * ada-lang.c (ada_lookup_symbol_list): Rename "wild_match"
8979         variable into "wild_match_p".  Adjust code accordingly.
8980
8981 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
8982             Andrey Smirnov  <andrew.smirnov@gmail.com>
8983
8984         -Wshadow warning fix.
8985         * ada-lang.c (ada_add_local_symbols): Rename "wild_match"
8986         parameter into "wild_match_p".  Adjust code accordingly.
8987         Document this parameter in the function description.
8988
8989 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
8990             Andrey Smirnov  <andrew.smirnov@gmail.com>
8991
8992         -Wshadow warning fix.
8993         * ada-lang.c (add_symbols_from_enclosing_procs): Rename
8994         "wild_match" parameter to "wild_match_p" (-Wshadow).
8995
8996 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
8997
8998         * ada-lang.c (ada_lookup_simple_minsym): Remove trailing spaces
8999         in function documentation.
9000
9001 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
9002             Andrey Smirnov  <andrew.smirnov@gmail.com>
9003
9004         -Wshadow warning fix.
9005         * ada-lang.c (ada_lookup_simple_minsym): Rename wild_match local
9006         variable into wild_match_p.  Adjust code accordingly.
9007
9008 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
9009             Andrey Smirnov  <andrew.smirnov@gmail.com>
9010
9011         * ada-valprint.c (ada_val_print_1): Move the code handling
9012         TYPE_CODE_ENUM inside its own lexical block.  Declare
9013         variables len and val there, instead of in the function's
9014         top level block.  Avoid declaring deref_val again in a way
9015         that shadows another variable of the same name declared
9016         in one of the up-level blocks.  Just re-use the up-level
9017         variable instead.
9018
9019 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
9020
9021         * ada-lang.c (ada_lookup_encoded_symbol): Now returns void.
9022         Replace block_found argument by symbol_info.  Adjust
9023         implementation accordingly.  Add function documentation.
9024         (ada_lookup_symbol): Adjust to new ada_lookup_encoded_symbol.
9025         Fix documentation.
9026         * ada-lang.h (ada_lookup_encoded_symbol): Update declaration.
9027         * ada-exp.y (write_object_renaming): Adjust to new
9028         ada_lookup_encoded_symbol API.
9029
9030 2012-03-29  Joel Brobecker  <brobecker@adacore.com>
9031
9032         * ada-lang.h (struct ada_symbol_info): Reformat.  Improve
9033         documentation.
9034
9035 2012-03-28  Rathish C  <rathish.c@kpitcummins.com>
9036
9037         * v850-tdep.c: Add the enum values for mpu and fpu registers.
9038         (v850_register_name): Add the mpu and fpu register names.
9039         (v850e_register_name): Add the mpu and fpu register names.
9040         (v850e2_register_name): New function.
9041         (v850_gdbarch_init): Add case for bfd_mach_v850e2 and
9042         bfd_mach_v850e2v3.
9043
9044 2012-03-28  Joel Brobecker  <brobecker@adacore.com>
9045
9046         * NEWS: Add entry for Ada varobj support.
9047
9048 2012-03-28  Joel Brobecker  <brobecker@adacore.com>
9049
9050         * varobj.c (default_value_is_changeable_p): New function,
9051         extracted from varobj_value_is_changeable_p.  Add declaration.
9052         (ada_value_is_changeable_p): New function, extracted from
9053         varobj_value_is_changeable_p.  Add declaration.
9054         (struct language_specific): New field "value_is_changeable_p".
9055         (languages): Add entries for new field.
9056         (varobj_create): Set language before calling install_new_value.
9057         (varobj_value_is_changeable_p): Reimplement to call the varobj's
9058         "value_is_changeable_p" language callback.
9059
9060 2012-03-28  Joel Brobecker  <brobecker@adacore.com>
9061
9062         * ada-varobj.h, ada-varobj.c: New files.
9063         * Makefile.in (SFILES): Add ada-varobj.c.
9064         (HFILES_NO_SRCDIR): Add ada-varobj.h.
9065         (COMMON_OBS): Add ada-varobj.o.
9066
9067 2012-03-28  Joel Brobecker  <brobecker@adacore.com>
9068
9069         * varobj.c (ada_value_has_mutated): Add declaration.  New function.
9070         (struct language_specific): New field "value_has_mutated".
9071         (languages): Set field "value_has_mutated" in each entry of array.
9072         (varobj_value_has_mutated): New function.
9073         (varobj_udpdate): Add handling of type mutation.
9074         (value_of_root): Add handling of type mutation.
9075         (ada_value_has_mutated): New function.
9076
9077 2012-03-28  Pedro Alves  <palves@redhat.com>
9078
9079         * ia64-linux-nat.c (supply_fpregset, ia64_linux_fetch_register):
9080         Always supply $fr0 as 0.0 and $fr1 as 1.0.
9081
9082 2012-03-28  Tom Tromey  <tromey@redhat.com>
9083
9084         * python/py-inferior.c (infpy_read_memory): Remove cleanups and
9085         explicitly free 'buffer' on exit paths.  Decref 'membuf_object'
9086         before returning.
9087
9088 2012-03-28  Tom Tromey  <tromey@redhat.com>
9089
9090         * .dir-locals.el: New file.
9091
9092 2012-03-28  Pedro Alves  <palves@redhat.com>
9093
9094         * ia64-linux-nat.c (u_offsets): Map IA64_EC_REGNUM to PT_AR_EC.
9095
9096 2012-03-28  Joel Brobecker  <brobecker@adacore.com>
9097
9098         * ia64-linux-nat.c (ia64_linux_fetch_register): Add special
9099         handling for r0.
9100
9101 2012-03-27  Pedro Alves  <palves@redhat.com>
9102
9103         Eliminate struct ui_stream.
9104
9105         * ui-out.h (struct ui_stream): Delete.
9106         (ui_out_field_stream): Adjust prototype.
9107         (ui_out_stream_new, ui_out_stream_delete)
9108         (make_cleanup_ui_out_stream_delete): Delete declarations.
9109         * ui-out.c (ui_out_field_stream): Change prototype to take a
9110         ui_file instead of a ui_stream.  Adjust.
9111         (ui_out_stream_new, ui_out_stream_delete, do_stream_delete)
9112         (make_cleanup_ui_out_stream_delete): Delete.
9113         * breakpoint.c (print_breakpoint_location)
9114         (print_one_detail_ranged_breakpoint, print_it_watchpoint): Use
9115         ui_file/mem_fileopen instead of ui_stream/ui_out_stream_new.
9116         * disasm.c (dump_insns): Ditto.
9117         (do_mixed_source_and_assembly, do_assembly_only): Adjust
9118         prototype.
9119         (gdb_disassembly): Use ui_file/mem_fileopen instead of
9120         ui_stream/ui_out_stream_new.
9121         * infcmd.c (print_return_value): Ditto.
9122         * osdata.c (info_osdata_command): Don't allocate a local
9123         ui_stream.
9124         * stack.c (print_frame_arg, print_frame_args, print_frame): Use
9125         ui_file/mem_fileopen instead of ui_stream/ui_out_stream_new.
9126         * tracepoint.c (print_one_static_tracepoint_marker): Don't
9127         allocate a local ui_stream.
9128         * mi/mi-cmd-stack.c (list_arg_or_local): Use ui_file/mem_fileopen
9129         instead of ui_stream/ui_out_stream_new.
9130         (list_args_or_locals): Don't allocate a local ui_stream.
9131         * mi/mi-main.c (get_register, mi_cmd_data_evaluate_expression)
9132         (mi_cmd_data_read_memory): Use ui_file/mem_fileopen instead of
9133         ui_stream/ui_out_stream_new.
9134         * cli/cli-setshow.c (do_setshow_command): Ditto.
9135
9136 2012-03-27  Oza Pawandeep  <oza.pawandeep@gmail.com>
9137
9138         * arm-linux-tdep.c (arm_linux_init_abi): Call
9139         set_gdbarch_process_record.  Initialize `arm_swi_record' field.
9140         * arm-tdep.c (arm_process_record): New function.
9141         (deallocate_reg_mem): New function.
9142         (decode_insn): New function.
9143         (thumb_record_branch): New function.
9144         (thumb_record_ldm_stm_swi(): New function.
9145         (thumb_record_misc): New function.
9146         (thumb_record_ld_st_stack): New function.
9147         (thumb_record_ld_st_imm_offset): New function.
9148         (thumb_record_ld_st_reg_offset(): New function.
9149         (thumb_record_add_sub_cmp_mov): New function.
9150         (thumb_record_shift_add_sub): New function.
9151         (arm_record_coproc_data_proc): New function.
9152         (arm_record_coproc): New function.
9153         (arm_record_b_bl): New function.
9154         (arm_record_ld_st_multiple): New function.
9155         (arm_record_ld_st_reg_offset): New function.
9156         (arm_record_ld_st_imm_offset): New function.
9157         (arm_record_data_proc_imm): New function.
9158         (arm_record_data_proc_misc_ld_str): New function.
9159         (arm_record_extension_space): New function.
9160         (arm_record_strx): New function.
9161         (sbo_sbz): New function.
9162         (struct insn_decode_record): New structure for arm insn record.
9163         (REG_ALLOC): New macro for reg allocations.
9164         (MEM_ALLOC): New macro for memory allocations.
9165         * arm-tdep.h (struct gdbarch_tdep): New field 'arm_swi_record'.
9166
9167 2012-03-27  Andreas Schwab  <schwab@linux-m68k.org>
9168
9169         * m68klinux-nat.c (fetch_register): Fix strict-aliasing violation.
9170         (store_register): Likewise.
9171
9172 2012-03-26  Oza Pawandeep  <oza.pawandeep@gmail.com>
9173
9174         * MAINTAINERS (Write After Approval): Add myself to the list.
9175
9176 2012-03-25  Jan Kratochvil  <jan.kratochvil@redhat.com>
9177
9178         * NEWS (set breakpoint condition-evaluation): Change "gdb" to "host".
9179         Describe also the option "auto".
9180
9181 2012-03-22  Richard Henderson  <rth@redhat.com>
9182
9183         * sparc-linux-nat.c (_initialize_sparc_linux_nat): Fix prototype.
9184         * sparc-nat.c (sparc_xfer_wcookie): Make static.
9185
9186 2012-03-22  Richard Henderson  <rth@redhat.com>
9187
9188         * jit.c (jit_read_code_entry): Compute alignment and offset of
9189         int64_t member before computing entry_size.
9190
9191 2012-03-22  Siva Chandra Reddy  <sivachandra@google.com>
9192
9193         Python scripting: Add new method Value.referenced_value to
9194         gdb.Value which can dereference pointer as well as reference
9195         values.
9196         * NEWS: Add entry under 'Python scripting' about the new method
9197         Value.referenced_value on gdb.Value objects.
9198         * python/py-value.c (valpy_referenced_value): New function
9199         defining a new method on gdb.Value objects which can dereference
9200         pointer and reference values.
9201
9202 2012-03-22  Siva Chandra Reddy  <sivachandra@google.com>
9203
9204         * MAINTAINERS (Write After Approval): Add myself to the list.
9205
9206 2012-03-21  Kevin Buettner  <kevinb@redhat.com>
9207
9208         * symtab.c (skip_prologue_sal): Change test to check for "main()"
9209         in addition to "main".
9210
9211 2012-03-21  Joel Brobecker  <brobecker@adacore.com>
9212
9213         * expression.h (op_name): Add declaration.
9214         * expprint.c (op_name): Remove declaration.  Make non-static.
9215         * ax-gdb.c (gen_expr): Use op_name instead of op_string.
9216
9217 2012-03-21  Thomas Schwinge  <thomas@codesourcery.com>
9218
9219         * amd64-linux-nat.c (amd64_linux_siginfo_fixup): Use siginfo_t instead
9220         of struct siginfo.
9221         * arm-linux-nat.c (arm_linux_stopped_data_address): Likewise.
9222         * ia64-linux-nat.c (ia64_linux_stopped_data_address): Likewise.
9223         * linux-nat.c (linux_nat_siginfo_fixup, siginfo_fixup)
9224         (linux_xfer_siginfo, linux_nat_set_siginfo_fixup)
9225         (linux_nat_get_siginfo): Likewise.
9226         * linux-nat.h (struct lwp_info, linux_nat_set_siginfo_fixup)
9227         (linux_nat_get_siginfo): Likewise.
9228         * linux-tdep.c (linux_get_siginfo_type): Likewise.
9229         * ppc-linux-nat.c (ppc_linux_stopped_data_address): Likewise.
9230         * procfs.c (gdb_siginfo_t): Likewise.
9231
9232 2012-03-21  Mike Frysinger  <vapier@gentoo.org>
9233
9234         * .gitignore: Ignore more files.
9235
9236 2012-03-20  Pedro Alves  <palves@redhat.com>
9237
9238         * remote.c (remote_start_remote): Clear `rs->starting_up' on early
9239         returns.
9240
9241 2012-03-20  Yao Qi  <yao@codesourcery.com>
9242
9243         * amd64-tdep.c (amd64_displaced_step_copy_insn): Complete missing "}" in
9244         comment.
9245
9246 2012-03-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
9247
9248         Code cleanupp: Use cu_offset and sect_offset compile time type checking.
9249         * dwarf2expr.c (add_piece, dwarf_get_base_type, execute_stack_op)
9250         (ctx_no_dwarf_call, ctx_no_get_base_type): Use cu_offset and
9251         sect_offset.
9252         * dwarf2expr.h (cu_offset, sect_offset): New types.
9253         (struct dwarf_expr_context_funcs) <dwarf_call>
9254         (struct dwarf_expr_context_funcs) <get_base_type>: Use cu_offset and
9255         sect_offset.
9256         (struct dwarf_expr_context) <len>: Improve the comment.
9257         (struct dwarf_expr_piece, ctx_no_dwarf_call, ctx_no_get_base_type): Use
9258         cu_offset and sect_offset.
9259         * dwarf2loc.c (per_cu_dwarf_call, dwarf_expr_dwarf_call)
9260         (dwarf_expr_get_base_type, needs_frame_dwarf_call)
9261         (dwarf2_compile_expr_to_ax, disassemble_dwarf_expression): Likewise.
9262         * dwarf2loc.h: Include dwarf2expr.h.
9263         (dwarf2_fetch_die_location_block, dwarf2_get_die_type): Use cu_offset
9264         and sect_offset.
9265         * dwarf2read.c (struct dwarf2_per_objfile) <debug_types_type_hash>:
9266         Improve the comment.
9267         (struct comp_unit_head, struct dwarf2_cu, struct dwarf2_per_cu_data)
9268         (struct signatured_type, struct line_header, struct partial_die_info)
9269         (struct die_info, find_partial_die, dwarf2_get_ref_die_offset)
9270         (lookup_signatured_type_at_offset, dwarf2_find_containing_comp_unit)
9271         (get_die_type_at_offset, create_cus_from_index)
9272         (create_signatured_type_table_from_index, dw2_get_file_names)
9273         (offset_in_cu_p, read_comp_unit_head, error_check_comp_unit_head)
9274         (read_and_check_comp_unit_head, read_and_check_type_unit_head)
9275         (create_debug_types_hash_table, process_psymtab_comp_unit)
9276         (load_partial_comp_unit, create_all_comp_units)
9277         (partial_die_parent_scope, partial_die_full_name, skip_one_die)
9278         (load_full_comp_unit, dwarf2_physname, read_import_statement)
9279         (inherit_abstract_dies, read_func_scope, read_call_site_scope)
9280         (dwarf2_add_member_fn, process_enumeration_scope, read_module_type)
9281         (read_typedef, die_hash, die_eq, read_full_die, dwarf2_read_abbrevs)
9282         (load_partial_dies, read_partial_die, find_partial_die_in_comp_unit)
9283         (find_partial_die, read_attribute_value, lookup_die_type)
9284         (dump_die_shallow, store_in_ref_table): Use cu_offset and sect_offset.
9285         (is_ref_attr): New function comment.
9286         (dwarf2_get_ref_die_offset): New function comment, new variable retval.
9287         Use cu_offset and sect_offset.
9288         (follow_die_offset, follow_die_ref, dwarf2_fetch_die_location_block)
9289         (dwarf2_get_die_type, follow_die_sig, lookup_signatured_type_at_offset)
9290         (load_full_type_unit, read_signatured_type, per_cu_header_read_in)
9291         (dwarf2_find_containing_comp_unit, struct dwarf2_offset_and_type)
9292         (offset_and_type_hash, offset_and_type_eq, set_die_type)
9293         (get_die_type_at_offset, partial_die_hash, partial_die_eq)
9294         (write_one_signatured_type, write_psymtabs_to_index): Use cu_offset and
9295         sect_offset.
9296
9297 2012-03-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
9298
9299         Code cleanup.
9300         * python/py-auto-load.c (source_section_scripts): New variable back_to.
9301         Turn fclose and xfree calls into make_cleanup_fclose and make_cleanup
9302         with xfree.
9303         (auto_load_objfile_script): Turn fclose into make_cleanup_fclose.
9304
9305 2012-03-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
9306
9307         * NEWS: Describe new options --init-command=FILE, -ix and
9308         --init-eval-command=COMMAND, -iex.
9309         * main.c (struct cmdarg): New enum items CMDARG_INIT_FILE and
9310         CMDARG_INIT_COMMAND.
9311         (captured_main): New enum items OPT_IX and OPT_IEX.  Add
9312         "init-command", "init-eval-command", "ix" and "iex" to the variable
9313         long_options.  Handle OPT_IX and OPT_IEX.  Process them from CMDARG_VEC.
9314         New comment for CMDARG_FILE and CMDARG_COMMAND processing.
9315         (print_gdb_help): Describe --init-command=FILE, -ix and
9316         --init-eval-command=COMMAND, -iex.
9317
9318 2012-03-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
9319
9320         Code cleanup.
9321         * main.c (struct cmdarg): Move it here from main.  Add more comments.
9322         (cmdarg_s, VEC (cmdarg_s)): New.
9323         (main): Move struct cmdarg from here.  New variables cmdarg_vec and
9324         cmdarg_p.  Remove variables cmdsize and ncmd and their initialization.
9325         Install cleanup for cmdarg_vec.  Update filling for options 'x' and
9326         'X'.  Replace cmdarg processing by cmdarg_vec processing.  Remove xfree
9327         of CMDARG.
9328
9329 2012-03-19  Tom Tromey  <tromey@redhat.com>
9330
9331         * gnu-v3-abi.c (gnuv3_print_vtable): Initialize 'result_vec'.
9332
9333 2012-03-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
9334
9335         PR symtab/13777
9336         * dwarf2read.c (process_full_comp_unit): Set LOCATIONS_VALID only for
9337         GCC >=4.5.
9338
9339 2012-03-16  Chris January  <chris.january@allinea.com>
9340
9341         * tui-tui.win.c (tui_resize_all): Use erase and clearok instead
9342         of clear.
9343
9344 2012-03-16  Chris January  <chris.january@allinea.com>
9345
9346         * source.c (add_path): Use memmove instead of strcpy because the
9347         strings overlap.
9348
9349 2012-03-16  Joel Brobecker  <brobecker@adacore.com>
9350
9351         * value.h (set_value_parent): Add declaration.
9352         * value.c (set_value_parent): New function.
9353         (value_address): If VALUE->PARENT is not NULL, then use it as
9354         the base address instead of VALUE->LOCATION.address.
9355         * ada-lang.c (ada_value_primitive_packed_val): Keep V's address
9356         the same as OBJ's address.  Adjust V's offset accordingly.
9357         Set V's parent.
9358
9359 2012-03-16  Gary Benson  <gbenson@redhat.com>
9360
9361         PR breakpoints/10738
9362         * dwarf2read.c (use_deprecated_index_sections): New global.
9363         (struct partial_die_info): New member may_be_inlined.
9364         (read_partial_die): Set may_be_inlined where appropriate.
9365         (add_partial_subprogram): Add partial symbols for partial
9366         DIEs that may be inlined.
9367         (new_symbol_full): Add inlined subroutines to the current
9368         scope.
9369         (write_psymtabs_to_index): Bump version number.
9370         (dwarf2_read_index): Read only version 6 indices unless
9371         use_deprecated_index_sections is set.
9372         * linespec.c (symbol_and_data_callback): New structure.
9373         (iterate_inline_only): New function.
9374         (iterate_over_all_matching_symtabs): New argument
9375         "include_inline".  If nonzero, also call the callback for
9376         symbols representing inlined subroutines.
9377         (lookup_prefix_sym): Pass extra argument to the above.
9378         (find_function_symbols): Likewise.
9379         (add_matching_symbols_to_info): Likewise.
9380         * NEWS: Mention that GDB can now set breakpoints on inlined
9381         functions.
9382
9383 2012-03-16  Pierre Muller  <muller@ics.u-strasbg.fr>
9384
9385         * p-typeprint.c (pascal_type_print_method_args):
9386         Fix display of parameter of methods.
9387
9388 2012-03-16  Pierre Muller  <muller@ics.u-strasbg.fr>
9389
9390         * amd64-windows-nat.c (_initialize_amd64_windows_nat):
9391         Add missing prototype.
9392
9393 2012-03-16  Yao Qi  <yao@codesourcery.com>
9394             Jan Kratochvil  <jan.kratochvil@redhat.com>
9395
9396         Fix false compilation warning.
9397         * gnu-v3-abi.c (print_one_vtable): Initialize ADDR.
9398
9399 2012-03-15  Jonathan Larmour  <jifl@eCosCentric.com>
9400             Pedro Alves  <pedro@codesourcery.com>
9401
9402         * arm-tdep.c: Include "remote.h" and "features/arm-with-m-fpa-layout.c".
9403         (arm_register_g_packet_guesses): New function.
9404         (arm_gdbarch_init): Don't force a target description with
9405         registers when the executable is detected as M-profile.  Instead
9406         set gdbarch->tdep->is_m.  Register `g' packet guesses.
9407         (_initialize_arm_tdep): Initialize the new target description.
9408         * features/arm-with-m-fpa-layout.xml: New description.
9409         * features/arm-with-m-fpa-layout.c: New, generated.
9410
9411 2012-03-15  Joel Brobecker  <brobecker@adacore.com>
9412
9413         * breakpoint.c (breakpoint_xfer_memory): Add assertion.
9414         Update function description.
9415         (insert_bp_location): Do not wipe bl->target_info out.
9416         * mem-break.c: #include "gdb_string.h".
9417         (default_memory_insert_breakpoint): Do not call target_read_memory
9418         with a pointer to the breakpoint's shadow_contents buffer.  Use
9419         a local buffer instead.
9420         * m32r-tdep.c (m32r_memory_insert_breakpoint): Ditto.
9421
9422 2012-03-15  Tom Tromey  <tromey@redhat.com>
9423
9424         * NEWS: Mention "info vtbl", not "info vtable".
9425         * cp-support.c (info_vtbl_command): Fix comment.
9426         (_initialize_cp_support): Fix text.
9427
9428 2012-03-15  Tom Tromey  <tromey@redhat.com>
9429
9430         * cp-valprint.c (cp_print_value_fields): Use
9431         print_function_pointer_address for vtable slot.
9432
9433 2012-03-15  Tom Tromey  <tromey@redhat.com>
9434
9435         * gnu-v3-abi.c (struct value_and_voffset): New.
9436         (hash_value_and_voffset, eq_value_and_voffset)
9437         (compare_value_and_voffset, compute_vtable_size)
9438         (print_one_vtable, gnuv3_print_vtable): New functions.
9439         (init_gnuv3_ops): Initialize 'print_vtable' field.
9440         * cp-support.c (info_vtbl_command): New function.
9441         (_initialize_cp_support): Add "info vtbl".
9442         * cp-abi.h (cplus_print_vtable): Declare.
9443         (struct cp_abi_ops) <print_vtable>: New field.
9444         * cp-abi.c (cplus_print_vtable): New function.
9445         * NEWS: Update.
9446
9447 2012-03-15  Tom Tromey  <tromey@redhat.com>
9448
9449         * d-lang.c (d_language_defn) <la_iterate_over_symbols>: Set to
9450         iterate_over_symbols.
9451
9452 2012-03-14  Doug Evans  <dje@google.com>
9453
9454         * dwarf2read.c (dwarf_stack_op_name): Add DW_OP_GNU_encoded_addr,
9455         DW_OP_GNU_parameter_ref.
9456
9457 2012-03-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
9458
9459         Fix double prompt of 'interpreter-exec mi'.
9460         * mi/mi-interp.c (mi_execute_command_input_handler): New prototype.
9461         (mi_interpreter_resume): use it.
9462         (mi_execute_command_input_handler): New function.
9463         * mi/mi-main.c (mi_execute_command): Move prompt printing to
9464         mi_execute_command_input_handler.
9465
9466 2012-03-13  Josh Matthews  <josh@joshmatthews.net>  (tiny change)
9467
9468         * darwin-nat-info.c (_initialize_darwin_info_commands): Add
9469         prototype.
9470         (darwin_debug_port_info): Make static.
9471         * darwin-nat.c (_initialize_darwin_inferior): Add prototype.
9472         * machoread.c (_initialize_machoread): Add prototype.
9473         * i386-darwin-nat.c (i386_darwin_dr_set, i386_darwin_dr_get)
9474         (i386_darwin_set_control, i386_darwin_get_control)
9475         i386_darwin_dr_set_addr, i386_darwin_get_addr)
9476         i386_darwin_get_status, i386_darwin_get_control):
9477         Comment out with HW_WATCHPOINT_NOT_YET_ENABLED macro.
9478
9479 2012-03-13  Joel Brobecker  <brobecker@adacore.com>
9480
9481         * ax-gdb.c (gen_usual_unary): Remove special handling of
9482         enum and bool types.
9483
9484 2012-03-13  Joel Brobecker  <brobecker@adacore.com>
9485
9486         * ax-gdb.c (gen_fetch): Add handling for TYPE_CODE_RANGE types.
9487
9488 2012-03-13  Joel Brobecker  <brobecker@adacore.com>
9489
9490         * aix-thread.c (supply_fprs): Make more consistent with fill_fprs.
9491
9492 2012-03-13  Chris January  <chris.january@allinea.com>
9493
9494         * aix-thread.c (fill_sprs): Store the floating point registers
9495         at the correct offsets into vals.
9496
9497 2012-03-13  Doug Evans  <dje@google.com>
9498
9499         * NEWS: Mention symbol-reloading has been deleted.
9500         * symfile.c (symbol_reloading): Delete.
9501         (show_symbol_reloading): Delete.
9502         (_initialize_symfile): Delete set/show symbol-reloading.
9503
9504         * dwarf2read.c (load_partial_comp_unit): Defer adding cu to
9505         read_in_chain until we have successfully read it in.
9506         (load_full_comp_unit): Ditto.
9507         (read_signatured_type): Add comment.
9508
9509 2012-03-13  Chris January  <chris.january@allinea.com>
9510
9511         * stabsread.c (fix_common_block): Change type of valu argument
9512         to CORE_ADDR.
9513
9514 2012-03-13  Chris January  <chris.january@allinea.com>
9515
9516         * rs6000-tdep.c (skip_prologue): Support the oril r29, r1, 0x0
9517         instruction.
9518
9519 2012-03-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
9520
9521         * common/linux-procfs.c (linux_proc_get_int): New, from
9522         linux_proc_get_tgid, change its LWPID type to pid_t, add parameter
9523         field.
9524         (linux_proc_get_tgid): Only call linux_proc_get_int.
9525         (linux_proc_get_tracerpid): New.
9526         (linux_proc_pid_has_state): New, from linux_proc_pid_is_zombie.
9527         (linux_proc_pid_is_stopped, linux_proc_pid_is_zombie): Only call
9528         linux_proc_pid_has_state.
9529         * common/linux-procfs.h (linux_proc_get_tracerpid): New declaration.
9530         * common/linux-ptrace.c: Include linux-procfs.h and buffer.h.
9531         (linux_ptrace_attach_warnings): New.
9532         * common/linux-ptrace.h (struct buffer, linux_ptrace_attach_warnings):
9533         New declaration.
9534         * linux-nat.c: Include exceptions.h, linux-ptrace.h and buffer.h.
9535         (linux_nat_attach): New variables ex, buffer, message and message_s.
9536         Wrap to_attach by TRY_CATCH and call linux_ptrace_attach_warnings.
9537
9538 2012-03-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
9539
9540         * Makefile.in (linux-ptrace.o): New.
9541         * common/linux-procfs.c (linux_proc_pid_is_zombie): New,
9542         from linux-nat.c.
9543         * common/linux-procfs.h (linux_proc_pid_is_zombie): New declaration.
9544         * common/linux-ptrace.c: New file.
9545         * config/alpha/alpha-linux.mh (NATDEPFILES): Add linux-ptrace.o.
9546         * config/arm/linux.mh: Likewise.
9547         * config/i386/linux.mh: Likewise.
9548         * config/i386/linux64.mh: Likewise.
9549         * config/ia64/linux.mh: Likewise.
9550         * config/m32r/linux.mh: Likewise.
9551         * config/m68k/linux.mh: Likewise.
9552         * config/mips/linux.mh: Likewise.
9553         * config/pa/linux.mh: Likewise.
9554         * config/powerpc/linux.mh: Likewise.
9555         * config/powerpc/ppc64-linux.mh: Likewise.
9556         * config/powerpc/spu-linux.mh: Likewise.
9557         * config/s390/s390.mh: Likewise.
9558         * config/sparc/linux.mh: Likewise.
9559         * config/sparc/linux64.mh: Likewise.
9560         * config/xtensa/linux.mh: Likewise.
9561         * linux-nat.c (linux_lwp_is_zombie): Remove, move it to
9562         common/linux-procfs.c.
9563         (wait_lwp): Rename linux_lwp_is_zombie to linux_proc_pid_is_zombie.
9564
9565 2012-03-13  Hui Zhu  <teawater@gmail.com>
9566             Pedro Alves  <palves@redhat.com>
9567
9568         * breakpoint.c (init_breakpoint_sal): New flags parameter.  Handle
9569         CREATE_BREAKPOINT_FLAGS_INSERTED.
9570         (create_breakpoint_sal, create_breakpoints_sal)
9571         (base_breakpoint_create_breakpoints_sal)
9572         (tracepoint_create_breakpoints_sal)
9573         (strace_marker_create_breakpoints_sal): New flags parameter.  Pass
9574         down.
9575         (break_command_1, handle_gnu_v3_exceptions, trace_command)
9576         (ftrace_command, strace_command): Adjust.
9577         (create_tracepoint_from_upload): Pass
9578         CREATE_BREAKPOINT_FLAGS_INSERTED.
9579         * breakpoint.h (enum breakpoint_create_flags): New.
9580         (create_breakpoint): New flags parameter.
9581         * mi/mi-cmd-break.c (mi_cmd_break_insert): Adjust.
9582         * python/py-breakpoint.c (bppy_init): Adjust.
9583         * python/py-finishbreakpoint.c (bpfinishpy_init): Adjust.
9584         * spu-tdep.c (spu_catch_start): Adjust.
9585
9586 2012-03-13  Pedro Alves  <palves@redhat.com>
9587             Hui Zhu  <teawater@gmail.com>
9588             Yao Qi  <yao@codesourcery.com>
9589
9590         * remote.c (struct remote_state): New field `starting_up'.
9591         (remote_start_remote): Set and clear it.
9592         (remote_can_download_tracepoint): If starting up, return false.
9593
9594 2012-03-13  Yao Qi  <yao@codesourcery.com>
9595
9596         * inferior.h (struct inferior): Remove fields any_syscall_count,
9597         syscalls_counts and total_syscalls_count.  Move them to new
9598         struct catch_syscall_inferior_data in breakpoint.c.
9599         * breakpoint.c: Call DEF_VEC_I(int).
9600         (struct catch_syscall_inferior_data): New.
9601         (get_catch_syscall_inferior_data): New.
9602         (catch_syscall_inferior_data_cleanup): New.
9603         (insert_catch_syscall): Update to access data in
9604         struct catch_syscall_inferior_data.
9605         (insert_catch_syscall): Likewise.
9606         (remove_catch_syscall): Likewise.
9607         (remove_catch_syscall): Likewise.
9608         (is_syscall_catchpoint_enabled): Likewise.
9609         (add_catch_command): Likewise.
9610         (_initialize_breakpoint): Register cleanup.
9611         * breakpoint.h: Removed DEF_VEC_I(int).
9612         * dwarf2loc.c: Call DEF_VEC_I(int).
9613         * mi/mi-main.c: Likewise.
9614
9615 2012-03-12  Mark Kettenis  <kettenis@gnu.org>
9616
9617         * inf-ptrace.c (inf_ptrace_post_attach): Make static.
9618
9619 2012-03-12  Chris January  <chris.january@allinea.com>
9620
9621         * aix-thread.c (_initialize_aix_thread): Add prototype.
9622         * rs6000-nat.c (_initialize_rs6000_nat): Ditto.
9623         * xcoffsolib.c (_initialize_xcoffsolib): Ditto.
9624
9625 2012-03-12  Joel Brobecker  <brobecker@adacore.com>
9626
9627         * amd64bsd-nat.c: Move #include of "amd64bsd-nat.h" after
9628         include of "amd64-nat.h".
9629
9630 2012-03-12  Tom Tromey  <tromey@redhat.com>
9631
9632         * buildsym.c (record_pending_block): Now static.
9633         * buildsym.h: (record_pending_block): Remove.
9634
9635 2012-03-12  Andreas Tobler  <andreast@fgznet.ch>
9636
9637         * amd64bsd-nat.c: Include amd64bsd-nat.h.
9638
9639 2012-03-09  Tom Tromey  <tromey@redhat.com>
9640
9641         * dwarf2read.c (struct dwarf2_cu) <checked_producer,
9642         producer_is_gxx_lt_4_6>: New fields.
9643         (producer_is_gxx_lt_4_6): Use and update producer cache fields.
9644
9645 2012-03-09  Tom Tromey  <tromey@redhat.com>
9646
9647         * dwarf2read.c (dwarf2_attr): Avoid tail-recursive call.
9648
9649 2012-03-08  Joel Brobecker  <brobecker@adacore.com>
9650
9651         * ravenscar-sparc-thread.c (_initialize_ravenscar_sparc): Add
9652         prototype.
9653
9654 2012-03-08  Joel Brobecker  <brobecker@adacore.com>
9655
9656         * ravenscar-thread.c (_initialize_ravenscar): Add prototype.
9657
9658 2012-03-08  Jan Kratochvil  <jan.kratochvil@redhat.com>
9659
9660         Fix -Wmissing-prototypes build.
9661         * arm-linux-nat.c (get_thread_id): Make it static.
9662         * xtensa-linux-nat.c (get_thread_id): Likewise.
9663
9664 2012-03-08  Joel Brobecker  <brobecker@adacore.com>
9665
9666         * server.c (process_point_options): If a conditional expression
9667         is found, only print a message if remote_debug is nonzero.
9668
9669 2012-03-08  Luis Machado  <lgustavo@codesourcery.com>
9670
9671         * ax-gdb.c (gen_fetch): Fail gracefully and use error instead
9672         of internal error for unknown/unsupported types.
9673
9674 2012-03-08  Jan Kratochvil  <jan.kratochvil@redhat.com>
9675
9676         Fix CU relative vs. absolute DIE offsets.
9677         * dwarf2loc.h (dwarf2_fetch_die_location_block): Rename parameter
9678         offset to offset_in_cu.
9679         * dwarf2read.c (process_enumeration_scope): Add CU offset to
9680         TYPE_OFFSET.
9681         (dwarf2_fetch_die_location_block): Rename parameter offset to
9682         offset_in_cu.  New variable offset, add CU offset to OFFSET_IN_CU.
9683
9684 2012-03-08  Jan Kratochvil  <jan.kratochvil@redhat.com>
9685
9686         * libunwind-frame.c: Rename to ...
9687         * ia64-libunwind-tdep.c: ... here.
9688         * libunwind-frame.h: Rename to ...
9689         * ia64-libunwind-tdep.h: ... here.
9690         * Makefile.in (HFILES_NO_SRCDIR): Rename libunwind-frame.h to
9691         ia64-libunwind-tdep.h.
9692         (ALLDEPFILES): Rename libunwind-frame.c to ia64-libunwind-tdep.c.
9693         * README (--with-libunwind): Rename to ...
9694         (--with-libunwind-ia64): ... here, note it is ia64 specific now.
9695         * config.in: Regenerate.
9696         * configure: Regenerate.
9697         * configure.ac: New option --with-libunwind-ia64, make the
9698         AS_HELP_STRING ia64 specific.  Deprecate option --with-libunwind.
9699         Remove AC_DEFINE for HAVE_LIBUNWIND.
9700         * ia64-libunwind-tdep.c: Make the file top comment ia64 specific.
9701         Rename libunwind-frame.h #include to ia64-libunwind-tdep.h.
9702         Rename libunwind-frame in the general comment.
9703         * ia64-libunwind-tdep.h: Make the file top comment ia64 specific.
9704         Rename symbol LIBUNWIND_FRAME_H to IA64_TDEP_LIBUNWIND_FRAME_H.
9705         Move forward declarations inside #ifndef.  Rename libunwind-frame in
9706         the general comment.
9707         * ia64-tdep.c: Rename libunwind-frame.h #include to
9708         ia64-libunwind-tdep.h.
9709         (ia64_gdb2uw_regnum, ia64_uw2gdb_regnum, ia64_is_fpreg)
9710         (ia64_libunwind_descr): Rename libunwind-frame to
9711         ia64-libunwind-tdep in these function comments.
9712         * ia64-tdep.h: Rename libunwind-frame.h #include to
9713         ia64-libunwind-tdep.h.
9714         * ia64-vms-tdep.c (ia64_vms_libunwind_descr): Rename libunwind-frame to
9715         ia64-libunwind-tdep in that data comment.
9716
9717 2012-03-08  Jan Kratochvil  <jan.kratochvil@redhat.com>
9718
9719         * libunwind-frame.h (struct frame_unwind): New declaration.
9720
9721 2012-03-08  Joel Brobecker  <brobecker@adacore.com>
9722
9723         * breakpoint.c (_initialize_breakpoint): Fix error in help of
9724         "set breakpoint condition-evaluation" command.
9725
9726 2012-03-08  Tristan Gingold  <gingold@adacore.com>
9727
9728         * sparc-stub.c: Move to stubs/
9729         * sh-stub.c: Likewise.
9730         * m68k-stub.c: Likewise.
9731         * m32r-stub.c: Likewise.
9732         * i386-stub.c: Likewise.
9733
9734 2012-03-08  Andreas Schwab  <schwab@linux-m68k.org>
9735
9736         * m68klinux-tdep.c (m68k_linux_init_abi): Register
9737         linux_get_siginfo_type.
9738
9739         * m68klinux-nat.c: Include "gdb_proc_service.h".
9740         (PTRACE_GET_THREAD_AREA): Define.
9741         (ps_get_thread_area): New function.
9742
9743 2012-03-08  Yao Qi  <yao@codesourcery.com>
9744
9745         * remote.c (remote_get_noisy_reply): Replace `sprintf' with
9746         `xsnprintf'.
9747         (remote_query_attached): Likewise.
9748         (remote_static_tracepoint_marker_at): Likewise.
9749         (remote_set_permissions): Likewise.
9750         (remote_detach_1, extended_remote_attach_1): Likewise.
9751         (send_g_packet, remote_vkill): Likewise.
9752         (extended_remote_disable_randomization): Likewise.
9753         (remote_add_target_side_condition): Likewise.
9754         (remote_insert_breakpoint): Likewise.
9755         (remote_remove_breakpoint): Likewise.
9756         (remote_insert_watchpoint): Likewise.
9757         (remote_remove_watchpoint): Likewise.
9758         (remote_insert_hw_breakpoint): Likewise.
9759         (remote_insert_hw_breakpoint): Likewise.
9760         (remote_remove_hw_breakpoint): Likewise.
9761         (remote_download_command_source): Likewise.
9762         (remote_download_tracepoint): Likewise.
9763         (remote_download_trace_state_variable): Likewise.
9764         (remote_disable_tracepoint): Likewise.
9765         (remote_trace_set_readonly_regions): Likewise.
9766         (remote_get_tracepoint_status): Likewise.
9767         (remote_trace_find): Likewise.
9768         (remote_get_trace_state_variable_value): Likewise.
9769         (remote_set_disconnected_tracing): Likewise.
9770         (remote_set_circular_trace_buffer): Likewise.
9771         (remote_get_min_fast_tracepoint_insn_len): Likewise.
9772         (remote_use_agent): Likewise.
9773         (remote_add_target_side_condition): Add one parameter BUF_SIZE.
9774         Update callers.
9775
9776 2012-03-07  Pedro Alves  <palves@redhat.com>
9777
9778         * NEWS: Mention QProgramSignals.
9779         * inferior.h (update_signals_program_target): Declare.
9780         * infrun.c: (update_signals_program_target): New.
9781         (handle_command): Update the target of the new program signals
9782         array changes.
9783         * remote.c (PACKET_QProgramSignals): New enum.
9784         (last_program_signals_packet): New global.
9785         (remote_program_signals): New.
9786         (remote_start_remote): Update the target with the program signals
9787         list.
9788         (remote_protocol_features): Add entry for QPassSignals.
9789         (remote_open_1): Free anc clear last_program_signals_packet.
9790         (init_remote_ops): Install remote_program_signals.
9791         * target.c (update_current_target): Adjust.
9792         (target_program_signals): New.
9793         * target.h (struct target_ops) <to_program_signals>: New field.
9794         (target_program_signals): Declare.
9795
9796 2012-03-07  Pedro Alves  <palves@redhat.com>
9797
9798         * NEWS: Add subtitle for new z0/z1 conditional breakpoint
9799         extensions.
9800
9801 2012-03-07  Andreas Schwab  <schwab@linux-m68k.org>
9802
9803         * m68klinux-nat.c (getregs_supplies): Make static.
9804         (getfpregs_supplies): Likewise.
9805         (have_ptrace_getregs): Likewise.
9806
9807 2012-03-06  Joel Brobecker  <brobecker@adacore.com>
9808
9809         * dwarf2read.c (dwarf2_get_die_type): Pass absolute offset
9810         in call to get_die_type_at_offset.
9811
9812 2012-03-06  Stan Shebs  <stan@codesourcery.com>
9813
9814         * mi/mi-cmd-break.c: Enforce coding standards, fix comments.
9815         * mi/mi-cmd-disas.c: Ditto.
9816         * mi/mi-cmd-env.c: Ditto.
9817         * mi/mi-cmd-file.c: Ditto.
9818         * mi/mi-cmd-stack.c: Ditto.
9819         * mi/mi-cmd-target.c: Ditto.
9820         * mi/mi-cmd-var.c: Ditto.
9821         * mi/mi-cmds.c: Ditto.
9822         * mi/mi-cmds.h: Ditto.
9823         * mi/mi-console.c: Ditto.
9824         * mi/mi-getopt.c: Ditto.
9825         * mi/mi-getopt.h: Ditto.
9826         * mi/mi-interp.c: Ditto.
9827         * mi/mi-main.c: Ditto.
9828         * mi/mi-out.c: Ditto.
9829         * mi/mi-parse.c: Ditto.
9830         * mi/mi-parse.h: Ditto.
9831         * mi/mi-symbol-cmds.c: Ditto.
9832
9833         * mi/mi-getopt.h: Move mi_opt struct up.
9834         * mi/mi-main.c (captured_mi_execute_command): Remove redundant
9835         return.
9836         * mi/mi-out.c (_initialize_mi_out): Remove empty initialize.
9837
9838 2012-03-06  Tom Tromey  <tromey@redhat.com>
9839
9840         * proc-service.c (ps_pglobal_lookup): Set the current program
9841         space.
9842
9843 2012-03-06  Pedro Alves  <palves@redhat.com>
9844
9845         * gregset.h [HAVE_SYS_PROCFS_H]: Include <sys/procfs.h>.
9846
9847 2012-03-05  Joel Brobecker  <brobecker@adacore.com>
9848
9849         * MAINTAINERS: List Maciej W. Rozycki as the mips maintainer.
9850
9851 2012-03-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
9852
9853         Code cleanup.
9854         * common/linux-osdata.c (linux_common_core_of_thread): New function
9855         comment.
9856         * linux-nat.c (linux_nat_wait_1): Replace linux_nat_core_of_thread_1
9857         call by linux_common_core_of_thread.
9858         (linux_nat_core_of_thread_1): Remove.
9859         * linux-nat.h (linux_nat_core_of_thread_1): Remove declaration.
9860         * linux-thread-db.c: Include linux-osdata.h.
9861         (update_thread_core): Replace linux_nat_core_of_thread_1 call by
9862         linux_common_core_of_thread.
9863
9864 2012-03-05  Tom Tromey  <tromey@redhat.com>
9865
9866         * value.c (value_primitive_field): Don't fetch contents for
9867         non-virtual bases.
9868
9869 2012-03-05  Tom Tromey  <tromey@redhat.com>
9870
9871         * jv-valprint.c (java_value_print): Correctly compute 'obj_addr'.
9872
9873 2012-03-05  Andreas Arnez  <arnez@linux.vnet.ibm.com>
9874
9875         * s390-nat.c: Include "gregset.h".
9876
9877 2012-03-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
9878
9879         * libunwind-frame.c (LIBUNWIND_SO): Change .7 to .8.
9880         [!LIBUNWIND_SO] (LIBUNWIND_SO_7): New #define.
9881         (libunwind_load): New variable so_error, use it for dlerror.  Try to
9882         load also LIBUNWIND_SO_7.
9883
9884 2012-03-05  Pedro Alves  <palves@redhat.com>
9885
9886         * i387-tdep.c (i387_supply_xsave): Assert the xsave section buffer
9887         is not NULL, and remove resulting dead code.
9888
9889 2012-03-05  Thomas Schwinge  <thomas@codesourcery.com>
9890
9891         * sh-tdep.c (sh_skip_prologue): Provide an upper limit on the function
9892         prologue to sh_analyze_prologue.
9893         (sh_analyze_prologue): Make better use of such an upper limit, and
9894         generally be more cautious about accessing memory.
9895
9896 2012-03-05  Tom Tromey  <tromey@redhat.com>
9897
9898         * ia64-vms-tdep.c (_initialize_ia64_vms_tdep): Rename from
9899         _initialize_ia64_hpux_tdep.
9900
9901 2012-03-05  Pedro Alves  <palves@redhat.com>
9902
9903         PR gdb/13766
9904
9905         * i387-tdep.c (i387_supply_xsave): If we have an xsave buffer, and
9906         the register state is clear, supply explicit zero, instead of
9907         marking the register unavailable.
9908
9909 2012-03-05  Tristan Gingold  <gingold@adacore.com>
9910
9911         * NEWS: Mention OpenVMS ia64 new target.
9912
9913 2012-03-05  Tristan Gingold  <gingold@adacore.com>
9914
9915         * ia64-tdep.h: Include libunwind-frame.h and libunwind-ia64.h.
9916         (ia64_unw_accessors, ia64_unw_rse_accessors)
9917         (ia64_libunwind_descr): Declare.
9918         * ia64-vms-tdep.c: New file.
9919         * ia64-tdep.c (ia64_unw_accessors, ia64_unw_rse_accessors)
9920         (ia64_libunwind_descr): Make them public.
9921         * configure.tgt: Add ia64-*-*vms*.
9922         * Makefile.in (ALL_64_TARGET_OBS): Add ia64-vms-tdep.o
9923         (ALLDEPFILES): Add ia64-vms-tdep.c
9924
9925 2012-03-05  Tristan Gingold  <gingold@adacore.com>
9926
9927         * target.h (target_object): Add TARGET_OBJECT_OPENVMS_UIB.
9928         * remote.c (PACKET_qXfer_uib): New enum value.
9929         (remote_protocol_features): Add entry for PACKET_qXfer_uib.
9930         (remote_xfer_partial): Handle TARGET_OBJECT_OPENVMS_UIB.
9931         (_initialize_remote): Call add_packet_config_cmd for
9932         xfer:uib packet.
9933
9934 2012-03-05  Tristan Gingold  <gingold@adacore.com>
9935
9936         * osabi.c (gdb_osabi_names): Add OpenVMS.
9937         (generic_elf_osabi_sniffer): Likewise.
9938         * defs.h (gdb_osabi): Add GDB_OSABI_OPENVMS.
9939
9940 2012-03-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
9941
9942         Removed unused code.
9943         * libunwind-frame.c (libunwind_frame_unwind)
9944         (libunwind_frame_base_address): Remove.
9945         * libunwind-frame.h (libunwind_frame_base_address): Remove declaration.
9946
9947 2012-03-04  Yao Qi  <yao@codesourcery.com>
9948
9949         * common/agent.c (gdb_connect_sync_socket): Add _ markup and
9950         remove trailing new line.
9951         (agent_run_command, agent_run_command): Add _ markup.
9952         (agent_capability_check): Likewise.
9953
9954 2012-03-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
9955
9956         * breakpoint.c (set_condition_evaluation_mode): Set
9957         CONDITION_EVALUATION_MODE unconditionally.
9958
9959 2012-03-03  Yao Qi  <yao@codesourcery.com>
9960
9961         * common/agent.c (agent_look_up_symbols): Add one parameter 'arg'.
9962         * common/agent.h: Update declaration.
9963         * inf-child.c (inf_child_use_agent): New.
9964         (inf_child_can_use_agent): New.
9965         (inf_child_target): Initialize fields `to_use_agent'
9966         and `to_can_use_agent'.
9967         * agent.c (agent_new_objfile): New.
9968         (_initialize_agent): Add agent_new_objfile to new_objfile
9969         observer.
9970
9971         * linux-nat.c (linux_child_static_tracepoint_markers_by_strid):
9972         New.
9973         (linux_target_install_ops): Initialize field
9974         `to_static_tracepoint_markers_by_strid'.
9975         * remote.c (free_current_marker): Move it to ...
9976         * tracepoint.c (free_current_marker): ... here.  New.
9977         (cleanup_target_stop): New.
9978         * tracepoint.h: Declare free_current_marker.
9979         * NEWS: Add one entry about `info static-tracepoint-marker'.
9980
9981 2012-03-03  Yao Qi  <yao@codesourcery.com>
9982
9983         * common/agent.c (agent_loaded_p): New.
9984         (agent_look_up_symbols): New global.
9985         * common/agent.h: Declare agent_loaded_p.
9986
9987 2012-03-03  Yao Qi  <yao@codesourcery.com>
9988
9989         * common/agent.c (struct ipa_sym_addresses) <addr_capability>: New.
9990         (agent_capability_check, agent_capability_invalidate): New.
9991         (symbol_list): New array element.
9992         * common/agent.h (enum agent_capa): New.
9993         * target.c (target_pre_inferior): Call agent_capability_invalidate.
9994
9995 2012-03-03  Yao Qi  <yao@codesourcery.com>
9996
9997         * target.h (struct target_ops) <to_use_agent>: New field.
9998         (struct target_ops) <to_can_use_agent>: New field.
9999         (target_use_agent, target_can_use_agent): New macro.
10000         * target.c (update_current_target): Update.
10001         * remote.c: New enum `PACKET_QAgent'.
10002         (remote_protocol_features): Add a new element.
10003         (remote_use_agent, remote_can_use_agent): New.
10004         (init_remote_ops): Initialize field `can_use_agent' with
10005         remote_can_use_agent.  Intiailize field `use_agent' with
10006         remote_use_agent.
10007         * common/agent.c (use_agent): New global.
10008         * common/agent.h: Declare it.
10009         * tracepoint.c (info_static_tracepoint_markers_command): Add
10010         comment.
10011         * Makefile.in (SFILES): Add common/agent.c and agent.c.
10012         (COMMON_OBS): Add common/agent.o and agent.o
10013         (common-agent.o): New rule.
10014         * agent.c: New.
10015
10016 2012-03-03  Yao Qi  <yao@codesourcery.com>
10017
10018         * common/agent.c: New.
10019         * common/agent.h: New.
10020         * configure.ac: Add `sys/socket.h' and `sys/un.h' to
10021         AC_CHECK_HEADERS.
10022         * configure, configh.in: Regenerated.
10023
10024 2012-03-02  Kevin Buettner  <kevinb@redhat.com>
10025
10026         * sh-tdep.c (sh_frame_cache): Don't fetch the FPSCR register
10027         unless it exists for this architecture.
10028
10029 2012-03-02  Joel Brobecker  <brobecker@adacore.com>
10030
10031         * language.h (struct language_defn): New "method" la_read_var_value.
10032         * findvar.c: #include "language.h".
10033         (default_read_var_value): Renames read_var_value.  Rewrite
10034         function description.
10035         (read_var_value): New function.
10036         * value.h (default_read_var_value): Add prototype.
10037         * ada-lang.c (ada_read_renaming_var_value, ada_read_var_value):
10038         New functions.
10039         (ada_language_defn): Add entry for la_read_var_value.
10040         * c-lang.c, d-lang.c, f-lang.c, jv-lang.c, language.c,
10041         * m2-lang.c, objc-lang.c, opencl-lang.c, p-lang.c: Update
10042         language_defn structures to add entry for new la_read_var_value
10043         field.
10044
10045 2012-03-02  Tom Tromey  <tromey@redhat.com>
10046             Pedro Alves  <palves@redhat.com>
10047
10048         PR breakpoints/13776:
10049         * breakpoint.c (breakpoint_init_inferior): Delete step-resume
10050         breakpoints.
10051         (delete_longjmp_breakpoint_at_next_stop): New.
10052         * breakpoint.h (delete_longjmp_breakpoint_at_next_stop): Declare.
10053         * target.c (generic_mourn_inferior): Call mark_breakpoints_out
10054         before deleting the inferior.  Add comments.
10055         * thread.c (clear_thread_inferior_resources): Don't delete lonjmp
10056         breakpoints immediately, but only on next stop.  Move that code
10057         next to where we mark other breakpoints for deletion.
10058
10059 2012-03-02  Joel Brobecker  <brobecker@adacore.com>
10060
10061         * mips-linux-nat.c (mips_linux_read_description): Add missing i18n
10062         marker.
10063         * mips-tdep.c (mips_linux_reg_names): Improve comment to avoid ARI
10064         violation.
10065
10066 2012-03-02  Pedro Alves  <palves@redhat.com>
10067
10068         * linux-thread-db.c (attach_thread): Avoid in_thread_list call.
10069
10070 2012-03-02  Ulrich Weigand  <uweigand@de.ibm.com>
10071
10072         Fix -Wmissing-prototypes build.
10073         * ppc-linux-nat.c (ppc_linux_get_hwcap): Make static.
10074         * remote-sim.c (gdbsim_has_all_memory): Likewise.
10075         (gdbsim_has_memory): Likewise.
10076
10077 2012-03-02  Yao Qi  <yao@codesourcery.com>
10078
10079         Fix -Wmissing-prototypes build.
10080         * charset.c (phony_iconv_open): Make static.
10081         (phony_iconv_close, phony_iconv): Likewise.
10082         * i386-linux-nat.c (_initialize_i386_linux_nat): New prototype.
10083         * i386-windows-nat.c (_initialize_i386_windows_nat): New
10084         prototype.
10085         * mingw-hdep.c (_initialize_mingw_hdep): New prototype.
10086         * ser-mingw.c (create_select_thread): Make static.
10087         * windows-termcap.c (tgetent): New prototype.
10088         (tgetnum, tgetflag, tgetstr, tputs, tgoto): Likewise.
10089
10090 2012-03-02  Zhang Yuanhui  <asmwarrior@gmail.com>
10091
10092         Fix -Wmissing-prototypes build.
10093         * windows-nat.c (dll_symbol_command, ctrl_c_handler): Make them static.
10094         (_initialize_windows_nat, _initialize_check_for_gdb_ini)
10095         (_initialize_loadable): New prototypes.
10096
10097 2012-03-02  Doug Evans  <dje@google.com>
10098
10099         * dwarf2read.c (load_full_comp_unit): Remove unnecessary reading of
10100         abbrev table, read_comp_unit will do it.
10101
10102 2012-03-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
10103
10104         Fix -Wmissing-prototypes build.
10105         * alpha-tdep.c (alpha_deal_with_atomic_sequence): Make it static.
10106         * amd64-darwin-tdep.c (_initialize_amd64_darwin_tdep): New prototype.
10107         * amd64-windows-tdep.c (_initialize_amd64_windows_tdep): Likewise.
10108         * arm-symbian-tdep.c (arm_symbian_skip_trampoline_code): Make it static.
10109         (_initialize_arm_symbian_tdep): New prototype.
10110         * arm-wince-tdep.c (arm_wince_skip_main_prologue): Make it static.
10111         * i386-darwin-tdep.c (_initialize_i386_darwin_tdep): New prototype.
10112         * i386-linux-tdep.c (i386_linux_displaced_step_copy_insn): Make it
10113         static.
10114         * lm32-tdep.c (_initialize_lm32_tdep): New prototype.
10115         * microblaze-linux-tdep.c (_initialize_microblaze_linux_tdep): New
10116         prototype.
10117         * microblaze-tdep.c (microblaze_debug, microblaze_fetch_instruction)
10118         (microblaze_skip_prologue, microblaze_frame_cache): Make them static.
10119         * mips-linux-tdep.c (mips_linux_regset_from_core_section): Make it
10120         static.
10121         * moxie-tdep.c (moxie_process_record): Likewise.
10122         * remote-mips.c (mips_can_use_watchpoint, mips_insert_watchpoint)
10123         (mips_remove_watchpoint, mips_stopped_by_watchpoint): Make them static.
10124         * rl78-tdep.c (rl78_breakpoint_from_pc): Make it static.
10125         (_initialize_rl78_tdep): New prototype.
10126         * rx-tdep.c (rx_breakpoint_from_pc): Make it static.
10127         (_initialize_rx_tdep): New prototype.
10128         * solib-darwin.c (darwin_in_dynsym_resolve_code): Make it static.
10129         (_initialize_darwin_solib): New prototype.
10130         * solib-spu.c: Include solib-spu.h.
10131         (_initialize_spu_solib): New prototype.
10132         * spu-multiarch.c (_initialize_spu_multiarch): New prototype.
10133         * tic6x-tdep.c (tic6x_analyze_prologue, tic6x_skip_prologue)
10134         (tic6x_breakpoint_from_pc, tic6x_frame_unwind_cache)
10135         (tic6x_software_single_step): Make it static.
10136         (_initialize_tic6x_tdep): New prototype.
10137
10138 2012-03-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
10139
10140         Fix -Wmissing-prototypes build.
10141         * cris-tdep.c (cris_can_use_hardware_watchpoint)
10142         (cris_region_ok_for_watchpoint, cris_stopped_data_address): Remove.
10143
10144 2012-03-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
10145
10146         Fix -Wmissing-prototypes build.
10147         * frv-tdep.c (frv_check_watch_resources, frv_stopped_data_address)
10148         (frv_have_stopped_data_address): Remove.
10149
10150 2012-03-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
10151
10152         Fix -Wmissing-prototypes build.
10153         * Makefile.in (HFILES_NO_SRCDIR): Add sh64-tdep.h.
10154         * sh-tdep.c: Include sh64-tdep.h.
10155         * sh-tdep.h (sh64_gdbarch_init, sh64_show_regs): Remove declarations.
10156         * sh64-tdep.c: Include sh64-tdep.h.
10157         * sh64-tdep.h: New file.
10158
10159 2012-03-01  Maciej W. Rozycki <macro@codesourcery.com>
10160
10161         * mips-tdep.c (mips32_scan_prologue): Correct indentation.
10162
10163 2012-03-01  Maciej W. Rozycki  <macro@codesourcery.com>
10164
10165         * mips-tdep.c (mips_gdbarch_init): Only set pc_regnum and
10166         sp_regnum once the gdbarch_init_osabi hook has been called.
10167
10168 2012-03-01  Maciej W. Rozycki  <macro@codesourcery.com>
10169
10170         * mips-tdep.c (mips32_bc1_pc): New function.
10171         (mips32_next_pc): Handle BC1ANY2F, BC1ANY2T, BC1ANY4F, BC1ANY4T,
10172         BPOSGE32 and BPOSGE64 instructions.
10173         (deal_with_atomic_sequence): Likewise.
10174         (mips32_instruction_has_delay_slot): Likewise.
10175
10176 2012-03-01  Maciej W. Rozycki  <macro@mips.com>
10177             Chris Dearman  <chris@mips.com>
10178             Maciej W. Rozycki  <macro@codesourcery.com>
10179             Joseph Myers  <joseph@codesourcery.com>
10180
10181         * features/mips-dsp.xml: New file.
10182         * features/mips64-dsp.xml: New file.
10183         * features/mips-dsp-linux.xml: New file.
10184         * features/mips64-dsp-linux.xml: New file.
10185         * features/Makefile (WHICH): Add mips-dsp-linux and
10186         mips64-dsp-linux.
10187         (mips-dsp-expedite, mips64-dsp-expedite): New variables.
10188         * features/mips-dsp-linux.c: New file.
10189         * features/mips64-dsp-linux.c: New file.
10190         * regformats/mips-dsp-linux.dat: New file.
10191         * regformats/mips64-dsp-linux.dat: New file.
10192         * mips-linux-nat.c (mips_linux_register_addr): Handle DSP
10193         registers.
10194         (mips64_linux_register_addr): Likewise.
10195         (mips64_linux_regsets_fetch_registers): Likewise.
10196         (mips64_linux_regsets_store_registers): Likewise.
10197         (mips64_linux_fetch_registers): Update call to
10198         mips64_linux_regsets_fetch_registers.
10199         (mips64_linux_store_registers): Update call to
10200         mips64_linux_regsets_store_registers.
10201         (mips_linux_read_description): Probe for DSP registers.
10202         (_initialize_mips_linux_nat): Call initialize_tdesc_mips_dsp_linux
10203         and initialize_tdesc_mips64_dsp_linux.
10204         * mips-linux-tdep.c (supply_gregset, mips64_supply_gregset):
10205         Remove padding of no longer used embedded register slots.
10206         * mips-linux-tdep.h (DSP_BASE, DSP_CONTROL): New macros.
10207         (MIPS_RESTART_REGNUM): Redefine enum value.
10208         * mips-tdep.c (mips_generic_reg_names): Remove trailing null
10209         strings.
10210         (mips_tx39_reg_names): Likewise.
10211         (mips_linux_reg_names): New array of register names for Linux
10212         targets.
10213         (mips_register_name): Check for a null pointer in
10214         mips_processor_reg_names and return an empty string.
10215         (mips_register_type): Exclude embedded registers for the IRIX
10216         and Linux ABIs.
10217         (mips_pseudo_register_type): Likewise.  Use dynamic numbers to
10218         refer to FP registers, LO, HI, BadVAddr, Cause and PC.  Handle
10219         DSP registers.
10220         (mips_stab_reg_to_regnum): Handle DSP accumulators.
10221         (mips_dwarf_dwarf2_ecoff_reg_to_regnum): Likewise.
10222         (mips_gdbarch_init): Likewise.  Initialize internal register
10223         indices for the Linux ABI.  Use dynamic numbers to refer to
10224         registers, as applicable, while parsing the target description.
10225         * mips-tdep.h (struct mips_regnum): Add dspacc/dspctl offsets.
10226
10227 2012-03-01  Joel Brobecker  <brobecker@adacore.com>
10228
10229         * frame.h (read_frame_register_unsigned): Fix typo in function
10230         description.
10231
10232 2012-03-01  Pedro Alves  <palves@redhat.com>
10233
10234         * jit-reader.in [!__cplusplus]
10235         (GDB_DECLARE_GPL_COMPATIBLE_READER): Add missing backslash.
10236
10237 2012-03-01  Pedro Alves  <palves@redhat.com>
10238
10239         * configure.ac (build_warnings): Add -Wmissing-prototypes.
10240         * configure: Regenerate.
10241
10242 2012-03-01  Pedro Alves  <palves@redhat.com>
10243
10244         * amd64-linux-tdep.c (amd64_linux_record_signal): Make static.
10245         * breakpoint.c (create_exception_master_breakpoint, trace_command)
10246         (ftrace_command, strace_command): Make static.
10247         * d-lang.c (_initialize_d_language): Declare.
10248         * dwarf2expr.c (_initialize_dwarf2expr): Declare.
10249         * dwarf2loc.c (_initialize_dwarf2loc):
10250         * dwarf2read.c (process_psymtab_comp_unit): Make static.
10251         * exec.c (exec_get_section_table): Make static.
10252         * i386-linux-tdep.c (i386_linux_record_signal): Make static.
10253         * infcmd.c (ensure_valid_thread, ensure_not_tfind_mode): Make static.
10254         * inferior.c (remove_inferior_command, add_inferior_command)
10255         (clone_inferior_command): Make static.
10256         * linux-nat.c (linux_nat_thread_address_space)
10257         (linux_nat_core_of_thread): Make static.
10258         * linux-tdep.c (_initialize_linux_tdep): Declare.
10259         * objc-lang.c (_initialize_objc_lang): Declare.
10260         * opencl-lang.c (builtin_opencl_type, opencl_language_arch_info):
10261         Make static.
10262         (_initialize_opencl_language): Declare.
10263         * record.c (_initialize_record): Declare.
10264         * remote.c (demand_private_info, remote_get_tib_address)
10265         (remote_supports_cond_tracepoints)
10266         (remote_supports_fast_tracepoints, remote_get_tracepoint_status):
10267         Make static.
10268         * skip.c (_initialize_step_skip): Declare.
10269         * symtab.c (skip_prologue_using_lineinfo): Make static.
10270         * tracepoint.c (delete_trace_state_variable)
10271         (trace_variable_command, delete_trace_variable_command)
10272         (get_uploaded_tsv, find_matching_tracepoint_location)
10273         (find_matching_tsv, create_tsv_from_upload, get_traceframe_info):
10274         Make static.
10275         * value.c (pack_unsigned_long): Make static.
10276         * varobj.c (varobj_ensure_python_env): Make static.
10277         * windows-tdep.c (_initialize_windows_tdep): Declare.
10278         * xml-syscall.c (make_cleanup_free_syscalls_info): Make static.
10279
10280 2012-03-01  Pedro Alves  <palves@redhat.com>
10281
10282         * linux-tdep.c (linux_has_shared_address_space): Make static.  Add
10283         gdbarch parameter.
10284         (linux_init_abi): Install it as has_shared_address_space gdbarch
10285         callback.
10286
10287 2012-03-01  Pedro Alves  <palves@redhat.com>
10288
10289         * observer.c (observer_test_first_notification_function)
10290         (observer_test_second_notification_function)
10291         (observer_test_third_notification_function): Add declarations.
10292
10293 2012-03-01  Pedro Alves  <palves@redhat.com>
10294
10295         * common/signals.c (default_target_signal_to_host)
10296         (default_target_signal_from_host): Move ...
10297         * arch-utils.c: ... here.
10298         * arch-utils.h (default_target_signal_to_host)
10299         (default_target_signal_from_host): Declare.
10300
10301         * common/signals.c (target_signal_from_command): Move ...
10302         * infrun.c: ... here.
10303         * inferior.h (target_signal_from_command): Declare.
10304         * target.h (target_signal_from_command)
10305         (default_target_signal_from_host, default_target_signal_to_host):
10306         Delete declarations.
10307
10308         * common/signals.c (_initialize_signals): Delete.
10309
10310 2012-03-01  Pedro Alves  <palves@redhat.com>
10311
10312         * jit-reader.in (plugin_is_GPL_compatible): Add declarations for
10313         both __cplusplus and !__cplusplus.
10314
10315 2012-03-01  Pedro Alves  <palves@redhat.com>
10316
10317         * psymtab.c (find_and_open_source): Delete declaration.
10318         * source.c (find_and_open_source): Move comment ...
10319         * source.h (find_and_open_source): ... to this new declaration.
10320
10321 2012-03-01  Pedro Alves  <palves@redhat.com>
10322
10323         * inline-frame.c: Include inline-frame.h.
10324
10325 2012-03-01  Pedro Alves  <palves@redhat.com>
10326
10327         * tui/tui-data.c (set_gen_win_origin): Delete.
10328         * tui/tui-data.h (tui_set_gen_win_origin): Delete declaration.
10329         * tui/tui-regs.c (tui_last_reg_element_no_in_line): Delete.
10330
10331 2012-03-01  Pedro Alves  <palves@redhat.com>
10332
10333         * remote.c (encode_actions): Delete declaration.
10334         * tracepoint.c (encode_actions): Make extern.
10335         * tracepoint.h (encode_actions): Declare.
10336
10337 2012-03-01  Pedro Alves  <palves@redhat.com>
10338
10339         * python/py-breakpoint.c: Include python.h.
10340         * python/py-continueevent.c (create_continue_event_object): Make
10341         static.
10342         * python/py-lazy-string.c (stpy_get_type): Make static.
10343         * python/py-newobjfileevent.c (create_new_objfile_event_object):
10344         Make static.
10345         * python/py-utils.c (unicode_to_target_python_string): Make
10346         static.
10347         * python/py-value.c: Include python.h.
10348
10349 2012-03-01  Pedro Alves  <palves@redhat.com>
10350
10351         * inferior.c (delete_threads_of_inferior): Delete.
10352
10353 2012-03-01  Pedro Alves  <palves@redhat.com>
10354
10355         Import fallback definitions from glibc.
10356
10357         * gdb_proc_service.h [!HAVE_PROC_SERVICE_H] (struct
10358         ps_prochandle): Forward declare.
10359         (ps_err_e): Use glibc's comments.
10360         [!HAVE_PROC_SERVICE_H] (ps_pdread, ps_pdwrite, ps_ptread)
10361         (ps_ptwrite, ps_lgetregs, ps_lsetregs, ps_lgetfpregs)
10362         (ps_lsetfpregs, ps_getpid, ps_get_thread_area, ps_pglobal_lookup)
10363         (ps_pstop, ps_pcontinue, ps_lstop, ps_lcontinue, ps_lgetxregsize)
10364         (ps_lgetxregs, ps_lsetxregs, ps_plog): Declare.
10365         (struct ps_prochandle): Adjust comment.
10366
10367 2012-03-01  Pedro Alves  <palves@redhat.com>
10368
10369         * ada-lang.c (ada_modulus_from_name): Delete.
10370         * ada-lex.l (lexer_init): Make static.
10371
10372 2012-03-01  Pedro Alves  <palves@redhat.com>
10373
10374         PR gdb/13767
10375
10376         * frame.c (read_frame_register_unsigned): New.
10377         * frame.h (read_frame_register_unsigned): Declare.
10378         * i387-tdep.c (print_i387_status_word): New parameter `status_p'.
10379         Handle it.
10380         (print_i387_control_word): New parameter `control_p'.  Handle it.
10381         (i387_print_float_info): Handle unavailable float registers.
10382
10383 2012-03-01  Keith Seitz  <keiths@redhat.com>
10384
10385         * linespec.c (decode_line_2): Sort the list of methods
10386         alphabetically before presenting the user with a selection
10387         menu.
10388
10389 2012-03-01  Doug Evans  <dje@google.com>
10390
10391         * dwarf2read.c (dwarf2_cu): Remove unused members has_form_ref_addr,
10392         has_namespace_info.
10393         (dwarf2_read_abbrevs): Remove corresponding initialization.
10394
10395 2012-03-01  Scott J. Goldman <scottjg@vmware.com>
10396
10397         * NEWS: Mention new python command class gdb.COMMAND_USER.
10398         * cli/cli-cmds.c (show_user): Print error when used on a python
10399         command.
10400         (init_cli_cmds): Update documentation strings for "show user" and
10401         "set/show max-user-call-depth" to clarify that it does not apply to
10402         python commands.
10403         * python/py-cmd.c (cmdpy_init): Treat class_user as a valid class in
10404         error check.
10405         (gdbpy_initialize_commands): Add COMMAND_USER as a constant in
10406         gdb python api.
10407         * top.c (execute_command): Only execute a user-defined command as a
10408         legacy macro if c->user_commands is set.
10409
10410 2012-03-01  Tom Tromey  <tromey@redhat.com>
10411
10412         * valprint.h (struct generic_val_print_decorations): New.
10413         (generic_val_print): Declare.
10414         * valprint.c (generic_val_print): New function.
10415         * p-valprint.c (p_decorations): New global.
10416         (pascal_val_print) <TYPE_CODE_REF, TYPE_CODE_ENUM,
10417         TYPE_CODE_FLAGS, TYPE_CODE_FUNC, TYPE_CODE_RANGE, TYPE_CODE_INT,
10418         TYPE_CODE_FLT, TYPE_CODE_VOID, TYPE_CODE_ERROR, TYPE_CODE_UNDEF,
10419         TYPE_CODE_BOOL, TYPE_CODE_CHAR>: Call generic_val_print.
10420         * m2-valprint.c (m2_decorations): New global.
10421         (m2_val_print) <TYPE_CODE_REF, TYPE_CODE_ENUM, TYPE_CODE_FUNC,
10422         TYPE_CODE_BOOL, TYPE_CODE_RANGE, TYPE_CODE_INT, TYPE_CODE_CHAR,
10423         TYPE_CODE_FLT, TYPE_CODE_METHOD, TYPE_CODE_VOID, TYPE_CODE_UNDEF,
10424         TYPE_CODE_ERROR>: Call generic_val_print.
10425         * f-valprint.c (f_decorations): New global.
10426         (f_val_print): Use print_function_pointer_address.
10427         <TYPE_CODE_REF, TYPE_CODE_FUNC, TYPE_CODE_CHAR, TYPE_CODE_FLAGS,
10428         TYPE_CODE_FLT, TYPE_CODE_VOID, TYPE_CODE_ENUM, TYPE_CODE_RANGE,
10429         TYPE_CODE_BOOL, TYPE_CODE_COMPLEX, TYPE_CODE_UNDEF>: Call
10430         generic_val_print.
10431         * c-valprint.c (c_decorations): New global.
10432         (c_val_print) <TYPE_CODE_MEMBERPTR, TYPE_CODE_REF, TYPE_CODE_ENUM,
10433         TYPE_CODE_FLAGS, TYPE_CODE_FUNC, TYPE_CODE_METHOD, TYPE_CODE_BOOL,
10434         TYPE_CODE_RANGE, TYPE_CODE_CHAR, TYPE_CODE_FLT,
10435         TYPE_CODE_DECFLOAT, TYPE_CODE_VOID, TYPE_CODE_ERROR,
10436         TYPE_CODE_UNDEF, TYPE_CODE_COMPLEX>: Call generic_val_print.
10437         * ada-valprint.c (ada_val_print_1) <TYPE_CODE_FLAGS>: Remove
10438         case.
10439
10440 2012-03-01  Tom Tromey  <tromey@redhat.com>
10441
10442         * valprint.c (val_print): Update.
10443         * p-valprint (pascal_val_print): Return void.
10444         * p-lang.h (pascal_val_print): Return void.
10445         * m2-valprint.c (m2_val_print): Return void.
10446         * m2-lang.h (m2_val_print): Return void.
10447         * language.h (struct language_defn) <la_val_print>: Return void.
10448         * language.c (unk_lang_val_print): Return void.
10449         * jv-valprint.c (java_val_print): Return void.
10450         * jv-lang.h (java_val_print): Return void.
10451         * f-valprint.c (f_val_print): Return void.
10452         * f-lang.h (f_val_print): Return void.
10453         * d-valprint.c (d_val_print): Return void.
10454         (dynamic_array_type): Update.
10455         * d-lang.h (d_val_print): Return void.
10456         * c-valprint.c (c_val_print): Return void.
10457         * c-lang.h (c_val_print): Return void.
10458         * ada-valprint.c (ada_vada_val_print, ada_val_print_1): Return
10459         void.
10460         * ada-lang.h (ada_val_print): Return void.
10461
10462 2012-03-01  Tom Tromey  <tromey@redhat.com>
10463
10464         * value.h (val_print): Return void.
10465         * valprint.c (val_print): Return void.
10466
10467 2012-03-01  Tom Tromey  <tromey@redhat.com>
10468
10469         * value.h (common_val_print): Return void.
10470         * valprint.c (common_val_print): Return void.
10471
10472 2012-03-01  Tom Tromey  <tromey@redhat.com>
10473
10474         * value.h (value_print): Return void.
10475         * valprint.c (value_print): Return void.
10476         * p-valprint.c (pascal_value_print): Return void.
10477         * p-lang.h (pascal_value_print): Return void.
10478         * language.h (struct language_defn) <la_value_print>: Return
10479         void.
10480         * language.c (unk_lang_value_print): Return void.
10481         * jv-valprint.c (java_value_print): Return void.
10482         * jv-lang.h (java_value_print): Return void.
10483         * f-valprint.c (c_value_print): Don't declare.
10484         Include c-lang.h.
10485         * c-valprint.c (c_value_print): Return void.
10486         * c-lang.h (c_value_print): Return void.
10487         * ada-valprint.c (ada_value_print): Return void.
10488         * ada-lang.h (ada_value_print): Return void.
10489
10490 2012-03-01  Tom Tromey  <tromey@redhat.com>
10491
10492         * value.c (value_primitive_field): Handle virtual base classes.
10493
10494 2012-03-01  Tom Tromey  <tromey@redhat.com>
10495
10496         * gdbtypes.h (struct vbase): Remove.
10497
10498 2012-03-01  Tom Tromey  <tromey@redhat.com>
10499
10500         * c-valprint.c (print_function_pointer_address): Move...
10501         * valprint.c: ... here.  Make non-static.
10502         * m2-valprint.c (print_function_pointer_address): Remove.
10503         * valprint.h (print_function_pointer_address): Declare.
10504
10505 2012-03-01  Joel Brobecker  <brobecker@adacore.com>
10506
10507         * NEWS: Document the fact that one can provide a condition when
10508         creating an Ada exception catchpoint.
10509
10510 2012-03-01  Tom Tromey  <tromey@redhat.com>
10511
10512         * valprint.c (val_print_type_code_flags): Fix placement of
10513         trailing brace.
10514
10515 2012-03-01  Joel Brobecker  <brobecker@adacore.com>
10516
10517         * copyright.py (MULTILINE_COMMENT_PREFIXES): Delete.
10518         (update_files): Do not set MULTILINE_COMMENT_PREFIXES
10519         environment variable before calling update-copyright.
10520
10521 2012-03-01  Joel Brobecker  <brobecker@adacore.com>
10522
10523         * gnulib/extra/update-copyright: Update to the latest from
10524         gnulib's git repository.
10525         * copyright.py: Set UPDATE_COPYRIGHT_USE_INTERVALS environment
10526         variable to 2 instead of 1.
10527
10528 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
10529
10530         * varobj.c (c_value_of_variable): Remove dead code.
10531
10532 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
10533
10534         * ada-lex.p (processId): Do not modify already encoded IDs.
10535         Update function documentation.
10536
10537 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
10538
10539         * ada-lang.h (ada_find_renaming_symbol): Replace parameter
10540         "name" with "struct symbol *name_sym".
10541         * ada-exp.y (write_var_or_type): Update call to
10542         ada_find_renaming_symbol.
10543         "name" with "struct symbol *name_sym". Adjust Implementation
10544         accordingly.  Adjust the function documentation.
10545
10546 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
10547
10548         * ada-lang.h (ada_find_any_symbol, ada_find_any_type): Delete.
10549         * ada-lang.c (ada_find_any_type): Add advance declaration.
10550         Make static.  Replace ada_find_any_symbol by
10551         ada_find_any_type_symbol.
10552         (ada_find_any_type_symbol): Renames ada_find_any_symbol.
10553         Improve function description.  Make static.
10554         (ada_find_renaming_symbol, find_old_style_renaming_symbol):
10555         Replace ada_find_any_symbol by ada_find_any_type_symbol.
10556
10557 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
10558
10559         * ada-lang.c (struct tag_args): Delete.
10560         (ada_get_tsd_type): Function body moved up in source file.
10561         (ada_tag_name_1, ada_tag_name_2): Delete.
10562         (ada_get_tsd_from_tag): New function.
10563         (ada_tag_name_from_tsd): New function.
10564         (ada_tag_name): Use a TRY_CATCH block instead of catch_errors
10565         to determine the tag name.
10566
10567 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
10568
10569         * ada-lang.h (ada_get_decoded_value, ada_get_decoded_type): Add
10570         declaration.
10571         * ada-lang.c (ada_get_decoded_value, ada_get_decoded_type): New
10572         function.
10573
10574 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
10575
10576         * ada-lang.c (ada_is_ignored_field): Rewrite wrong comment.
10577
10578 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
10579
10580         * ada-lang.c (ada_lookup_symbol_list): Only cache the result of
10581         full searches.
10582
10583 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
10584
10585         * ada-lang.c (constrained_packed_array_type): If there is a
10586         parallel XA type, use it to determine the array index type.
10587
10588 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
10589
10590         * ada-valprint.c (ada_val_print_1): If our value is a reference
10591         to an array descriptor, dereference it before converting it
10592         to a simple array.
10593
10594 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
10595
10596         * ada-lang.c (ada_to_fixed_value): Call unwrap_value before
10597         creating fixed value.
10598         (ada_value_ind, ada_coerce_ref, assign_component)
10599         (ada_evaluate_subexp): Remove call to unwrap_value before
10600         call to ada_to_fixed_value.
10601
10602 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
10603
10604         * ada-lang.c (to_fixed_array_type): Set result's type name.
10605
10606 2012-02-29  Joel Brobecker  <brobecker@adacore.com>
10607
10608         * ada-lang.c (catch_ada_exception_command_split): Add new
10609         argument cond_string.  Add support for condition at end of
10610         "catch exception" commands.
10611         (ada_decode_exception_location): Add new argument cond_string.
10612         Update call to catch_ada_exception_command_split.
10613         (create_ada_exception_catchpoint): Add new argument cond_string.
10614         Set the breakpoint condition if needed.
10615         (catch_ada_exception_command): Update call to
10616         ada_decode_exception_location.
10617         (ada_decode_assert_location): Add function documentation.
10618         Add support for condition at end of "catch assert" command.
10619         (catch_assert_command): Update calls to ada_decode_assert_location
10620         and create_ada_exception_catchpoint.
10621
10622 2012-02-29  Jan Kratochvil  <jan.kratochvil@redhat.com>
10623
10624         Fix disp-step-syscall.exp: fork: single step over fork.
10625         * i386-linux-tdep.c (-i386_linux_get_syscall_number): Rename to ...
10626         (i386_linux_get_syscall_number_from_regcache): ... here, new function
10627         comment, change parameters gdbarch and ptid to regcache.  Remove
10628         parameter regcache, initialize gdbarch from regcache here.
10629         (i386_linux_get_syscall_number, i386_linux_displaced_step_copy_insn):
10630         New functions.
10631         (i386_linux_init_abi): Install i386_linux_displaced_step_copy_insn
10632         instead.
10633         * i386-tdep.c (i386_syscall_p): Check also for 'sysenter' and
10634         'syscall'.  Make the 'int' check more strict.
10635
10636 2012-02-29  Jan Kratochvil  <jan.kratochvil@redhat.com>
10637
10638         Fix reverse mode for syscall on AMD CPUs in 32-bit mode.
10639         * i386-linux-tdep.c (i386_linux_intx80_sysenter_record): Rename to ...
10640         (i386_linux_intx80_sysenter_syscall_record): ... here.
10641         (i386_linux_init_abi): Initialize also I386_SYSCALL_RECORD.
10642         Use the renamed function name.
10643
10644 2012-02-29  Jan Kratochvil  <jan.kratochvil@redhat.com>
10645
10646         * arm-linux-tdep.c (arm_linux_copy_svc): Reset stale FRAME.
10647         * breakpoint.c (until_break_command): Likewise.
10648         * elfread.c (elf_gnu_ifunc_resolver_stop): Likewise.
10649         * infcall.c (call_function_by_hand): Likewise.
10650         * infcmd.c (finish_forward): Likewise.
10651         * infrun.c (insert_exception_resume_breakpoint): Likewise.
10652
10653 2012-02-28  Tristan Gingold  <gingold@adacore.com>
10654
10655         * ada-tasks.c (ada_tasks_inferior_data_sniffer): Rework code to
10656         avoid variable assignments inside condition.
10657
10658 2012-02-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
10659
10660         Fix static analysis issue found by cppcheck.
10661         * microblaze-tdep.c (microblaze_extract_return_value): Fix
10662         uninitialized BUF for size 2.
10663
10664 2012-02-27  Chris Dearman  <chris@mips.com>
10665             Nathan Froyd  <froydnj@codesourcery.com>
10666             Maciej W. Rozycki  <macro@codesourcery.com>
10667
10668         * mips-tdep.c (mips32_instruction_has_delay_slot): New function.
10669         (mips16_instruction_has_delay_slot): Likewise.
10670         (mips_segment_boundary): Likewise.
10671         (mips_adjust_breakpoint_address): Likewise.
10672         (mips_gdbarch_init): Use mips_adjust_breakpoint_address.
10673
10674 2012-02-27  Maciej W. Rozycki  <macro@mips.com>
10675             Maciej W. Rozycki  <macro@codesourcery.com>
10676
10677         * infrun.c (handle_inferior_event): Don't proceed through
10678         shared library trampolines if stepping at the machine
10679         instruction level.
10680
10681 2012-02-27  Maciej W. Rozycki  <macro@codesourcery.com>
10682
10683         * mips-linux-tdep.c (mips_linux_init_abi): Set num_pseudo_regs
10684         too.
10685
10686 2012-02-27  Thomas Schwinge  <thomas@codesourcery.com>
10687
10688         * sh-tdep.c (sh_make_stub_cache, sh_stub_this_id)
10689         (sh_stub_unwind_sniffer): New functions.
10690         (sh_stub_unwind): New variable.
10691         (sh_gdbarch_init): Wire everything.
10692
10693 2012-02-27  Pedro Alves  <palves@redhat.com>
10694
10695         * linux-nat.c (pid_is_stopped): Delete, moved to common/.
10696         (linux_nat_post_attach_wait): Adjust to use
10697         linux_proc_pid_is_stopped.
10698         * common/linux-procfs.h (linux_proc_pid_is_stopped): Declare.
10699         * common/linux-procfs.c (linux_proc_pid_is_stopped): New function,
10700         based on pid_is_stopped from both linux-nat.c and
10701         gdbserver/linux-low.c, and renamed.
10702
10703 2012-02-24  Maciej W. Rozycki  <macro@codesourcery.com>
10704
10705         * remote.c (remote_watchpoint_addr_within_range): New function.
10706         (init_remote_ops): Use it.
10707
10708 2012-02-24  Maciej W. Rozycki  <macro@codesourcery.com>
10709
10710         * target.h (target_watchpoint_addr_within_range): Document macro.
10711
10712 2012-02-24  Pedro Alves  <palves@redhat.com>
10713
10714         * stack.c (set_last_displayed_sal): Issue internal_error instead
10715         of warning, and issue it after clearing the last displayed sal.
10716
10717 2012-02-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
10718             Pedro Alves  <palves@redhat.com>
10719
10720         * breakpoint.c (until_break_command): Install breakpoints after
10721         all frame manipulations.
10722
10723 2012-02-24  Luis Machado  <lgustavo@codesourcery.com>
10724
10725         * remote.c (remote_supports_cond_breakpoints): New forward
10726         declaration.
10727         (remote_add_target_side_condition): New function.
10728         (remote_insert_breakpoint): Add target-side breakpoint
10729         conditional if supported.
10730         (remote_insert_hw_breakpoint): Likewise.
10731         (init_remote_ops): Set to_supports_evaluation_of_breakpoint_conditions
10732         hook.
10733
10734         * target.c (update_current_target): Inherit
10735         to_supports_evaluation_of_breakpoint_conditions.
10736         Default to_supports_evaluation_of_breakpoint_conditions to return_zero.
10737
10738         * target.h (struct target_ops)
10739         <to_supports_evaluation_of_breakpoint_conditions>: New field.
10740         (target_supports_evaluation_of_breakpoint_conditions): New #define.
10741
10742         * breakpoint.c (get_first_locp_gte_addr): New forward declaration.
10743         (condition_evaluation_both, condition_evaluation_auto,
10744         condition_evaluation_host, condition_evaluation_target,
10745         condition_evaluation_enums, condition_evaluation_mode_1,
10746         condition_evaluation_mode): New static globals.
10747         (translate_condition_evaluation_mode): New function.
10748         (breakpoint_condition_evaluation_mode): New function.
10749         (gdb_evaluates_breakpoint_condition_p): New function.
10750         (ALL_BP_LOCATIONS_AT_ADDR): New helper macro.
10751         (mark_breakpoint_modified): New function.
10752         (mark_breakpoint_location_modified): New function.
10753         (set_condition_evaluation_mode): New function.
10754         (show_condition_evaluation_mode): New function.
10755         (bp_location_compare_addrs): New function.
10756         (get_first_location_gte_addr): New helper function.
10757         (set_breakpoint_condition): Free condition bytecode if locations
10758         has become unconditional.  Call mark_breakpoint_modified (...).
10759         (condition_command): Call update_global_location_list (1) for
10760         breakpoints.
10761         (breakpoint_xfer_memory): Use is_breakpoint (...).
10762         (is_breakpoint): New function.
10763         (parse_cond_to_aexpr): New function.
10764         (build_target_condition_list): New function.
10765         (insert_bp_location): Handle target-side conditional
10766         breakpoints and call build_target_condition_list (...).
10767         (update_inserted_breakpoint_locations): New function.
10768         (insert_breakpoint_locations): Handle target-side conditional
10769         breakpoints.
10770         (bpstat_check_breakpoint_conditions): Add comment.
10771         (bp_condition_evaluator): New function.
10772         (bp_location_condition_evaluator): New function.
10773         (print_breakpoint_location): Print information on where the condition
10774         will be evaluated.
10775         (print_one_breakpoint_location): Likewise.
10776         (init_bp_location): Call mark_breakpoint_location_modified (...) for
10777         breakpoint location.
10778         (force_breakpoint_reinsertion): New functions.
10779         (update_global_location_list): Handle target-side breakpoint
10780         conditions.
10781         Reinsert locations that are already inserted if conditions have
10782         changed.
10783         (bp_location_dtor): Free agent expression bytecode.
10784         (disable_breakpoint): Call mark_breakpoint_modified (...).
10785         Call update_global_location_list (...) with parameter 1 for breakpoints.
10786         (disable_command): Call mark_breakpoint_location_modified (...).
10787         Call update_global_location_list (...) with parameter 1 for breakpoints.
10788         (enable_breakpoint_disp): Call mark_breakpoint_modified (...).
10789         (enable_command): mark_breakpoint_location_modified (...).
10790         (_initialize_breakpoint): Update documentation and add
10791         condition-evaluation breakpoint subcommand.
10792
10793         * breakpoint.h: Include ax.h.
10794         (condition_list): New data structure.
10795         (condition_status): New enum.
10796         (bp_target_info) <cond_list>: New field.
10797         (bp_location) <condition_changed, cond_bytecode>: New fields.
10798         (is_breakpoint): New prototype.
10799
10800 2012-02-24  Luis Machado  <lgustavo@codesourcery.com>
10801
10802         * remote.c (remote_state) <cond_breakpoints>: New field.
10803         (PACKET_ConditionalBreakpoints): New enum.
10804         (remote_cond_breakpoint_feature): New function.
10805         (remote_protocol_features): Add new ConditionalBreakpoints entry.
10806         (remote_supports_cond_breakpoints): New function.
10807         (_initialize_remote): Add new packet configuration for
10808         target-side conditional breakpoints.
10809
10810 2012-02-24  Luis Machado  <lgustavo@codesourcery.com>
10811
10812         * NEWS: Mention target-side conditional breakpoint support,
10813         new condition-evaluation breakpoint subcommand and remote
10814         packet extensions.
10815
10816 2012-02-24  Luis Machado  <lgustavo@codesourcery.com>
10817
10818         * breakpoint.c (bp_location_compare): Sort by pspace before sorting by
10819         number.
10820
10821 2012-02-24  Thomas Schwinge  <thomas@codesourcery.com>
10822
10823         * sh-tdep.c (sh_skip_prologue): Use skip_prologue_using_sal.
10824         (after_prologue): Remove.
10825
10826 2012-02-23  Tom Tromey  <tromey@redhat.com>
10827
10828         * jv-valprint.c (java_val_print): Remove dead code.
10829
10830 2012-02-23  Tristan Gingold  <gingold@adacore.com>
10831
10832         * ada-tasks.c (struct ada_tasks_inferior_data): Add
10833         known_tasks_element and known_tasks_length fields.
10834         (read_known_tasks_array): Change argument type.  Use pointer type
10835         and number of elements from DATA.  Adjust.
10836         (read_known_tasks_list): Likewise.
10837         (get_known_tasks_addr): Remove.
10838         (ada_set_current_inferior_known_tasks_addr): Renamed to ...
10839         (ada_tasks_inferior_data_sniffer): ... this.  Use symtab for element
10840         type and array length.  Merge former get_known_tasks_addr code.
10841
10842 2012-02-23  Jan Kratochvil  <jan.kratochvil@redhat.com>
10843
10844         PR backtrace/13716
10845         * infcmd.c (finish_forward): New variable frame_id, initialize it, use
10846         it after set_momentary_breakpoint.
10847
10848 2012-02-22  Sterling Augustine  <saugustine@google.com>
10849
10850         PR 13689:
10851         * breakpoint.c (watchpoint_exp_is_constant): Add UNOP_CAST to switch.
10852
10853 2012-02-22  Gary Benson  <gbenson@redhat.com>
10854
10855         * dwarf2read.c (dwarf2_read_index): Correct misspelling.
10856         (find_slot_in_mapped_hash): Likewise.
10857
10858 2012-02-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
10859
10860         PR build/13638
10861         * configure.ac (MAKEINFO): Replace AC_CHECK_PROG by AC_ARG_VAR.
10862         (MAKEINFOFLAGS): Replace static string by AC_ARG_VAR.
10863         * configure: Regenerate.
10864
10865 2012-02-21  Tristan Gingold  <gingold@adacore.com>
10866             Pedro Alves  <palves@redhat.com>
10867
10868         * ia64-tdep.c: Do not include libunwind-ia64.h.
10869         * libunwind-frame.h: Remove #ifdef HAVE_LIBUNWIND_H guard.
10870         Include libunwind-ia64.h instead of libunwind.h.
10871         * configure.ac (--with-libunwind, $enable_libunwind): Don't check
10872         for libunwind.h existence.
10873         * configure, config.in: Regenerate.
10874
10875 2012-02-21  Anton Gorenkov  <xgsa@yandex.ru>
10876
10877         * c-valprint.c (c_value_print): Use value_rtti_indirect_type
10878         instead of value_rtti_target_type.
10879         * eval.c (evaluate_subexp_standard): Use value_rtti_indirect_type
10880         instead of value_rtti_target_type.
10881         * typeprint.c (whatis_exp): Use value_rtti_indirect_type instead of
10882         value_rtti_target_type.
10883         * valops.c (value_ind): Extract function readjust_indirect_value_type.
10884         (value_rtti_target_type): Rename to ...
10885         (value_rtti_indirect_type): ... here and make it indirect.  Update
10886         function comment.
10887         * value.c (readjust_indirect_value_type): New function.
10888         (coerce_ref): Support for enclosing type setting for references
10889         with readjust_indirect_value_type.
10890         * value.h (readjust_value_type): New declaration.
10891         (value_rtti_target_type): Rename to ...
10892         (value_rtti_indirect_type): ... here.
10893
10894 2012-02-21  Anton Gorenkov  <xgsa@yandex.ru>
10895
10896         * MAINTAINERS (Write After Approval): Add myself to the list.
10897
10898 2012-02-20  Doug Evans  <dje@google.com>
10899
10900         * objfiles.c (add_to_objfile_sections): Remove outdated comments.
10901         Rename objfile_p_char parameter to objfilep.
10902         (build_objfile_section_table): Result is now void.  All callers
10903         updated.
10904         * objfiles.h (struct objfile): Tweak comments, whitespace.
10905         (build_objfile_section_table): Update.
10906
10907         * elfread.c (elf_symfile_segments): Fix warning text.
10908
10909 2012-02-20  Tom Tromey  <tromey@redhat.com>
10910
10911         PR gdb/13498:
10912         * dwarf2read.c (dw2_expand_symtabs_matching): Only visit a
10913         particular set of file names once.
10914         (dw2_map_symbol_filenames): Likewise.
10915
10916 2012-02-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
10917
10918         Code cleanup.
10919         * main.c (write_files): Remove the declaration.
10920         (external_editor_command): Move the declaration ...
10921         [GDBTK] (external_editor_command): ... here.  Fix the comment.
10922
10923 2012-02-20  Tom Tromey  <tromey@redhat.com>
10924
10925         * dwarf2read.c (dw2_map_symtabs_matching_filename): Remove
10926         extraneous block.
10927
10928 2012-02-20  Tristan Gingold  <gingold@adacore.com>
10929
10930         * darwin-nat.h (enum darwin_msg_state): Add comments.
10931
10932 2012-02-20  Tristan Gingold  <gingold@adacore.com>
10933
10934         * amd64-darwin-tdep.c (x86_darwin_init_abi_64): Fix jb_pc_offset
10935         value.
10936
10937 2012-20-18  Joel Brobecker  <brobecker@adacore.com>
10938
10939         * breakpoint.c (watchpoint_exp_is_const): Add missing empty line
10940         between function description and implementation.
10941
10942 2012-02-17  Tom Tromey  <tromey@redhat.com>
10943
10944         PR python/12070:
10945         * python/py-event.c (event_object_getset): New global.
10946         (event_object_type): Reference it.
10947         * python/py-type.c (field_object_getset): New global.
10948         (field_object_type): Reference it.
10949         * python/python-internal.h (gdb_py_generic_dict): Declare.
10950         * python/py-utils.c (gdb_py_generic_dict): New function.
10951
10952 2012-02-17  Tristan Gingold  <gingold@adacore.com>
10953
10954         * solib-darwin.c (darwin_current_sos): Check magic and filetype
10955
10956 2012-02-17  Thomas Schwinge  <thomas@codesourcery.com>
10957
10958         * sh-tdep.c (sh_is_renesas_calling_convention): Fix handling of
10959         TYPE_CALLING_CONVENTION annotation.
10960
10961 2012-02-16  Kevin Buettner  <kevinb@redhat.com>
10962
10963         * MAINTAINERS: Add rx to target ISA section.
10964         * Makefile.in (ALL_TARGET_OBS): Add rx-tdep.o.
10965         (ALLDEPFILES): Add rx-tdep.c.
10966
10967 2012-02-16  Tom Tromey  <tromey@redhat.com>
10968
10969         * symfile.c (symbol_file_add_main_1): Use inferior's
10970         symfile_flags.
10971         * solib.c (solib_read_symbols): Use inferior's symfile_flags.
10972         * linux-nat.c (linux_child_follow_fork): Set symfile_flags on
10973         inferior.
10974         * infrun.c (handle_vfork_child_exec_or_exit): Set symfile_flags on
10975         inferior.
10976         (follow_exec): Use inferior's symfile_flags.
10977         * inferior.h (struct inferior) <symfile_flags>: New field.
10978
10979 2012-02-16  Mike Frysinger  <vapier@gentoo.org>
10980
10981         PR gdb/9734:
10982         * remote-sim.c (gdbsim_create_inferior): Call error() when
10983         sim_create_inferior() fails.
10984
10985 2012-02-16  Josh Matthews  <josh@joshmatthews.net>
10986
10987         * machoread.c: Initialize nbr_syms to avoid warnings-as-errors failure.
10988
10989 2012-02-16  Tom Tromey  <tromey@redhat.com>
10990
10991         PR c++/13653:
10992         * thread.c (struct current_thread_cleanup) <was_removable>: New
10993         field.
10994         (restore_current_thread_cleanup_dtor): Restore 'removable' field.
10995         (make_cleanup_restore_current_thread): Initialize new field.
10996
10997 2012-02-15  Kevin Buettner  <kevinb@redhat.com>
10998
10999         * MAINTAINERS: Add rl78 to target ISA section.
11000         * Makefile.in (ALL_TARGET_OBS): Add rl78-tdep.o.
11001         (ALLDEPFILES): Add rl78-tdep.c.
11002         * NEWS: Mention rl78 as a new target.
11003
11004 2012-02-15  Aleksandar Ristovski  <aristovski@qnx.com>
11005
11006         * frame.c (find_frame_sal): Initialize sal->pspace field from frame
11007         data.
11008         * stack.c (set_last_displayed_sal): Validate that PSPACE is not NULL.
11009
11010 2012-02-15  Tom Tromey  <tromey@redhat.com>
11011
11012         PR gdb/12659:
11013         * infcmd.c (registers_info): Print just the current register's
11014         name.
11015
11016 2012-02-15  Tom Tromey  <tromey@redhat.com>
11017
11018         * python/py-symbol.c (sympy_value): Use _().
11019
11020 2012-02-15  Pedro Alves  <palves@redhat.com>
11021
11022         * remote.c (remote_detach_1, extended_remote_attach_1): Tweak
11023         output to be like native targets'.
11024         (remote_pid_to_str): Special case the null ptid.
11025
11026 2012-02-14  Stan Shebs  <stan@codesourcery.com>
11027
11028         * NEWS: Mention enable count command.
11029         * breakpoint.h (struct breakpoint): New field enable_count.
11030         * breakpoint.c (enable_breakpoint_disp): Add count argument.
11031         (enable_breakpoint): Add arg to call.
11032         (struct disp_data): New struct.
11033         (do_enable_breakpoint_disp): Interp arg as disp_data and unpack.
11034         (do_map_enable_once_breakpoint): Create a struct and pass it.
11035         (do_map_enable_delete_breakpoint): Ditto.
11036         (do_map_enable_count_breakpoint): New function.
11037         (enable_count_command): New function.
11038         (bpstat_stop_status): Decrement enable_count.
11039         (print_one_breakpoint_location): Report enable count.
11040         (_initialize_breakpoint): Add enable count command.
11041
11042 2012-02-14  Kevin Buettner  <kevinb@redhat.com>
11043
11044         * rl78-tdep.c (reggroups.h): Include.
11045         (RL78_RAW_BANK0_R0_REGNUM, RL78_RAW_BANK0_R1_REGNUM)
11046         (RL78_RAW_BANK0_R2_REGNUM, RL78_RAW_BANK0_R3_REGNUM)
11047         (RL78_RAW_BANK0_R4_REGNUM, RL78_RAW_BANK0_R5_REGNUM)
11048         (RL78_RAW_BANK0_R6_REGNUM, RL78_RAW_BANK0_R7_REGNUM)
11049         (RL78_RAW_BANK1_R0_REGNUM, RL78_RAW_BANK1_R1_REGNUM)
11050         (RL78_RAW_BANK1_R2_REGNUM, RL78_RAW_BANK1_R3_REGNUM)
11051         (RL78_RAW_BANK1_R4_REGNUM, RL78_RAW_BANK1_R5_REGNUM)
11052         (RL78_RAW_BANK1_R6_REGNUM, RL78_RAW_BANK1_R7_REGNUM)
11053         (RL78_RAW_BANK2_R0_REGNUM, RL78_RAW_BANK2_R1_REGNUM)
11054         (RL78_RAW_BANK2_R2_REGNUM, RL78_RAW_BANK2_R3_REGNUM)
11055         (RL78_RAW_BANK2_R4_REGNUM, RL78_RAW_BANK2_R5_REGNUM)
11056         (RL78_RAW_BANK2_R6_REGNUM, RL78_RAW_BANK2_R7_REGNUM)
11057         (RL78_RAW_BANK3_R0_REGNUM, RL78_RAW_BANK3_R1_REGNUM)
11058         (RL78_RAW_BANK3_R2_REGNUM, RL78_RAW_BANK3_R3_REGNUM)
11059         (RL78_RAW_BANK3_R4_REGNUM, RL78_RAW_BANK3_R5_REGNUM)
11060         (RL78_RAW_BANK3_R6_REGNUM, RL78_RAW_BANK3_R7_REGNUM): Add to
11061         beginning of register list.
11062         (RL78_BANK0_R0_REGNUM, RL78_BANK0_R1_REGNUM, RL78_BANK0_R2_REGNUM)
11063         (RL78_BANK0_R3_REGNUM, RL78_BANK0_R4_REGNUM, RL78_BANK0_R5_REGNUM)
11064         (RL78_BANK0_R6_REGNUM, RL78_BANK0_R7_REGNUM, RL78_BANK1_R0_REGNUM)
11065         (RL78_BANK1_R1_REGNUM, RL78_BANK1_R2_REGNUM, RL78_BANK1_R3_REGNUM)
11066         (RL78_BANK1_R4_REGNUM, RL78_BANK1_R5_REGNUM, RL78_BANK1_R6_REGNUM)
11067         (RL78_BANK1_R7_REGNUM, RL78_BANK2_R0_REGNUM, RL78_BANK2_R1_REGNUM)
11068         (RL78_BANK2_R2_REGNUM, RL78_BANK2_R3_REGNUM, RL78_BANK2_R4_REGNUM)
11069         (RL78_BANK2_R5_REGNUM, RL78_BANK2_R6_REGNUM, RL78_BANK2_R7_REGNUM)
11070         (RL78_BANK3_R0_REGNUM, RL78_BANK3_R1_REGNUM, RL78_BANK3_R2_REGNUM)
11071         (RL78_BANK3_R3_REGNUM, RL78_BANK3_R4_REGNUM, RL78_BANK3_R5_REGNUM)
11072         (RL78_BANK3_R6_REGNUM, RL78_BANK3_R7_REGNUM): Move these into
11073         the pseudo registers.  Rearrange other pseudo registers too so
11074         that the bank registers appear at the end.
11075         (rl78_register_type): Account for the fact that the byte sized
11076         bank registers are now pseudo-registers.
11077         (rl78_register_name): Rearrange the register name array.  Make
11078         initial set of raw banked registers inaccessible.
11079         (rl78_register_reggroup_p, rl78_register_sim_regno): New functions.
11080         (rl78_pseudo_register_read, rl78_pseudo_register_write): Add
11081         case for copying bytes back and forth between raw and pseudo
11082         versions of the banked registers.  Update other cases to reflect
11083         the changed names.
11084         (rl78_return_value): Update to account for changed names of
11085         raw registers.
11086         (rl78_gdbarch_init): Register rl78_register_reggroup_p() and
11087         rl78_register_sim_regno().
11088
11089 2012-02-14  Kevin Buettner  <kevinb@redhat.com>
11090
11091         * rl78-tdep.c (rl78_skip_prologue): Make `const' the type of
11092         the name parameter being passed to find_pc_partial_function().
11093
11094 2012-02-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
11095
11096         * MAINTAINERS: Step down from being ia64 target maintainer.
11097
11098 2012-02-12  Jan Kratochvil  <jan.kratochvil@redhat.com>
11099
11100         * ppc-linux-nat.c (fetch_register, store_register): Fix GCC aliasing
11101         compilation warning.
11102
11103 2012-02-12  Jan Kratochvil  <jan.kratochvil@redhat.com>
11104
11105         Fix crash on loaded shlibs without loaded exec_bfd.
11106         * exec.c (exec_files_info): Do not crash on NULL EXEC_BFD.
11107         (set_section_command): Replace exec_bfd by p->bfd.
11108
11109 2012-02-10  Tom Tromey  <tromey@redhat.com>
11110
11111         * linespec.c (decode_line_internal): Skip symtabs_from_filename
11112         when we have a C++ qualified name.
11113
11114 2012-02-10  Pedro Alves  <palves@redhat.com>
11115
11116         * inferior.c (inferior_pid_to_str): New.
11117         (print_inferior, inferior_command): Use it.
11118
11119 2012-02-10  Pedro Alves  <palves@redhat.com>
11120
11121         * configure.ac (HAVE_ELF test): Put the old CFLAGS at the end of
11122         the test CFLAGS.
11123         * configure: Regenerate.
11124
11125 2012-02-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
11126
11127         * linespec.c (decode_line_internal): Fix comment correctness.
11128
11129 2012-02-09  Valery Khromov  <valery.khromov@gmail.com>
11130
11131         PR gdb/12953
11132         * Makefile.in (HFILES_NO_SRCDIR): Add amd64bsd-nat.h.
11133         * amd64bsd-nat.c: Add support for debug registers (adapted from
11134         i386bsd-nat.c).
11135         [HAVE_PT_GETDBREGS] (amd64bsd_dr_get, amd64bsd_dr_set)
11136         (amd64bsd_dr_set_control, amd64bsd_dr_set_addr)
11137         (amd64bsd_dr_get_addr, amd64bsd_dr_get_status)
11138         (amd64bsd_dr_get_control): New functions.
11139         * amd64bsd-nat.h: New file (adapted from i386bsd-nat.h).
11140         * amd64fbsd-nat.c: Include "amd64bsd-nat.h", "i386-nat.h".
11141         [HAVE_PT_GETDBREGS] (_initialize_amd64fbsd_nat): Add hardware
11142         watchpoints initialization.
11143         * config/i386/fbsd64.mh (NATDEPFILES): Add i386-nat.o.
11144
11145 2012-02-09  Jan Kratochvil  <jan.kratochvil@redhat.com>
11146
11147         * gdb-gdb.py (StructMainTypePrettyPrinter) <struct_field_img>: Print
11148         flds_bnds.fields.
11149         (StructMainTypePrettyPrinter) <bounds_img>: Print flds_bnds.bounds.
11150
11151 2012-02-09  Jan Kratochvil  <jan.kratochvil@redhat.com>
11152
11153         * breakpoint.c (bp_location_compare): Fix comment.  Reindent the code.
11154
11155 2012-02-08  Joel Brobecker  <brobecker@adacore.com>
11156
11157         * language.h (symbol_name_cmp_ftype): Renames
11158         symbol_name_match_p_ftype.
11159         (struct language_defn)[la_get_symbol_name_cmp]: Renames
11160         la_get_symbol_name_match_p.
11161         * ada-lang.c (ada_get_symbol_name_cmp): Renames
11162         ada_get_symbol_name_match_p.  Update comment.
11163         (ada_language_defn)[la_get_symbol_name_cmp]: Update value.
11164         * linespec.c (struct symbol_matcher_data)[symbol_name_cmp]:
11165         Renames symbol_name_match_p.  Update field type.
11166         (iterate_name_matcher, iterate_over_all_matching_symtabs): Adjust.
11167         * c-lang.c, d-lang.c, f-lang.c, jv-lang.c, m2-lang.c, objc-lang.c,
11168         opencl-lang.c, p-lang.c: Replace "la_get_symbol_name_match_p" by
11169         "la_get_symbol_name_cmp" in comments.
11170         * language.c: Likewise.
11171
11172 2012-02-08  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
11173
11174         * amd64-sol2-tdep.c (amd64_sol2_gregset_reg_offset): Correct
11175         %eflags offset.
11176         * i386-sol2-nat.c (amd64_sol2_gregset64_reg_offs)
11177         (amd64_sol2_gregset32_reg_offs): Likewise.
11178
11179 2012-02-08  Joel Brobecker  <brobecker@adacore.com>
11180
11181         * solib-darwin.c (darwin_bfd_open): Make sure that the filename
11182         of the returned BFD is allocated by GDB.
11183
11184 2012-02-07  Tom Tromey  <tromey@redhat.com>
11185
11186         PR python/12027:
11187         * python/python-internal.h (frame_object_type): Declare.
11188         * python/py-symbol.c (sympy_needs_frame): New function.
11189         (sympy_value): New function.
11190         (symbol_object_getset): Add "needs_frame".
11191         (symbol_object_methods): Add "value".
11192         * python/py-frame.c (frame_object_type): No longer static.
11193
11194 2012-02-07  Tom Tromey  <tromey@redhat.com>
11195
11196         PR python/13599:
11197         * python/py-symbol.c (sympy_line): New function.
11198         (symbol_object_getset): Add "line".
11199
11200 2012-02-07  Tom Tromey  <tromey@redhat.com>
11201
11202         * charset.c (find_charset_names): Check 'in' against NULL.
11203
11204 2012-02-06  Doug Evans  <dje@google.com>
11205
11206         * gdbtypes.h (struct main_type): Change type of name,tag_name,
11207         and fields.name members from char * to const char *.  All uses updated.
11208         (struct cplus_struct_type): Change type of fn_fieldlists.name member
11209         from char * to const char *.  All uses updated.
11210         (type_name_no_tag): Update.
11211         (lookup_unsigned_typename, lookup_signed_typename): Update.
11212         * gdbtypes.c (type_name_no_tag): Change result type
11213         from char * to const char *.  All callers updated.
11214         (lookup_unsigned_typename, lookup_signed_typename): Change type of
11215         name parameter from char * to const char *.
11216         * symtab.h (struct cplus_specific): Change type of demangled_name
11217         member from char * to const char *.  All uses updated.
11218         (struct general_symbol_info): Change type of name and
11219         mangled_lang.demangled_name members from char * to const char *.
11220         All uses updated.
11221         (symbol_get_demangled_name, symbol_natural_name): Update.
11222         (symbol_demangled_name, symbol_search_name): Update.
11223         * symtab.c (symbol_get_demangled_name): Change result type
11224         from char * to const char *.  All callers updated.
11225         (symbol_natural_name, symbol_demangled_name): Ditto.
11226         (symbol_search_name): Ditto.
11227         (completion_list_add_name): Change type of symname,sym_text,
11228         text,word parameters from char * to const char *.
11229         (completion_list_objc_symbol): Change type of sym_text,
11230         text,word parameters from char * to const char *.
11231         * ada-lang.c (find_struct_field): Change type of name parameter
11232         from char * to const char *.
11233         (encoded_ordered_before): Similarly for N0,N1 parameters.
11234         (old_renaming_is_invisible): Similarly for function_name parameter.
11235         (ada_type_name): Change result type from char * to const char *.
11236         All callers updated.
11237         * ada-lang.h (ada_type_name): Update.
11238         * buildsym.c (hashname): Change type of name parameter
11239         from char * to const char *.
11240         * buildsym.h (hashname): Update.
11241         * dbxread.c (end_psymtab): Change type of include_list parameter
11242         from char ** to const char **.
11243         * dwarf2read.c (determine_prefix): Change result type
11244         from char * to const char *.  All callers updated.
11245         * f-lang.c (find_common_for_function): Change type of name, funcname
11246         parameters from char * to const char *.
11247         * f-lang.c (find_common_for_function): Update.
11248         * f-valprint.c (list_all_visible_commons): Change type of funcname
11249         parameters from char * to const char *.
11250         * gdbarch.sh (static_transform_name): Change type of name parameter
11251         and result from char * to const char *.
11252         * gdbarch.c: Regenerate.
11253         * gdbarch.h: Regenerate.
11254         * i386-sol2-tdep.c (i386_sol2_static_transform_name): Change type
11255         of name parameter from char * to const char *.
11256         * jv-lang.c (java_primitive_type_from_name): Ditto.
11257         (java_demangled_signature_length): Similarly for signature parameter.
11258         (java_demangled_signature_copy): Ditto.
11259         (java_demangle_type_signature): Ditto.
11260         * jv-lang.h (java_primitive_type_from_name): Update.
11261         (java_demangle_type_signature): Update.
11262         * objc-lang.c (specialcmp): Change type of a,b parameters
11263         from char * to const char *.
11264         * p-lang.c (is_pascal_string_type): Change type of arrayname parameter
11265         from char * to const char *.  All callers updated.
11266         * p-lang.h (is_pascal_string_type): Update.
11267         * solib-frv.c (find_canonical_descriptor_in_load_object): Change type
11268         of name parameter from char * to const char *.
11269         * sparc-sol2-tdep.c (sparc_sol2_static_transform_name): Ditto.
11270         * utils.c (fprintf_symbol_filtered): Ditto.
11271         * defs.h (fprintf_symbol_filtered): Update.
11272         * sparc-tdep.h (sparc_sol2_static_transform_name): Update.
11273         * stabsread.h (end_psymtab): Update.
11274         * stack.c (find_frame_funname): Change type of funname parameter
11275         from char ** to const char **.
11276         * stack.h (find_frame_funname): Update.
11277         * typeprint.c (type_print): Change type of varstring parameter
11278         from char * to const char *.
11279         * value.h (type_print): Update.
11280         * xcoffread.c (xcoff_start_psymtab): Change type of filename parameter
11281         from char * to const char *.  All callers updated.
11282         (xcoff_end_psymtab): Change type of include_list parameter
11283         from char ** to const char **.  All callers updated.
11284         (swap_sym): Similarly for name parameter.  All callers updated.
11285         * coffread.c (patch_type): Add (char*) cast to xfree parameter.
11286         Use xstrdup.
11287         (process_coff_symbol): Use xstrdup.
11288         * stabsread.c (stabs_method_name_from_physname): Renamed from
11289         update_method_name_from_physname.  Change result type from void
11290         to char *.  All callers updated.
11291         (read_member_functions): In has_destructor case, store name in objfile
11292         obstack instead of malloc space.  In !has_stub case, fix mem leak.
11293
11294 2012-02-06  Luca Pizzamiglio  <luca.pizzamiglio@gmail.com>
11295
11296         * configure: Rebuild.
11297         * configure.ac: Put -L../bfd and -L../libiberty at the front of
11298         LDFLAGS.
11299
11300 2012-02-03  Kevin Buettner  <kevinb@redhat.com>
11301
11302         * configure.tgt (rl78-*-elf): New target.
11303         * rl78-tdep.c: New file.
11304
11305 2012-02-03  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
11306
11307         * remote.c (remote_rcmd): Use getpkt_sane to detect timeout
11308         and continue the loop.  Add QUIT statement.
11309
11310 2012-02-03  Tom Tromey  <tromey@redhat.com>
11311
11312         PR gdb/13596:
11313         * solib.h (gdb_bfd_lookup_symbol_from_symtab): Rename from
11314         bfd_lookup_symbol_from_symtab.
11315         * solib-pa64.c (pa64_solib_create_inferior_hook): Use
11316         gdb_bfd_lookup_symbol_from_symtab.
11317
11318 2012-02-03  Joel Brobecker  <brobecker@adacore.com>
11319
11320         * mi/mi-cmd-stack.c (list_args_or_locals): For argument symbols,
11321         use SYMBOL_LINKAGE_NAME to find the corresponding non-argument
11322         symbol.  Add assertion that sym2 is never NULL.
11323
11324 2012-02-02  Doug Evans  <dje@google.com>
11325
11326         * blockframe.c (find_pc_partial_function_gnu_ifunc): Change type of
11327         "name" parameter to const char ** from char **.  All callers updated.
11328         (find_pc_partial_function): Ditto.
11329         (cache_pc_function_name): Change type to const char * from char *.
11330         * symtab.h ((find_pc_partial_function_gnu_ifunc): Update.
11331         (find_pc_partial_function): Update.
11332         * alpha-tdep.h (struct gdbarch_tdep, member pc_in_sigtramp): Change
11333         type of "name" parameter to const char * from char *.
11334         All uses updated.
11335         * arch-utils.c (generic_in_solib_return_trampoline): Change
11336         type of "name" parameter to const char * from char *.
11337         * arch-utils.h (generic_in_solib_return_trampoline): Update.
11338         * frv-linux-tdep.c (frv_linux_pc_in_sigtramp): Change
11339         type of "name" parameter to const char * from char *.
11340         * gdbarch.sh (in_solib_return_trampoline): Ditto.
11341         * gdbarch.c: Regenerate.
11342         * gdbarch.h: Regenerate.
11343         * hppa-hpux-tdep.c (hppa_hpux_in_solib_return_trampoline): Update.
11344         * rs6000-tdep.c (rs6000_in_solib_return_trampoline): Update.
11345         * m32r-linux-tdep.c (m32r_linux_pc_in_sigtramp): Change
11346         type of "name" parameter to const char * from char *.
11347         * skip.c (skip_function_pc): Ditto.
11348         * sparc-sol2-tdep.c (sparc_sol2_pc_in_sigtramp): Ditto.
11349         * sparc-tdep.h (sparc_sol2_pc_in_sigtramp): Update.
11350         * sparc64fbsd-tdep.c (sparc64fbsd_pc_in_sigtramp): Ditto.
11351         * sparc64nbsd-tdep.c (sparc64nbsd_pc_in_sigtramp): Ditto.
11352         * sparc64obsd-tdep.c (sparc64obsd_pc_in_sigtramp): Ditto.
11353         * sparcnbsd-tdep.c (sparc32nbsd_pc_in_sigtramp): Ditto.
11354         * sparcobsd-tdep.c (sparc32obsd_pc_in_sigtramp): Ditto.
11355         * nbsd-tdep.c (nbsd_pc_in_sigtramp): Similary for "func_name".
11356         * nbsd-tdep.h (nbsd_pc_in_sigtramp): Update.
11357
11358 2012-02-02  Pedro Alves  <palves@redhat.com>
11359
11360         * remote.c (remote_get_min_fast_tracepoint_insn_len): Return 0 if
11361         the current inferior has no execution.  Make sure the current
11362         remote process matches gdb's current inferior.
11363
11364 2012-02-02  Tom Tromey  <tromey@redhat.com>
11365
11366         PR gdb/13405:
11367         * tui/tui-win.c (parse_scrolling_args): Don't write to possibly
11368         read-only memory.
11369
11370 2012-02-02  Tom Tromey  <tromey@redhat.com>
11371
11372         PR gdb/9307:
11373         * symtab.c (lookup_language_this): Set block_found.
11374
11375 2012-02-01  Tom Tromey  <tromey@redhat.com>
11376
11377         PR gdb/13431:
11378         * jit.c (struct jit_inferior_data): Rewrite.
11379         (struct jit_objfile_data): New.
11380         (get_jit_objfile_data): New function.
11381         (add_objfile_entry): Update.
11382         (jit_read_descriptor): Return int.  Replace descriptor_addr
11383         argument with inf_data.  Update.  Don't call error.
11384         (jit_breakpoint_re_set_internal): Reorder logic.  Update.  Look up
11385         descriptor here.
11386         (jit_inferior_init): Don't look up descriptor.  Don't call error.
11387         (jit_reset_inferior_data_and_breakpoints)
11388         (jit_inferior_created_observer): Remove.
11389         (jit_inferior_exit_hook): Update.
11390         (jit_executable_changed_observer): Remove.
11391         (jit_event_handler): Update.
11392         (free_objfile_data): Reset inferior data if needed.
11393         (_initialize_jit): Update.
11394
11395 2012-02-01  Tom Tromey  <tromey@redhat.com>
11396
11397         * jit.c (bfd_open_from_target_memory): Move higher in file.
11398
11399 2012-02-01  Tristan Gingold  <gingold@adacore.com>
11400
11401         * libunwind-frame.c (libunwind_load): Display message if dlopen
11402         failed.
11403
11404 2012-02-01  Gary Benson  <gbenson@redhat.com>
11405
11406         * symtab.h (symbol_found_callback_ftype): New typedef.
11407         (iterate_over_symbols): Use the above.
11408         * symtab.c (iterate_over_symbols): Likewise.
11409         * language.h (language_defn->la_iterate_over_symbols): Likewise.
11410         * ada-lang.c (ada_iterate_over_symbols): Likewise.
11411         * linespec.c (iterate_over_all_matching_symtabs): Likewise.
11412         (iterate_name_matcher): Document return values.
11413         (collect_one_symbol): Likewise.
11414         (collect_function_symbols): Likewise.
11415         (collect_symbols): Likewise.
11416
11417 2012-02-01  Tom Tromey  <tromey@redhat.com>
11418
11419         * ada-lang.c (resolve_subexp): Update.
11420         (ada_lookup_symbol_list): Add 'full_search' argument.
11421         (ada_iterate_over_symbols): Pass 0 as full_search argument to
11422         ada_lookup_symbol_list.
11423         (ada_lookup_encoded_symbol): Update.
11424         (get_var_value): Update.
11425         * ada-exp.y (block_lookup): Update.
11426         (write_var_or_type): Update.
11427         (write_name_assoc): Update.
11428         * ada-lang.h (ada_lookup_symbol_list): Update.
11429
11430 2012-01-31  Tom Tromey  <tromey@redhat.com>
11431
11432         * language.h (struct language_defn) <la_iterate_over_symbols>: Fix
11433         comment.
11434
11435 2012-01-31  Doug Evans  <dje@google.com>
11436
11437         * symtab.h: Remove outdated comment.
11438         (SYMBOL_MATCHES_NATURAL_NAME): Delete.
11439
11440 2012-02-01  Josh Matthews  <josh@joshmatthews.net>  (tiny change)
11441
11442         Fix build error in Darwin port.
11443         * i386-darwin-nat.c: Include i386-nat.h.
11444
11445 2012-01-30  Tom Tromey  <tromey@redhat.com>
11446
11447         PR breakpoints/13568:
11448         * dwarf2read.c (dwarf_decode_macro_bytes): Add 'include_hash'
11449         argument.  Check for recursive includes.
11450         (dwarf_decode_macros): Create an include hash.
11451
11452 2012-01-30  Michael Eager  <eager@eagercon.com>
11453
11454         * configure.tgt (powerpc-*-linux*): Add glibc-tdep.o.
11455         * ppc-linux-tdep.c: Include glibc-tdep.h.
11456         (powerpc32_plt_stub, powerpc32_plt_stub_so): Add PLT stub templates.
11457         (powerpc_linux_in_plt_stub): New function.
11458         (powerpc_linux_in_dynsym_resolve_code): New function.
11459         (ppc_skip_trampoline_code): New function.
11460         (ppc_linux_init_abi): Use PPC specific functions rather than generic.
11461         Use glibc_skip_solib_resolver.
11462
11463 2012-01-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
11464
11465         Code cleanup: Make 1440 bytes of data segment read-only.
11466         * arch-utils.c (endian_enum): Make it const char *const [].
11467         * arm-tdep.c (fp_model_strings, arm_abi_strings, arm_mode_strings):
11468         Likewise.
11469         * breakpoint.c (always_inserted_enums): Likewise.
11470         * cli/cli-cmds.c (script_ext_enums): Likewise.
11471         * cli/cli-decode.c (add_setshow_enum_cmd, complete_on_enum): Make the
11472         enumlist parameter const char *const *.
11473         * cli/cli-decode.h (struct cmd_list_element): Make the enums field
11474         const char *const *.
11475         * command.h (complete_on_enum, add_setshow_enum_cmd): Make the enumlist
11476         parameter const char *const *.
11477         * cris-tdep.c (cris_modes): Make it const char *const [].
11478         * filesystem.c (target_file_system_kinds): Likewise.
11479         * i386-tdep.c (valid_flavors, valid_conventions): Likewise.
11480         * infrun.c (follow_fork_mode_kind_names, follow_exec_mode_names)
11481         (can_use_displaced_stepping_enum, scheduler_enums)
11482         (exec_direction_names): Likewise.
11483         * language.c (_initialize_language): Make the type_or_range_names and
11484         case_sensitive_names variables const char *const [].
11485         * mips-tdep.c (mips_abi_strings): Make it const char *const [].
11486         * python/python.c (python_excp_enums): Likewise.
11487         * remote.c (interrupt_sequence_modes): Likewise.
11488         * rs6000-tdep.c (powerpc_vector_strings): Likewise.
11489         * serial.c (logbase_enums): Likewise.
11490         * sh-tdep.c (sh_cc_enum): Likewise.
11491         * stack.c (print_frame_arguments_choices, print_entry_values_choices):
11492         Likewise.
11493         * symtab.c (multiple_symbols_modes): Likewise.
11494         * tui/tui-win.c (tui_border_kind_enums, tui_border_mode_enums):
11495         Likewise.
11496         * utils.c (internal_problem_modes): Likewise.
11497
11498 2012-01-27  Jan Kratochvil  <jan.kratochvil@redhat.com>
11499
11500         Fix the 2012-01-26 regression by la_get_symbol_name_match_p.
11501         * linespec.c (iterate_name_matcher): Negate the SYMBOL_NAME_MATCH_P
11502         result.
11503
11504 2012-01-27  Doug Evans  <dje@google.com>
11505
11506         * configure.ac (with_python): Fix absolute path handling for win32.
11507         * configure: Regenerate.
11508
11509 2012-01-26  Doug Evans  <dje@google.com>
11510
11511         * symtab.c: Whitespace cleanup, no code changes.
11512
11513         * symtab.c (lookup_symbol_in_language): Improve comment.
11514         (lookup_symbol_aux): Fix comment.
11515
11516         * psymtab.c (add_psymbol_to_list): Result is now "void".
11517         * psympriv.h (add_psymbol_to_list): Update.
11518
11519         * dwarf2read.c (add_partial_symbol): Delete local psym, unused.
11520
11521 2012-01-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
11522
11523         Do not open script filenames twice.
11524         * cli/cli-cmds.c (source_script_from_stream): Pass to
11525         source_python_script also STREAM.
11526         * python/py-auto-load.c (source_section_scripts): Pass to
11527         source_python_script_for_objfile also STREAM.
11528         (auto_load_objfile_script): Pass to source_python_script_for_objfile
11529         also INPUT.
11530         * python/python-internal.h (source_python_script_for_objfile): New
11531         parameter file, rename parameter file to filename.
11532         * python/python.c (python_run_simple_file): Call PyRun_SimpleFile
11533         instead if !_WIN32.  Update the function comment.
11534         (source_python_script, source_python_script_for_objfile)
11535         (source_python_script): New parameter file, rename parameter file to
11536         filename.  Pass FILENAME to python_run_simple_file.
11537         * python/python.h (source_python_script): New parameter file, rename
11538         parameter file to filename.
11539
11540 2012-01-26  Pedro Alves  <palves@redhat.com>
11541
11542         * corelow.c (core_has_fake_pid): Delete.
11543         (core_close): Delete references to `core_has_fake_pid'.
11544         (add_to_thread_list): Adjust to mark the inferior's pid as fake.
11545         (core_open): Delete references to `core_has_fake_pid'.
11546         (core_pid_to_str): Adjust to check inferior->fake_pid_p instead of
11547         the removed global.
11548
11549 2012-01-26  Joel Brobecker  <brobecker@adacore.com>
11550
11551         * symfile.h (struct quick_symbol_functions) [expand_symtabs_matching]:
11552         Remove language parameter from name_matcher.  Adjust the comment.
11553         * symtab.c (search_symbols_name_matches, expand_partial_symbol_name):
11554         Remove language parameter.
11555         * ada-lang.c (ada_expand_partial_symbol_name): Likewise.
11556         * linespec.c (iterate_name_matcher): Likewise.
11557         * dwarf2read.c (dw2_expand_symtabs_matching): Adjust type of
11558         name_matcher.  Adjust call accordingly.
11559         * psymtab.c (expand_symtabs_matching_via_partial): Likewise.
11560         (maintenance_check_symtabs): Adjust type of parameter "fun".
11561         * psymtab.h (maintenance_check_symtabs): Likewise.
11562
11563 2012-01-26  Joel Brobecker  <brobecker@adacore.com>
11564
11565         * language.h (symbol_name_match_p_ftype): New typedef.
11566         (struct language_defn): Replace field la_symbol_name_compare
11567         by la_get_symbol_name_match_p.
11568         * ada-lang.c (ada_get_symbol_name_match_p): New function.
11569         (ada_language_defn): Use it.
11570         * linespec.c (struct symbol_matcher_data): New type.
11571         (iterate_name_matcher): Rewrite.
11572         (iterate_over_all_matching_symtabs): Pass a pointer to
11573         a symbol_matcher_data struct to expand_symtabs_matching
11574         instead of just the lookup name.
11575         * c-lang.c, d-lang.c, jv-lang.c, m2-lang.c, objc-lang.c,
11576         opencl-lang.c, p-lang.c, language.c: Delete field
11577         la_symbol_name_compare, and replace by NULL for new field
11578         la_get_symbol_name_match_p.
11579         * symfile.h (struct quick_symbol_functions): Update comment.
11580
11581 2012-01-25  Tom Tromey  <tromey@redhat.com>
11582
11583         * breakpoint.c (bpstat_stop_status): Check 'breakpoint_at' before
11584         dereferencing.
11585
11586 2012-01-24  Tom Tromey  <tromey@redhat.com>
11587
11588         PR symtab/12406:
11589         * solib.c (update_solib_list): Update the program space's
11590         added_solibs and deleted_solibs fields.
11591         * progspace.h (struct program_space) <added_solibs,
11592         deleted_solibs>: New fields.
11593         (clear_program_space_solib_cache): Declare.
11594         * progspace.c (release_program_space): Call
11595         clear_program_space_solib_cache.
11596         (clear_program_space_solib_cache): New function.
11597         * infrun.c (handle_inferior_event) <TARGET_WAITKIND_LOADED>: Call
11598         bpstat_stop_status.  Use handle_solib_event.
11599         * breakpoint.c: Include gdb_regex.h.
11600         (print_solib_event): New function.
11601         (bpstat_print): Use print_solib_event.
11602         (bpstat_stop_status): Add special case for bp_shlib_event.
11603         (handle_solib_event): New function.
11604         (bpstat_what): Use handle_solib_event.
11605         (struct solib_catchpoint): New.
11606         (dtor_catch_solib, insert_catch_solib, remove_catch_solib)
11607         (breakpoint_hit_catch_solib, check_status_catch_solib)
11608         (print_it_catch_solib, print_one_catch_solib)
11609         (print_mention_catch_solib, print_recreate_catch_solib): New
11610         functions.
11611         (catch_solib_breakpoint_ops): New global.
11612         (catch_load_or_unload, catch_load_command_1)
11613         (catch_unload_command_1): New functions.
11614         (internal_bkpt_check_status): Add special case for
11615         bp_shlib_event.
11616         (internal_bkpt_print_it): Use print_solib_event.
11617         (initialize_breakpoint_ops): Initialize
11618         catch_solib_breakpoint_ops.
11619         (_initialize_breakpoint): Register "catch load" and "catch
11620         unload".
11621         * breakpoint.h (handle_solib_event): Declare.
11622         * NEWS: Add entry for "catch load" and "catch unload".
11623
11624 2012-01-24  Tom Tromey  <tromey@redhat.com>
11625
11626         * ada-lang.c: Include gdb_vecs.h.
11627         * charset.c: Include gdb_vecs.h.
11628         * tracepoint.h: Include gdb_vecs.h.
11629         * gdb_vecs.h: New file.
11630
11631 2012-01-24  Pedro Alves  <pedro@codesourcery.com>
11632
11633         * breakpoint.c (breakpoint_hit_catch_fork)
11634         (breakpoint_hit_catch_vfork, breakpoint_hit_catch_syscall)
11635         (breakpoint_hit_catch_exec): Make use of the `ws' argument.
11636         * infrun.c (inferior_has_forked, inferior_has_vforked)
11637         (inferior_has_execd, inferior_has_called_syscall): Delete.
11638         (handle_syscall_event): Get syscall_number from the execution
11639         control state's wait status.
11640         (wait_for_inferior): Don't clear syscall_number.
11641
11642 2012-01-24  Pedro Alves  <palves@redhat.com>
11643
11644         * breakpoint.c (bpstat_check_location, bpstat_stop_status,
11645         pc_at_non_inline_function): Add `ws' parameter, and pass it down.
11646         (breakpoint_hit_catch_fork, breakpoint_hit_catch_vfork)
11647         (breakpoint_hit_catch_syscall, breakpoint_hit_catch_exec): Add
11648         `ws' parameter.
11649         (breakpoint_hit_ranged_breakpoint): Add `ws' parameter.  Return
11650         false for events other than TARGET_SIGNAL_TRAP.
11651         (breakpoint_hit_watchpoint, base_breakpoint_breakpoint_hit):
11652         Add `ws' parameter.
11653         (bkpt_breakpoint_hit): Add `ws' parameter.  Return false for
11654         events other than TARGET_SIGNAL_TRAP.
11655         (tracepoint_breakpoint_hit): Add `ws' parameter.
11656         * breakpoint.h (struct breakpoint_ops) <breakpoint_hit>: Add `ws'
11657         parameter.
11658         (bpstat_stop_status): Same.
11659         (pc_at_non_inline_function): Same.
11660         * infrun.c (handle_syscall_event, handle_inferior_event): Adjust
11661         to pass the current event's waitstatus to bpstat_stop_status
11662         and pc_at_non_inline_function.
11663
11664 2012-01-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
11665
11666         Code cleanup.
11667         * cli/cli-cmds.c (source_script_from_stream): Never fclose STREAM.
11668         Update the function comment for it.
11669         (source_script_with_search): Call make_cleanup_fclose for STREAM.
11670         * cli/cli-script.c (script_from_file): Do not call make_cleanup_fclose
11671         for STREAM.
11672
11673 2012-01-24  Pedro Alves  <palves@redhat.com>
11674
11675         * breakpoint.c (bpstat_stop_status): Moving clearing print_it
11676         outside `bs->stop' block.
11677         (bpstat_what): Rework bp_shlib_event handling.
11678         (internal_bkpt_check_status): If the breakpoint is a
11679         bp_shlib_event, then set bs->stop and bs->print if
11680         stop_on_solib_events is set.
11681
11682 2012-01-24  Gary Benson  <gbenson@redhat.com>
11683
11684         Delete #if 0'd out code.
11685         * stack.c (print_frame_label_vars): Remove.
11686         (catch_info): Likewise.
11687         (_initialize_stack): Remove "info catch" command.
11688         * NEWS: Mention the above.
11689
11690 2012-01-24  Pedro Alves  <palves@redhat.com>
11691
11692         * remote.c (remote_add_inferior): New `fake_pid_p' parameter.  Use
11693         it.
11694         (remote_notice_new_inferior): If the remote end doesn't support
11695         the multiprocess extensions, then the PID is fake.
11696         (add_current_inferior_and_thread): New.
11697         (remote_start_remote): Use it.
11698         (extended_remote_attach_1): Adjust.
11699         (extended_remote_create_inferior_1): Use
11700         add_current_inferior_and_thread.
11701
11702 2012-01-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
11703
11704         Fix watchpoints to be specific for each inferior.
11705         * breakpoint.c (watchpoint_in_thread_scope): Verify also
11706         current_program_space.
11707         * i386-nat.c (i386_inferior_data_cleanup): New.
11708         (i386_inferior_data_get): Replace variable inf_data_local by an
11709         inferior_data call.
11710         (i386_use_watchpoints): Initialize i386_inferior_data.
11711         * linux-nat.c (linux_nat_iterate_watchpoint_lwps): Use INFERIOR_PTID
11712         specific iterate_over_lwps.
11713
11714 2012-01-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
11715
11716         Fix watchpoints across inferior fork.
11717         * amd64-linux-nat.c (update_debug_registers_callback): Update the
11718         comment for linux_nat_iterate_watchpoint_lwps.
11719         (amd64_linux_dr_set_control, amd64_linux_dr_set_addr): Use
11720         linux_nat_iterate_watchpoint_lwps.
11721         (amd64_linux_prepare_to_resume): New comment on Linux kernel.
11722         * i386-linux-nat.c (update_debug_registers_callback): Update the
11723         comment for linux_nat_iterate_watchpoint_lwps.
11724         (i386_linux_dr_set_control, i386_linux_dr_set_addr): Use
11725         linux_nat_iterate_watchpoint_lwps.
11726         (i386_linux_prepare_to_resume): New comment on Linux kernel.
11727         * i386-nat.c: Include inferior.h.
11728         (dr_mirror): Remove.
11729         (i386_inferior_data, struct i386_inferior_data)
11730         (i386_inferior_data_get): New.
11731         (i386_debug_reg_state): Use i386_inferior_data_get.
11732         (i386_cleanup_dregs, i386_update_inferior_debug_regs)
11733         (i386_insert_watchpoint, i386_remove_watchpoint)
11734         (i386_stopped_data_address, i386_insert_hw_breakpoint)
11735         (i386_remove_hw_breakpoint): New variable state, use
11736         i386_debug_reg_state instead of DR_MIRROR.
11737         * linux-nat.c (delete_lwp): New declaration.
11738         (num_lwps): Move here from downwards.
11739         (delete_lwp_cleanup): New.
11740         (linux_child_follow_fork): Create new child_lp, call
11741         linux_nat_new_thread and linux_nat_prepare_to_resume before calling
11742         PTRACE_DETACH.
11743         (num_lwps): Move upwards.
11744         (linux_nat_iterate_watchpoint_lwps): New.
11745         * linux-nat.h (linux_nat_iterate_watchpoint_lwps_ftype): New.
11746         (linux_nat_iterate_watchpoint_lwps_ftype): New declaration.
11747
11748 2012-01-24  Joel Brobecker  <brobecker@adacore.com>
11749
11750         GDB 7.4 released.
11751
11752 2012-01-23  Pedro Alves  <palves@redhat.com>
11753
11754         * top.c (caution): Rename to ...
11755         (confirm): ... this.
11756         (show_caution): Rename to ...
11757         (show_confirm): ... this.
11758         (quit_cover): Adjust.
11759         (init_main): Adjust.
11760         * top.h (caution): Rename to ...
11761         (confirm): ... this.
11762         * utils.c (internal_vproblem, defaulted_query): Adjust.
11763
11764 2012-01-23  Pedro Alves  <palves@redhat.com>
11765
11766         * top.c (caution): Update comment.
11767         (execute_command): Don't consider the current value of `caution'.
11768
11769 2012-01-23  Jan Kratochvil  <jan.kratochvil@redhat.com>
11770
11771         * cli/cli-cmds.c (find_and_open_script): Handle failure of fdopen.
11772
11773 2012-01-23  Ulrich Weigand  <ulrich.weigand@linaro.org>
11774
11775         * inf-child.c: Include "gdb_stat.h" instead of <sys/stat.h>.
11776         * linux-tdep.c (linux_info_proc): Avoid ARI coding style warning.
11777         * target.c (target_fileio_pwrite): Remove buffer address from
11778         debug output.
11779         (target_fileio_pread): Likewise.
11780
11781 2012-01-20  Ulrich Weigand  <ulrich.weigand@linaro.org>
11782
11783         * NEWS: Document remote "info proc" and "generate-core-file".
11784
11785 2012-01-20  Ulrich Weigand  <ulrich.weigand@linaro.org>
11786
11787         * gdbarch.sh (find_memory_regions): New callback.
11788         * gdbarch.c, gdbarch.h: Regenerate.
11789
11790         * gcore.c (gcore_memory_sections): Try gdbarch find_memory_regions
11791         callback before falling back to target method.
11792
11793         * linux-nat.c (read_mapping, linux_nat_find_memory_regions): Remove.
11794         (linux_target_install_ops): No longer install it.
11795
11796         * linux-tdep.c (linux_find_memory_regions): New function.
11797         (linux_init_abi): Install it.
11798
11799 2012-01-20  Ulrich Weigand  <ulrich.weigand@linaro.org>
11800
11801         * gdbarch.sh (make_corefile_notes): New architecture callback.
11802         * gdbarch.c: Regenerate.
11803         * gdbarch.h: Likewise.
11804
11805         * gcore.c (write_gcore_file): Try gdbarch_make_corefile_notes
11806         before target_make_corefile_notes.  If NULL is returned, the
11807         target does not support core file generation.
11808
11809         * linux-nat.c: Include "linux-tdep.h".
11810         (find_signalled_thread, find_stop_signal): Remove.
11811         (linux_nat_do_thread_registers): Likewise.
11812         (struct linux_nat_corefile_thread_data): Likewise.
11813         (linux_nat_corefile_thread_callback): Likewise.
11814         (iterate_over_spus): Likewise.
11815         (struct linux_spu_corefile_data): Likewise.
11816         (linux_spu_corefile_callback): Likewise.
11817         (linux_spu_make_corefile_notes): Likewise.
11818         (linux_nat_collect_thread_registers): New function.
11819         (linux_nat_make_corefile_notes): Replace contents by call to
11820         linux_make_corefile_notes passing linux_nat_collect_thread_registers
11821         as native-only callback.
11822
11823         * linux-tdep.h: Include "bfd.h".
11824         (struct regcache): Add forward declaration.
11825         (linux_collect_thread_registers_ftype): New typedef.
11826         (linux_make_corefile_notes): Add prototype.
11827         * linux-tdep.c: Include "gdbthread.h", "gdbcore.h", "regcache.h",
11828         "regset.h", and "elf-bfd.h".
11829         (find_signalled_thread, find_stop_signal): New functions.
11830         (linux_spu_make_corefile_notes): Likewise.
11831         (linux_collect_thread_registers): Likewise.
11832         (struct linux_corefile_thread_data): New data structure.
11833         (linux_corefile_thread_callback): New funcion.
11834         (linux_make_corefile_notes): Likewise.
11835         (linux_make_corefile_notes_1): Likewise.
11836         (linux_init_abi): Install it.
11837
11838 2012-01-20  Ulrich Weigand  <ulrich.weigand@linaro.org>
11839
11840         * gdbarch.sh (info_proc): New callback.
11841         * gdbarch.c, gdbarch.h: Regenerate.
11842
11843         * infcmd.c (info_proc_cmd_1): Try gdbarch info_proc callback
11844         before falling back to the target info_proc callback.
11845
11846         * linux-nat.c: Do not include "cli/cli-utils.h".
11847         (linux_nat_info_proc): Remove.
11848         (linux_target_install_ops): No longer install it.
11849
11850         * linux-tdep.c: Include "cli/cli-utils.h" and <ctype.h>.
11851         (read_mapping): New function.
11852         (linux_info_proc): Likewise.
11853         (linux_init_abi): Install it.
11854
11855 2012-01-20  Ulrich Weigand  <ulrich.weigand@linaro.org>
11856
11857         * defs.h (enum info_proc_what): Moved here from linux-nat.c
11858         * infcmd.c: (info_proc_cmd_1): New function.
11859         (info_proc_cmd): New function, moved here from equivalent routine
11860         orignally in linux-nat.c.
11861         (info_proc_cmd_mappings): Likewise.
11862         (info_proc_cmd_stat): Likewise.
11863         (info_proc_cmd_status): Likewise.
11864         (info_proc_cmd_cwd): Likewise.
11865         (info_proc_cmd_cmdline): Likewise.
11866         (info_proc_cmd_exe): Likewise.
11867         (info_proc_cmd_all): Likewise.
11868         (_initialize_infcmd): Install "info proc" command and subcommands.
11869
11870         * target.h (struct target_ops): Add to_info_proc.
11871         (target_info_proc): Add prototype.
11872         * target.c (target_info_proc): New function.
11873
11874         * procfs.c (procfs_info_proc): Add prototype.
11875         (info_proc_cmd): Rename into ...
11876         (procfs_info_proc): ... this.  Update argument types as appropriate
11877         for a to_info_proc implementation.  Handle "what" argument.
11878         (procfs_target): Install procfs_info_proc.
11879         (_initialize_procfs): No longer install "info proc" command.
11880
11881         * linux-nat.c: (enum info_proc_what): Remove.
11882         (linux_nat_info_proc_cmd_1): Rename into ...
11883         (linux_nat_info_proc): ... this.  Update argument types as appropriate
11884         for a to_info_proc implementation.
11885         (linux_nat_info_proc_cmd): Remove.
11886         (linux_nat_info_proc_cmd_mappings): Likewise.
11887         (linux_nat_info_proc_cmd_stat): Likewise.
11888         (linux_nat_info_proc_cmd_status): Likewise.
11889         (linux_nat_info_proc_cmd_cwd): Likewise.
11890         (linux_nat_info_proc_cmd_cmdline): Likewise.
11891         (linux_nat_info_proc_cmd_exe): Likewise.
11892         (linux_nat_info_proc_cmd_all): Likewise.
11893         (linux_target_install_ops): Install linux_nat_info_proc.
11894         (_initialize_linux_nat): No longer install "info proc" command
11895         and subcommands.
11896
11897 2012-01-20  Ulrich Weigand  <ulrich.weigand@linaro.org>
11898
11899         * configure.ac [AC_CHECK_FUNCS]: Check for readlink.
11900         * config.in, configure: Regenerate.
11901
11902         * target.h (struct target_ops): Add to_fileio_readlink.
11903         (target_fileio_readlink): Add prototype.
11904         * target.c (target_fileio_readlink): New function.
11905
11906         * inf-child.c: Conditionally include <sys/param.h>.
11907         (inf_child_fileio_readlink): New function.
11908         (inf_child_target): Install it.
11909
11910         * remote.c (PACKET_vFile_readlink): New enum value.
11911         (remote_hostio_readlink): New function.
11912         (init_remote_ops): Install it.
11913         (_initialize_remote): Handle vFile:readlink packet type.
11914
11915 2012-01-20  Pedro Alves  <palves@redhat.com>
11916             Ulrich Weigand  <ulrich.weigand@linaro.org>
11917
11918         * configure.ac [AC_CHECK_FUNCS]: Check for pread and pwrite.
11919         * config.in, configure: Regenerate.
11920
11921         * target.h (struct target_ops): Add to_fileio_open, to_fileio_pwrite,
11922         to_fileio_pread, to_fileio_close, to_fileio_unlink.
11923         (target_fileio_open): Add prototype.
11924         (target_fileio_pwrite): Likewise.
11925         (target_fileio_pread): Likewise.
11926         (target_fileio_close): Likewise.
11927         (target_fileio_unlink): Likewise.
11928         (target_fileio_read_alloc): Likewise.
11929         (target_fileio_read_stralloc): Likewise.
11930
11931         * target.c: Include "gdb/fileio.h".
11932         (target_read_stralloc): Accept trailing, but not embedded NUL bytes.
11933         (default_fileio_target): New function.
11934         (target_fileio_open): Likewise.
11935         (target_fileio_pwrite): Likewise.
11936         (target_fileio_pread): Likewise.
11937         (target_fileio_close): Likewise.
11938         (target_fileio_unlink): Likewise.
11939         (target_fileio_close_cleanup): Likewise.
11940         (target_fileio_read_alloc_1): Likewise.
11941         (target_fileio_read_alloc): Likewise.
11942         (target_fileio_read_stralloc): Likewise.
11943
11944         * inf-child.c: Include "gdb/fileio.h", <sys/types.h>, <sys/stat.h>,
11945         <fcntl.h>, and <unistd.h>.
11946         (inf_child_fileio_open_flags_to_host): New function.
11947         (inf_child_errno_to_fileio_error): Likewise.
11948         (inf_child_fileio_open): Likewise.
11949         (inf_child_fileio_pwrite): Likewise.
11950         (inf_child_fileio_pread): Likewise.
11951         (inf_child_fileio_close): Likewise.
11952         (inf_child_fileio_unlink): Likewise.
11953         (inf_child_target): Install to_fileio routines.
11954
11955         * remote.c (init_remote_ops): Install to_fileio routines.
11956
11957 2012-01-20  Pedro Alves  <palves@redhat.com>
11958             Ulrich Weigand  <ulrich.weigand@linaro.org>
11959
11960         * remote.c (remote_multi_process_p): Only check for multi-process
11961         protocol feature, do not check for extended protocol.
11962         (remote_supports_multi_process): Check for extended protocol here.
11963         (set_general_process): Likewise.
11964         (extended_remote_kill): Likewise.
11965         (remote_pid_to_str): Likewise.
11966         (remote_query_supported): Always query multiprocess mode.
11967
11968 2012-01-20  Pedro Alves  <palves@redhat.com>
11969             Ulrich Weigand  <ulrich.weigand@linaro.org>
11970
11971         * inferior.h (struct inferior): Add fake_pid_p.
11972         * inferior.c (exit_inferior_1): Clear fake_pid_p.
11973         * remote.c (remote_start_remote): Set fake_pid_p if we have to use
11974         magic_null_ptid since the remote side doesn't provide a real PID.
11975
11976 2012-01-19  Tom Tromey  <tromey@redhat.com>
11977
11978         * NEWS: Combine the two Python sections.
11979
11980 2012-01-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
11981
11982         * target.h (target_close): Update comment on the target's unpush state.
11983
11984 2012-01-19  Pedro Alves  <palves@redhat.com>
11985
11986         * linux-nat.c (linux_nat_close): Call linux_nat_is_async_p and
11987         linux_nat_async directly instead of going through the target
11988         vector.
11989         * target.c (unpush_target): Close target after unpushing it, not
11990         before.
11991
11992 2012-01-19  Gary Benson  <gbenson@redhat.com>
11993
11994         * mdebugread.c (sort_blocks): Replace integer constants with ones
11995         derived from FIRST_LOCAL_BLOCK.
11996
11997 2012-01-18  Paul Pluzhnikov  <ppluzhnikov@google.com>
11998             Jan Kratochvil  <jan.kratochvil@redhat.com>
11999
12000         PR gdb/9538
12001         * symfile.c (find_separate_debug_file): New function.
12002         (terminate_after_last_dir_separator): Likewise.
12003         (find_separate_debug_file_by_debuglink): Also try realpath.
12004         * configure.ac (AC_CHECK_FUNCS): Add lstat.
12005         * configure: Regenerate.
12006         * config.in: Regenerate.
12007
12008 2012-01-18  Doug Evans  <dje@google.com>
12009
12010         * Makefile.in (TARGET_SYSTEM_ROOT, TARGET_SYSTEM_ROOT_DEFINE): Delete.
12011         (main.o): Remove rule.
12012         * configure.ac (BINDIR): Define with AC_DEFINE_DIR.
12013         (--with-sysroot): Rewrite.
12014         * configure: Regenerate.
12015         * config.in: Regenerate.
12016
12017 2012-01-18  Sergio Durigan Junior  <sergiodj@redhat.com>
12018
12019         * parse.c (initialize_expout): New function.
12020         (reallocate_expout): Likewise.
12021         (parse_exp_in_context): Use `initialize_expout' and
12022         `reallocate_expout' when appropriate.
12023
12024 2012-01-18  Pedro Alves  <palves@redhat.com>
12025
12026         * record.c (struct record_breakpoint, record_breakpoint_p)
12027         (record_breakpoints): New.
12028         (record_insert_breakpoint, record_remove_breakpoint): Manage
12029         record breakpoints list.  Only remove breakpoints from the
12030         inferior if they had been inserted there in the first place.
12031
12032 2012-01-17  Doug Evans  <dje@google.com>
12033
12034         * linespec.c (decode_line_internal): Don't call symtabs_from_filename
12035         if we know we don't have a file name to look for.
12036
12037 2012-01-17  Pedro Alves  <palves@redhat.com>
12038
12039         * dwarf2-frame.c (dwarf2_frame_cfa): Throw NOT_AVAILABLE_ERROR, if
12040         the frame's stop reason is UNWIND_UNAVAILABLE.
12041
12042 2012-01-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
12043
12044         Fix compilation error.
12045         * m2-exp.y (yyerror): Use ANSI C prototype.
12046
12047 2012-01-16  Sergio Durigan Junior  <sergiodj@redhat.com>
12048
12049         * f-exp.y (parse_number): Convert prototype from K&R to ANSI C.
12050         (growbuf_by_size): Likewise.
12051         (yyerror): Likewise.
12052         * m2-exp.y (make_qualname): Remove function (was #if 0'ed).
12053         (modblock): Remove variable (was #if 0'ed).
12054         (parse_number): Convert prototype from K&R to ANSI C.
12055         (yyerror): Likewise.
12056         * objc-exp.y (parse_number): Likewise.
12057         (yyerror): Likewise.
12058         (yylex): Remove #if 0'ed code.
12059         * p-exp.y (uptok): Convert prototype from K&R to ANSI C.
12060         (yyerror): Likewise.
12061
12062 2012-01-16  Tom Tromey  <tromey@redhat.com>
12063
12064         * NEWS: Add item.
12065         * symtab.h (compare_filenames_for_search): Declare.
12066         * symtab.c (compare_filenames_for_search): New function.
12067         (iterate_over_some_symtabs): Use it.
12068         * symfile.h (struct quick_symbol_functions)
12069         <map_symtabs_matching_filename>: Change spec.
12070         * psymtab.c (partial_map_symtabs_matching_filename): Use
12071         compare_filenames_for_search.  Update for new spec.
12072         * dwarf2read.c (dw2_map_symtabs_matching_filename): Use
12073         compare_filenames_for_search.  Update for new spec.
12074         * breakpoint.c (clear_command): Use compare_filenames_for_search.
12075
12076 2012-01-16  Tom Tromey  <tromey@redhat.com>
12077
12078         PR python/13281:
12079         * gdbtypes.h (TYPE_FLAG_ENUM): New macro.
12080         (struct main_type) <flag_flag_enum>: New field.
12081         * dwarf2read.c (process_enumeration_scope): Detect "flag" enums.
12082         * NEWS: Add entries.
12083         * c-valprint.c (c_val_print) <TYPE_CODE_ENUM>: Handle "flag"
12084         enums.
12085         * python/lib/gdb/printing.py (_EnumInstance): New class.
12086         (FlagEnumerationPrinter): Likewise.
12087
12088 2012-01-16  Sergio Durigan Junior  <sergiodj@redhat.com>
12089
12090         * breakpoint.c (create_sals_from_address_default): New function.
12091         (create_breakpoints_sal_default): Likewise.
12092         (decode_linespec_default): Likewise.
12093         (is_marker_spec): Removed.
12094         (strace_marker_p): New function.
12095         (init_breakpoint_sal): Using `strace_marker_p' instead of
12096         `is_marker_spec'.
12097         (create_breakpoint): Call method `create_sals_from_address' from
12098         breakpoint_ops, replacing code that created SALs conditionally
12099         on the type of the breakpoint.  Call method `create_breakpoints_sal',
12100         replacing code that created breakpoints conditionally on the type
12101         wanted.
12102         (base_breakpoint_create_sals_from_address): New function.
12103         (base_breakpoint_create_breakpoints_sal): Likewise.
12104         (base_breakpoint_decode_linespec): Likewise.
12105         (base_breakpoint_ops): Add methods
12106         `base_breakpoint_create_sals_from_address',
12107         `base_breakpoint_create_breakpoints_sal' and
12108         `base_breakpoint_decode_linespec'.
12109         (bkpt_create_sals_from_address): New function.
12110         (bkpt_create_breakpoints_sal): Likewise.
12111         (bkpt_decode_linespec): Likewise.
12112         (tracepoint_create_sals_from_address): Likewise.
12113         (tracepoint_create_breakpoints_sal): Likewise.
12114         (tracepoint_decode_linespec): Likewise.
12115         (strace_marker_create_sals_from_address): Likewise.
12116         (strace_marker_create_breakpoints_sal): Likewise.
12117         (strace_marker_decode_linespec): Likewise.
12118         (strace_marker_breakpoint_ops): New variable.
12119         (addr_string_to_sals): Remove `marker_spec'.  Call method
12120         `decode_linespec' from breakpoint_ops, replacing code that decoded
12121         an address string into a SAL.  Use `strace_marker_p' instead of
12122         `marker_spec'.
12123         (strace_command): Decide whether we are dealing with a static
12124         tracepoint with marker or not.  Use the appropriate breakpoint_ops.
12125         (initialize_breakpoint_ops): Initialize new fields of breakpoint_ops.
12126         * breakpoint.h (linespec_result, linespec_sals): New forward
12127         declarations.
12128         (breakpoint_ops) <create_sals_from_address>,
12129         <create_breakpoints_sal>, <decode_linespec>: New methods.
12130
12131 2012-01-14  Doug Evans  <dje@google.com>
12132
12133         * NEWS: Update text for "maint set python print-stack".
12134         It is deprecated in gdb 7.4 and deleted in 7.5.
12135
12136 2012-01-13  Eli Zaretskii  <eliz@gnu.org>
12137
12138         * gdb_curses.h (MOUSE_MOVED) [__MINGW32__]: Undefine before
12139         including curses.h.
12140
12141 2012-01-12  Jan Kratochvil  <jan.kratochvil@redhat.com>
12142
12143         * configure: Regenerate.
12144         * config.in: Regenerate.
12145
12146 2012-01-12  Keith Seitz  <keiths@redhat.com>
12147
12148         PR mi/10586
12149         * varobj.c (ANONYMOUS_STRUCT_NAME): Define.
12150         (ANONYMOUS_UNION_NAME): Define.
12151         (is_path_expr_parent): New function.
12152         (get_path_expr_parent): New function.
12153         (is_anonymous_child): New function.
12154         (create_child_with_value): If the child is anonymous and without
12155         a name, assign an object name to it.
12156         (c_describe_child): Use get_path_expr_parent to determine
12157         the parent expression.
12158         If there field represents an anonymous struct or union and
12159         has no name, set an appropriate display name and expression.
12160         (cplus_describe_child): Likewise.
12161
12162 2012-01-12  Pedro Alves  <palves@redhat.com>
12163
12164         * i386-tdep.c (i386_frame_cache_1): Also mark the frame base as
12165         available when %ebp is found to be zero (outermost).
12166
12167 2012-01-11  Andreas Tobler  <andreast@fgznet.ch>
12168
12169         * common/gdb_assert.h (gdb_static_assert): Rename static_assert to
12170         an internal gdb_static_assert.
12171         * mi/mi-common.c: Rename static_assert to gdb_static_assert.
12172
12173 2012-01-11  Tom Tromey  <tromey@redhat.com>
12174
12175         PR gdb/9598:
12176         * breakpoint.c (_initialize_breakpoint): Fix help for "catch
12177         catch" and "catch throw".
12178
12179 2012-01-11  Paul Hilfinger  <hilfingr@adacore.com>
12180
12181         * blockframe.c (block_innermost_frame): Start search from selected
12182         frame, if present, or otherwise the current frame.
12183
12184         * c-exp.y (variable): Update innermost_block for
12185         'block COLONCOLON NAME' clause.
12186         * m2-exp.y (variable): Ditto.
12187         * objc-exp.y (variable): Ditto.
12188
12189 2012-01-10  Tom Tromey  <tromey@redhat.com>
12190
12191         PR python/13199:
12192         * python/python.c (finish_python_initialization): Set sys.argv.
12193
12194 2012-01-10  Doug Evans  <dje@google.com>
12195
12196         * dwarf2read.c (dwarf_decode_lines): Remove arg "abfd".  New arg
12197         "want_line_info".  All callers updated.
12198         (dwarf_decode_lines_1): New function.
12199         (handle_DW_AT_stmt_list): Add function comment.
12200         New arg "want_line_info".  All callers updated.
12201         (read_file_scope,read_type_unit_scope): Move comment from
12202         handle_DW_AT_stmt_list to here.
12203
12204 2012-01-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
12205
12206         Fix regression after libiberty/ update for GCC PR 6057 and others.
12207         * c-exp.y (operator) <OPERATOR DELETE>
12208         (operator) <OPERATOR DELETE '[' ']'>: Add trailing space.
12209         * cp-name-parser.y (fill_comp, make_operator, make_dtor)
12210         (make_builtin_type, make_name): New variable i, add gdb_assert.
12211         (operator) <OPERATOR NEW>: Update ARGS to 3.
12212         (operator) <OPERATOR DELETE>: Add trailing space.
12213         (operator) <OPERATOR NEW '[' ']'>: Update ARGS to 3.
12214         (operator) <OPERATOR DELETE '[' ']'>: Add trailing space.
12215         * cp-support.c (cp_canonicalize_string): Check NULL from
12216         cp_comp_to_string, call warning and return.
12217
12218 2012-01-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
12219
12220         Fix duplicate .o files after omitting libbfd.a.
12221         * Makefile.in (ALL_TARGET_OBS): Remove corelow.o.
12222         (SFILES): Add corelow.c.
12223         (COMMON_OBS): Add corelow.o.
12224         (ALLDEPFILES): Remove corelow.c.
12225         * config/alpha/alpha-linux.mh (NATDEPFILES): Remove corelow.o.
12226         * config/alpha/alpha-osf3.mh: Likewise.
12227         * config/alpha/fbsd.mh: Likewise.
12228         * config/arm/nbsdaout.mh: Likewise.
12229         * config/arm/nbsdelf.mh: Likewise.
12230         * config/i386/i386gnu.mh: Likewise.
12231         * config/ia64/hpux.mh: Likewise.
12232         * config/ia64/linux.mh: Likewise.
12233         * config/m32r/linux.mh: Likewise.
12234         * config/m68k/linux.mh: Likewise.
12235         * config/mips/irix5.mh: Likewise.
12236         * config/mips/irix6.mh: Likewise.
12237         * config/pa/hpux.mh: Likewise.
12238         * config/pa/linux.mh: Likewise.
12239         * config/powerpc/aix.mh: Likewise.
12240         * config/sparc/linux.mh: Likewise.
12241         * config/sparc/linux64.mh: Likewise.
12242         * config/sparc/sol2.mh: Likewise.
12243         * config/vax/vax.mh: Likewise.
12244         * configure.tgt (alpha*-*-freebsd* alpha*-*-kfreebsd*-gnu)
12245         (alpha*-*-netbsd*, alpha*-*-knetbsd*-gnu, alpha*-*-openbsd*)
12246         (am33_2.0*-*-linux*, arm*-wince-pe, arm*-*-mingw32ce*, arm*-*-linux*)
12247         (arm*-*-openbsd*, cris*, frv-*-*, hppa*-*-hpux*, hppa*-*-netbsd*)
12248         (hppa*-*-openbsd*, i[34567]86-*-dicos*, i[34567]86-*-freebsd*)
12249         (i[34567]86-*-kfreebsd*-gnu, i[34567]86-*-netbsd*)
12250         (i[34567]86-*-knetbsd*-gnu, i[34567]86-*-openbsd*, i[34567]86-*-nto*)
12251         (i[34567]86-*-solaris2.1[0-9]*, x86_64-*-solaris2.1[0-9]*)
12252         (i[34567]86-*-solaris*, i[34567]86-*-linux*, i[34567]86-*-cygwin*)
12253         (i[34567]86-*-mingw32*, m68*-*-netbsd*, m68*-*-knetbsd*-gnu)
12254         (m68*-*-openbsd*, m88*-*-openbsd*, microblaze*-linux-*)
12255         (microblaze*-*-linux*, mips*-*-linux*, mips*-*-netbsd*)
12256         (mips*-*-knetbsd*-gnu, mips64*-*-openbsd*, powerpc-*-netbsd*)
12257         (powerpc-*-knetbsd*-gnu, powerpc-*-openbsd*, powerpc-*-linux*)
12258         (powerpc64-*-linux*, s390*-*-*, score-*-*, sh*-*-linux*)
12259         (sh*-*-netbsdelf*, sh*-*-knetbsd*-gnu, sh*-*-openbsd*)
12260         (sparc*-*-freebsd*, sparc*-*-kfreebsd*-gnu, sparc-*-netbsd*)
12261         (sparc-*-knetbsd*-gnu, sparc64-*-netbsd*, sparc64-*-knetbsd*-gnu)
12262         (sparc-*-openbsd*, sparc64-*-openbsd*, tic6x-*-*linux, vax-*-netbsd*)
12263         (vax-*-knetbsd*-gnu, vax-*-openbsd*, x86_64-*-dicos*, x86_64-*-linux*)
12264         (x86_64-*-freebsd*, x86_64-*-kfreebsd*-gnu, x86_64-*-netbsd*)
12265         (x86_64-*-knetbsd*-gnu, x86_64-*-openbsd*, xtensa*-*-linux*): Remove
12266         corelow.o from gdb_target_obs.
12267         * corefile.c (core_target): Update the comment on NULL value.
12268         (core_file_command): Replace error by gdb_assert on CORE_TARGET.
12269         * corelow.c (sniff_core_bfd): Call error instead of warning on zero
12270         MATCHES.  Drop YUMMY set on NULL.
12271         (core_close): Do not call exit_inferior_silent on zero PID.  Do not
12272         reclaim CORE_DATA if it is already NULL.
12273
12274 2012-01-09  Doug Evans  <dje@google.com>
12275
12276         * gdbtypes.c (safe_parse_type): Initialize type to keep gcc happy.
12277         * varobj.c (varobj_set_value): Initialize val,value to keep gcc happy.
12278
12279 2012-01-09  Keith Seitz  <keiths@redhat.com>
12280
12281         * breakpoint.c (wrapper.h): Don't include.
12282
12283 2012-01-09  Keith Seitz  <keiths@redhat.com>
12284
12285         * Makefile.in (SFILES): Remove wrapper.c.
12286         (HFILES_NO_SRCDIR): Remove wrapper.h.
12287         (COMMON_OBS): Remove wrapper.o.
12288         * cli/cli-interp.c: Don't inlude wrapper.h.
12289         * corelow.c: Likewise.
12290         (core_open): Replace gdb_target_find_new_threads with
12291         TRY_CATCH around target_find_new_threads.
12292         * eval.c (fetch_subexp_value): Likewise for value_fetch_lazy.
12293         * gdbtypes.c (safe_parse_type): Likewise for parse_and_eval_type.
12294         * varobj.c (varobj_create): Likewise for parse_exp_1 and
12295         evaluate_expression.
12296         (varobj_set_value): Likewise for evaluate_expression and
12297         value_assign.
12298         (install_new_variable): Likewise for value_fetch_lazy.
12299         (adjust_value_for_child_access): Likewise for value_ind.
12300         (c_describe_child): Likewise for value_subscript and
12301         value_ind.
12302         (c_value_of_root): Likewise for evaluate_expression.
12303         * wrapper.c: Remove.
12304         * wrapper.h: Remove.
12305
12306 2012-01-09  Doug Evans  <dje@google.com>
12307
12308         * dwarf2read.c (read_and_check_comp_unit_head): Renamed from
12309         partial_read_comp_unit_head.  Replace "buffer", "buffer_size" and
12310         "abfd" args with "section".  All callers updated.
12311         Error checking code moved ...
12312         (error_check_comp_unit_head): ... here.  New function.
12313         (read_and_check_type_unit_head): Renamed from read_type_unit_head.
12314         Delete arg "abfd".  New arg "type_offset".  All callers updated.
12315         (create_debug_types_hash_table): Simplify by using
12316         read_and_check_type_unit_head.
12317
12318         * parser-defs.h (namecopy): Delete.
12319         * parse.c (namecopy, namecopy_size): Move into copy_name.
12320
12321 2012-01-09  Jan Kratochvil  <jan.kratochvil@redhat.com>
12322
12323         Partially fix duplicate .o files after omitting libbfd.a.
12324         * config/alpha/alpha-osf3.mh (NATDEPFILES): Remove solib.o.
12325         * config/i386/nbsdaout.mh (NATDEPFILES): Remove solib.o.
12326         * config/i386/obsdaout.mh (NATDEPFILES): Remove solib.o.
12327         * config/m68k/nbsdaout.mh (NATDEPFILES): Remove solib.o.
12328         * config/m68k/obsd.mh (NATDEPFILES): Remove solib.o.
12329         * config/powerpc/aix.mh (NATDEPFILES): Remove xcoffread.o.
12330         * config/vax/nbsdaout.mh (NATDEPFILES): Remove solib.o.
12331
12332 2012-01-09  Pedro Alves  <palves@redhat.com>
12333
12334         * MAINTAINERS: Update my email address.
12335
12336 2012-01-08  Doug Evans  <dje@google.com>
12337
12338         * dwarf2read.c (dwarf2_per_objfile): Rename n_type_comp_units to
12339         n_type_units.  Rename type_comp_units to all_type_units.
12340         All uses updated.
12341         (add_signatured_type_cu_to_table): Renamed from
12342         add_signatured_type_cu_to_list.  All callers updated.
12343
12344         * gdbtypes.h (struct cplus_struct_type): Delete member
12345         nfn_fields_total.  All uses removed.
12346
12347 2012-01-06  Doug Evans  <dje@google.com>
12348
12349         * dwarf2read.c: Move FIXME from dwarf2_build_psymtabs_hard
12350         to top of file.
12351         (dwarf2_find_comp_unit): Delete.
12352         (process_psymtab_comp_unit): Make result "void".
12353         Delete args buffer, info_ptr, buffer_size, and replace with
12354         "section".  All callers updated.
12355         (dwarf2_build_psymtabs_hard): Simplify.
12356
12357 2012-01-06  Sergio Durigan Junior  <sergiodj@redhat.com>
12358             Thiago Jung Bauermann  <bauerman@br.ibm.com>
12359
12360         * ada-lang.c (ada_exception_name_addr): Add `volatile' keyword
12361         before `struct gdb_exception'.
12362         * breakpoint.c (update_global_location_list_nothrow)
12363         (update_breakpoint_locations, enable_breakpoint_disp): Likewise.
12364         * cp-abi.c (value_rtti_type): Likewise.
12365         * cp-support.c (cp_validate_operator): Likewise.
12366         * infrun.c (insert_exception_resume_breakpoint)
12367         (check_exception_resume, keep_going): Likewise.
12368         * mi-interp.c (mi_breakpoint_created)
12369         (mi_breakpoint_modified): Likewise.
12370         * rs6000-aix-tdep.c (rs6000_convert_from_func_ptr_addr): Likewise.
12371         * solib-ia64-hpux.c (ia64_hpux_at_dld_breakpoint_p)
12372         (ia64_hpux_handle_dld_breakpoint_1): Likewise.
12373
12374 2012-01-05  Doug Evans  <dje@google.com>
12375
12376         * dwarf2read.c (statement_prologue): Delete, unused.
12377
12378         * dwarf2read.c (dwarf2_per_cu_addr_size): Make result type an int.
12379         * dwarf2loc.h (dwarf2_per_cu_addr_size): Update.
12380
12381         * dwarf2read.c (comp_unit_header): Delete, unused.
12382
12383 2012-01-05  Ulrich Weigand  <uweigand@de.ibm.com>
12384
12385         * configure.tgt [s390*-*-*] (gdb_target_obs): Add corelow.o.
12386         * config/s390/s390.mh (NATDEPFILES): Remove corelow.o.
12387
12388 2012-01-05  Khoo Yit Phang  <khooyp@cs.umd.edu>
12389
12390         * infrun.c (normal_stop): Don't skip calling the normal_stop
12391         observers if the thread was doing a multi-step, but stopped for
12392         some reason other than stepping.
12393
12394 2012-01-05  Pedro Alves  <alves.ped@gmail.com>
12395
12396         * cli/cli-decode.h: Add comments.
12397         (CMD_LIST_AMBIGUOUS): Moved to command.h
12398         (add_cmd, add_alias_cmd, add_prefix_cmd, add_abbrev_prefix_cmd)
12399         (set_cmd_cfunc, set_cmd_sfunc, set_cmd_completer, cmd_cfunc_eq)
12400         (set_cmd_context, get_cmd_context, lookup_cmd, lookup_cmd_1)
12401         (deprecate_cmd, deprecated_cmd_warning, lookup_cmd_composition)
12402         (add_com, add_com_alias, add_info, add_info_alias)
12403         (complete_on_cmdlist, complete_on_enum, help_list): Remove
12404         declarations.
12405         * command.h: Add and adjust comments.
12406         (CMD_LIST_AMBIGUOUS): Moved here.
12407         (help_cmd, help_cmd_list): Delete declarations.
12408
12409 2012-01-04  Doug Evans  <dje@google.com>
12410
12411         * dwarf2read.c (dwarf2_read_abbrevs): Delete arg "abfd".
12412         All callers updated.
12413         (load_full_type_unit): Renamed from read_signatured_type_at_offset.
12414         Replace all arguments with "per_cu".  All callers updated.
12415
12416         * dwarf2read.c (dwarf2_per_cu_data): Remove outdated comment.
12417
12418         * dwarf2read.c (init_one_comp_unit): Delete arg "objfile".
12419         New arg "per_cu".  All callers updated.
12420
12421         Delete #if 0'd out code.
12422         * language.c (binop_result_type): Delete.
12423         (simple_type, ordered_type, same_type, integral_type): Delete.
12424         (numeric_type, character_type, string_type, boolean_type): Delete.
12425         (float_type, structured_type): Delete.
12426         * language.h: Update.
12427
12428 2012-01-04  Tom Tromey  <tromey@redhat.com>
12429
12430         * python/py-value.c (valpy_binop): Initialize 'res_val'.
12431
12432 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
12433
12434         * corefile.c (close_exec_file): Delete.
12435         (reopen_exec_file): Remove commented out code that seems related
12436         to close_exec_file, which is being deleted here.
12437         * inferior.h (close_exec_file): Delete.
12438         * fork-child.c (fork_inferior): Remove call to fork_inferior.
12439
12440 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
12441
12442         * ada-lang.c: #include "cli/cli-utils.h".
12443         (get_selections): Use skip_spaces.
12444         (ada_get_next_arg): Use skip_spaces and skip_to_space.
12445         (catch_ada_exception_command_split): Use skip_spaces.
12446         (ada_decode_assert_location): Likewise.
12447
12448 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
12449
12450         * linespec.c (decode_line_internal): Check for C++ or Java
12451         compound constructs only if the current language is C, C++
12452         or Java.
12453
12454 2012-01-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
12455
12456         Revert:
12457         2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
12458                     Joel Brobecker  <brobecker@adacore.com>
12459         Fix regression for gdb.cp/gdb2495.exp with gcc-4.7.
12460         * arch-utils.c (displaced_step_at_entry_point): Incrase BP_LEN skip to
12461         3 times.
12462         * infcall.c (call_function_by_hand) <AT_SYMBOL>: Move it upwards and
12463         fall through into AT_ENTRY_POINT.
12464         (call_function_by_hand) <AT_ENTRY_POINT>: New variable bp_len.  Adjust
12465         DUMMY_ADDR with it.
12466         * ppc-linux-tdep.c (ppc_linux_displaced_step_location): Increase
12467         PPC_INSN_SIZE skip to 3 times.
12468
12469 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
12470
12471         * linespec.c (add_minsym): Preserve function descriptors.
12472
12473 2012-01-04  Ulrich Weigand  <uweigand@de.ibm.com>
12474
12475         * breakpoint.c (all_locations_are_pending): Consider locations
12476         in program spaces executing during startup pending as well.
12477
12478 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
12479
12480         Copyright year update in most files of the GDB Project.
12481
12482 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
12483
12484         * copyright.sh: Delete.
12485         * copyright.py: Rewrite.
12486
12487 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
12488
12489         * gnulib/extra/update-copyright: New file, imported from gnulib.
12490
12491 2012-01-04  Joel Brobecker  <brobecker@adacore.com>
12492
12493         * README (Copyright and License Notices): New section.
12494
12495 2012-01-03  Tom Tromey  <tromey@redhat.com>
12496
12497         PR python/12533:
12498         * python/py-value.c (valpy_dereference, valpy_get_address
12499         valpy_get_dynamic_type, valpy_lazy_string, valpy_do_cast)
12500         (valpy_getitem, valpy_call, valpy_binop, valpy_negative)
12501         (valpy_absolute, valpy_richcompare): Free intermediate values.
12502
12503 2011-01-03  Joel Brobecker  <brobecker@adacore.com>
12504
12505         * ada-lang.c: Reformat the copyright notice.
12506
12507 2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
12508
12509         * Makefile.in (ALL_TARGET_OBS): Remove solib-target.o.
12510         * configure.tgt (arm*-wince-pe, arm*-*-mingw32ce*, arm*-*-symbianelf*)
12511         (i[34567]86-*-dicos*, i[34567]86-*-cygwin*, i[34567]86-*-mingw32*)
12512         (x86_64-*-dicos*, x86_64-*-mingw*): Remove solib-target.o.
12513         Revert this part of:
12514         2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
12515         Build gdb directly from *.o files not using libgdb.a.
12516         * Makefile.in (COMMON_OBS): Remove solib-target.o.
12517
12518 2012-01-02  Joel Brobecker  <brobecker@adacore.com>
12519
12520         * gdb/common/gdb_thread_db.h, gdb/dbxread.c, gdb/environ.c,
12521         gdb/gcore.h, gdb/rs6000-tdep.h, gdb/s390-nat.c, gdb/tic6x-tdep.c:
12522         Reformat the copyright header.
12523
12524 2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
12525
12526         Revert this part of:
12527         2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
12528         Remove the gdbtui binary.
12529         * gdb.c (main): Remove args.interpreter_p initialization.
12530         * main.c (captured_main): Set INTERPRETER_P directly by INTERP_CONSOLE.
12531         * main.h (struct captured_main_args): Remove interpreter_p.
12532
12533 2012-01-02  Joel Brobecker  <brobecker@adacore.com>
12534
12535         * config/djgpp/fnchange.lst: Add entry for ChangeLog-2011.
12536
12537 2012-01-02  Joel Brobecker  <brobecker@adacore.com>
12538
12539         * top.c (print_gdb_version): Update copyright year.
12540
12541 2012-01-02  Yao Qi  <yao@codesourcery.com>
12542
12543         * inf-ptrace.c (inf_ptrace_xfer_partial): Reindent.
12544
12545 2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
12546             Joel Brobecker  <brobecker@adacore.com>
12547
12548         Fix regression for gdb.cp/gdb2495.exp with gcc-4.7.
12549         * arch-utils.c (displaced_step_at_entry_point): Incrase BP_LEN skip to
12550         3 times.
12551         * infcall.c (call_function_by_hand) <AT_SYMBOL>: Move it upwards and
12552         fall through into AT_ENTRY_POINT.
12553         (call_function_by_hand) <AT_ENTRY_POINT>: New variable bp_len.  Adjust
12554         DUMMY_ADDR with it.
12555         * ppc-linux-tdep.c (ppc_linux_displaced_step_location): Increase
12556         PPC_INSN_SIZE skip to 3 times.
12557
12558 2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
12559
12560         * amd64-linux-nat.c (update_debug_registers_callback): New comment on
12561         the return value.
12562         * i386-linux-nat.c (update_debug_registers_callback): Likewise.
12563
12564 2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
12565
12566         Build gdb directly from *.o files not using libgdb.a.
12567         * Makefile.in (SUBDIR_TUI_OBS): Remove duplicate tui.o.
12568         (COMMON_OBS): Remove solib-target.o.
12569         (LIBGDB_OBS, libgdb.a): Move it before the gdb$(EXEEXT) rule.
12570         (gdb$(EXEEXT)): Replace libgdb.a with $(LIBGDB_OBS).
12571         (LIBGDB_OBS, libgdb.a): Move it above.
12572         * configure.tgt (alpha*-*-linux*, alpha*-*-freebsd*)
12573         (alpha*-*-kfreebsd*-gnu, alpha*-*-netbsd*, alpha*-*-knetbsd*-gnu)
12574         (alpha*-*-openbsd*, am33_2.0*-*-linux*, arm*-wince-pe)
12575         (arm*-*-mingw32ce*, arm*-*-linux*, arm*-*-netbsd*, arm*-*-knetbsd*-gnu)
12576         (arm*-*-openbsd*, cris*, frv-*-*, hppa*-*-hpux*, hppa*-*-linux*)
12577         (hppa*-*-netbsd*, hppa*-*-openbsd*, i[34567]86-*-darwin*)
12578         (i[34567]86-*-dicos*, i[34567]86-*-freebsd*, i[34567]86-*-kfreebsd*-gnu)
12579         (i[34567]86-*-netbsd*, i[34567]86-*-knetbsd*-gnu, i[34567]86-*-openbsd*)
12580         (i[34567]86-*-nto*, i[34567]86-*-solaris2.1[0-9]*)
12581         (x86_64-*-solaris2.1[0-9]*, i[34567]86-*-solaris*, i[34567]86-*-linux*)
12582         (i[34567]86-*-gnu*, ia64-*-linux*, m32r*-*-linux*, m68*-*-linux*)
12583         (m68*-*-netbsd*, m68*-*-knetbsd*-gnu, m68*-*-openbsd*)
12584         (microblaze*-linux-*, microblaze*-*-linux*, mips*-sgi-irix5*)
12585         (mips*-sgi-irix6*, mips*-*-linux*, mips*-*-netbsd*)
12586         (mips*-*-knetbsd*-gnu, mips64*-*-openbsd*, powerpc-*-netbsd*)
12587         (powerpc-*-knetbsd*-gnu, powerpc-*-openbsd*, powerpc-*-aix*, rs6000-*-*)
12588         (powerpc-*-linux*, powerpc64-*-linux*, powerpc*-*-*, s390*-*-*)
12589         (sh*-*-linux*, sh*-*-netbsdelf*, sh*-*-knetbsd*-gnu, sh*-*-openbsd*)
12590         (sparc-*-linux*, sparc64-*-linux*, sparc*-*-freebsd*)
12591         (sparc*-*-kfreebsd*-gnu, sparc-*-netbsd*, sparc-*-knetbsd*-gnu)
12592         (sparc64-*-netbsd*, sparc64-*-knetbsd*-gnu, sparc-*-openbsd*)
12593         (sparc64-*-openbsd*, sparc-*-solaris2.[0-6], sparc-*-solaris2.[0-6].*)
12594         (sparc-*-solaris2*, sparcv9-*-solaris2*, sparc64-*-solaris2*)
12595         (vax-*-netbsd*, vax-*-knetbsd*-gnu, x86_64-*-darwin*, x86_64-*-dicos*)
12596         (x86_64-*-linux*, x86_64-*-freebsd*, x86_64-*-kfreebsd*-gnu)
12597         (x86_64-*-netbsd*, x86_64-*-knetbsd*-gnu, x86_64-*-openbsd*)
12598         (xtensa*-*-linux*, xtensa*): Remove solib.o from gdb_target_obs.
12599
12600 2012-01-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
12601
12602         Remove the gdbtui binary.
12603         * .gitignore (/gdbtui): Remove.
12604         * Makefile.in (TUI): Remove.
12605         (SUBDIR_TUI_OBS): Remove tui-main.o.
12606         (SUBDIR_TUI_SRCS): Remove tui/tui-main.c.
12607         (all-tui, install-tui, uninstall-tui, $(TUI)$(EXEEXT), clean-tui)
12608         (tui-main.o): Remove.
12609         (all_object_files): Remove tui-main.o.
12610         * NEWS: New note for the gdbtui removal.
12611         * configure: Rebuilt.
12612         * configure.ac: No longer add all-tui, clean-tui, install-tui and
12613         uninstall-tui to CONFIG_ALL, CONFIG_CLEAN, CONFIG_INSTALL and
12614         CONFIG_UNINSTALL respectively.
12615         * gdb.c (main): Remove args.interpreter_p initialization.
12616         * main.c (captured_main): Set INTERPRETER_P directly by INTERP_CONSOLE.
12617         * main.h (struct captured_main_args): Remove interpreter_p.
12618         * tui/tui-main.c: Remove.
12619
12620 2012-01-01  Doug Evans  <dje@google.com>
12621
12622         * dwarf2read.c (dwarf2_compute_name): Simplify objfile references.
12623         (dwarf2_physname, read_import_statement): Ditto.
12624         (read_call_site_scope, dwarf2_record_block_ranges): Ditto.
12625         (process_structure_scope read_subroutine_type): Ditto.
12626         (read_typedef, load_partial_dies, read_partial_die): Ditto.
12627         (find_partial_die, dwarf_decode_lines, lookup_die_type): Ditto.
12628         (dwarf2_fetch_die_location_block): Ditto.
12629         (dwarf_decode_macros, dwarf2_symbol_mark_computed): Ditto.
12630
12631         * dwarf2read.c (read_signatured_type): Delete `objfile' arg.
12632         All callers updated.
12633         (load_full_comp_unit, queue_comp_unit, process_queue): Ditto.
12634         (dw2_do_instantiate_symtab, dw2_instantiate_symtab): Ditto.
12635         (process_psymtab_comp_unit, load_partial_comp_unit): Ditto.
12636
12637         * dwarf2read.c (load_cu): Move assert to more useful location.
12638
12639         * dwarf2read.c (free_heap_comp_unit): Renamed from free_one_comp_unit.
12640         All callers updated.
12641
12642         * dwarf2read.c (dwarf2_per_objfile): Add comment.
12643         (dwarf2_elf_names): Minor reformat.
12644         (dwarf2_per_cu_data): Tweak comment.
12645         (dwarf2_read_section): Fix comment.
12646         (create_all_comp_units): Fix comment.
12647         (load_full_comp_unit): Fix comment.
12648         (process_full_comp_unit): Fix comment.
12649         (read_signatured_type): Fix comment.
12650
12651 For older changes see ChangeLog-2011.
12652 \f
12653 Local Variables:
12654 mode: change-log
12655 left-margin: 8
12656 fill-column: 74
12657 version-control: never
12658 coding: utf-8
12659 End: