* python/py-event.c (gdbpy_initialize_event_generic): Return
[external/binutils.git] / gdb / ChangeLog
1 2013-05-20  Tom Tromey  <tromey@redhat.com>
2
3         * python/py-event.c (gdbpy_initialize_event_generic): Return
4         early if PyType_Ready fails.
5
6 2013-05-20  Tom Tromey  <tromey@redhat.com>
7
8         * python/py-type.c (make_fielditem): Add gdb_assert_not_reached
9         as 'default' in the switch.
10
11 2013-05-20  Tom Tromey  <tromey@redhat.com>
12
13         * python/py-inferior.c (gdbpy_inferiors): Update.  Hoist
14         get_addr_from_python calls out of TRY_CATCH.
15         (infpy_write_memory, infpy_search_memory): Likewise.
16         * python/py-utils.c (get_addr_from_python): Return negative
17         value on error.  Use TRY_CATCH.
18         * python/python-internal.h (get_addr_from_python): Use
19         CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
20
21 2013-05-20  Tom Tromey  <tromey@redhat.com>
22
23         * python/py-event.c (evpy_emit_event): Decref the
24         result of PyObject_CallFunctionObjArgs.
25
26 2013-05-20  Tom Tromey  <tromey@redhat.com>
27
28         * python/py-cmd.c (cmdpy_completer): Use iterator protocol.
29         Correctly decref.
30
31 2013-05-20  Tom Tromey  <tromey@redhat.com>
32
33         * python/py-cmd.c (cmdpy_init): Decref 'ds_obj'.
34
35 2013-05-20  Tom Tromey  <tromey@redhat.com>
36
37         * python/py-event.h (gdbpy_initialize_event_generic): Use
38         CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
39         * python/py-evts.c (add_new_registry): Use
40         CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
41         * python/python-internal.h
42         (CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION): New macro.
43
44 2013-05-20  Tom Tromey  <tromey@redhat.com>
45
46         * python/py-arch.c (archpy_disassemble): Update.
47         * python/py-type.c (typy_get_composite, typy_lookup_typename)
48         (typy_lookup_type): Use GDB_PY_HANDLE_EXCEPTION.
49         * python/py-utils.c (gdbpy_convert_exception): Return 'void'.
50         * python/python-internal.h (CPYCHECKER_SETS_EXCEPTION): New
51         macro.
52         (GDB_PY_HANDLE_EXCEPTION): Update.
53         (gdbpy_convert_exception): Update.  Use CPYCHECKER_SETS_EXCEPTION.
54
55 2013-05-20  Tom Tromey  <tromey@redhat.com>
56
57         * python/python-internal.h (events_object_type): Remove.
58
59 2013-05-20  Tom Tromey  <tromey@redhat.com>
60
61         * python/py-event.h (evpy_emit_event): Use
62         CPYCHECKER_STEALS_REFERENCE_TO_ARG.
63         * python/python-internal.h (CPYCHECKER_STEALS_REFERENCE_TO_ARG):
64         New macro.
65
66 2013-05-20  Tom Tromey  <tromey@redhat.com>
67
68         * py-evtregistry.c (create_event_object): Decref
69         eventregistry_object if PyList_New fails.
70
71 2013-05-20  Tom Tromey  <tromey@redhat.com>
72
73         * py-cmd.c (gdbpy_string_to_argv): Check result of
74         PyList_New.
75
76 2013-05-20  Tom Tromey  <tromey@redhat.com>
77
78         * python/python.c (before_prompt_hook): Add cleanup to
79         decref 'hook'.
80
81 2013-05-20  Tom Tromey  <tromey@redhat.com>
82
83         * python/py-function.c (fnpy_init): Decref result of
84         PyObject_GetAttrString.
85
86 2013-05-20  Tom Tromey  <tromey@redhat.com>
87
88         * python/py-threadevent.c (get_event_thread): Use
89         CPYCHECKER_RETURNS_BORROWED_REF.
90         * python/python-internal.h (CPYCHECKER_RETURNS_BORROWED_REF):
91         New define.
92         (pspace_to_pspace_object, objfile_to_objfile_object)
93         (find_thread_object): Use it.
94
95 2013-05-20  Tom Tromey  <tromey@redhat.com>
96
97         * python/py-arch.c (arch_object_type): Use
98         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
99         * python/py-block.c (block_syms_iterator_object_type):
100         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
101         * python/py-bpevent.c (breakpoint_event_object_type):
102         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
103         * python/py-cmd.c (cmdpy_object_type): Use
104         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
105         * python/py-continueevent.c (continue_event_object_type):
106         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
107         * python/py-event.h (GDBPY_NEW_EVENT_TYPE):
108         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
109         * python/py-events.h (thread_event_object_type):
110         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
111         * python/py-evtregistry.c (eventregistry_object_type): Use
112         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
113         * python/py-exitedevent.c (exited_event_object_type):
114         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
115         * python/py-finishbreakpoint.c (finish_breakpoint_object_type):
116         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
117         * python/py-function.c (fnpy_object_type): Use
118         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
119         * python/py-inferior.c (inferior_object_type, membuf_object_type):
120         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
121         * python/py-infthread.c (thread_object_type): Use
122         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
123         * python/py-lazy-string.c (lazy_string_object_type):
124         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
125         * python/py-newobjfileevent.c (new_objfile_event_object_type):
126         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
127         * python/py-objfile.c (objfile_object_type): Use
128         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
129         * python/py-param.c (parmpy_object_type):
130         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
131         * python/py-progspace.c (pspace_object_type):
132         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
133         * python/py-signalevent.c (signal_event_object_type):
134         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
135         * python/py-symtab.c (symtab_object_type, sal_object_type): Use
136         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
137         * python/py-type.c (type_object_type, field_object_type)
138         (type_iterator_object_type): Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
139         * python/py-internal.h (CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF): New
140         define.
141         (value_object_type, block_object_type, symbol_object_type)
142         (event_object_type, stop_event_object_type, breakpoint_object_type)
143         (frame_object_type): Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
144
145 2013-05-20  Andreas Tobler  <andreas@fgznet.ch>
146
147         * Makefile.in (ALL_TARGET_OBS): Add ppcfbsd-tdep.o.
148         (ALLDEPFILES): Add ppcfbsd-nat.c and ppcfbsd-tdep.c.
149
150 2013-05-20  Doug Evans  <dje@google.com>
151
152         When reading CU, stay in DWO.  Be more tolerent of bad debug info.
153         For Fission.
154         * dwarf2read.c (struct dwarf2_per_cu_data): New member
155         reading_dwo_directly.
156         (struct signatured_type): New member dwo_unit.
157         (struct die_reader_specs): New member comp_dir.
158         (create_signatured_type_table_from_index): Use malloc for
159         all_type_units instead of objfile's obstack.
160         (create_all_type_units): Ditto.
161         (fill_in_sig_entry_from_dwo_entry): New function.
162         (add_type_unit): New function.
163         (lookup_dwo_signatured_type): New function.
164         (lookup_dwp_signatured_type): New function.
165         (lookup_signatured_type): New arg cu.  All callers updated.
166         (init_cu_die_reader): Initialize comp_dir.
167         (read_cutu_die_from_dwo): New arg stub_comp_dir.  All callers updated.
168         Change assert of matching type signatures to call error on mismatch.
169         (lookup_dwo_unit): Add assert.
170         (init_tu_and_read_dwo_dies): New function.
171         (init_cutu_and_read_dies): Call it.
172         (build_type_unit_groups): Handle case of no type unit groups created.
173         (hash_dwo_file, eq_dwo_file): Handle missing comp_dir.
174         (lookup_dwo_cutu): Tweak complaint.
175         (dwarf2_free_abbrev_table): Check for NULL abbrev_table.
176         (dwarf2_per_objfile_free): Free all_type_units.
177
178 2013-05-20  Joel Brobecker  <brobecker@adacore.com>
179
180         * windows-nat.c (handle_unload_dll): Add missing empty line.
181
182 2013-05-20  Joel Brobecker  <brobecker@adacore.com>
183
184         * dwarf2read.c (prototyped_function_p): New function.
185         (read_subroutine_type): Use it.
186
187 2013-05-20  Joel Brobecker  <brobecker@adacore.com>
188
189         * rs6000-aix-tdep.c: De-indent some example code provided
190         as a comment.
191
192 2013-05-17  Edjunior Machado  <emachado@linux.vnet.ibm.com>
193
194         * ppc-linux-nat.c (ppc_linux_region_ok_for_hw_watchpoint): Check if the
195         region is ok for a hardware watchpoint using the new ptrace interface
196         on Power servers.
197
198 2013-05-17  Doug Evans  <dje@google.com>
199
200         * NEWS: Mention new maintenance commands check-symtabs, and
201         expand-symtabs, and renamed check-psymtabs.
202         * psymtab.c (maintenance_check_psymtabs): Renamed from
203         maintenance_check_symtabs.  Only process already-expanded symbol
204         tables.
205         (_initialize_psymtab): Update.
206         * symmisc.c (maintenance_check_symtabs): New function.
207         (maintenance_expand_name_matcher): New function
208         (maintenance_expand_file_matcher): New function
209         (maintenance_expand_symtabs): New function.
210         (_initialize_symmisc): Add "mt check-symtabs" and "mt expand-symtabs"
211         commands.
212
213 2013-05-17  Tom Tromey  <tromey@redhat.com>
214
215         * python/py-inferior.c (infpy_read_memory): Don't call
216         PyErr_SetString if PyObject_New fails.
217         * python/py-frame.c (frame_info_to_frame_object): Don't call
218         PyErr_SetString if PyObject_New fails.
219
220 2013-05-17  Pavel Chupin  <pavel.v.chupin@intel.com>
221
222         * acinclude.m4: Add check for dlopen in libdl.
223         * configure.ac: Ditto.
224         * configure: Regenerate.
225
226 2013-05-17  Phil Muldoon  <pmuldoon@redhat.com>
227
228         * frame.c (frame_stash): Convert to htab.
229         (frame_addr_hash): New function.
230         (frame_addr_hash_eq): New function.
231         (frame_stash_create): Convert function to create
232         a hash table.
233         (frame_stash_add): Convert function to add an entry to a hash
234         table.
235         (frame_stash_find): Convert function to search the hash table.
236         (frame_stash_invalidate): Convert function to empty the hash
237         table.
238         (get_frame_id): Only add to stash if a frame_id is created.
239         (_initialize_frame): Call frame_stash_create.
240
241 2013-05-16  Yue Lu  <hacklu.newborn@gmail.com>  (tiny change)
242
243         * configure.ac: Ensure MIG is available when building for GNU Hurd
244         hosts.
245         * configure: Regenerate.
246
247 2013-05-16  Joel Brobecker  <brobecker@adacore.com>
248
249         * dwarf2read.c (set_cu_language): Add DW_LANG_UPC handling.
250
251 2013-05-16  Joel Brobecker  <brobecker@adacore.com>
252
253         * ada-lang.c (ada_make_symbol_completion_list): Make sure
254         all cleanups are done before returning from this function.
255
256 2013-05-15  Joel Brobecker  <brobecker@adacore.com>
257
258         * utils.h: #include "exceptions.h".
259         (enum errors): Remove partial declaration.
260
261 2013-05-15  Joel Brobecker  <brobecker@adacore.com>
262
263         * gdbarch.sh (core_xfer_shared_libraries_aix): New method.
264         * gdbarch.h, gdbarch.c: Regenerate.
265         * corelow.c (core_xfer_partial): Add TARGET_OBJECT_LIBRARIES_AIX
266         handling.
267
268         * rs6000-aix-tdep.h: New file.
269         * Makefile.in (HFILES_NO_SRCDIR): Add rs6000-aix-tdep.h.
270         * rs6000-aix-tdep.c: Include "rs6000-aix-tdep.h" and
271         "xml-utils.h".
272         (struct field_info, struct ld_info_desc): New types.
273         (ld_info32_desc, ld_info64_desc): New static constants.
274         (struct ld_info): New type.
275         (rs6000_aix_extract_ld_info): New function.
276         (rs6000_aix_shared_library_to_xml): Likewise.
277         (rs6000_aix_ld_info_to_xml): Likewise.
278         (rs6000_aix_core_xfer_shared_libraries_aix): Likewise.
279         (rs6000_aix_init_osabi): Add call to
280         set_gdbarch_core_xfer_shared_libraries_aix.
281         * rs6000-nat.c: Add "rs6000-aix-tdep.h" include.
282         Remove "xml-utils.h" include.
283         (LdInfo): Delete typedef.
284         (ARCH64_DECL, LDI_FIELD, LDI_NEXT, LDI_FD, LDI_FILENAME):
285         Delete macros.
286         (rs6000_ptrace_ldinfo): Change return type to gdb_byte *.
287         Adjust code accordingly.
288         (rs6000_core_ldinfo): Delete, folded into
289         rs6000_aix_core_xfer_shared_libraries_aix.
290         (rs6000_xfer_shared_library): Delete.
291         (rs6000_xfer_shared_libraries): Reimplement.
292
293 2013-05-15  Markus Metzger  <markus.t.metzger@intel.com>
294
295         * record.c (record_goto_cmdlist): New.
296         (cmd_record_goto): Split into this ...
297         (cmd_record_goto_begin): ... this
298         (cmd_record_goto_end): ... and this.
299         (_initialize_record): Change "record goto" to prefix command.
300         Add commands for "record goto begin" and "record goto end".
301         Add an alias for "record goto start" to "record goto begin".
302
303 2013-05-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
304
305         * linespec.c (convert_linespec_to_sals): New comment for
306         SOURCE_FILENAME assignment.
307
308 2013-05-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
309
310         * cleanups.c (restore_my_cleanups): Replace gdb_assert by
311         internal_warning.
312
313 2013-05-14  Tom Tromey  <tromey@redhat.com>
314
315         * eval.c (parse_and_eval_long): Make 'exp' const.
316         * value.h (parse_and_eval_long): Update.
317
318 2013-05-14  Tom Tromey  <tromey@redhat.com>
319
320         * ui-file.c (gdb_fopen): Make arguments const.
321         * ui-file.h (gdb_fopen): Make arguments const.
322
323 2013-05-14  Tom Tromey  <tromey@redhat.com>
324
325         * remote.c (remote_set_trace_notes): Make arguments const.
326         * target.c (update_current_target): Update cast.
327         * target.h (to_set_trace_notes): Make arguments const.
328
329 2013-05-14  Tom Tromey  <tromey@redhat.com>
330
331         * go32-nat.c (go32_terminal_info): Make 'args' const.
332         * inferior.h (child_terminal_info): Update.
333         * inflow.c (child_terminal_info): Make 'args' const.
334         * target.c (default_terminal_info): Make 'args' const.
335         (debug_to_terminal_save_ours): Likewise.
336         * target.h (struct target_ops) <to_terminal_info>: Make argument
337         const.
338
339 2013-05-13  Tom Tromey  <tromey@redhat.com>
340
341         * gcore.c (create_gcore_bfd): Make 'filename' const.
342         * gcore.h (create_gcore_bfd): Make 'filename' const.
343         * record-full.c (record_full_save): Make 'recfilename' const.
344         * target.c (target_save_record): Make 'filename' const.
345         * target.h (struct target_ops) <to_save_record>: Make 'filename'
346         const.
347         (target_save_record): Likewise.
348
349 2013-05-13  Tom Tromey  <tromey@redhat.com>
350
351         PR gdb/15338:
352         * dwarf2read.c (dwarf2_record_block_ranges): Ensure that the
353         ranges section has been read.
354
355 2013-05-13  Tom Tromey  <tromey@redhat.com>
356
357         PR exp/15364:
358         * eval.c (evaluate_subexp_standard) <STRUCTOP_STRUCT,
359         STRUCTOP_PTR>: Return a not_lval value for
360         EVAL_AVOID_SIDE_EFFECTS.
361         * opencl-lang.c (evaluate_subexp_opencl): Return a not_lval value
362         for EVAL_AVOID_SIDE_EFFECTS.
363
364 2013-05-13  Joel Brobecker  <brobecker@adacore.com>
365
366         * rs6000-aix-tdep.c (rs6000_push_dummy_call): Convert
367         floating point registers to register type before storing
368         value.
369         * rs6000-lynx178-tdep.c (rs6000_lynx178_push_dummy_call):
370         Likewise.
371
372 2013-05-10  Joel Brobecker  <brobecker@adacore.com>
373             Tom Tromey  <tromey@redhat.com>
374
375         * common/filestuff.c (mark_fd_no_cloexec, unmark_fd_no_cloexec):
376         New functions.
377         * common/filestuff.c (mark_fd_no_cloexec, unmark_fd_no_cloexec):
378         Declare.
379         * darwin-nat.c (darwin_pre_ptrace): Use mark_fd_no_cloexec.
380         (darwin_ptrace_him): Use unmark_fd_no_cloexec.
381         * inf-ttrace.c (do_cleanup_pfds): Use unmark_fd_no_cloexec.
382         (inf_ttrace_prepare): Use mark_fd_no_cloexec.
383
384 2013-05-10  Freddie Chopin  <freddie_chopin@op.pl>
385             Tom Tromey  <tromey@redhat.com>
386
387         PR build/15414:
388         * configure: Rebuild.
389         * configure.ac (build_warnings): Do not use -Wformat-nonliteral
390         with -Wno-format.
391
392 2013-05-10  Pedro Alves  <palves@redhat.com>
393
394         * remote.c (_initialize_remote): Fix spelling of
395         qXfer:traceframe-info:read packet in packet config command.
396
397 2013-05-10  David Taylor  <dtaylor@emc.com>
398
399         PR remote/15455
400
401         * remote.c (remote_trace_set_readonly_regions): Do not overwrite
402         "QTro" at start of packet.
403
404 2013-05-10  Joel Brobecker  <brobecker@adacore.com>
405
406         * solib-aix.c (solib_aix_relocate_section_addresses):
407         For the .bss section action, apply the same offset as
408         the .data section.
409
410 2013-05-10  Joel Brobecker  <brobecker@adacore.com>
411
412         * solib-aix.c (solib_aix_relocate_section_addresses):
413         Remove FIXME comment.
414
415 2013-05-10  Joel Brobecker  <brobecker@adacore.com>
416
417         PR tdep/15420:
418         * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
419         New functions, directly copied from sparc-sol-thread.c.
420         * sparc-sol-thread.c: Delete.
421         * configure.ac: Remove code handling sparc-solaris-thread.c.
422         * configure: Regenerate.
423
424 2013-05-10  Phil Muldoon  <pmuldoon@redhat.com>
425
426         * stack.c (backtrace_command_1): Add "no-filters", and Python frame
427         filter logic.
428         (backtrace_command): Add "no-filters" option parsing.
429         (_initialize_stack): Alter help to reflect "no-filters" option.
430         * Makefile.in (SUBDIR_PYTHON_OBS): Add py-framefilter.o
431         (SUBDIR_PYTHON_SRCS): Add py-framefilter.c
432         (py-frame.o): Add target
433         * data-directory/Makefile.in (PYTHON_DIR): Add Python frame
434         filter files.
435         * python/python.h: Add new frame filter constants, and flag enum.
436         (apply_frame_filter): Add definition.
437         * python/python.c (apply_frame_filter): New non-Python
438         enabled function.
439         * python/py-utils.c (py_xdecref): New function.
440         (make_cleanup_py_xdecref): Ditto.
441         * python/py-objfile.c: Declare frame_filters dictionary.
442         (objfpy_dealloc): Add frame_filters dealloc.
443         (objfpy_new): Initialize frame_filters attribute.
444         (objfile_to_objfile_object): Ditto.
445         (objfpy_get_frame_filters): New function.
446         (objfpy_set_frame_filters): New function.
447         * python/py-progspace.c: Declare frame_filters dictionary.
448         (pspy_dealloc): Add frame_filters dealloc.
449         (pspy_new): Initialize frame_filters attribute.
450         (pspacee_to_pspace_object): Ditto.
451         (pspy_get_frame_filters): New function.
452         (pspy_set_frame_filters): New function.
453         * python/py-framefilter.c: New file.
454         * python/lib/gdb/command/frame_filters.py: New file.
455         * python/lib/gdb/frames.py: New file.
456         * python/lib/gdb/__init__.py: Initialize global frame_filters
457         dictionary
458         * python/lib/gdb/FrameDecorator.py: New file.
459         * python/lib/gdb/FrameIterator.py: New file.
460         * mi/mi-cmds.c (mi_cmds): Add frame filters command.
461         * mi/mi-cmds.h: Declare.
462         * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames): Add
463         --no-frame-filter logic, and Python frame filter logic.
464         (stack_enable_frame_filters): New function.
465         (parse_no_frame_option): Ditto.
466         (mi_cmd_stack_list_frames): Add --no-frame-filter and Python frame
467         filter logic.
468         (mi_cmd_stack_list_locals): Ditto.
469         (mi_cmd_stack_list_args): Ditto.
470         (mi_cmd_stack_list_variables): Ditto.
471         * NEWS: Add frame filter note.
472
473 2013-05-09  Doug Evans  <dje@google.com>
474
475         * symfile.c (syms_from_objfile_1): Delete args offsets, num_offsets.
476         All callers updated.
477         (syms_from_objfile): Ditto.  Make static.
478         (symbol_file_add_with_addrs): Renamed from
479         symbol_file_add_with_addrs_or_offsets.  Delete args offsets,
480         num_offsets.  All callers updated.
481         * symfile.h (syms_from_objfile): Delete.
482
483         * symfile.c (decrement_reading_symtab): Add assert.
484         (increment_reading_symtab): Ditto.
485
486 2013-05-09  Joel Brobecker  <brobecker@adacore.com>
487
488         * source.c (forward_search_command): Replace call to getc
489         by call to fgetc.
490         (reverse_search_command): Likewise.
491
492 2013-05-08  Doug Evans  <dje@google.com>
493
494         * psymtab.c (expand_symtabs_matching_via_partial): Fix file name
495         matching test.
496
497 2013-05-08  Joel Brobecker  <brobecker@adacore.com>
498
499         * sol-thread.c (info_cb): Factorize the code a little.
500
501 2013-05-08  Joel Brobecker  <brobecker@adacore.com>
502
503         * sol-thread.c (info_cb): Rework the output of the "maintenance
504         info sol-threads" command a bit.
505
506 2013-05-08  Joel Brobecker  <brobecker@adacore.com>
507
508         * sol-thread.c (info_cb) [ti.ti_state == TD_THR_SLEEP]:
509         Replace ti.ti_startfunc by ti.ti_pc.
510
511 2013-05-08  Joel Brobecker  <brobecker@adacore.com>
512
513         * solib-aix.c (solib_aix_free_library_list): New function
514         for the case where HAVE_LIBEXPAT is not defined.
515
516 2013-05-07  Sergio Durigan Junior  <sergiodj@redhat.com>
517
518         PR breakpoints/15413:
519         * breakpoint.c (condition_completer): Simplify the code to
520         disconsider multiple locations of breakpoints when completing the
521         "condition" command.
522
523 2013-05-07  Pierre Muller  <muller@sourceware.org>
524
525         * common/linux-btrace.c: ARI fix: Include "gdb_wait.h"
526         instead of <sys/wait.h>.
527
528 2013-05-07  Pierre Muller  <muller@sourceware.org>
529
530         * nios2-tdep.c (nios2_dwarf_reg_to_regnum): ARI fix: remove
531         trailing new line from warning message.
532
533 2013-05-07  Pierre Muller  <muller@sourceware.org>
534
535         * contrib/ari/gdb_ari.sh (SOLIB_ADD, SOLIB_CREATE_INFERIOR_HOOK)
536         (PC_SOLIB): Change type from ari_deprecate to ari_regression.
537
538 2013-05-07  Joel Brobecker  <brobecker@adacore.com>
539
540         * rs6000-nat.c (rs6000_core_ldinfo): Remove '\n' at end of
541         error message (ARI fix).
542
543 2013-05-07  Joel Brobecker  <brobecker@adacore.com>
544
545         * features/library-list-aix.dtd: Replace library-list by
546         library-list-aix.
547         * rs6000-nat.c: Replace library-list by library-list-aix
548         throughout.
549         * solib-aix.c: Likewise.
550
551 2013-05-07  Joel Brobecker  <brobecker@adacore.com>
552
553         * target.h (enum target_object) [TARGET_OBJECT_LIBRARIES_AIX]:
554         Renames TARGET_OBJECT_AIX_LIBRARIES.
555         * rs6000-nat.c: Replace TARGET_OBJECT_AIX_LIBRARIES with
556         TARGET_OBJECT_LIBRARIES_AIX throughout.
557         * solib-aix.c: Likwise.
558
559 2013-05-07  Yao Qi  <yao@codesourcery.com>
560
561         * solib-dsbt.c (struct dsbt_info) <enable_break2_done>: Remove.
562         (get_dsbt_info, enable_break, dsbt_clear_solib): Update.
563
564 2013-05-07  Yao Qi  <yao@codesourcery.com>
565
566         * solib-dsbt.c (enable_break): Declare.
567         (dsbt_current_sos): Remove call to enable_break2.
568         (enable_break2): Rename to enable_break.  Set solib breakpoint
569         on '_dl_debug_state'.
570         (enable_break): Remove.
571
572 2013-05-07  Luis Machado  <lgustavo@codesourcery.com>
573
574         * ppc-linux-nat.c (ppc_linux_new_thread): Clear the new thread's
575         debug state prior to replicating existing hardware watchpoints or
576         breakpoints.
577
578 2013-05-07  Jan Kratochvil  <jan.kratochvil@redhat.com>
579
580         * gcore.c (gcore_create_callback): Ignore sections with
581         separate_debug_objfile_backlink != NULL.
582
583 2013-05-06  Sandra Loosemore  <sandra@codesourcery.com>
584             Andrew Jenner  <andrew@codesourcery.com>
585             Chung-Lin Tang  <cltang@codesourcery.com>
586             Julian Brown  <julian@codesourcery.com>
587
588         Based on the nios2-elf port from Altera Corporation.
589
590         * Makefile.in (ALL_TARGET_OBS): Add nios2-tdep.o and
591         nios2-linux-tdep.o.
592         (HFILES_NO_SRCDIR): Add nios2-tdep.h.
593         (ALLDEPFILES): Add nios2-tdep.c and nios2-linux-tdep.c.
594         * configure.tgt: Add nios2*-*-linux* and nios2*-*-* targets.
595         * nios2-tdep.h: New.
596         * nios2-tdep.c: New.
597         * nios2-linux-tdep.c: New.
598         * features/Makefile (WHICH): Add nios2-linux.
599         (nios2-linux-expedite): Set.
600         * features/nios2-cpu.xml: New.
601         * features/nios2.xml: New.
602         * features/nios2-linux.xml: New.
603         * features/nios2.c: New (autogenerated).
604         * features/nios2-linux.c: New (autogenerated).
605         * regformats/nios2-linux.dat: New (autogenerated).
606         * NEWS (Changes since GDB 7.6): Add new Nios II targets
607         and commands.
608
609 2013-05-06  Doug Evans  <dje@google.com>
610
611         * symfile.c: Whitespace cleanup.
612
613         * solist.h (struct target_so_ops): New member clear_so.
614         * solib-svr4.c (svr4_clear_so): New function.
615         (_initialize_svr4_solib): Set svr4_so_ops.clear_so.
616         * solib.c (clear_so): Renamed from free_so_symbols.
617         All callers updated.  Call target clear_so if it exists.
618
619 2013-05-06  Tom Tromey  <tromey@redhat.com>
620
621         * ada-lang.c (ada_value_primitive_packed_val): Don't
622         call value_incref.
623         * value.c (set_value_parent): Incref the new parent and decref
624         the old parent.
625         (value_copy, value_primitive_field): Use set_value_parent.
626
627 2013-05-06  Tom Tromey  <tromey@redhat.com>
628
629         * dwarf2loc.c (invalid_synthetic_pointer): Move earlier.
630         (indirect_pieced_value): Call dwarf2_fetch_constant_bytes
631         if needed.
632         * dwarf2loc.h (dwarf2_fetch_constant_bytes): Declare.
633         * dwarf2read.c (write_constant_as_bytes)
634         (dwarf2_fetch_constant_bytes): New functions.
635
636 2013-05-06  Tom Tromey  <tromey@redhat.com>
637
638         * dwarf2read.c (dwarf2_const_value_data): Remove unused
639         parameters.
640         (dwarf2_const_value_attr): Update.
641
642 2013-05-06  Tom Tromey  <tromey@redhat.com>
643
644         * somread.c (som_symfile_offsets): Add 'const' to addrs.
645         * machoread.c (macho_symfile_offsets): Add 'const' to addrs.
646         * xcoffread.c (xcoff_symfile_offsets): Add 'const' to addrs.
647         Remove declaration.
648
649 2013-05-06  Tom Tromey  <tromey@redhat.com>
650
651         * dwarf2read.c (dwarf2_const_value_attr): Use 'obstack', not
652         objfile's obstack.
653
654 2013-05-06  Doug Evans  <dje@google.com>
655
656         * dbxread.c (process_one_symbol): Constify section_offsets parameter.
657         * stabsread.h (process_one_symbol): Update declaration.
658         * dwarf2read.c (dw2_relocate): Constify new_offsets, delta parameters.
659         * elfread.c (elf_symfile_relocate_probe): Ditto.
660         * psymtab.c (relocate_psymtabs): Ditto.
661         * objfiles.c (objfile_relocate1): Constify new_offsets parameter.
662         (objfile_relocate): Ditto.
663         * objfiles.h (objfile_relocate): Update declaration.
664         * symfile.c (relative_addr_info_to_section_offsets): Constify
665         addrs parameter.
666         (default_symfile_offsets): Ditto.
667         (syms_from_objfile_1): Constify offsets parameter.
668         (syms_from_objfile): Ditto.
669         (symbol_file_add_with_addrs_or_offsets): Ditto.
670         (symfile_map_offsets_to_segments): Constify data parameter.
671         * symfile.h (struct quick_symbol_functions): Constify new_offsets,
672         delta parameters of member relocate.
673         (struct sym_probe_fns): Constify new_offsets,
674         delta parameters of member sym_relocate_probe.
675         (struct sym_fns): Constify section_addr_info parameter of member
676         sym_offsets.
677         (relative_addr_info_to_section_offsets): Update declaration.
678         (default_symfile_offsets): Ditto.
679         (syms_from_objfile): Ditto.
680         (symfile_map_offsets_to_segments): Ditto.
681
682         * symfile.c (syms_from_objfile_1): Use correct section count when
683         objfile->sf == NULL.
684
685 2013-05-06  Mike Frysinger  <vapier@gentoo.org>
686
687         * common/linux-btrace.c (intel_supports_btrace): Fix indentation.
688
689 2013-05-06  Doug Evans  <dje@google.com>
690
691         * psympriv.h (struct partial_symtab): Augment comment for member
692         section_offsets.
693
694 2013-05-06  Joel Brobecker  <brobecker@adacore.com>
695
696         Reimplement shared library support on ppc-aix...
697         * target.h (TARGET_OBJECT_AIX_LIBRARIES): New target_object enum.
698         * features/library-list-aix.dtd: New file.
699         * solib-aix.h, solib-aix.c: New file.
700         * rs6000-aix-tdep.c: #include "solib.h" and "solib-aix.h".
701         (rs6000_find_toc_address_hook): Delete.
702         (rs6000_push_dummy_call): Rewrite code setting the TOC value.
703         (rs6000_aix_init_osabi): Register solib_aix_so_ops.
704         * rs6000-nat.c: Remove "xcoffsolib.h" include.  Include
705         "xml-utils.h".
706         (map_vmap, vmap_exec, vmap_ldinfo, add_vmap, objfile_symbol_add)
707         (vmap_symtab, fixup_breakpoints): Delete.
708         (rs6000_xfer_shared_libraries): New function.
709         (rs6000_xfer_partial): Add TARGET_OBJECT_AIX_LIBRARIES handling.
710         (vmap_secs, bss_data_overlap, vmap_add_symbols): Delete.
711         (xcoff_relocate_symtab, xcoff_relocate_core): Delete.
712         (rs6000_ptrace_ldinfo, rs6000_core_ldinfo)
713         (rs6000_xfer_shared_library): New function.
714         (find_toc_address): Delete.
715         (_initialize_rs6000_nat): Do not set rs6000_find_toc_address_hook.
716         * rs6000-tdep.h (rs6000_find_toc_address_hook): Remove.
717         * xcoffread.c (record_minimal_symbol): Reloate symbol address
718         before creating minimal symbol.  Adjust function description
719         accordingly.
720         (scan_xcoff_symtab): Replace call to
721         prim_record_minimal_symbol_and_info by call to
722         record_minimal_symbol.
723         (xcoff_symfile_offsets): Reimplement mostly as a wrapper
724         around default_symfile_offsets.
725         * configure.tgt: Add solib-aix.o to gdb_target_obs for
726         powerpc-aix targets.
727         * config/rs6000/nm-rs6000.h: Delete.
728         * config/powerpc/aix.mh (NAT_FILE): Delete.
729         (NATDEPFILES): Remove xcoffsolib.o.
730         * Makefile.in (XMLFILES): Add library-list-aix.dtd.
731         (ALL_TARGET_OBS): Add solib-aix.o.
732         (HFILES_NO_SRCDIR): Remove xcoffsolib.h and
733         config/rs6000/nm-rs6000.h.  Add solib-aix.h.
734         (ALLDEPFILES): Add solib-aix.c.  Remove xcoffsolib.c.
735         * xcoffsolib.h, xcoffsolib.c: Delete.
736
737         * solib.c (reload_shared_libraries): Remove reference to
738         SOLIB_CREATE_INFERIOR_HOOK.
739         * breakpoint.c (handle_solib_event): Remove reference to SOLIB_ADD.
740         (disable_breakpoints_in_shlibs): Remove reference to PC_SOLIB.
741         (momentary_bkpt_re_set): Replace SOLIB_ADD by solib_add in
742         comment.
743         * corelow.c (deprecated_core_resize_section_table): Delete.
744         * exec.c: Remove include of xcoffsolib.h".
745         (map_vmap, vmap): Delete.
746         (exec_close_1): Remove references to vmap.
747         (exec_file_attach): Remove vmap handling code, and reference
748         to DEPRECATED_IBM6000_TARGET.
749         (bfdsec_to_vmap): Delete.
750         (exec_files_info): Remove block of code handling VMAP.
751         * infcmd.c (post_create_inferior): Remove reference to
752         SOLIB_CREATE_INFERIOR_HOOK and SOLIB_ADD.
753         * infrun.c (follow_exec): Remove reference to
754         SOLIB_CREATE_INFERIOR_HOOK.
755         * stack.c (print_frame): Remove reference to PC_SOLIB.
756         * solib-dsbt.c (dsbt_current_sos): Adjust comment.
757         (dsbt_relocate_main_executable): Likewise.
758         * solib-frv.c (frv_current_sos): Likewise.
759
760 2013-05-06  Joel Brobecker  <brobecker@adacore.com>
761
762         * sol-thread.c (rw_common): Cast BUF to "gdb_byte *" in calls
763         to target_write_memory and target_read_memory.
764
765 2013-05-06  Joel Brobecker  <brobecker@adacore.com>
766
767         * darwin-nat.c (darwin_setup_fake_stop_event): New function.
768         (darwin_attach): Adjust using darwin_setup_fake_stop_event.
769
770 2013-05-06  Joel Brobecker  <brobecker@adacore.com>
771
772         * darwin-nat.c: Replace all "%x" instances in format strings
773         into "0x%x" throughout.
774
775 2013-05-06  Joel Brobecker  <brobecker@adacore.com>
776
777         * darwin-nat.c (darwin_mourn_inferior): Replace call to
778         gdb_assert by call to MACH_CHECK_ERROR.
779         (darwin_attach_pid): Raise an error rather than a failed
780         assertion when various system calls failed.  Report a warning
781         instead of raising a failed assertion when PREV_NOT is not NULL
782         after call to mach_port_request_notification.
783         (darwin_ptrace_me): Raise an error rather than a failed
784         assertion when read returns nonzero.
785
786 2013-05-06  Joel Brobecker  <brobecker@adacore.com>
787
788         * amd64-darwin-tdep.c: Remove #include "gdb_assert.h".
789
790 2013-05-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
791
792         * cleanups.c (restore_my_cleanups): New gdb_assert for SENTINEL_CLEANUP.
793
794 2013-05-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
795
796         * event-top.c (display_gdb_prompt): Call missing do_cleanups.
797         * infcmd.c (get_return_value) <!stop_regs>: Do not overwrite CLEANUP.
798         * symfile.c (symfile_bfd_open): New variable back_to.  Do not leave
799         a stale cleanup.  Fix double free of NAME.
800
801 2013-05-04  Eli Zaretskii  <eliz@gnu.org>
802
803         * windows-nat.c (windows_delete_thread): Accept an additional
804         argument, the thread's exit code, and announce thread death when
805         print_thread_events is non-zero and we are deleting a thread that
806         is not the main thread.
807         (get_windows_debug_event): Pass thread exit code to
808         windows_delete_thread.
809
810 2013-05-03  Kevin Buettner  <kevinb@redhat.com>
811
812         * v850-tdep.c (elf-bfd.h, elf/v850.h): Include.
813         (R_149_REGNUM, E_NUM_OF_V850E2_REGS, E_SELID_1_R0_REGNUM)
814         (E_SELID_1_R31_REGNUM, E_SELID_2_R0_REGNUM, E_SELID_2_R31_REGNUM)
815         (E_SELID_3_R0_REGNUM, E_SELID_3_R31_REGNUM, E_SELID_4_R0_REGNUM)
816         (E_SELID_4_R31_REGNUM, E_SELID_5_R0_REGNUM, E_SELID_5_R31_REGNUM)
817         (E_SELID_6_R0_REGNUM, E_SELID_6_R31_REGNUM, E_SELID_7_R0_REGNUM, E_SELID_7_R31_REGNUM)
818         (E_VR0_REGNUM, E_VR31_REGNUM, E_NUM_OF_V850E3V5_REGS): Define.
819         (v850_abi, V850_ABI_GCC, V850_ABI_RH850): New enum and constants.
820         (gdbarch_tdep): New struct.
821         (v850e2_register_name): Use E_NUM_OF_V850E2_REGS instead of
822         E_NUM_REGS.
823         (v850e3v5_register_name): New function.
824         (v850_register_type): v850e3v5 vector registers are 64-bits wide.
825         (v850_use_struct_convention): Add `gdbarch' parameter.  Add new
826         code handling the struct return conventions for the RH850 ABI.
827         Update all callers.
828         (v850_eight_byte_align_p): New function.
829         (v850_push_call_dummy): Push structs by value, not by reference
830         for the RH850 ABI.  Add support for eight byte alignment.
831         (v850_dbtrap_breakpoint_from_pc): New function.
832         (v850_gdbarch_init): Add ABI detection code.  Register
833         v850e3v5_register_name for the v850e3v5 architecture.  Set the
834         number of registers for v850e3v5.  Register
835         v850_dbtrap_breakpoint_from_pc as appropriate.
836         (_initialize_gdbarch_init): Registration bfd_arch_v850_rh850.
837
838 2013-05-03  Doug Evans  <dje@google.com>
839
840         * objfiles.c (objfile_relocate): Use gdb_bfd_count_sections instead
841         of bfd_count_sections.
842         * solib-target.c (solib_target_relocate_section_addresses): Ditto.
843         * symfile.c (default_symfile_offsets): Ditto.
844         (syms_from_objfile_1): Ditto.  Make dummy addrs list an array of
845         one entry, not bfd_count_sections entries.
846
847 2013-05-03  Kevin Buettner  <kevinb@redhat.com>
848
849         * rl78-tdep.c (rl78_register_reggroup_p): Include SP in the
850         `save' and `restore' register groups.  Don't include SPL
851         or SPH in these groups.
852         (rl78_dwarf_reg_to_regnum):  Adjust mapping for
853         RL78_PC_REGNUM.  Add mappings for RL78_PSW_REGNUM,
854         RL78_ES_REGNUM, and RL78_CS_REGNUM.
855         (rl78_gdbarch_init): Set `dwarf2_addr_size' to 4.  Invoke
856         dwarf2_append_unwinders().
857
858 2013-05-03  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
859
860         * break-catch-sig.c (signal_catchpoint_breakpoint_hit): Do not
861         ignore SIGINT and SIGTRAP in case these internal signals are
862         caught explicitely.
863
864 2013-05-01  Joel Brobecker  <brobecker@adacore.com>
865
866         * darwin-nat.c (darwin_read_write_inferior): Change types
867         of parameters rdaddr and wraddr to "gdb_byte *". Change type
868         of copy_count to "mach_msg_type_number_t".
869         (darwin_read_dyld_info): Change type of parameter
870         rdaddr to "gdb_byte *".
871
872 2013-05-01  Joel Brobecker  <brobecker@adacore.com>
873
874         * solib-ia64-hpux.c (ia64_hpux_read_dynamic_info): Change cast
875         of &info->load_map from "char *" to "gdb_byte *".
876
877 2013-05-01  Joel Brobecker  <brobecker@adacore.com>
878
879         * ia64-tdep.c (ia64_access_fpreg): Change cast of val
880         from "char *" to "gdb_byte *".
881         (ia64_access_rse_fpreg, ia64_access_mem): Likewise.
882
883 2013-04-30  Doug Evans  <dje@google.com>
884
885         * dwarf2read.c (lookup_dwo_unit): Return NULL if DWO not found.
886         (init_cutu_and_read_dies): Flag a complaint, not error, for bad
887         DWO stub.  If DWO isn't found, just use stub.
888         (lookup_dwo_cutu): Don't try DWO if there's a DWP file.
889
890         * dwarf2read.c (dw2_find_symbol_file): Initialize filename before
891         calling init_cutu_and_read_dies.
892
893 2013-03-27  Walfred Tedeschi  <walfred.tedeschi@intel.com>
894
895         * target-descriptions.c (maint_print_c_tdesc_cmd):
896         Add case to parse structures as register types and
897         bitfields.
898
899 2013-04-30  Walfred Tedeschi  <walfred.tedeschi@intel.com>
900
901         * MAINTAINERS (Write After Approval): Add myself to the list.
902
903 2013-04-30  Joel Brobecker  <brobecker@adacore.com>
904
905         * sol-thread.c (rw_common): Change type of parameter "buf"
906         to "gdb_byte *".
907         (ps_pdwrite, ps_ptwrite): Cast parameter "buf" in call to
908         rw_common to "gdb_byte *" instead of "char *".
909
910 2013-04-30  Joel Brobecker  <brobecker@adacore.com>
911
912         * sol-thread.c (info_cb) [ti.ti_startfunc != 0]: Change type
913         of local variable msym to const struct bound_minimal_symbol.
914         Adjust use accordingly.
915         [ti.ti_state == TD_THR_SLEEP]: Likewise.
916
917 2013-04-30  Samuel Thibault  <samuel.thibault@gnu.org>
918
919         * i386gnu-nat.c (CREG_OFFSET): New macro.
920         (creg_offset): New array.
921         (CREG_ADDR): Use creg_offset instead of reg_offset.
922
923 2013-04-30  Joel Brobecker  <brobecker@adacore.com>
924
925         * mep-tdep.c (mep_write_pc): Delete.
926         (mep_gdbarch_init): Remove call to set_gdbarch_write_pc.
927         Add call to set_gdbarch_pc_regnum.
928
929 2013-04-30  Joel Brobecker  <brobecker@adacore.com>
930
931         * common/filestuff.c: Replace #include <dirent.h> by
932         #include "gdb_dirent.h".
933
934 2013-04-30  Joel Brobecker  <brobecker@adacore.com>
935
936         * common/filestuff.c: Replace #include <sys/stat.h> by
937         #include "gdb_stat.h".
938
939 2013-04-29  Pierre Muller  <muller@sourceware.org>
940
941         * dwarf2read.c (handle_DW_AT_stmt_list): Avoid ARI warning for
942         editCase function rule.
943         (get_DW_AT_signature_type): Likewise.
944
945 2013-04-29  Joel Brobecker  <brobecker@adacore.com>
946
947         * m32r-tdep.c (m32r_write_pc): Delete.
948         (m32r_gdbarch_init): Remove call to set_gdbarch_write_pc.
949         Add call to set_gdbarch_pc_regnum.
950
951 2013-04-29  Pierre Muller  <muller@sourceware.org>
952
953         * ./contrib/ari/gdb_ari.sh (editCase rule): Fix spelling error.
954
955 2013-04-29  Joel Brobecker  <brobecker@adacore.com>
956
957         * dwarf2read.c (get_DW_AT_signature_type): Add ARI marker.
958
959 2013-04-28  Yao Qi  <yao@codesourcery.com>
960
961         * solib-dsbt.c (fetch_loadmap): Re-indent.
962         (displacement_from_map, enable_break2): Likewise.
963         (dsbt_relocate_section_addresses): Likewise.
964
965 2013-04-26  Joel Brobecker  <brobecker@adacore.com>
966
967         GDB 7.6 released.
968
969 2013-04-25  Andreas Kaufmann  <Andreas.Kaufmann@synopsys.com>
970
971         PR corefiles/14983:
972         * dwarf2read.c (process_full_comp_unit): Always create a static
973         block.
974
975 2013-04-25  Hui Zhu  <hui@codesourcery.com>
976
977         * breakpoint.c (build_target_command_list): Change loc->cond_bytecode
978         to loc->cmd_bytecode.
979
980 2013-04-24  Doug Evans  <dje@google.com>
981
982         * dwarf2read.c (setup_type_unit_groups): Fix comment.
983
984 2013-04-22  Keith Seitz  <keiths@redhat.com>
985
986         * tracepoint.c (trace_save):  Call the writer's start method.
987
988 2013-04-24  Muhammad Bilal  <mbilal@codesourcery.com>
989
990         PR gdb/10462
991         * cli/cli-decode.c (lookup_command): Show an error if there is no space
992         before argument.
993
994 2013-04-23  Tom Tromey  <tromey@redhat.com>
995
996         * common/filestuff.c: Check USE_WIN32API before including
997         sys/socket.h.
998         (HAVE_F_GETFD): New define.
999         (mark_cloexec): Check HAVE_F_GETFD.
1000         (gdb_open_cloexec): Change 'mode' to unsigned long.
1001         (gdb_socketpair_cloexec): Check HAVE_SOCKETPAIR.
1002         (gdb_pipe_cloexec): Check HAVE_PIPE.
1003         * common/filestuff.h (gdb_open_cloexec): Change 'mode' to unsigned
1004         long.
1005
1006 2013-04-23  Hui Zhu  <hui@codesourcery.com>
1007
1008         PR gdb/15293
1009         * breakpoint.c (bpstat_what): Add BPSTAT_WHAT_SINGLE to bp_dprintf.
1010
1011 2013-04-23  Hui Zhu  <hui@codesourcery.com>
1012
1013         PR gdb/15165
1014         * breakpoint.c (dprintf_print_recreate): New.
1015         (save_breakpoints): Let it not save dprintf commands.
1016         (initialize_breakpoint_ops): Set dprintf_print_recreate.
1017
1018 2013-04-22  Tom Tromey  <tromey@redhat.com>
1019
1020         PR gdb/7912:
1021         * Makefile.in (SFILES): Add filestuff.c
1022         (COMMON_OBS): Add filestuff.o.
1023         (filestuff.o): New target.
1024         * auto-load.c (auto_load_objfile_script_1): Use
1025         gdb_fopen_cloexec.
1026         * auxv.c (procfs_xfer_auxv): Use gdb_open_cloexec.
1027         * cli/cli-cmds.c (shell_escape): Call close_most_fds.
1028         * cli/cli-dump.c (fopen_with_cleanup): Use gdb_fopen_cloexec.
1029         * common/agent.c (gdb_connect_sync_socket): Use
1030         gdb_socket_cloexec.
1031         * common/filestuff.c: New file.
1032         * common/filestuff.h: New file.
1033         * common/linux-osdata.c (linux_common_core_of_thread)
1034         (command_from_pid, commandline_from_pid, print_source_lines)
1035         (linux_xfer_osdata_shm, linux_xfer_osdata_sem)
1036         (linux_xfer_osdata_msg, linux_xfer_osdata_modules): Use
1037         gdb_fopen_cloexec.
1038         * common/linux-procfs.c (linux_proc_get_int)
1039         (linux_proc_pid_has_state): Use gdb_fopen_cloexec.
1040         * config.in, configure: Rebuild.
1041         * configure.ac: Don't check for sys/socket.h.  Check for
1042         fdwalk, pipe2.
1043         * corelow.c (core_open): Use gdb_open_cloexec.
1044         * dwarf2read.c (write_psymtabs_to_index): Use gdb_fopen_cloexec.
1045         * fork-child.c (fork_inferior): Call close_most_fds.
1046         * gdb_bfd.c (gdb_bfd_open): Use gdb_open_cloexec.
1047         * inf-child.c (inf_child_fileio_readlink): Use gdb_open_cloexec.
1048         * linux-nat.c (linux_nat_thread_name, linux_proc_pending_signals):
1049         Use gdb_fopen_cloexec.
1050         (linux_proc_xfer_partial, linux_proc_xfer_spu): Use
1051         gdb_open_cloexec.
1052         (linux_async_pipe): Use gdb_pipe_cloexec.
1053         * remote-fileio.c (remote_fileio_func_open): Use
1054         gdb_open_cloexec.
1055         * remote.c (remote_file_put, remote_file_get): Use
1056         gdb_fopen_cloexec.
1057         * ser-pipe.c (pipe_open): Use gdb_socketpair_cloexec,
1058         close_most_fds.
1059         * ser-tcp.c (net_open): Use gdb_socket_cloexec.
1060         * ser-unix.c (hardwire_open): Use gdb_open_cloexec.
1061         * solib.c (solib_find): Use gdb_open_cloexec.
1062         * source.c (openp, find_and_open_source): Use gdb_open_cloexec.
1063         * tracepoint.c (tfile_start): Use gdb_fopen_cloexec.
1064         (tfile_open): Use gdb_open_cloexec.
1065         * tui/tui-io.c (tui_initialize_io): Use gdb_pipe_cloexec.
1066         * ui-file.c (gdb_fopen): Use gdb_fopen_cloexec.
1067         * xml-support.c (xml_fetch_content_from_file): Use
1068         gdb_fopen_cloexec.
1069         * main.c (captured_main): Call notice_open_fds.
1070
1071 2013-04-22  Edjunior Machado  <emachado@linux.vnet.ibm.com>
1072
1073         * remote-sim.c (dump_mem): Change the type of 'buf' parameter from
1074         'char *' to 'gdb_byte *'.
1075         (gdbsim_store_register): Change the type of 'tmp' from 'char' to
1076         'gdb_byte'.
1077
1078 2013-04-22  Yao Qi  <yao@codesourcery.com>
1079
1080         * infrun.c: Fix typo in comment.
1081
1082 2013-04-22  Andrew Haley  <aph@redhat.com>
1083
1084         * arm-tdep.c (BranchDest): Cast result as "unsigned long",
1085         instead of "long".
1086
1087 2013-04-20  Yao Qi  <yao@codesourcery.com>
1088
1089         * ctf.c (ctf_fetch_registers): Change the type of 'regs' from
1090         'char *' to 'gdb_byte *'.  Cast the return value of
1091         'bt_ctf_get_char_array' to 'gdb_byte *'.
1092
1093 2013-04-19  Pedro Alves  <palves@redhat.com>
1094
1095         * configure.ac (build_warnings): Replace -Wno-pointer-sign with
1096         -Wpointer-sign.
1097         * configure: Regenerate.
1098
1099 2013-04-19  Pedro Alves  <palves@redhat.com>
1100
1101         * ser-tcp.c (net_read_prim): Cast second argument to recv to
1102         'void *'.
1103
1104 2013-04-19  Pedro Alves  <palves@redhat.com>
1105
1106         * monitor.c (monitor_write_memory, monitor_write_memory_bytes):
1107         Change type of 'myaddr' parameter to gdb_byte pointer.
1108         (monitor_write_memory_longlongs): Likewise.  Cast 'myaddr' pointer
1109         to 'long long' pointer instead of to 'unsigned long long'.
1110         (monitor_write_memory_block, monitor_read_memory_single)
1111         (monitor_read_memory): Change type of 'myaddr' parameter to
1112         gdb_byte pointer.
1113
1114 2013-04-19  Pedro Alves  <palves@redhat.com>
1115
1116         * record.c (validate_history_size): Make parameter 'setting'
1117         unsigned.
1118
1119 2013-04-19  Pedro Alves  <palves@redhat.com>
1120
1121         * ctf.c (ctf_write_uploaded_tsv, ctf_write_uploaded_tp): Add casts
1122         to 'gdb_byte *'.
1123
1124 2013-04-19  Pedro Alves  <palves@redhat.com>
1125
1126         * cp-valprint.c (cp_print_class_member): Change type of 'fieldno'
1127         local to int.
1128
1129 2013-04-19  Pedro Alves  <palves@redhat.com>
1130
1131         * ada-lang.c (print_it_exception): Add cast to gdb_byte *.
1132         * ada-tasks.c (read_fat_string_value): Likewise.
1133
1134 2013-04-19  Pedro Alves  <palves@redhat.com>
1135
1136         * dwarf2-frame.c (execute_cfa_program): Make 'bytes_read' local
1137         unsigned.  Pass 'tmp' to safe_read_uleb128 instead of the signed
1138         'offset', and adjust.
1139
1140 2013-04-19  Pedro Alves  <palves@redhat.com>
1141
1142         * dwarf2read.c (dwarf2_get_dwz_file): Add cast to const char *.
1143         (read_index_from_section): Add cast to 'char *'.
1144
1145 2013-04-19  Pedro Alves  <palves@redhat.com>
1146
1147         * xcoffread.c (xcoff_initial_scan): Add cast to 'char *'.
1148
1149 2013-04-19  Pedro Alves  <palves@redhat.com>
1150
1151         * coff-pe-read.c (read_pe_exported_syms): Handle strings as char.
1152
1153 2013-04-19  Pedro Alves  <palves@redhat.com>
1154
1155         * record-full.c (record_full_get_bookmark): Change local 'ret'
1156         type to char * and add cast to gdb_byte *.
1157         (record_full_goto_bookmark): Handle 'bookmark' argument as a
1158         string.
1159         * reverse.c (goto_bookmark_command): Add casts to gdb_byte *.
1160
1161 2013-04-19  Pedro Alves  <palves@redhat.com>
1162
1163         * python/py-inferior.c (infpy_write_memory): Add cast to gdb_byte
1164         * python/py-prettyprint.c (print_string_repr): Change type of
1165         'output' local to char *.  Add cast to gdb_byte * in
1166         LA_PRINT_STRING call.
1167         (print_children): Change type of 'output' local to char *.
1168         * python/py-value.c (valpy_string): Add cast to const char * in
1169         PyUnicode_Decode call.
1170
1171 2013-04-19  Pedro Alves  <palves@redhat.com>
1172
1173         * remote-mips.c (mips_cksum): Rename 'data' parameter to 'datastr'
1174         and change its type to 'const char *'.  Adjust.
1175         (mips_send_packet): Add cast to 'char *', and remove cast to
1176         'unsigned char *'.
1177         (mips_receive_packet): Remove cast to 'unsigned char *'.
1178         (mips_load_srec): Use bfd_byte.
1179         (pmon_makeb64, pmon_zeroset): Make 'chksum' parameter unsigned.
1180         (pmon_checkset): Make 'value' parameter unsigned.
1181
1182 2013-04-19  Pedro Alves  <palves@redhat.com>
1183
1184         * common/agent.c (agent_run_command): Add cast to gdb_byte *.
1185
1186 2013-04-19  Pedro Alves  <palves@redhat.com>
1187
1188         * remote.c (remote_write_bytes_aux, compare_sections_command)
1189         (remote_read_qxfer)
1190         (remote_search_memory, remote_hostio_pwrite, remote_hostio_pread)
1191         (remote_hostio_readlink, remote_bfd_iovec_pread)
1192         (remote_set_trace_notes): Use gdb_byte when RSP buffer is used as
1193         binary buffer, and char when buffer is used as string.
1194         * tracepoint.c (encode_source_string, tfile_write_uploaded_tp)
1195         (trace_save, tfile_open, traceframe_walk_blocks)
1196         (tfile_fetch_registers): Likewise.
1197
1198 2013-04-19  Pedro Alves  <palves@redhat.com>
1199
1200         * ser-base.c (ser_base_write): Change prototype -- take 'void *'
1201         buffer and size_t size.  Adjust.
1202         * ser-base.h (ser_base_write): Adjust.
1203         * ser-go32.c (cnts): Change type to size_t.
1204         (dos_write): Change prototype -- take 'void *'
1205         buffer and size_t size.  Adjust.
1206         (dos_info): Print elements of 'cnts' as unsigned long.
1207         * serial.c (serial_write): Likewise.
1208         * serial.h (serial_write): Adjust.
1209         (struct serial_ops) <write>: Change prototype -- take 'void *'
1210         buffer and size_t size.  Adjust.
1211
1212 2013-04-19  Pedro Alves  <palves@redhat.com>
1213
1214         * c-lang.c (evaluate_subexp_c): Cast result of obstack_base to
1215         gdb_byte *.
1216         * linux-tdep.c (linux_make_mappings_corefile_notes): Likewise.
1217
1218 2013-04-19  Pedro Alves  <palves@redhat.com>
1219
1220         * alpha-tdep.c (alpha_extract_return_value): Use
1221         regcache_cooked_read_unsigned to read 'v0'.
1222
1223 2013-04-19  Pedro Alves  <palves@redhat.com>
1224
1225         * xtensa-tdep.c (execute_l32e, execute_s32e): Change type of
1226         parameters 'at', 'as' and 'offset' to uint32_t.
1227
1228 2013-04-19  Pedro Alves  <palves@redhat.com>
1229
1230         * aarch64-tdep.c (aarch64_analyze_prologue): Change type of local
1231         'is64' to signed 'int'.
1232
1233 2013-04-19  Pedro Alves  <palves@redhat.com>
1234
1235         * s390-tdep.c (is_rs, is_rsy, is_rx, is_rxy): Change type of 'd2'
1236         parameter to int *.
1237
1238 2013-04-19  Pedro Alves  <palves@redhat.com>
1239
1240         * ppc-linux-tdep.c (ppc_skip_trampoline_code): Change local
1241         'insnbuf' buffer type to unsigned int[].
1242
1243 2013-04-19  Pedro Alves  <palves@redhat.com>
1244
1245         * mips-tdep.c (mips_read_pc): Change local 'pc' type to LONGEST.
1246
1247 2013-04-19  Pedro Alves  <palves@redhat.com>
1248
1249         * mep-tdep.c (mep_get_insn): Change 'insn' parameter type to
1250         unsigned long *.
1251
1252 2013-04-19  Pedro Alves  <palves@redhat.com>
1253
1254         * alpha-tdep.c (heuristic_fence_post): Change type to int.
1255         (alpha_heuristic_proc_start): Adjust to check -1 instead of
1256         UINT_MAX.
1257         * mips-tdep.c (heuristic_fence_post): Change type to int.
1258         (heuristic_proc_start): Adjust to check -1 instead of UINT_MAX.
1259
1260 2013-04-19  Pedro Alves  <palves@redhat.com>
1261
1262         * cris-tdep.c (usr_cmd_cris_version): Make unsigned.
1263         (struct gdbarch_tdep) <cris_version>: Make unsigned.
1264         (cris_spec_reg_applicable, cris_gdbarch_init): Adjust locals.
1265
1266 2013-04-19  Pedro Alves  <palves@redhat.com>
1267
1268         * avr-tdep.c (avr_io_reg_read_command): New local 'bufstr'.  Use
1269         it to get a string view of the byte buffer.
1270         * i386-cygwin-tdep.c (core_process_module_section): Change local 'buf'
1271         type to gdb_byte *.  Adjust.
1272         * linux-tdep.c (linux_info_proc, linux_find_memory_regions_full):
1273         Change local to char *.
1274         * solib-darwin.c (find_program_interpreter): Change return type to
1275         char *.  Adjust.
1276         (darwin_solib_get_all_image_info_addr_at_init): Adjust.
1277         * solib-dsbt.c (enable_break2): Change local 'buf' to char *.
1278         * solib-frv.c (enable_break2): Change local 'buf' to char *.
1279         * solib-spu.c (spu_current_sos): Add gdb_byte * cast.
1280         * solib-svr4.c (find_program_interpreter): Change return type to
1281         char *.  Adjust.
1282         (enable_break): Change local 'interp_name' to char *.
1283         * spu-multiarch.c (spu_xfer_partial): Add cast to 'char *'.
1284         * spu-tdep.c (spu_pseudo_register_read_spu): Add cast to 'char *'.
1285         (spu_pseudo_register_write_spu): Use char for string buffer.
1286         Adjust.
1287         (info_spu_event_command, info_spu_signal_command): Add casts to
1288         'char *'.
1289
1290 2013-04-19  Pedro Alves  <palves@redhat.com>
1291
1292         * aarch64-tdep.c (aarch64_default_breakpoint): Change type to
1293         gdb_byte[].
1294         (aarch64_breakpoint_from_pc): Change return type to gdb_byte *.
1295         * ada-lang.c (ada_value_assign): Use gdb_byte.
1296         * alphanbsd-tdep.c (sigtramp_retcode): Change type to gdb_byte[].
1297         (alphanbsd_sigtramp_offset): Use gdb_byte.
1298         * arm-linux-tdep.c (arm_linux_arm_le_breakpoint)
1299         (arm_linux_arm_be_breakpoint, eabi_linux_arm_le_breakpoint)
1300         (eabi_linux_arm_be_breakpoint, arm_linux_thumb_be_breakpoint)
1301         (arm_linux_thumb_le_breakpoint, arm_linux_thumb2_be_breakpoint)
1302         (arm_linux_thumb2_le_breakpoint): Change type to gdb_byte[].
1303         * arm-tdep.c (arm_stub_unwind_sniffer)
1304         (arm_displaced_init_closure): Use gdb_byte.
1305         (arm_default_arm_le_breakpoint, arm_default_arm_be_breakpoint)
1306         (arm_default_thumb_le_breakpoint)
1307         (arm_default_thumb_be_breakpoint): Change type to gdb_byte[].
1308         * arm-tdep.h (struct gdbarch_tdep) <arm_breakpoint,
1309         thumb_breakpoint, thumb2_breakpoint>: Change type to gdb_byte *.
1310         * arm-wince-tdep.c (arm_wince_le_breakpoint)
1311         (arm_wince_thumb_le_breakpoint): Change type to gdb_byte[].
1312         * armnbsd-tdep.c (arm_nbsd_arm_le_breakpoint)
1313         (arm_nbsd_arm_be_breakpoint, arm_nbsd_thumb_le_breakpoint)
1314         (arm_nbsd_thumb_be_breakpoint): Change type to gdb_byte[].
1315         * armobsd-tdep.c (arm_obsd_thumb_le_breakpoint)
1316         (arm_obsd_thumb_be_breakpoint): Change type to gdb_byte[].
1317         * cris-tdep.c (push_stack_item, cris_push_dummy_call)
1318         (cris_store_return_value, cris_extract_return_value): Use
1319         gdb_byte.
1320         (constraint): Change type of parameter to char * from signed
1321         char*.  Use gdb_byte.
1322         * dwarf2loc.c (read_pieced_value, write_pieced_value): Change type
1323         of local buffer to gdb_byte *.
1324         * dwarf2read.c (read_index_from_section): Use gdb_byte.
1325         (create_dwp_hash_table): Change type of locals to gdb_byte *.
1326         (add_address_entry): Change type of local buffer to gdb_byte[].
1327         * frv-tdep.c (frv_adjust_breakpoint_address, find_func_descr)
1328         (frv_push_dummy_call): Use gdb_byte.
1329         * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code)
1330         (hppa_hpux_supply_ss_fpblock, hppa_hpux_supply_ss_wide)
1331         (hppa_hpux_supply_save_state): Use gdb_byte.
1332         * hppa-tdep.c (hppa32_push_dummy_call)
1333         (hppa64_convert_code_addr_to_fptr): Use gdb_byte.
1334         * ia64-tdep.c (extract_bit_field, replace_bit_field)
1335         (slotN_contents, replace_slotN_contents): Change type of parameter
1336         to gdb_byte *.
1337         (fetch_instruction, ia64_pseudo_register_write)
1338         (ia64_register_to_value, ia64_value_to_register)
1339         (ia64_extract_return_value, ia64_store_return_value)
1340         (ia64_push_dummy_call): Use gdb_byte.
1341         * m32c-tdep.c (m32c_return_value): Remove cast.
1342         * m68hc11-tdep.c (m68hc11_pseudo_register_write)
1343         (m68hc11_push_dummy_call, m68hc11_store_return_value): Use
1344         gdb_byte.
1345         * mipsnbsd-tdep.c (mipsnbsd_get_longjmp_target): Use gdb_byte.
1346         * mn10300-tdep.c (mn10300_store_return_value)
1347         (mn10300_breakpoint_from_pc, mn10300_push_dummy_call): Use
1348         gdb_byte.
1349         * moxie-tdep.c (moxie_process_readu): Use gdb_byte.
1350         (moxie_process_record): Remove casts.
1351         * ppc-ravenscar-thread.c (supply_register_at_address)
1352         (ppc_ravenscar_generic_store_registers): Use gdb_byte.
1353         * ravenscar-thread.c (get_running_thread_id): Use gdb_byte.
1354         * remote-m32r-sdi.c (m32r_fetch_register): Use gdb_byte.
1355         * remote-mips.c (mips_xfer_memory): Use gdb_byte.
1356         * remote.c (compare_sections_command): Use gdb_byte.
1357         * score-tdep.c (score7_free_memblock): Change type of parameter to
1358         gdb_byte *.
1359         * sh-tdep.c (sh_justify_value_in_reg): Change return type to
1360         gdb_byte *.  Use gdb_byte.
1361         (sh_push_dummy_call_fpu): Use gdb_byte.
1362         (sh_extract_return_value_nofpu, sh_extract_return_value_fpu)
1363         (sh_store_return_value_nofpu, sh_store_return_value_fpu)
1364         (sh_register_convert_to_virtual, sh_register_convert_to_raw):
1365         Change parameter type to 'gdb_byte *'.  Use gdb_byte.
1366         (sh_pseudo_register_read, sh_pseudo_register_write): Use gdb_byte.
1367         * sh64-tdep.c (sh64_push_dummy_call): Use gdb_byte.
1368         (sh64_store_return_value, sh64_register_convert_to_virtual):
1369         Change parameter type to 'gdb_byte *'.  Use gdb_byte.
1370         (sh64_pseudo_register_write): Use gdb_byte.
1371         * solib-darwin.c (darwin_current_sos): Add casts to 'gdb_byte *'.
1372         * solib-irix.c (fetch_lm_info): Likewise.  Use gdb_byte for byte
1373         buffer.
1374         (irix_current_sos): Use gdb_byte.
1375         * solib-som.c (som_current_sos): Use gdb_byte.
1376         * sparc-ravenscar-thread.c (supply_register_at_address)
1377         (sparc_ravenscar_generic_store_registers): Use gdb_byte.
1378         * spu-multiarch.c (spu_xfer_partial): Add cast to 'char *'.
1379         * spu-tdep.c (spu_get_overlay_table): Use gdb_byte.
1380         * tic6x-tdep.c (tic6x_breakpoint_from_pc): Change return type to
1381         'gdb_byte *'.
1382         * tic6x-tdep.h (struct gdbarch_tdep) <breakpoint>: Change type to
1383         'gdb_byte *'.
1384         * tracepoint.c (tfile_fetch_registers): Use gdb_byte.
1385         * xstormy16-tdep.c (xstormy16_extract_return_value)
1386         (xstormy16_store_return_value): Change parameter type to
1387         'gdb_byte *'.  Adjust.
1388         (xstormy16_push_dummy_call): Use gdb_byte.
1389         * xtensa-tdep.c (xtensa_scan_prologue, call0_ret)
1390         (call0_analyze_prologue, execute_code): Use gdb_byte.
1391
1392 2013-04-19  Vladimir Kargov <kargov@gmail.com>
1393             Pedro Alves  <palves@redhat.com>
1394
1395         * i387-tdep.c (i387_print_float_info): Use gdb_byte for pointer to
1396         value contents.
1397
1398 2013-04-17  Doug Evans  <dje@google.com>
1399
1400         * dwarf2read.c (struct signatured_type): New member type.
1401         (struct attribute): Replace member signatured_type with signature.
1402         (DW_SIGNATURE): Replaces DW_SIGNATURE_TYPE.
1403         (read_call_site_scope): Call follow_die_ref instead of
1404         follow_die_ref_or_sig.
1405         (read_structure_type): Rewrite handling of signatured types.
1406         (read_enumeration_type): Ditto.
1407         (read_attribute_value): Update.
1408         (build_error_marker_type): New function.
1409         (lookup_die_type): Add assert.  Rewrite handling of signatured types.
1410         Don't call error for bad types, just build an error marker type.
1411         (dump_die_shallow): Update.
1412         (follow_die_sig_1): Renamed from follow_die_sig.
1413         Don't call error for bad types, instead return NULL.
1414         (follow_die_sig): New function.
1415         (get_signatured_type, get_DW_AT_signature_type): New functions.
1416
1417 2013-04-17  Yufeng Zhang  <yufeng.zhang@arm.com>
1418
1419         * aarch64-tdep.c (aarch64_write_pc): Removed.
1420         (aarch64_gdbarch_init): Remove set_gdbarch_write_pc of the above
1421         function.
1422
1423 2013-04-17  Yao Qi  <yao@codesourcery.com>
1424
1425         * top.c (print_gdb_configuration): Print configure-time
1426         parameter on using libbabeltrace or not.
1427
1428 2013-04-16  Pedro Alves  <palves@redhat.com>
1429
1430         * copyright.py (EXCLUDE_LIST): Add gdb/common/glibc_thread_db.h.
1431
1432 2013-04-16  Pedro Alves  <palves@redhat.com>
1433
1434         * common/glibc_thread_db.h: Update from upstream glibc
1435         (git 568035b7874a099087b77f7bba3e36a1173787b0).
1436
1437 2013-04-16  Pedro Alves  <palves@redhat.com>
1438
1439         * common/gdb_thread_db.h [!HAVE_THREAD_DB_H]: Factor out to ...
1440         * common/glibc_thread_db.h: ... this new file ...
1441         * common/gdb_thread_db.h [!HAVE_THREAD_DB_H]: ... and include it.
1442
1443 2013-04-16  Will Newton  <will.newton@gmail.com>
1444             Pedro Alves  <palves@redhat.com>
1445
1446         PR build/11881
1447
1448         * common/gdb_thread_db.h (LIBTHREAD_DB_SO)
1449         (LIBTHREAD_DB_SEARCH_PATH): Move outside of #ifdef
1450         HAVE_THREAD_DB_H.
1451
1452 2013-04-16  Pedro Alves  <palves@redhat.com>
1453             Eli Zaretskii  <eliz@gnu.org>
1454
1455         * NEWS: Mention "set foo unlimited".
1456
1457 2013-04-15  Doug Evans  <dje@google.com>
1458
1459         * dwarf2read.c (struct dwo_file): Replace member "cus" with "cu".
1460         (struct create_dwo_cu_data): Renamed from create_dwo_info_table_data.
1461         (create_dwo_cu_reader): Renamed from
1462         create_dwo_debug_info_hash_table_reader.
1463         (create_dwo_cu): Renamed from create_dwo_debug_info_hash_table.
1464         Remove support for multiple CUs in a DWO file.
1465         (open_and_init_dwo_file, lookup_dwo_cutu): Update.
1466
1467         * dwarf2read.c (create_debug_types_hash_table): Use hex_string
1468         instead of phex.
1469         (lookup_dwo_unit, create_dwo_debug_info_hash_table_reader): Ditto.
1470         (create_dwo_in_dwp): Ditto.
1471
1472 2013-04-15  Tom Tromey  <tromey@redhat.com>
1473
1474         * NEWS: Move recent entries into "since 7.6" section.
1475
1476 2013-04-15  Tom Tromey  <tromey@redhat.com>
1477
1478         PR c++/13588:
1479         * NEWS: Update.
1480         * break-catch-throw.c (struct exception_catchpoint)
1481         <exception_rx, pattern>: New fields.
1482         (fetch_probe_arguments, dtor_exception_catchpoint)
1483         (check_status_exception_catchpoint)
1484         (print_one_detail_exception_catchpoint): New functions.
1485         (handle_gnu_v3_exceptions): Add "except_rx" argument.
1486         Compile regular expression if needed.
1487         (extract_exception_regexp): New function.
1488         (catch_exception_command_1): Use extract_exception_regexp.
1489         (compute_exception): Use fetch_probe_arguments.
1490         (initialize_throw_catchpoint_ops): Set dtor, print_one_detail,
1491         and check_status fields.
1492         * cp-abi.c (cplus_typename_from_type_info): New function.
1493         * cp-abi.h (cplus_typename_from_type_info): Declare.
1494         (struct cp_abi_ops) <get_typename_from_type_info>: New field.
1495         * gdb_regex.h (compile_rx_or_error): Declare.
1496         * gnu-v3-abi.c (gnuv3_get_typename_from_type_info): Update
1497         comment.
1498         (init_gnuv3_ops): Set get_type_from_type_info field.
1499         * probe.c (compile_rx_or_error): Move...
1500         * utils.c (compile_rx_or_error): ... here.
1501
1502 2013-04-15  Tom Tromey  <tromey@redhat.com>
1503
1504         PR c++/15176:
1505         * NEWS: Update.
1506         * break-catch-throw.c (compute_exception): New function.
1507         (exception_funcs): New global.
1508         (_initialize_break_catch_throw): Create $_exception.
1509         * cp-abi.c (cplus_type_from_type_info): New function.
1510         * cp-abi.h (cplus_type_from_type_info): Declare.
1511         (struct cp_abi_ops) <get_type_from_type_info>: New field.
1512         * gnu-v3-abi.c (gnuv3_get_typename_from_type_info)
1513         (gnuv3_get_type_from_type_info): New functions.
1514         (init_gnuv3_ops): Set get_type_from_type_info ABI field.
1515
1516 2013-04-15  Tom Tromey  <tromey@redhat.com>
1517
1518         * break-catch-throw.c (struct exception_names): New.
1519         (exception_functions): Change type.
1520         (re_set_exception_catchpoint): Look for SDT probes.
1521
1522 2013-04-15  Tom Tromey  <tromey@redhat.com>
1523
1524         PR c++/10119:
1525         * break-catch-throw.c (exception_functions): New global.
1526         (gnu_v3_exception_catchpoint_ops): Move earlier.
1527         (struct exception_catchpoint): New.
1528         (classify_exception_breakpoint): Rewrite.
1529         (re_set_exception_catchpoint): New function.
1530         (handle_gnu_v3_exceptions): Return void.  Use init_catchpoint.
1531         Allocate a struct exception_catchpoint.
1532         (catch_exception_command_1): Update.
1533         (initialize_throw_catchpoint_ops): Set 're_set' method.
1534
1535 2013-04-15  Tom Tromey  <tromey@redhat.com>
1536
1537         * Makefile.in (SFILES): Add break-catch-throw.c
1538         (COMMON_OBS): Add break-catch-throw.o.
1539         * break-catch-throw.c: New file.
1540         * breakpoint.c: Move exception-catching code to new file.
1541         (ep_parse_optional_if_clause): No longer static.
1542         * breakpoint.h (ep_parse_optional_if_clause): Declare.
1543
1544 2013-04-15  Tom Tromey  <tromey@redhat.com>
1545
1546         PR c++/9065:
1547         * NEWS: Update.
1548         * breakpoint.c (watchpoint_exp_is_const): Add OP_TYPEID.
1549         * c-exp.y (TYPEID): New token.
1550         (exp): Add new TYPEID productions.
1551         (ident_tokens): Add "typeid".
1552         * cp-abi.c (cplus_typeid, cplus_typeid_type): New functions.
1553         * cp-abi.h (cplus_typeid, cplus_typeid_type): Declare.
1554         (struct cp_abi_ops) <get_typeid, get_typeid_type>: New fields.
1555         * eval.c (evaluate_subexp_standard) <OP_TYPEID>: New case.
1556         * expprint.c (dump_subexp_body_standard) <OP_TYPEID>: New
1557         case.
1558         * gnu-v3-abi.c (std_type_info_gdbarch_data): New global.
1559         (build_std_type_info_type, gnuv3_get_typeid_type)
1560         (gnuv3_get_typeid): New functions.
1561         (init_gnuv3_ops): Initialize std_type_info_gdbarch_data.  Set
1562         new fields on ABI object.
1563         * parse.c (operator_length_standard) <OP_TYPEID>: New case.
1564         * std-operator.def (OP_TYPEID): New.
1565
1566 2013-04-15  Tom Tromey  <tromey@redhat.com>
1567
1568         * elfread.c (elf_symtab_read): Install versioned symbol under
1569         unversioned name as well.
1570
1571 2013-04-15  Tom Tromey  <tromey@redhat.com>
1572
1573         PR c++/11990:
1574         * c-lang.c (cplus_language_defn): Use gdb_demangle.
1575         * c-typeprint.c (c_type_print_base): Use gdb_demangle.
1576         * cp-support.c (mangled_name_to_comp): Use gdb_demangle.
1577         (gdb_demangle): New function.
1578         * cp-support.h (gdb_demangle): Declare.
1579         * dwarf2read.c (dwarf2_physname, fixup_partial_die)
1580         (dwarf2_name): Use gdb_demangle.
1581         * gdbtypes.c (check_stub_method): Use gdb_demangle.
1582         * gnu-v3-abi.c (gnuv3_rtti_type): Strip @plt and version
1583         suffixes from name.
1584         (gnuv3_print_method_ptr): Use gdb_demangle.
1585         * jv-lang.c (java_demangle): Use gdb_demangle.
1586         * jv-typeprint.c (java_type_print_base): Use gdb_demangle.
1587         * language.c (unk_lang_demangle): Use gdb_demangle.
1588         * symtab.c (symbol_find_demangled_name)
1589         (demangle_for_lookup): Use gdb_demangle.
1590
1591 2013-04-15  Tom Tromey  <tromey@redhat.com>
1592
1593         PR c++/12824:
1594         * NEWS: Update.
1595         * breakpoint.c (enum exception_event_kind) <EX_EVENT_RETHROW>:
1596         New constant.
1597         (classify_exception_breakpoint): New function.
1598         (print_it_exception_catchpoint, print_one_exception_catchpoint)
1599         (print_mention_exception_catchpoint)
1600         (print_recreate_exception_catchpoint, handle_gnu_v3_exceptions)
1601         (catch_exception_command_1): Handle "rethrow" catchpoint.
1602         (catch_rethrow_command): New function.
1603         (_initialize_breakpoint): Add "catch rethrow" command.
1604
1605 2013-04-15  Pierre Muller  <muller@sourceware.org>
1606
1607         * contrib/ari/gdb_ari.sh (write_pc rule): Do not consider
1608         set_gdbarch_write_pc as deprecated anymore.
1609
1610 2013-04-15  Joel Brobecker  <brobecker@adacore.com>
1611
1612         * spu-tdep.c (spu_write_pc): Add empty line after local variable
1613         declarations.
1614
1615 2013-04-13  Yao Qi  <yao@codesourcery.com>
1616
1617         * ctf.c (_initialize_ctf): Include "completer.h".
1618         Call add_target_with_completer instead of add_target.
1619
1620 2013-04-12  Jan Kratochvil  <jan.kratochvil@redhat.com>
1621
1622         Fix GDB regression related to PR binutils/14813.
1623         * jit.c (mem_bfd_iovec_close): Return 0 for success.
1624         * minidebug.c (lzma_close): Add return value comment.
1625         * remote.c (remote_bfd_iovec_close): Return 0 for success.
1626         * solib-spu.c (spu_bfd_iovec_close): Likewise.
1627         * spu-linux-nat.c (spu_bfd_iovec_close): Likewise.
1628
1629 2013-04-12  Jan Kratochvil  <jan.kratochvil@redhat.com>
1630
1631         * config.in: Regenerate.
1632
1633 2013-04-12  Tom Tromey  <tromey@redhat.com>
1634
1635         * dwarf2-frame.c (struct comp_unit) <dwarf_frame_buffer>: Now
1636         const.
1637         * dwarf2read.c (struct dwarf2_section_info) <buffer>: Now const.
1638         (struct die_reader_specs) <buffer>: Likewise.
1639         (die_reader_func_ftype): Make 'info_ptr' const.
1640         (struct line_header) <include_dirs, statement_program_start,
1641         statement_program_end>: Now const.
1642         (struct file_entry) <name>: Likewise.
1643         (struct partial_die_info) <sibling>: Likewise.
1644         (struct dwarf_block) <data>: Likewise.
1645         (dwarf2_read_section): Remove cast.
1646         (dwarf2_get_section_info): Make 'bufp' const.
1647         (read_index_from_section): Constify.
1648         (dw2_get_file_names_reader): Make 'info_ptr' const.
1649         (dw2_get_primary_filename_reader): Likewise.
1650         (read_comp_unit_head): Make 'info_ptr' and return type const.
1651         (read_and_check_comp_unit_head, read_and_check_type_unit_head):
1652         Likewise.
1653         (read_abbrev_offset): Constify.
1654         (dwarf2_create_include_psymtab): Make 'name' const.
1655         (create_debug_types_hash_table): Update.
1656         (read_cutu_die_from_dwo): Make 'result_info_ptr' const.
1657         (init_cutu_and_read_dies, init_cutu_and_read_dies_no_follow):
1658         Constify.
1659         (process_psymtab_comp_unit_reader, build_type_psymtabs_reader)
1660         (load_partial_comp_unit_reader): Make 'info_ptr' const.
1661         (read_comp_units_from_section): Constify.
1662         (peek_abbrev_code, peek_die_abbrev, skip_children, skip_one_die)
1663         (locate_pdi_sibling, load_full_comp_unit_reader): Make 'info_ptr'
1664         const.
1665         (dwarf2_compute_name, setup_type_unit_groups): Constify.
1666         (create_dwo_debug_info_hash_table): Make 'info_ptr' const.
1667         (create_dwp_hash_table, dwarf2_ranges_read)
1668         (dwarf2_record_block_ranges): Constify.
1669         (read_die_and_children, read_die_and_siblings_1)
1670         (read_die_and_siblings): Make 'info_ptr' and 'new_info_ptr'
1671         const.
1672         (read_full_die_1, read_full_die): Make 'info_ptr' const.
1673         (abbrev_table_read_table): Constify.
1674         (load_partial_dies): Make 'info_ptr' const.
1675         (read_partial_die, read_attribute_value, read_attribute): Make
1676         'info_ptr' and return type const.
1677         (read_address, read_initial_length)
1678         (read_checked_initial_length_and_offset, read_offset)
1679         (read_offset_1, read_n_bytes, read_direct_string): Make 'buf'
1680         const.
1681         (read_direct_string): Make 'buf' and return type const.
1682         (read_indirect_string_at_offset, read_indirect_string_from_dwz)
1683         (read_indirect_string): Make return type const.
1684         (read_unsigned_leb128, read_signed_leb128): Make 'buf' const.
1685         (read_addr_index_from_leb128, dwarf2_read_addr_index_reader): Make
1686         'info_ptr' const.
1687         (read_str_index): Make return type const.
1688         (add_include_dir): Make 'include_dir' const.
1689         (add_file_name): Make 'name' const.
1690         (dwarf_decode_line_header): Constify.
1691         (psymtab_include_file_name): Make return type const.
1692         (dwarf_decode_lines_1, dwarf_decode_lines): Constify.
1693         (dwarf2_start_subfile): Make 'filename' const.
1694         (dwarf2_const_value_attr): Make 'bytes' const.
1695         (read_signatured_type_reader): Make 'info_ptr' const.
1696         (decode_locdesc): Constify.
1697         (skip_form_bytes): Make 'bytes', 'buffer_end', and return type
1698         const.
1699         (skip_unknown_opcode): Make 'opcode_definitions', 'mac_ptr',
1700         'mac_end', and return type const.
1701         (dwarf_parse_macro_header): Make 'mac_ptr' and return type const.
1702         (dwarf_decode_macro_bytes): Make 'mac_ptr', 'mac_end', and return
1703         type const.
1704         (per_cu_header_read_in): Constify.
1705         * symfile.h (dwarf2_get_section_info): Update.
1706
1707 2013-04-12  Tom Tromey  <tromey@redhat.com>
1708
1709         * symtab.h (struct general_symbol_info) <value.bytes>: Make const.
1710
1711 2013-04-12  Eli Zaretskii  <eliz@gnu.org>
1712
1713         * NEWS: Mention "show configuration", --configuration.
1714         * top.c (print_gdb_configuration): New function, displays the
1715         details about GDB configure-time parameters.
1716         (print_gdb_version): Mention "show configuration".
1717         * cli/cli-cmds.c (show_configuration): New function.
1718         (_initialize_cli_cmds): Add the "show configuration" command.
1719         * main.c (captured_main) <print_configuration>: New static var.
1720         <long_options>: Use it.
1721         If --configuration was given, call print_gdb_configuration.
1722
1723 2013-04-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
1724             Pedro Alves  <palves@redhat.com>
1725
1726         * Makefile.in (HAVE_NATIVE_GCORE_TARGET): New.
1727         (generated_files): Add gcore.
1728         (install-only, uninstall): Add gcore if HAVE_NATIVE_GCORE_TARGET or
1729         HAVE_NATIVE_GCORE_HOST.
1730         (gcore): New.
1731         * NEWS (Changes since GDB 7.6): Mention newly installed gcore.
1732         * config/alpha/alpha-osf3.mh, config/i386/fbsd.mh,
1733         config/i386/fbsd64.mh, config/i386/i386gnu.mh, config/i386/i386sol2.mh,
1734         config/i386/sol2-64.mh, config/mips/irix5.mh, config/mips/irix6.mh,
1735         config/powerpc/fbsd.mh, config/sparc/fbsd.mh, config/sparc/sol2.mh:
1736         Add HAVE_NATIVE_GCORE_HOST.
1737         * configure: Regenerate.
1738         * configure.ac (HAVE_NATIVE_GCORE_TARGET): New, set it, AC_SUBST it.
1739         New AC_SUBST fir GDB_TRANSFORM_NAME and GCORE_TRANSFORM_NAME.  New
1740         AC_CONFIG_FILES for gcore.
1741         * configure.tgt: Add gdb_have_gcore to the initial comment.  Set
1742         gdb_have_gcore.
1743         * gdb_gcore.sh: Rename to ...
1744         * gcore.in: ... here.  Remove gcore.sh comment.  Use GDB_TRANSFORM_NAME
1745         and GCORE_TRANSFORM_NAME substitutions.
1746
1747         Fix parsing tabs in ${gdb_target_obs}.
1748         * configure.tgt (gdb_have_gcore): Replace case with for and if.
1749
1750 2013-04-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
1751
1752         * remote.c (unpush_and_perror): Add output message final dot.
1753
1754 2013-04-11  Yao Qi  <yao@codesourcery.com>
1755
1756         * tracepoint.c (tfile_interp_line): Fit parameters line and
1757         utpp in one line.
1758
1759 2013-04-10  Joel Brobecker  <brobecker@adacore.com>
1760
1761         * solib.c (solib_map_sections): Remove code overwriting
1762         SO->SO_NAME with the bfd's filename.
1763
1764 2013-04-10  Pedro Alves  <palves@redhat.com>
1765
1766         * cli/cli-decode.c (integer_unlimited_completer): New function.
1767         (add_setshow_integer_cmd, add_setshow_uinteger_cmd)
1768         (add_setshow_zuinteger_unlimited_cmd): Install the "unlimited"
1769         completer.
1770         * cli/cli-setshow.c: Include "cli/cli-utils.h".
1771         (is_unlimited_literal): New function.
1772         (do_set_command): Handle literal "unlimited" arguments.
1773         * frame.c (_initialize_frame) <set backtrace limit>: Document
1774         "unlimited".
1775         * printcmd.c (_initialize_printcmd) <set print
1776         max-symbolic-offset>: Add help text.
1777         * record-full.c (_initialize_record_full) <set record full
1778         insn-number-max>: Likewise.
1779         * record.c (_initialize_record) <set record
1780         instruction-history-size, set record function-call-history-size>:
1781         Add help text.
1782         * ser-tcp.c (_initialize_ser_tcp) <set tcp connect-timeout>: Add
1783         help text.
1784         * tracepoint.c (_initialize_tracepoint) <set trace-buffer-size>:
1785         Likewise.
1786         * source.c (_initialize_source) <set listsize>: Add help text.
1787         * utils.c (initialize_utils) <set height, set width>: Likewise.
1788         <set pagination>: Mention "set height unlimited".
1789         * valprint.c (_initialize_valprint) <set print elements, set print
1790         repeats>: Document "unlimited".
1791
1792 2013-04-10  Pedro Alves  <palves@redhat.com>
1793
1794         * cli/cli-cmds.c (quit_command): Call query_if_trace_running
1795         instead of disconnect_tracing.
1796         * infcmd.c (detach_command, disconnect_command): Call
1797         query_if_trace_running.  Adjust.
1798         * top.c: Include "tracepoint.h".
1799         (quit_target): Delete.  Contents moved ...
1800         (quit_force): ... here.  Wrap each stage of teardown in
1801         TRY_CATCH.  Call disconnect_tracing before detaching.
1802
1803 2013-04-10  Hui Zhu  <hui@codesourcery.com>
1804             Yao Qi  <yao@codesourcery.com>
1805
1806         * configure.ac: Check libbabeltrace is installed.
1807         * config.in: Regenerate.
1808         * configure: Regenerate.
1809         * Makefile.in (LIBBABELTRACE): New.
1810         (CLIBS): Add LIBBABELTRACE.
1811         * ctf.c: Include "exec.h".
1812         (CTF_EVENT_ID_STATUS, CTF_EVENT_ID_TSV_DEF): New macros.
1813         (CTF_EVENT_ID_TP_DEF, ctf_save_write_int32): New macros.
1814         (ctf_save_metadata_header): Define new type aliases in
1815         metadata.
1816         (ctf_write_header): Define event type "tsv_def" and "tp_def"
1817         in metadata.  Start a new faked packet for trace status.
1818         (ctf_write_status): Write trace status to CTF.
1819         (ctf_write_uploaded_tsv): Write TSV to CTF.
1820         (ctf_write_uploaded_tp): Write tracepoint definition to CTF.
1821         (ctf_write_definition_end): End the faked packet.
1822
1823         (ctx, ctf_iter, trace_dirname): New.
1824         (start_pos): New variable.
1825         (ctf_destroy, ctf_open_dir, ctf_open): New.
1826         (SET_INT32_FIELD, SET_ARRAY_FIELD, SET_STRING_FIELD): New
1827         macros.
1828         (ctf_read_tsv, ctf_read_tp, ctf_close, ctf_files_info): New.
1829         (ctf_fetch_registers, ctf_xfer_partial): New.
1830         (ctf_get_trace_state_variable_value): New.
1831         (ctf_get_tpnum_from_frame_event): New.
1832         (ctf_get_traceframe_address): New.
1833         (ctf_trace_find, ctf_has_stack): New.
1834         (ctf_has_registers, ctf_traceframe_info, init_ctf_ops): New.
1835         (ctf_get_trace_status, ctf_read_status): New.
1836         (_initialize_ctf): New.
1837         * tracepoint.c (get_tracepoint_number): New
1838         (get_uploaded_tsv): Remove 'static'.
1839         (struct traceframe_info, trace_regblock_size): Move it to ...
1840         * tracepoint.h: ... here.
1841         (get_tracepoint_number): Declare it.
1842         (get_uploaded_tsv): Declare it.
1843
1844         * NEWS: Mention new configure option.
1845
1846 2013-04-10  Pedro Alves  <palves@redhat.com>
1847             Hui Zhu  <hui@codesourcery.com>
1848
1849         * breakpoint.c (dprintf_re_set): New.
1850         (initialize_breakpoint_ops): Set dprintf_breakpoint_ops re_set
1851         to dprintf_re_set.
1852
1853 2013-04-09  Joel Brobecker  <brobecker@adacore.com>
1854
1855         * configure.tgt (gdb_target_obs) <powerpc-*-aix* | rs6000-*-*>:
1856         Remove solib-svr4.o from the list.
1857
1858 2013-04-09  Joel Brobecker  <brobecker@adacore.com>
1859
1860         * varobj.c (update_dynamic_varobj_children) [!HAVE_PYTHON]:
1861         Use gdb_assert_not_reached instead of invalid boolean expression.
1862
1863 2013-04-09  Pedro Alves  <palves@redhat.com>
1864
1865         * remote.c (unpush_and_perror): New function.
1866         (readchar, remote_serial_write): Use it.
1867
1868 2013-04-09  Markus Metzger  <markus.t.metzger@intel.com>
1869
1870         * NEWS: Mention new btrace RSP packets.
1871
1872 2013-04-08  Tom Tromey  <tromey@redhat.com>
1873
1874         * symmisc.c (dump_msymbols): Cast fprintf_filtered argument to
1875         long.
1876
1877 2013-04-08  Tom Tromey  <tromey@redhat.com>
1878
1879         * maint.c (print_bfd_section_info): Print the section index.
1880         * symmisc.c (dump_msymbols): Print the section index.
1881
1882 2013-04-08  Tom Tromey  <tromey@redhat.com>
1883
1884         PR symtab/8424:
1885         * blockframe.c (find_pc_partial_function_gnu_ifunc): Check
1886         SYMBOL_SECTION, not SYMBOL_OBJ_SECTION.
1887         * breakpoint.c (resolve_sal_pc): Update.
1888         * elfread.c (elf_gnu_ifunc_record_cache): Update.
1889         * findvar.c (struct minsym_lookup_data) <objfile>: New field.
1890         (minsym_lookup_iterator_cb): Use it.
1891         (default_read_var_value): Update.
1892         * hppa-hpux-tdep.c (hppa64_hpux_in_solib_call_trampoline):
1893         Update.
1894         * infcmd.c (jump_command): Update.
1895         * linespec.c (minsym_found): Update.
1896         * maint.c (maintenance_translate_address): Update.
1897         * minsyms.c (lookup_minimal_symbol_by_pc_section_1): Update.
1898         (prim_record_minimal_symbol_full): Don't set SYMBOL_OBJ_SECTION.
1899         * parse.c (write_exp_msymbol): Update.
1900         * printcmd.c (address_info): Update.
1901         * psymtab.c (find_pc_sect_psymbol): Update.
1902         (fixup_psymbol_section): Check SYMBOL_SECTION, not
1903         SYMBOL_OBJ_SECTION.
1904         (add_psymbol_to_bcache): Correctly initialize SYMBOL_SECTION.
1905         Don't initialize SYMBOL_OBJ_SECTION.
1906         * spu-tdep.c (spu_catch_start): Update.
1907         * stabsread.c (define_symbol): Don't set SYMBOL_SECTION.
1908         * symmisc.c (dump_msymbols, print_symbol): Update.
1909         * symtab.c (fixup_section): Don't set 'obj_section'.  Change
1910         how fallback section is computed.
1911         (fixup_symbol_section): Update.
1912         (find_pc_sect_symtab, find_function_start_sal, skip_prologue_sal):
1913         Update.
1914         (allocate_symbol, initialize_symbol, allocate_template_symbol):
1915         Initialize SYMBOL_SECTION.
1916         * symtab.h (struct general_symbol_info) <section>: Update comment.
1917         <obj_section>: Remove.
1918         (SYMBOL_OBJ_SECTION): Add 'objfile' argument.  Rewrite.
1919         (SYMBOL_OBJFILE): New macro.
1920
1921 2013-04-08  Tom Tromey  <tromey@redhat.com>
1922
1923         * coffread.c (record_minimal_symbol): Update.
1924         * dbxread.c (record_minimal_symbol): Update.
1925         * elfread.c (record_minimal_symbol): Update.
1926         * machoread.c (macho_symtab_add_minsym): Update.
1927         * mdebugread.c (record_minimal_symbol, parse_partial_symbols):
1928         Update.
1929         * minsyms.c (prim_record_minimal_symbol): Update.
1930         (prim_record_minimal_symbol_full): Remove 'bfd_section'
1931         argument.
1932         (prim_record_minimal_symbol_and_info): Likewise.
1933         * minsyms.h (prim_record_minimal_symbol_full)
1934         (prim_record_minimal_symbol_and_info): Update.
1935         * symtab.c (allocate_symbol, initialize_symbol)
1936         (allocate_template_symbol): Initialize SYMBOL_SECTION.
1937         * xcoffread.c (record_minimal_symbol, scan_xcoff_symtab):
1938         Update.
1939
1940 2013-04-08  Tom Tromey  <tromey@redhat.com>
1941
1942         PR symtab/8423:
1943         * solib-som.c (som_solib_section_offsets): Use BFD section
1944         indices.  Set offsets for all sections.
1945         * somread.c (som_symtab_read): Compute BFD section for
1946         symbol.  Use prim_record_minimal_symbol_and_info.
1947         (som_symfile_read): Fix comment.
1948         (struct find_section_offset_arg): New.
1949         (find_section_offset, set_section_index): New functions.
1950         (som_symfile_offsets): Use set_section_index to compute
1951         section indices.
1952
1953 2013-04-08  Tom Tromey  <tromey@redhat.com>
1954
1955         * coffread.c (cs_to_section): Use gdb_bfd_section_index.
1956         * elfread.c (record_minimal_symbol, elf_symtab_read): Use
1957         gdb_bfd_section_index.
1958         * gdb_bfd.c (gdb_bfd_section_index, gdb_bfd_count_sections):
1959         New functions.
1960         * gdb_bfd.h (gdb_bfd_section_index, gdb_bfd_count_sections):
1961         Declare.
1962         * machoread.c (macho_symtab_add_minsym, macho_symfile_offsets):
1963         Update.
1964         * objfiles.c (add_to_objfile_sections_full): New function.
1965         (add_to_objfile_sections): Use it.
1966         (build_section_table): Rewrite.
1967         (objfile_relocate1): Use gdb_bfd_section_index.  Update.
1968         * objfiles.h (obj_section_offset): Use gdb_bfd_section_index.
1969         (struct objfile) <sections>: Update comment.
1970         (ALL_OBJFILE_OSECTIONS): Skip sections where the_bfd_section
1971         is NULL.
1972         (ALL_OBJSECTIONS): Use it.
1973         * solib-dsbt.c (dsbt_relocate_main_executable): Update.
1974         * solib-frv.c (frv_relocate_main_executable): Update.
1975         * solib-target.c (solib_target_relocate_section_addresses):
1976         Use gdb_bfd_section_index.
1977         * symfile.c (build_section_addr_info_from_section_table):
1978         Use gdb_bfd_section_index.
1979         (build_section_addr_info_from_bfd, place_section): Likewise.
1980         * symtab.c (fixup_section): Update.
1981         * xcoffread.c (find_targ_sec): Use gdb_bfd_section_index.
1982
1983 2013-04-08  Tom Tromey  <tromey@redhat.com>
1984
1985         * minsyms.h (struct bound_minimal_symbol): New.
1986         (lookup_minimal_symbol_and_objfile): Return bound_minimal_symbol.
1987         Remove objfile argument.
1988         (lookup_minimal_symbol_by_pc_section, lookup_minimal_symbol_by_pc):
1989         Return bound_minimal_symbol.
1990         * minsyms.c (lookup_minimal_symbol_by_pc_1)
1991         (lookup_minimal_symbol_by_pc_section, lookup_minimal_symbol_by_pc):
1992         Return bound_minimal_symbol.
1993         (in_gnu_ifunc_stub): Update.
1994         (lookup_minimal_symbol_and_objfile): Return bound_minimal_symbol.
1995         Remove 'objfile_p' argument.
1996         (lookup_solib_trampoline_symbol_by_pc): Update.
1997         * ada-tasks.c, amd64-windows-tdep.c, arm-tdep.c,
1998         arm-wince-tdep.c, block.c, blockframe.c, breakpoint.c, btrace.c,
1999         c-valprint.c, dwarf2loc.c, elfread.c, frame.c, frv-tdep.c,
2000         glibc-tdep.c, gnu-v2-abi.c, gnu-v3-abi.c, hppa-hpux-tdep.c,
2001         i386-tdep.c, ia64-tdep.c, infcall.c, infcmd.c, jit.c,
2002         linux-fork.c, m32c-tdep.c, m68hc11-tdep.c, maint.c,
2003         mips-tdep.c, p-valprint.c, parse.c, ppc-linux-tdep.c,
2004         ppc-sysv-tdep.c, printcmd.c, rs6000-tdep.c, sh64-tdep.c,
2005         stack.c, symtab.c, tui/tui-disasm.c: Update.
2006
2007 2013-04-08  Tom Tromey  <tromey@redhat.com>
2008
2009         * ada-lang.c (ada_decode_symbol): Check and set 'ada_mangled'.
2010         Use symbol's obstack, not an objfile.
2011         * coffread.c (process_coff_symbol): Update.
2012         * dwarf2read.c (fixup_go_packaging, new_symbol_full): Update.
2013         * jv-lang.c (add_class_symbol): Update.
2014         * mdebugread.c (new_symbol): Update.
2015         * minsyms.c (prim_record_minimal_symbol_full)
2016         (terminate_minimal_symbol_table): Update.
2017         * psymtab.c (add_psymbol_to_bcache): Clear entire symbol.  Update.
2018         * stabsread.c (define_symbol, read_enum_type): Update.
2019         * symtab.c (symbol_set_demangled_name, symbol_get_demangled_name):
2020         Handle Ada specially.
2021         (symbol_set_language): Add 'obstack' argument.
2022         (symbol_set_names): Update.
2023         (symbol_natural_name, symbol_demangled_name): Always use
2024         ada_decode_symbol.
2025         * symtab.h (struct general_symbol_info)
2026         <language_specific::obstack>: New field.
2027         <ada_mangled>: New field.
2028         (SYMBOL_SET_LANGUAGE): Add 'obstack' argument.
2029         (symbol_set_language): Update.
2030
2031 2013-04-08  Tom Tromey  <tromey@redhat.com>
2032
2033         * symtab.c (symbol_init_cplus_specific, symbol_set_demangled_name):
2034         Take an obstack, not an objfile.
2035         (symbol_set_names): Update.
2036         * symtab.h (symbol_set_demangled_name): Update.
2037
2038 2013-04-08  Tom Tromey  <tromey@redhat.com>
2039
2040         * coffread.c (process_coff_symbol, coff_read_enum_type): Call
2041         allocate_symbol.
2042         * dwarf2read.c (fixup_go_packaging): Call allocate_symbol.
2043         (read_func_scope): Call allocate_template_symbol.
2044         (new_symbol_full): Call allocate_symbol.
2045         * jit.c (finalize_symtab): Call allocate_symbol.
2046         * jv-lang.c (add_class_symbol): Call allocate_symbol.
2047         * mdebugread.c (parse_symbol, new_block): Call allocate_symbol.
2048         * stabsread.c (patch_block_stabs, define_symbol, read_enum_type)
2049         (common_block_end): Call allocate_symbol.
2050         * symtab.c (allocate_symbol, initialize_symbol)
2051         (allocate_template_symbol): New functions.
2052         * symtab.c (allocate_symbol, initialize_symbol)
2053         (allocate_template_symbol): Declare.
2054         * xcoffread.c (process_xcoff_symbol): Call initialize_symbol.
2055
2056 2013-04-08  Pedro Alves  <palves@redhat.com>
2057             Keith Seitz  <keiths@redhat.com>
2058
2059         * breakpoint.c (create_breakpoint): Rename
2060         "parse_condition_and_thread" parameter to "parse_arg".  Update
2061         describing comment.  If !PARSE_ARG, then error out if ARG is not
2062         the empty string after extracting the location.
2063         * breakpoint.h (create_breakpoint): Rename
2064         "parse_condition_and_thread" parameter to "parse_arg".
2065
2066 2013-04-08  Aleksandar Ristovski  <aristovski@qnx.com
2067
2068         * solib-svr4.c (lm_addr_check): Add const qualifier to 'so' arg.
2069
2070 2013-04-07  Yao Qi  <yao@codesourcery.com>
2071
2072         * remote.c (remote_trace_find): Change type of parameters 'addr1'
2073         and 'addr2' to CORE_ADDR.
2074         * target.c (update_current_target): Update.
2075         * target.h (struct target_ops) <to_trace_find>: Change parameter
2076         type to CORE_ADDR.
2077         * tracepoint.c (tfind_1): Change type of parameters 'addr1' and
2078         'addr2' to CORE_ADDR.
2079         (tfile_trace_find): Likewise.
2080         (tfile_get_traceframe_address): Change return type to CORE_ADDR.
2081         Change local variable 'addr' to type CORE_ADDR.
2082         * tracepoint.h (tfind_1): Update declaration.
2083
2084 2013-04-06  Eli Zaretskii  <eliz@gnu.org>
2085
2086         * windows-nat.c (windows_get_absolute_argv0): Move from here...
2087         * mingw-hdep.c (windows_get_absolute_argv0): ...to here.
2088         Include main.h.
2089
2090         * windows-nat.h (windows_get_absolute_argv0): Move prototype from
2091         here...
2092         * main.h (windows_get_absolute_argv0): ...to here.
2093
2094 2013-04-05  Doug Evans  <dje@google.com>
2095
2096         * dwarf2read.c (struct dwarf2_per_objfile): Tweak comment.
2097         (read_cutu_die_from_dwo): Add comments.
2098         (read_structure_type): Update comment.
2099         (read_enumeration_type, read_namespace_type): Update comment.
2100         (read_die_type, get_die_type_at_offset, get_die_type): Update comment.
2101
2102 2013-04-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
2103
2104         Convert man pages to texinfo, new gdbinit.5 texinfo page.
2105         * Makefile.in (gdb.z): Remove.
2106         (install-only): Remove $(man1dir) and gdb.1 installation.
2107         * gdb.1: Remove.
2108
2109 2013-04-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
2110
2111         Fix compatibility with Linux kernel 3.8.3.
2112         * linux-tdep.c (linux_find_memory_regions_full): Move variable number
2113         to more inner block.  Remove parsing of NUMBER from outer block.
2114         Parse NUMBER only if KEYWORD has been identified.
2115
2116 2013-04-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
2117
2118         Fix variable name shadowing.
2119         * linux-tdep.c (linux_find_memory_regions_full): Rename outer variable
2120         filename to mapsfilename and update its uses.
2121
2122 2013-04-05  Eli Zaretskii  <eliz@gnu.org>
2123
2124         * Makefile.in (TAGS): Avoid warning from etags when $GDB_NM_FILE is
2125         empty.  See http://sourceware.org/ml/gdb-patches/2012-08/msg00504.html
2126         and http://sourceware.org/ml/gdb-patches/2013-04/msg00055.html for
2127         details of the problem.
2128
2129 2013-04-04  Pedro Alves  <palves@redhat.com>
2130             Hui Zhu  <hui@codesourcery.com>
2131
2132         * breakpoint.c (validate_commands_for_breakpoint): If validating a
2133         tracepoint, reset its STEP_COUNT and call validate_actionline.
2134
2135 2013-04-03  Doug Evans  <dje@google.com>
2136
2137         * dwarf2read.c (read_die_and_siblings_1): Renamed from
2138         read_die_and_siblings.
2139         (read_die_and_siblings): New function.
2140         (read_cutu_die_from_dwo): Dump die if requested.
2141         (read_die_and_children): Call read_full_die_1 and
2142         read_die_and_siblings_1.
2143         (read_full_die): Dump die if requested.
2144
2145         * dwarf2read.c (read_comp_units_from_section): Add debugging printf.
2146
2147         * dwarf2read.c (struct dwo_file): New member comp_dir.
2148         Rename member name to dwo_name.  All uses updated.
2149         (hash_dwo_file): Include comp_dir in computation.
2150         (eq_dwo_file): Ditto.
2151         (lookup_dwo_file_slot): New arg comp_dir.  All callers updated.
2152         (create_dwo_in_dwp, lookup_dwo_in_dwp, open_and_init_dwo_file): Ditto.
2153
2154         * psymtab.c (read_psymtabs_with_fullname): Don't call
2155         psymtab_to_fullname if the basenames are different.
2156
2157 2013-04-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
2158
2159         * NEWS (Changes in GDB 7.6): Update the data-disassemble for "fullname".
2160         New entry about "fullname" presence.
2161
2162 2013-04-03  Pedro Alves  <palves@redhat.com>
2163
2164         * NEWS: Mention x86_64/Cygwin as new native configuration.
2165
2166 2013-04-02  Doug Evans  <dje@google.com>
2167
2168         * dwarf2read.c (read_structure_type): Fix typo in comment.
2169
2170 2013-04-02  Pedro Alves  <palves@redhat.com>
2171
2172         * NEWS: Mention "set/show debug aarch64", "set/show debug
2173         coff-pe-read" and "set/show debug mach-o".
2174
2175 2013-04-02  Pedro Alves  <palves@redhat.com>
2176
2177         * NEWS: Mention "set/show remote trace-buffer-size-packet".
2178
2179 2013-04-02  Eli Zaretskii  <eliz@gnu.org>
2180
2181         * Makefile.in (HFILES_NO_SRCDIR): Remove call-cmds.h.
2182         gdb_string.h is now in common/.
2183
2184 2013-04-02  Pedro Alves  <palves@redhat.com>
2185
2186         * NEWS: Move "set debug notification" and "set trace-buffer-size"
2187         under "New options".
2188
2189 2013-04-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
2190
2191         Revert this patch:
2192         PR gdb/15275
2193         * remote.c (remote_get_trace_status): Include putpkt in TRY_CATCH.
2194
2195 2013-04-02  Pedro Alves  <palves@redhat.com>
2196
2197         PR gdb/15275
2198
2199         * remote.c (send_interrupt_sequence): Use remote_serial_write.
2200         (remote_serial_write): New function.
2201         (putpkt_binary, getpkt_or_notif_sane_1): Use remote_serial_write.
2202
2203 2013-04-01  Jiong Wang  <jiwang@tilera.com>
2204
2205         * NEWS: Mention TILE-Gx in "New native configurations" and
2206         "New targets" sections. 
2207
2208 2013-04-01  Doug Evans  <dje@google.com>
2209
2210         * dwarf2read.c (lookup_signatured_type_at_offset): Delete.
2211         (process_enumeration_scope): Simplify.
2212
2213         * dwarf2read.c (struct dwarf2_per_cu_data): Move member
2214         type_unit_group ...
2215         (struct signatured_type): ... to here.
2216         (sig_type_ptr): New typedef.
2217         (type_unit_group): Delete member 't.first_cu'.  Move member 'tus'
2218         out of union 't'.  All uses updated.
2219         (dw2_get_file_names_reader): Assert not called for a type unit.
2220         (dw2_get_file_names): Assert not called for a type unit or type
2221         unit group.
2222         (build_type_psymtabs_reader): Assert called for a type unit.
2223         (build_type_psymtab_dependencies): Assert called for a type unit group.
2224
2225         * dwarf2read.c (free_dwo_file): Add comment.
2226         (dwarf2_per_objfile_free): Unref dwp bfd.
2227
2228 2013-04-01  Aleksandar Ristovski  <aristovski@qnx.com>
2229
2230         * coff-pe-read.c (add_pe_exported_sym): Remove unused 'dll_name_len'.
2231         (add_pe_forwarded_sym): Remove unused 'section', 'dll_name_len'.
2232         (read_pe_exported_syms): Remove unused 'exportix'.
2233         (pe_text_section_offset): Remove unused 'opthdr_ofs', 'num_entries',
2234         'export_rva', 'export_size', 'expptr', 'exp_funcbase', 'expdata',
2235         'erva', 'name_rvas', 'ordinals', 'nexp', 'ordbase', 'dll_name'.
2236
2237 2013-04-01  Aleksandar Ristovski  <aristovski@qnx.com>
2238
2239         * breakpoint.c (parse_cond_to_aexpr): Remove unused 'old_chain'.
2240         (print_it_watchpoint): Remove unused 'bl'.
2241         (say_where): Remove unused 'uiout'.
2242         (bpstat_remove_breakpoint_callback): Remove unused 'uiout'.
2243         (bkpt_breakpoint_hit): Remove unused 'b'.
2244         (internal_bkpt_print_it): Remove unused 'uiout'.
2245         * buildsym.c (augment_type_symtab): Remove unused 'i'.
2246
2247 2013-03-31  Tiago Stürmer Daitx  <tdaitx@linux.vnet.ibm.com>
2248
2249         * ppc-sysv-tdep.c (ppc64_sysv_abi_push_float): New function.
2250         (ppc64_sysv_abi_push_dummy_call): Handle complex arguments.
2251
2252 2013-03-29  Doug Evans  <dje@google.com>
2253
2254         * dwarf2read.c (open_dwo_file): Renamed from open_dwop_file.
2255         Delete arg is_dwp.  All callers updated.
2256         (open_dwp_file): New function.
2257         (open_and_init_dwp_file): Call it.
2258         (get_dwp_file): New function.
2259         (lookup_dwo_cutu): Call it.
2260
2261         * dwarf2read.c (open_and_init_dwp_file): Remove incorrect, and
2262         unnecessary, cleanup.
2263
2264         * dwarf2read.c (lookup_dwo_cutu): Improve complaint text.
2265
2266         * dwarf2read.c (read_cutu_die_from_dwo): New function.
2267         (lookup_dwo_unit): New function.
2268         (init_cutu_and_read_dies): Move DWO handling to new functions.
2269
2270         * dwarf2read.c (struct signatured_type): Tweak comment.
2271         (struct dwo_unit): Tweak comment.
2272         (create_debug_types_hash_table): Tweak comment.  Reformat long line.
2273         (create_dwo_debug_info_hash_table): Tweak comment.
2274         (dwarf2_per_cu_offset_and_type): Tweak comment.
2275
2276         * dwarf2read.c (lookup_signatured_type): Remove complaint about
2277         missing .debug_types section.
2278
2279 2013-03-29  Yao Qi  <yao@codesourcery.com>
2280
2281         * corelow.c: Include "completer.h".
2282         (_initialize_corelow): Call add_target_with_completer with
2283         argument 'filename_completer'.
2284         * tracepoint.c: Likewise.
2285         * exec.c (_initialize_exec): Likewise.
2286         * target.c (add_target): Rename to ...
2287         (add_target_with_completer): ... this.  Call set_cmd_completer
2288         if parameter completer is not NULL.
2289         (add_target): New.
2290         * target.h: Include "command.h".
2291         (add_target_with_completer): Declare it.
2292
2293 2013-03-28  Joel Brobecker  <brobecker@adacore.com>
2294
2295         * coffread.c (is_import_fixup_symbol): New function.
2296         (record_minimal_symbol): Use is_import_fixup_symbol to
2297         detect import fixup symbols, and discard them.
2298
2299 2013-03-28  Doug Evans  <dje@google.com>
2300
2301         * dwarf2read.c (create_debug_types_hash_table): Don't allocate the
2302         types hash table until we know we need it.
2303
2304         * dwarf2read.c (create_addrmap_from_index): Complain about bad CU
2305         index numbers.
2306
2307         * dwarf2read.c (dw2_get_file_names): Delete arg "objfile".
2308         All callers updated.
2309         (dw2_print_stats): Print #read CUs too.
2310         (dump_die_shallow): Print signatured types better.
2311
2312         * dwarf2read.c (struct dwarf2_per_cu_data): Rename member
2313         info_or_types_section to section.  All uses updated.
2314         (struct dwo_unit): Ditto.
2315
2316 2013-03-28  Pedro Alves  <palves@redhat.com>
2317
2318         * NEWS (New options): New section.
2319         (New options): Mention set/show remote trace-status-packet.
2320         * remote.c (PACKET_qTStatus): New enumeration value.
2321         (remote_get_trace_status): Skip sending qTStatus if the packet is
2322         disabled.  Use packet_ok.
2323         (_initialize_remote): Register a configuration command for
2324         qTStatus packet.
2325
2326 2013-03-28  Doug Evans  <dje@google.com>
2327
2328         * symfile.c (find_separate_debug_file): Add comment.
2329         (terminate_after_last_dir_separator): Tweak comment.
2330
2331         * dwarf2read.c (create_partial_symtab): Add forward decl.
2332         (create_partial_symtab): Move to be closer to other psymtab functions.
2333         (process_psymtab_comp_unit_reader, process_psymtab_comp_unit): Ditto.
2334
2335         * dwarf2read.c (dwarf2_physname): Move declaration to better spot.
2336         (compute_symtab_includes): Remove unnecessary forward declaration.
2337         (die_needs_namespace): Add comment marking group of functions for
2338         dwarf2 name computation.
2339
2340         * typeprint.c (_initialize_typeprint): Improve type help text.
2341
2342         * python/python.c (finish_python_initialization): Provide suggestion
2343         for how to tell gdb to find its python files.
2344
2345 2013-03-28  Pedro Alves  <palves@redhat.com>
2346
2347         PR gdb/15294
2348
2349         * source.c (_initialize_source): Change back "set listsize" to an
2350         integer command.
2351
2352 2013-03-27  Gareth McMullin  <gareth@blacksphere.co.nz>
2353
2354         PR gdb/15275
2355         * remote.c (remote_get_trace_status): Include putpkt in TRY_CATCH.
2356
2357 2013-03-27  Pedro Alves  <palves@redhat.com>
2358
2359         * top.c (history_size): Rename to ...
2360         (history_size_setshow_var): ... this.  Add comment.
2361         (show_commands): Use readline's 'history_length' instead of
2362         computing the history length by calling history_get in a loop.
2363         (set_history_size_command): Error out for sizes over INT_MAX.
2364         Restore previous history size on invalid size.
2365         (init_history): If HISTSIZE is negative, leave the history size as
2366         zero.  Add comments.
2367         (init_main): Adjust.
2368
2369 2013-03-27  Pedro Alves  <palves@redhat.com>
2370
2371         * coff-pe-read.c (_initialize_coff_pe_read): Rename "set debug
2372         coff_pe_read" command to "set debug coff-pe-read".
2373
2374 2013-03-27  Markus Metzger  <markus.t.metzger@intel.com>
2375
2376         * record.c (command_size_to_target_size): Fix size comparison.
2377         Change parameter type from pointer to integer to integer.
2378         Update all users.
2379
2380 2013-03-27  Pierre Muller  <muller@sourceware.org>
2381
2382         * windows-nat.c (handle_output_debug_string): Avoid typecast
2383         from integer of different size warning.
2384
2385 2013-03-26  Joel Brobecker  <brobecker@adacore.com>
2386
2387         * windows-nat.c (handle_output_debug_string): Add empty line
2388         after local block variable definition.
2389
2390 2013-03-26  Pedro Alves  <palves@redhat.com>
2391
2392         * ser-tcp.c (wait_for_connect): Make 'polls' parameter unsigned.
2393         (net_open): Make 'polls' local unsigned.
2394
2395 2013-03-26  Pedro Alves  <palves@redhat.com>
2396
2397         * remote.c (_initialize_remote): Make "set remoteaddresssize"
2398         a zuinteger command instead of uinteger.
2399
2400 2013-03-26  Pedro Alves  <palves@redhat.com>
2401
2402         * record-full.c (record_full_insn_num): Make it unsigned.
2403         (record_full_check_insn_num, record_full_message)
2404         (record_full_registers_change, record_full_xfer_partial): Remove
2405         record_full_insn_max_num check (it's always != 0).
2406         (record_full_info, record_full_restore): Use %u as format string.
2407         (): Use %u as format string.
2408         (set_record_full_insn_max_num): Remove record_full_insn_max_num
2409         check (it's always != 0).
2410
2411 2013-03-26  Pedro Alves  <palves@redhat.com>
2412
2413         * dcache.c (_initialize_dcache): Make the "set dcache line-size"
2414         and "set dcache size" commands zuinteger instead of uinteger.
2415
2416 2013-03-26  Pedro Alves  <palves@redhat.com>
2417
2418         * cris-tdep.c (_initialize_cris_tdep): Make the "set cris-version"
2419         command zuinteger instead of uinteger.
2420
2421 2013-03-26  Pedro Alves  <palves@redhat.com>
2422
2423         * coff-pe-read.c (_initialize_coff_pe_read): Make the command
2424         zuinteger instead of uinteger.
2425
2426 2013-03-26  Pedro Alves  <palves@redhat.com>
2427
2428         * record.c (record_insn_history_size_setshow_var)
2429         (record_call_history_size_setshow_var): New globals.
2430         (command_size_to_target_size): New function.
2431         (cmd_record_insn_history, cmd_record_call_history): Use
2432         command_size_to_target_size instead of cast.
2433         (validate_history_size, set_record_insn_history_size)
2434         (set_record_call_history_size): New functions.
2435         (_initialize_record): Install set_record_insn_history_size and
2436         set_record_call_history_size as "set" hooks of "set record
2437         instruction-history-size" and "set record
2438         function-call-history-size".
2439
2440 2013-03-26  Pedro Alves  <palves@redhat.com>
2441
2442         * top.c (gdb_rl_operate_and_get_next): Replace max_input_history
2443         use with history_max_entries use.  Remove FIXME note.
2444
2445 2013-03-26  Markus Metzger  <markus.t.metzger@intel.com>
2446
2447         * record-btrace.c (record_btrace_close): Call
2448         record_btrace_auto_disable.
2449
2450 2013-03-25  Joel Brobecker  <brobecker@adacore.com>
2451
2452         * rs6000-nat.c (fixup_breakpoints): Delete declaration.
2453
2454 2013-03-25  Doug Evans  <dje@google.com>
2455
2456         * contrib/cc-with-tweaks.sh: Check exit code of dwp.
2457
2458 2013-03-25  Tom Tromey  <tromey@redhat.com>
2459
2460         PR symtab/11462:
2461         * c-exp.y (exp): Add new productions for destructors after '.' and
2462         '->'.
2463         (write_destructor_name): New function.
2464
2465 2013-03-25  Tom Tromey  <tromey@redhat.com>
2466
2467         PR c++/9197:
2468         * opencl-lang.c (evaluate_subexp_opencl) <STRUCTOP_STRUCT>: Use
2469         value_struct_elt, not lookup_struct_elt_type.
2470         * eval.c (evaluate_subexp_standard) <STRUCTOP_STRUCT,
2471         STRUCTOP_PTR>: Use value_struct_elt, not lookup_struct_elt_type.
2472         * expression.h (EVAL_AVOID_SIDE_EFFECTS): Update comment.
2473
2474 2013-03-25  Yao Qi  <yao@codesourcery.com>
2475
2476         * ctf.c [USE_WIN32API]: Undef 'mkdir' and use 'mkdir'
2477         instead of '_mkdir'.
2478
2479 2013-03-23  Eli Zaretskii  <eliz@gnu.org>
2480
2481         * windows-nat.c (windows_get_absolute_argv0): New function.
2482         * windows-nat.h: Add its prototype.
2483
2484         * main.c (get_init_files): Use filename_ncmp instead of strncmp.
2485         Use IS_DIR_SEPARATOR instead of looking for a character inside
2486         SLASH_STRING.  Include filenames.h.
2487         (captured_main) [__MINGW32__]: Make argv[0] absolute, so that
2488         relocate_gdb_directory works when passed gdb_program_name.
2489         Include windows-nat.h.
2490
2491 2013-03-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
2492
2493         * exceptions.h (enum errors): New entry TARGET_CLOSE_ERROR.
2494         * remote.c (trace_error): Remove the special handling of '2'.
2495         (readchar) <SERIAL_EOF>
2496         (readchar) <SERIAL_ERROR>
2497         (getpkt_or_notif_sane_1): Use TARGET_CLOSE_ERROR for them.
2498         (remote_get_trace_status): Call throw_exception if EX is
2499         TARGET_CLOSE_ERROR.
2500         * utils.c (perror_with_name): Rename to ...
2501         (throw_perror_with_name): ... here.  New parameter errcode, describe it
2502         in the function comment.
2503         (perror_with_name): New function wrapper.
2504         * utils.h (enum errors): New stub declaration.
2505         (throw_perror_with_name): New declaration.
2506
2507 2013-03-22  Pedro Alves  <palves@redhat.com>
2508             Yao Qi  <yao@codesourcery.com>
2509             Mark Kettenis  <kettenis@gnu.org>
2510
2511         * cli/cli-setshow.c (do_set_command) <var_uinteger>:
2512         Don't let the user set the value to UINT_MAX directly.
2513         <var_integer>: Don't let the user set the value to INT_MAX
2514         directly.
2515
2516 2013-03-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
2517
2518         * remote.c (remote_unpush_target): New function.
2519         (remote_open_1): Remove two pop_target calls, update one comment, add
2520         comment to target_preopen call.  Replace pop_target call by
2521         remote_unpush_target call.
2522         (interrupt_query, readchar, getpkt_or_notif_sane_1): Replace
2523         pop_target calls by remote_unpush_target calls.
2524
2525 2013-03-22  Pedro Alves  <palves@redhat.com>
2526
2527         * linux-nat.c (linux_child_follow_fork): Don't call
2528         linux_enable_event_reporting.
2529         (linux_handle_extended_wait): Don't call
2530         linux_enable_event_reporting.
2531
2532 2013-03-22  Pedro Alves  <palves@redhat.com>
2533
2534         * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code): Define INSN macro,
2535         use it to rewrite the trampoline buffers with type gdb_byte[], and
2536         undefine the macro.  Remove char* cast.
2537
2538 2013-03-21  Doug Evans  <dje@google.com>
2539
2540         New commands "mt set per-command {space,time,symtab} {on,off}".
2541         * NEWS: Add entry.
2542         * event-top.c: #include "maint.h".
2543         * main.c: #include "maint.h".
2544         * maint.c: #include <sys/time.h>, <time.h>, block.h, top.h,
2545         timeval-utils.h, maint.h, cli/cli-setshow.h.
2546         (per_command_time, per_command_space): New static globals.
2547         (per_command_symtab): New static global.
2548         (per_command_setlist, per_command_showlist): New static globals.
2549         (struct cmd_stats): Move here from utils.c.
2550         (set_per_command_time): Renamed from set_display_time in utils.c
2551         and moved here.  All callers updated.
2552         (set_per_command_space): Renamed from set_display_space in utils.c
2553         and moved here.  All callers updated.
2554         (count_symtabs_and_blocks): New function.
2555         (report_command_stats): Moved here from utils.c.  Add support for
2556         printing symtab stats.  Only print data if enabled before command
2557         executed.
2558         (make_command_stats_cleanup): Ditto.
2559         (sert_per_command_cmd, show_per_command_cmd): New functions.
2560         (_initialize_maint_cmds): Add new commands
2561         mt set per-command {space,time,symtab} {on,off}.
2562         * maint.h: New file.
2563         * top.c: #include "maint.h".
2564         * utils.c (reset_prompt_for_continue_wait_time): New function.
2565         (get_prompt_for_continue_wait_time): New function.
2566         * utils.h (reset_prompt_for_continue_wait_time): Declare
2567         (get_prompt_for_continue_wait_time): Declare.
2568         (make_command_stats_cleanup): Moved to maint.h.
2569         (set_display_time, set_display_space): Moved to maint.h and renamed
2570         to set_per_command_time, set_per_command_space.
2571         * cli/cli-setshow.c (parse_cli_boolean_value): Renamed from
2572         parse_binary_operation and made non-static.  Don't call error,
2573         just return an error marker.  All callers updated.
2574         * cli/cli-setshow.h (parse_cli_boolean_value): Declare.
2575
2576 2013-03-21  Tom Tromey  <tromey@redhat.com>
2577
2578         * symfile.c (alloc_section_addr_info): Update header.  Don't set
2579         'num_sections' field.
2580         (build_section_addr_info_from_section_table): Set 'num_sections'.
2581         (build_section_addr_info_from_bfd): Likewise.
2582         (build_section_addr_info_from_objfile): Remove dead loop
2583         condition.
2584         (free_section_addr_info): Unconditionally call xfree.
2585         (relative_addr_info_to_section_offsets, addrs_section_sort)
2586         (addr_info_make_relative, syms_from_objfile_1): Remove dead loop
2587         condition.
2588         (syms_from_objfile_1): Remove dead 'if' condition.  Check
2589         'num_sections'.
2590         (add_symbol_file_command): Set 'num_sections'.
2591         * symfile-mem.c (symbol_file_add_from_memory): Set
2592         'num_sections'.
2593         * somread.c (som_symfile_offsets): Remove dead loop condition.
2594         * machoread.c (macho_symfile_offsets): Remove dead 'if'.
2595         * jit.c (jit_bfd_try_read_symtab): Set 'num_sections'.
2596
2597 2013-03-21  Tom Tromey  <tromey@redhat.com>
2598
2599         * tracepoint.h (decode_agent_options): Add 'trace_string'
2600         argument.
2601         * tracepoint.c (decode_agent_options): Add 'trace_string'
2602         argument.
2603         (validate_actionline): Update.
2604         (collect_symbol): Add 'trace_string' argument.
2605         (struct add_local_symbols_data) <trace_string>: New field.
2606         (do_collect_symbol): Update.
2607         (add_local_symbols): Add 'trace_string' argument.
2608         (encode_actions_1): Update.
2609         (trace_dump_actions): Update.
2610         * dwarf2loc.c (access_memory): Update.
2611         * ax.h (struct agent_expr) <tracing, trace_string>: New fields.
2612         * ax-general.c (new_agent_expr): Update.
2613         * ax-gdb.h (gen_trace_for_expr, gen_trace_for_var)
2614         (gen_trace_for_return_address): Add argument.
2615         (trace_kludge, trace_string_kludge): Remove.
2616         * ax-gdb.c (trace_kludge, trace_string_kludge): Remove.
2617         (gen_traced_pop, gen_fetch, gen_bitfield_ref, gen_expr): Update.
2618         (gen_trace_for_var): Add 'trace_string' argument.
2619         (gen_trace_for_expr, gen_trace_for_return_address): Likewise.
2620         (gen_printf, agent_eval_command_one): Update.
2621
2622 2013-03-21  Tom Tromey  <tromey@redhat.com>
2623
2624         PR exp/15109:
2625         * c-exp.y (yylex): Rewrite to push all tokens onto the FIFO.
2626         Handle FILENAME token.
2627
2628 2013-03-21  Tom Tromey  <tromey@redhat.com>
2629
2630         * c-exp.y (YYPRINT): Define.
2631         (c_print_token): New function.
2632
2633 2013-03-21  Tom Tromey  <tromey@redhat.com>
2634
2635         * c-exp.y (%union) <sym, ivar, ivec>: Remove.
2636
2637 2013-03-21  Yao Qi  <yao@codesourcery.com>
2638
2639         * ctf.c: Include "gdb_stat.h".
2640         [USE_WIN32API]: New macro 'mkdir'.
2641         (ctf_start): Use permission bits macros if they are defined.
2642
2643 2013-03-20  Keith Seitz  <keiths@redhat.com>
2644
2645         * breakpoint.h (struct breakpoint): Add comment to
2646         extra_string indicating that this member is mallod'd.
2647         * breakpoint.c (base_breakpoint_dtor): Free extra_string.
2648
2649 2013-03-20  Pedro Alves  <palves@redhat.com>
2650
2651         PR gdb/15289
2652
2653         * cli/cli-setshow.c (do_set_command)
2654         <var_uinteger, var_zuinteger>: Use LONGEST for variable holding
2655         the result of parsing the command argument.  Throw error if the
2656         value is greater than UINT_MAX.  Print the invalid value with
2657         plongest.
2658         <var_integer, var_zinteger>: Use LONGEST for variable holding the
2659         result of parsing the command argument.  Throw error if the value
2660         is greater than INT_MAX, not greater or equal.  Also throw error
2661         if the value is less than INT_MIN.  Print the invalid value with
2662         plongest.
2663         <var_zuinteger_unlimited>: Throw error if the value is greater
2664         than INT_MAX, not greater or equal.
2665         (do_show_command) <var_integer, var_zinteger,
2666         var_zuinteger_unlimited>: Use %d for printing int, not %u.
2667
2668 2013-03-20  Tom Tromey  <tromey@redhat.com>
2669
2670         * ax-gdb.c (gen_var_ref): Unconditionally call via computed ops,
2671         if possible.
2672         * dwarf2read.c (read_func_scope): Remove old FIXME.
2673         * eval.c (evaluate_subexp_standard): Check SYMBOL_COMPUTED_OPS,
2674         not LOC_COMPUTED.
2675         * findvar.c (symbol_read_needs_frame, default_read_var_value):
2676         Unconditionally call via computed ops, if possible.
2677         * printcmd.c (address_info): Unconditionally call via computed ops,
2678         if possible.
2679         * stack.c (read_frame_arg): Unconditionally call via computed ops,
2680         if possible.
2681         * symtab.c (register_symbol_computed_impl): Sanity check 'ops'.
2682         * tracepoint.c (scope_info): Unconditionally call via computed ops,
2683         if possible.
2684
2685 2013-03-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
2686             Tom Tromey  <tromey@redhat.com>
2687
2688         PR symtab/8421:
2689         * coffread.c (coff_register_index): New global.
2690         (process_coff_symbol, coff_read_enum_type): Set
2691         SYMBOL_ACLASS_INDEX.
2692         (_initialize_coffread): Initialize new global.
2693         * dwarf2loc.c (locexpr_find_frame_base_location)
2694         (dwarf2_block_frame_base_locexpr_funcs)
2695         (loclist_find_frame_base_location)
2696         (dwarf2_block_frame_base_loclist_funcs): New.
2697         (dwarf_expr_frame_base_1): Call SYMBOL_BLOCK_OPS, remove internal_error.
2698         (dwarf2_locexpr_funcs, dwarf2_loclist_funcs): Add location_has_loclist.
2699         * dwarf2loc.h (dwarf2_block_frame_base_locexpr_funcs)
2700         (dwarf2_block_frame_base_loclist_funcs): New.
2701         * dwarf2read.c (dwarf2_locexpr_index, dwarf2_loclist_index)
2702         (dwarf2_locexpr_block_index, dwarf2_loclist_block_index): New
2703         globals.
2704         (read_func_scope): Update.
2705         (fixup_go_packaging, mark_common_block_symbol_computed)
2706         (var_decode_location, new_symbol_full, dwarf2_const_value):
2707         Set SYMBOL_ACLASS_INDEX.
2708         (dwarf2_symbol_mark_computed): Likewise.  Add 'is_block' argument.
2709         (_initialize_dwarf2_read): Initialize new globals.
2710         * jit.c (finalize_symtab): Set SYMBOL_ACLASS_INDEX.
2711         * jv-lang.c (add_class_symbol): Set SYMBOL_ACLASS_INDEX.
2712         * mdebugread.c (mdebug_register_index, mdebug_regparm_index): New
2713         globals.
2714         (parse_symbol, psymtab_to_symtab_1): Set SYMBOL_ACLASS_INDEX.
2715         (_initialize_mdebugread): Initialize new globals.
2716         * psympriv.h (struct partial_symbol) <aclass>: Update comment.
2717         * stabsread.c (patch_block_stabs): Set SYMBOL_ACLASS_INDEX.
2718         (stab_register_index, stab_regparm_index): New globals.
2719         (define_symbol, read_enum_type, common_block_end): Set
2720         SYMBOL_ACLASS_INDEX.
2721         (_initialize_stabsread): Initialize new globals.
2722         * symtab.c (next_aclass_value, symbol_impl, symbol_impls): New
2723         globals.
2724         (MAX_SYMBOL_IMPLS): New define.
2725         (register_symbol_computed_impl, register_symbol_block_impl)
2726         (register_symbol_register_impl)
2727         (initialize_ordinary_address_classes): New functions.
2728         (_initialize_symtab): Call initialize_ordinary_address_classes.
2729         * symtab.h (enum address_class) <LOC_FINAL_VALUE>: New constant.
2730         (struct symbol_impl): New.
2731         (SYMBOL_ACLASS_BITS): New define.
2732         (struct symbol) <aclass, ops>: Remove fields.
2733         <aclass_index>: New field.
2734         (symbol_impls): Declare.
2735         (SYMBOL_CLASS, SYMBOL_COMPUTED_OPS, SYMBOL_REGISTER_OPS): Redefine.
2736         (SYMBOL_IMPL, SYMBOL_ACLASS_INDEX): New defines.
2737         (register_symbol_computed_impl, register_symbol_block_impl)
2738         (register_symbol_register_impl): Declare.
2739         (struct symbol_computed_ops): Add location_has_loclist.
2740         (struct symbol_block_ops): New.
2741         (SYMBOL_BLOCK_OPS): New.
2742         * xcoffread.c (process_xcoff_symbol): Set SYMBOL_ACLASS_INDEX.
2743
2744 2013-03-20  Tom Tromey  <tromey@redhat.com>
2745
2746         * psymtab.c (find_pc_sect_psymbol, fixup_psymbol_section)
2747         (print_partial_symbols, recursively_search_psymtabs): Use
2748         PSYMBOL_CLASS.
2749
2750 2013-03-20  Pierre Muller  <muller@sourceware.org>
2751
2752         * contrib/ari/gdb_ari.sh (OP eol rule): Also check
2753         addtion, subtraction, multiplication and division binary operator.
2754
2755 2013-03-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
2756
2757         Code cleanup.
2758         * bfd-target.c (target_bfd_xclose): Remove parameter quitting.
2759         * bsd-kvm.c (bsd_kvm_close): Likewise.
2760         * bsd-uthread.c (bsd_uthread_close): Likewise.
2761         * corelow.c (core_close): Likewise.
2762         (core_close_cleanup): Remove parameter quitting from a caller.
2763         * event-top.c (async_disconnect): Likewise.
2764         * exec.c (exec_close_1): Remove parameter quitting.
2765         * go32-nat.c (go32_close): Likewise.
2766         * linux-nat.c (linux_nat_close): Remove parameter quitting.  Remove
2767         parameter quitting from a caller.
2768         * mips-linux-nat.c (super_close): Remove parameter quitting from the
2769         variable.
2770         (mips_linux_close): Remove parameter quitting.  Remove parameter
2771         quitting from a caller.
2772         * monitor.c (monitor_close): Remove parameter quitting.
2773         * monitor.h (monitor_close): Likewise.
2774         * record-btrace.c (record_btrace_close): Likewise.
2775         * record-full.c (record_full_close): Likewise.
2776         * remote-m32r-sdi.c (m32r_close): Remove parameter quitting and remove
2777         it also from fprintf_unfiltered.
2778         * remote-mips.c (mips_close): Remove parameter quitting.
2779         (mips_detach): Remove parameter quitting from a caller.
2780         * remote-sim.c (gdbsim_close): Remove parameter quitting.
2781         (gdbsim_close): Remove duplicate function comment.  Remove parameter
2782         quitting and remove it also from printf_filtered.
2783         * remote.c (remote_close): Remove parameter quitting.
2784         * solib-svr4.c (enable_break): Remove parameter quitting from a caller.
2785         * target.c (update_current_target): Remove parameter int from to_close
2786         de_fault.
2787         (push_target, unpush_target, pop_target): Remove parameter quitting from
2788         a caller.
2789         (pop_all_targets_above, pop_all_targets): Remove parameter quitting.
2790         Remove parameter quitting from a caller.
2791         (target_preopen): Remove parameter quitting from a caller.
2792         (target_close): Remove parameter quitting.  Remove parameter quitting
2793         from a caller two times.  Remove parameter quitting also from
2794         fprintf_unfiltered.
2795         * target.h (struct target_ops): Remove parameter quitting and as int
2796         from fields to_xclose and to_close.
2797         (extern struct target_ops current_target):
2798         (target_close, pop_all_targets): Remove parameter quitting.  Update the
2799         comment.
2800         (pop_all_targets_above): Remove parameter quitting.
2801         * top.c (quit_target): Remove parameter quitting from a caller.
2802         * tracepoint.c (tfile_close): Remove parameter quitting.
2803         * windows-nat.c (windows_close): Remove parameter quitting.
2804
2805 2013-03-20  Corinna Vinschen  <vinschen@redhat.com>
2806
2807         * windows-nat.c (handle_output_debug_string): Replace call
2808         to string_to_core_addr with call to strtoull.
2809
2810 2013-03-20  Yao Qi  <yao@codesourcery.com>
2811
2812         * ctf.c (ctf_save_metadata_header): Define macro HOST_ENDIANNESS
2813         and write it to CTF metadata.
2814
2815 2013-03-19  Corinna Vinschen  <vinschen@redhat.com>
2816
2817         * windows-nat.c (handle_output_debug_string): Change type of n to
2818         SIZE_T to avoid crash on 64 bit systems.
2819
2820 2013-03-17  Eli Zaretskii  <eliz@gnu.org>
2821
2822         * python/python-internal.h (HAVE_SNPRINTF)
2823         [_WIN32 && HAVE_DECL_SNPRINTF]: Define, to avoid compiler warnings
2824         about redefinition of snprintf by pyerrors.h.
2825
2826 2013-03-15  Steve Ellcey  <sellcey@mips.com>
2827
2828         * remote-sim.c (sim_command_completer): Make char arguments const.
2829
2830 2013-03-15  Tom Tromey  <tromey@redhat.com>
2831
2832         PR c++/15116:
2833         * gdbtypes.c (types_equal): Handle TYPE_CODE_FUNC.
2834
2835 2013-03-14  Tom Tromey  <tromey@redhat.com>
2836
2837         * gdb_bfd.c (struct gdb_bfd_data) <crc_computed, crc>:
2838         New fields.
2839         (get_file_crc): Move from symfile.c.
2840         (gdb_bfd_crc): New function.
2841         * gdb_bfd.h (gdb_bfd_crc): Declare.
2842         * objfiles.h (struct objfile) <crc32, crc32_p>: Remove.
2843         * symfile.c (get_file_crc): Move to gdb_bfd.c.
2844         (separate_debug_file_exists): Use gdb_bfd_crc.
2845
2846 2013-03-14  Tom Tromey  <tromey@redhat.com>
2847
2848         * symfile.c (get_debug_link_info): Remove.
2849         (find_separate_debug_file_by_debuglink): Use
2850         bfd_get_debug_link_info.
2851
2852 2013-03-14  Tom Tromey  <tromey@redhat.com>
2853
2854         * symtab.c (error_in_psymtab_expansion): New function.
2855         (lookup_symbol_aux_quick)
2856         (basic_lookup_transparent_type_quick): Remove "last resort"
2857         code.  Use error_in_psymtab_expansion.
2858
2859 2013-03-14  Doug Evans  <dje@google.com>
2860             Jan Kratochvil  <jan.kratochvil@redhat.com>
2861
2862         * dwarf2read.c (dw2_map_symtabs_matching_filename): Put continue after
2863         any successful compare_filenames_for_search or FILENAME_CMP.
2864         * psymtab.c (partial_map_symtabs_matching_filename): Likewise.
2865         * symtab.c (iterate_over_some_symtabs): Likewise.
2866
2867 2013-03-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
2868
2869         * source.c (print_source_lines_base): Make a local copy of
2870         symtab_to_fullname.
2871
2872 2013-03-14  Hui Zhu  <hui_zhu@mentor.com>
2873             Jan Kratochvil  <jan.kratochvil@redhat.com>
2874
2875         * source.c (print_source_lines_base): Suppress "file" for TUI.
2876
2877 2013-03-14  Keith Seitz  <keiths@redhat.com>
2878             Alan Matsuoka  <alanm@redhat.com>
2879
2880         PR c++/15203
2881         PR c++/15210
2882         * cp-namespace.c (cp_lookup_nested_symbol): Handle TYPE_CODE_FUNC and
2883         TYPE_CODE_METHOD.
2884         * elfread.c (elf_symtab_read): Handle BSF_GNU_UNIQUE for certain
2885         symbols.
2886
2887 2013-03-14  Yao Qi  <yao@codesourcery.com>
2888
2889         * tracepoint.c (tfile_write_status): Write 'stop_desc' of trace
2890         status to tfile if trace is stopped by command 'tstop'.
2891
2892 2013-03-14  Yao Qi  <yao@codesourcery.com>
2893
2894         * tracepoint.c (tfile_write_status): Write trace notes and user
2895         name into tfile if they are not NULL.
2896
2897 2013-03-14  Hui Zhu  <hui@codesourcery.com>
2898             Yao Qi  <yao@codesourcery.com>
2899
2900         * Makefile.in (REMOTE_OBS): Add ctf.o.
2901         (SFILES): Add ctf.c.
2902         (HFILES_NO_SRCDIR): Add ctf.h.
2903         * ctf.c, ctf.h: New files.
2904         * tracepoint.c: Include 'ctf.h'.
2905         (collect_pseudocommand): Remove static.
2906         (trace_save_command): Parse option "-ctf".
2907         Produce different trace file writers per option.
2908         Adjust output message.
2909         (trace_save_tfile, trace_save_ctf): New.
2910         * tracepoint.h (trace_save_tfile, trace_save_ctf): Declare.
2911         * mi/mi-main.c: Include 'ctf.h'.
2912         (mi_cmd_trace_save): Handle option '-ctf'.  Call either
2913         trace_save_tfile or trace_save_ctf.
2914         * NEWS: Mention these changes.
2915
2916 2013-03-14  Yao Qi  <yao@codesourcery.com>
2917
2918         * tracepoint.c (trace_file_writer_xfree): New.
2919         (struct tfile_writer_data): New.
2920         (tfile_dtor, tfile_can_target_save, tfile_start): New.
2921         (tfile_write_header, tfile_write_regblock_type): New.
2922         (tfile_write_status, tfile_write_uploaded_tsv): New.
2923         (tfile_write_uploaded_tp, tfile_write_definition_end): New.
2924         (tfile_write_raw_data, (tfile_end): New.
2925         (tfile_write_ops): New global variable.
2926         (TRACE_WRITE_R_BLOCK): New macro.
2927         (TRACE_WRITE_M_BLOCK_HEADER): New macro.
2928         (TRACE_WRITE_M_BLOCK_MEMORY): New macro.
2929         (TRACE_WRITE_V_BLOCK): New macro.
2930         (trace_save): Add extra one parameter WRITER.  Make it static.
2931         Use WRITER to writer trace.
2932         (tfile_trace_file_writer_new): New.
2933         (trace_save_command): Caller update.
2934         (trace_save_tfile): Write trace data in TFILE format.
2935         * tracepoint.h (struct trace_frame_write_ops): New.
2936         (struct trace_file_write_ops): New.
2937         (struct trace_file_writer): New.
2938         (trace_save): Remove its declaration.
2939         (trace_save_tfile): Declare it.
2940         * mi/mi-main.c (mi_cmd_trace_save): Call trace_save_tfile
2941         instead of trace_save.
2942
2943 2013-03-13  Pedro Alves  <palves@redhat.com>
2944
2945         * hppa-hpux-nat.c (hppa_hpux_save_state_offset): Make static.
2946
2947 2013-03-13  Pedro Alves  <palves@redhat.com>
2948
2949         * dbxread.c (read_ofile_symtab, process_one_symbol): Remove
2950         commented out code.
2951         * demangle.c (current_demangling_style_string): Make it const.
2952         (set_demangling_command): Assert the demangling style is known.
2953         Remove all handling of unknown styles.  Set
2954         'current_demangling_style_string' to an element of the
2955         demangling_style_names array.
2956         (set_demangling_style): Delete.
2957         (_initialize_demangler): Set current_demangling_style_string to the
2958         element of the demangling_style_names array that corresponds to
2959         the default demangling style.  Remove FIXME note.  Don't call
2960         set_demangling_style.
2961         * gdb-demangle.h (set_demangling_style): Remove declaration.
2962
2963 2013-03-13  Pedro Alves  <palves@redhat.com>
2964
2965         * ada-lang.c (struct add_partial_datum) <text, text0, word>: Make
2966         fields const.
2967         (ada_make_symbol_completion_list): Make "text0" parameter const.
2968         * ax-gdb.c (agent_eval_command_one): Make "exp" parameter const.
2969         * breakpoint.c (condition_completer): Make "text" and "word"
2970         parameters const.  Adjust.
2971         (check_tracepoint_command): Adjust to validate_actionline
2972         prototype change.
2973         (catch_syscall_completer): Make "text" and "word" parameters
2974         const.
2975         * cli/cli-cmds.c (show_user): Make "comname" local const.
2976         (valid_command_p): Make "command" parameter const.
2977         (alias_command): Make "alias_prefix" and "command_prefix" locals
2978         const.
2979         * cli/cli-decode.c (add_cmd): Make "name" parameter const.
2980         (add_alias_cmd): Make "name" and "oldname" parameters const.
2981         Adjust.  No longer make copy of OLDNAME.
2982         (add_prefix_cmd, add_abbrev_prefix_cmd, add_set_or_show_cmd)
2983         (add_setshow_cmd_full, add_setshow_enum_cmd)
2984         (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
2985         (add_setshow_filename_cmd, add_setshow_string_cmd)
2986         (add_setshow_string_noescape_cmd)
2987         (add_setshow_optional_filename_cmd, add_setshow_integer_cmd)
2988         (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd)
2989         (add_setshow_zuinteger_unlimited_cmd, add_setshow_zuinteger_cmd)
2990         (delete_cmd, add_info, add_info_alias, add_com, add_com_alias):
2991         Make "name" parameter const.
2992         (help_cmd): Rename "command" parameter to "arg".  New const local
2993         "command".
2994         (find_cmd): Make "command" parameter const.
2995         (lookup_cmd_1): Make "text" parameter pointer to const.  Adjust to
2996         deprecated_cmd_warning prototype change.
2997         (undef_cmd_error): Make "cmdtype" parameter const.
2998         (lookup_cmd): Make "line" parameter const.
2999         (deprecated_cmd_warning): Change type of "text" parameter to
3000         pointer to const char, from pointer to pointer to char.  Adjust.
3001         (lookup_cmd_composition): Make "text" parameter const.
3002         (complete_on_cmdlist, complete_on_enum): Make "text" and "word"
3003         parameters const.
3004         * cli/cli-decode.h (struct cmd_list_element) <name>: Make field
3005         const.
3006         * cli/cli-script.c (validate_comname): Make "tem" local const.
3007         (define_command): New const local "tem_c".  Use it in calls to
3008         lookup_cmd.
3009         (document_command): Make "tem" and "comfull" locals const.
3010         (show_user_1): Make "prefix" and "name" parameters const.
3011         * cli-script.h (show_user_1): Make "prefix" and "name" parameters
3012         const.
3013         * command.h (add_cmd, add_alias_cmd, add_prefix_cmd)
3014         (add_abbrev_prefix_cmd, completer_ftype, lookup_cmd, lookup_cmd_1)
3015         (deprecated_cmd_warning, lookup_cmd_composition, add_com)
3016         (add_com_alias, add_info, add_info_alias, complete_on_cmdlist)
3017         (complete_on_enum, add_setshow_enum_cmd)
3018         (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
3019         (add_setshow_filename_cmd, add_setshow_string_cmd)
3020         (add_setshow_string_noescape_cmd)
3021         (add_setshow_optional_filename_cmd, add_setshow_integer_cmd)
3022         (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd)
3023         (add_setshow_zuinteger_cmd, add_setshow_zuinteger_unlimited_cmd):
3024         Change prototypes, constifying strings.
3025         * completer.c (noop_completer, filename_completer): Make "text"
3026         and "prefix" parameters const.
3027         (location_completer, expression_completer)
3028         (complete_line_internal): Make "text" and "prefix" parameters
3029         const and adjust.
3030         (command_completer, signal_completer): Make "text" and "prefix"
3031         parameters const.
3032         * completer.h (noop_completer, filename_completer)
3033         (expression_completer, location_completer, command_completer)
3034         (signal_completer): Change prototypes.
3035         * corefile.c (complete_set_gnutarget): Make "text" and "word"
3036         parameters const.
3037         * cp-abi.c (cp_abi_completer): Likewise.
3038         * expression.h (parse_expression_for_completion): Change
3039         prototype.
3040         * f-lang.c (f_make_symbol_completion_list): Make "text" and "word"
3041         parameters const.
3042         * infcmd.c (_initialize_infcmd): Make "cmd_name" local const.
3043         * infrun.c (handle_completer): Make "text" and "word" parameters
3044         const.
3045         * interps.c (interpreter_completer): Make "text" and "word"
3046         parameters const.
3047         * language.h (struct language_defn)
3048         <la_make_symbol_completion_list>: Make "text" and "word"
3049         parameters const.
3050         * parse.c (parse_exp_1): Move const hack to parse_exp_in_context.
3051         (parse_exp_in_context): Rename to ...
3052         (parse_exp_in_context_1): ... this.
3053         (parse_exp_in_context): Reimplement, with const hack from
3054         parse_exp_1.
3055         (parse_expression_for_completion): Make "string" parameter const.
3056         * printcmd.c (decode_format): Make "string_ptr" parameter pointer
3057         to pointer to const char.  Adjust.
3058         (print_command_1): Make "exp" parameter const.
3059         (output_command): Rename to ...
3060         (output_command_const): ... this.  Make "exp" parameter const.
3061         (output_command): Reimplement.
3062         (x_command): Adjust.
3063         (display_command): Rename "exp" parameter to "arg".  New "exp"
3064         local, const version of "arg".
3065         * python/py-auto-load.c (gdbpy_initialize_auto_load): Make
3066         "cmd_name" local const.
3067         * python/py-cmd.c (cmdpy_destroyer): Cast const away in xfree
3068         call.
3069         (cmdpy_completer): Make "text" and "word" parameters const.
3070         (gdbpy_parse_command_name): Make "prefix_text2" local const.
3071         * python/py-param.c (add_setshow_generic): Make "tmp_name" local
3072         const.
3073         * remote.c (_initialize_remote): Make "cmd_name" local const.
3074         * symtab.c (language_search_unquoted_string): Make "text" and "p"
3075         parameters const.  Adjust.
3076         (completion_list_add_fields): Make "sym_text", "text" and "word"
3077         parameters const.
3078         (struct add_name_data) <sym_text, text, word>: Make fields const.
3079         (default_make_symbol_completion_list_break_on): Make "text" and
3080         "word" parameters const.  Adjust locals.
3081         (default_make_symbol_completion_list)
3082         (make_symbol_completion_list, make_symbol_completion_type)
3083         (make_symbol_completion_list_fn): Make "text" and "word"
3084         parameters const.
3085         (make_file_symbol_completion_list): Make "text", "word" and
3086         "srcfile" parameters const.  Adjust locals.
3087         (add_filename_to_list): Make "text" and "word" parameters const.
3088         (struct add_partial_filename_data) <text, word>: Make fields
3089         const.
3090         (make_source_files_completion_list): Make "text" and "word"
3091         parameters const.
3092         * symtab.h (default_make_symbol_completion_list_break_on)
3093         (default_make_symbol_completion_list, make_symbol_completion_list)
3094         (make_symbol_completion_type enum type_code)
3095         (make_symbol_completion_list_fn make_file_symbol_completion_list)
3096         (make_source_files_completion_list): Change prototype.
3097         * top.c (execute_command): Adjust to pass pointer to pointer to
3098         const char to lookup_cmd, and to deprecated_cmd_warning prototype
3099         change.
3100         (set_verbose): Make "cmdname" local const.
3101         * tracepoint.c (decode_agent_options): Make "exp" parameter const,
3102         and adjust.
3103         (validate_actionline): Make "line" parameter a pointer to const
3104         char, and adjust.
3105         (encode_actions_1): Make "action_exp" local const, and adjust.
3106         (encode_actions): Adjust.
3107         (replace_comma): Delete.
3108         (trace_dump_actions): Make "action_exp" and "next_comma" locals
3109         const, and adjust.  Don't frob the action string while splitting
3110         it at commas.  Instead, make a copy of each split substring in
3111         turn.
3112         (trace_dump_command): Adjust to validate_actionline prototype
3113         change.
3114         * tracepoint.h (decode_agent_options, decode_agent_options)
3115         (encode_actions, validate_actionline): Change prototypes.
3116         * valprint.h (output_command): Delete declaration.
3117         (output_command_const): Declare.
3118         * value.c (function_destroyer): Cast const away in xfree call.
3119
3120 2013-03-13  Pedro Alves  <palves@redhat.com>
3121
3122         * ada-lang.c (ada_decode_symbol): Cast away constness of GSYMBOL
3123         rather than casting 'const char * const *' to 'const char **'.
3124         * ada-lex.l (processInt): Make "trailer" local const.  Remove
3125         'const char **' cast.
3126         * arm-linux-tdep.c (arm_stap_parse_special_token): Add 'char *'
3127         locals, and use those as strtol output pointer, instead than doing
3128         invalid casts to from 'const char **' to 'char **'.
3129         (_initialize_demangle): Remove cast.
3130         * i386-tdep.c (i386_stap_parse_special_token): : Add 'char *'
3131         locals, and use those as strtol output pointer, instead than doing
3132         invalid casts to from 'const char **' to 'char **'.
3133         * solib-dsbt.c (dsbt_get_initial_loadmaps): Remove 'gdb_byte**'
3134         casts.
3135         * stap-probe.c (stap_parse_register_operand)
3136         (stap_parse_single_operand): Likewise.
3137
3138 2013-03-13  Yao Qi  <yao@codesourcery.com>
3139
3140         * tracepoint.c (tfile_get_trace_state_variable_value): Look for
3141         the last matched 'V' blcok in trace frame.
3142
3143 2013-03-12  Joel Brobecker  <brobecker@adacore.com>
3144
3145         * NEWS: Create a new section for the next release branch.
3146         Rename the section of the current branch, now that it has
3147         been cut.
3148
3149 2013-03-12  Joel Brobecker  <brobecker@adacore.com>
3150
3151         GDB 7.6 branch created (branch timestamp: 2013-03-12 22:15 UTC)
3152         * version.in: Bump version to 7.6.50.20130312-cvs.
3153
3154 2013-03-12  Keith Seitz  <keiths@redhat.com>
3155
3156         * mi/mi-cmds.h (mi_execute_command): Make "cmd" const.
3157         * mi/mi-interp.c (mi_interpreter_exec): Make "command" const.
3158         Remove temporary copy of input string.
3159         (mi_execute_command_wrapper): Make "cmd" const.
3160         * mi/mi-main.c (mi_execute_command): Make "string_ptr" const.
3161         * mi/mi-parse.c (mi_parse_argv): Make "args" const.
3162         Use const strings.
3163         (mi_parse): Make "cmd" const.
3164         Use const strings.
3165         * mi/mi-parse.h (mi_parse): Make "cmd" const.
3166
3167 2013-03-12  Keith Seitz  <keiths@redhat.com>
3168
3169         * ada-lang.c (ada_read_renaming_var_value): Pass const
3170         pointer to expression string to parse_exp_1.
3171         (create_excep_cond_exprs): Likewise.
3172         * ax-gdb.c (agent_eval_command_one): Likewise.
3173         (maint_agent_printf_command): Likewise.
3174         Constify much of the string handling/parsing.
3175         * breakpoint.c (set_breakpoint_condition): Pass const
3176         pointer to expression string to parse_exp_1.
3177         (update_watchpoint): Likewise.
3178         (parse_cmd_to_aexpr): Constify string handling.
3179         Pass const pointer to parse_exp_1.
3180         (init_breakpoint_sal): Pass const pointer to parse_exp_1.
3181         (find_condition_and_thread): Likewise.
3182         Make TOK const.
3183         (watch_command_1): Make "arg" const.
3184         Constify string handling.
3185         Copy the expression string instead of changing the input
3186         string.
3187         (update_breakpoint_location): Pass const pointer to
3188         parse_exp_1.
3189         * eval.c (parse_and_eval_address): Make "exp" const.
3190         (parse_to_comma_and_eval): Make "expp" const.
3191         (parse_and_eval): Make "exp" const.
3192         * expression.h (parse_expression): Make argument const.
3193         (parse_exp_1): Make first argument const.
3194         * findcmd.c (parse_find_args): Treat "args" as const.
3195         * linespec.c (parse_linespec): Pass const pointer to
3196         linespec_expression_to_pc.
3197         (linespec_expression_to_pc): Make "exp_ptr" const.
3198         * parse.c (parse_exp_1): Make "stringptr" const.
3199         Make a copy of the expression to pass to parse_exp_in_context until
3200         this whole interface can be constified.
3201         (parse_expression): Make "string" const.
3202         * printcmd.c (ui_printf): Treat "arg" as const.
3203         Handle const strings.
3204         * tracepoint.c (validate_actionline): Pass const pointer to
3205         all calls to parse_exp_1.
3206         (encode_actions_1): Likewise.
3207         * value.h (parse_to_comma_and_eval): Make argument const.
3208         (parse_and_eval_address): Likewise.
3209         (parse_and_eval): Likewise.
3210         * varobj.c (varobj_create): Pass const pointer to parse_exp_1.
3211         (varobj_set_value): Likewise.
3212         * cli/cli-cmds.c (disassemble_command): Treat "arg" as const and
3213         constify string handling.
3214         Pass const pointers to parse_and_eval_address and
3215         parse_to_comman_and_eval.
3216         * cli/cli-utils.c (skip_to_space): Rename to ...
3217         (skip_to_space_const): ... this. Handle const strings.
3218         * cli/cli-utils.h (skip_to_space): Turn into macro which invokes
3219         skip_to_space_const.
3220         (skip_to_space_const): Declare.
3221         * common/format.c (parse_format_string): Make "arg" const.
3222         Handle const strings.
3223         * common/format.h (parse_format_string): Make "arg" const.
3224         * gdbserver/ax.c (ax_printf): Make "format" const.
3225         * python/python.c (gdbpy_parse_and_eval): Do not make a copy
3226         of the expression string.
3227
3228 2013-03-12  Hui Zhu  <hui@codesourcery.com>
3229
3230         * dwarf2loc.c (dwarf2_compile_expr_to_ax): Update error message.
3231
3232 2013-03-12  Yao Qi  <yao@codesourcery.com>
3233             Hui Zhu  <hui@codesourcery.com>
3234
3235         * dwarf2loc.c (access_memory): Change nbits to nbytes in gdb_assert.
3236         (dwarf2_compile_expr_to_ax): Call access_memory in DW_OP_deref and
3237         DW_OP_deref_size.
3238
3239 2013-03-12  Paul Hilfinger  <hilfingr@adacore.com>
3240
3241         * ada-lex.l (rules): Only recognize 'thread' as a
3242         delimiter when followed by numerals, as for c-exp.y.
3243         Use new rewind_to_char function to rewind the input for
3244         expression-delimiting tokens.
3245         (rewind_to_char): New function.
3246
3247 2013-03-11  Pedro Alves  <palves@redhat.com>
3248             Jan Kratochvil  <jan.kratochvil@redhat.com>
3249
3250         * configure: Regenerate.
3251         * configure.ac (check dynamic export flag): Link python test with
3252         $PYTHON_LIBS.
3253
3254 2013-03-11  Doug Evans  <dje@google.com>
3255             Keith Seitz  <keiths@redhat.com>
3256
3257         * linespec.c (find_linespec_symbols): Call find_function_symbols
3258         first, and then call lookup_prefix_sym/find_method.
3259
3260 2013-03-11  Pedro Alves  <palves@redhat.com>
3261
3262         * charset.c (convert_between_encodings): Don't cast between
3263         different pointer to pointer types.  Instead, make the 'inp' local
3264         be of the type iconv expects.
3265         (wchar_iterate): Don't cast between different pointer to pointer
3266         types.  Instead, use new pointer local of the type iconv expects.
3267         * target.c (target_read_stralloc, target_fileio_read_stralloc):
3268         Add new local of type char pointer, and use it to get a
3269         char/string view of the byte buffer, instead of casting between
3270         pointer to pointer types.
3271
3272 2013-03-11  Hafiz Abid Qadeer  <abidh@codesourcery.com>
3273
3274         * remote.c (remote_set_trace_buffer_size): Move != operator
3275         to the start of next line to fix an ARI warning.
3276
3277 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
3278
3279         * NEWS: Add record changes.
3280
3281 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
3282
3283         * record-btrace.c (btrace_insn_history): Omit the pc prefix in
3284         the instruction history disassembly.
3285         * disasm.c (dump_insns): Omit the pc prefix, if requested.
3286         * disasm.h (DISASSEMBLY_OMIT_PC): New.
3287
3288 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
3289
3290         * Makefile.in (SFILES): Add record-btrace.c
3291         (COMMON_OBS): Add record-btrace.o
3292         * record-btrace.c: New.
3293         * objfiles.c: Include btrace.h.
3294         (free_objfile): call btrace_free_objfile.
3295
3296 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
3297
3298         * target.c (target_call_history, target_call_history_from,
3299         target_call_history_range): New.
3300         * target.h (target_ops) <to_call_history, to_call_history_from,
3301         to_call_history_range>: New fields.
3302         (target_call_history, target_call_history_from,
3303         target_call_history_range): New declaration.
3304         * record.c (get_call_history_modifiers, cmd_record_call_history,
3305         record_call_history_size): New.
3306         (_initialize_record): Add the "record function-call-history" command.
3307         Add "set/show record function-call-history-size" commands.
3308         * record.h (record_print_flag): New.
3309
3310 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
3311
3312         * target.h (target_ops) <to_insn_history, to_insn_history_from,
3313         to_insn_history_range>: New fields.
3314         (target_insn_history): New.
3315         (target_insn_history_from): New.
3316         (target_insn_history_range): New.
3317         * target.c (target_insn_history): New.
3318         (target_insn_history_from): New.
3319         (target_insn_history_range): New.
3320         * record.c: Include cli/cli-utils.h, disasm.h, ctype.h.
3321         (record_insn_history_size): New.
3322         (get_insn_number): New.
3323         (get_context_size): New.
3324         (no_chunk): New.
3325         (get_insn_history_modifiers): New.
3326         (cmd_record_insn_history): New.
3327         (_initialize_record): Add "set/show record instruction-history-size"
3328         command. Add "record instruction-history" command.
3329
3330 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
3331
3332         * record.h (record_disconnect): New.
3333         (record_detach): New.
3334         (record_mourn_inferior): New.
3335         (record_kill): New.
3336         * record-full.c (record_disconnect, record_detach,
3337         record_mourn_inferior, record_kill): Move to...
3338         * record.c: ...here.
3339         (DEBUG): New.
3340         (record_stop): New.
3341         (record_unpush): New.
3342         (cmd_record_stop): Call record_stop. Replace unpush_target
3343         call with record_unpush call.
3344         (record_disconnect, record_detach): Assert that the target
3345         is of record stratum. Call record_unpush, record_stop, and
3346         DEBUG.
3347         (record_mourn_inferior, record_kill): Assert that the target
3348         is of record stratum. Call record_unpush and DEBUG.
3349
3350 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
3351
3352         * record-full.h, record-full.c (record_memory_query): Rename
3353         to ...
3354         (record_full_memory_query): ...this. Update all users.
3355         (record_arch_list_add_reg): Rename to ...
3356         (record_full_arch_list_add_reg): ...this. Update all users.
3357         (record_arch_list_add_mem): Rename to ...
3358         (record_full_arch_list_add_mem): ...this. Update all users.
3359         (record_arch_list_add_end): Rename to ...
3360         (record_full_arch_list_add_end): ...this. Update all users.
3361         (record_gdb_operation_disable_set): Rename to ...
3362         (record_full_gdb_operation_disable_set): ...this.
3363         Update all users.
3364
3365 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
3366
3367         * record-full.c (DEFAULT_RECORD_INSN_MAX_NUM): Renamed to ...
3368         (DEFAULT_RECORD_FULL_INSN_MAX_NUM): ... this. Updated all users.
3369         (RECORD_IS_REPLAY): Renamed to ...
3370         (RECORD_FULL_IS_REPLAY): ... this. Updated all users.
3371         (RECORD_FILE_MAGIC): Renamed to ...
3372         (RECORD_FULL_FILE_MAGIC): ... this. Updated all users.
3373         (record_mem_entry): Renamed to ...
3374         (record_full_mem_entry): ... this. Updated all users.
3375         (record_reg_entry): Renamed to ...
3376         (record_full_reg_entry): ... this. Updated all users.
3377         (record_end_entry): Renamed to ...
3378         (record_full_end_entry): ... this. Updated all users.
3379         (record_type) <record_end, record_reg, record_mem>: Renamed
3380         to ...
3381         (record_full_type) <record_full_end, record_full_reg,
3382         record_full_mem>: ... this. Updated all users.
3383         (record_entry): Renamed to ...
3384         (record_full_entry): ... this. Updated all users.
3385         (record_core_buf_entry): Renamed to ...
3386         (record_full_core_buf_entry): ... this. Updated all users.
3387         (record_core_regbuf): Renamed to ...
3388         (record_full_core_regbuf): ... this. Updated all users.
3389         (record_core_start): Renamed to ...
3390         (record_full_core_start): ... this. Updated all users.
3391         (record_core_end): Renamed to ...
3392         (record_full_core_end): ... this. Updated all users.
3393         (record_core_buf_list): Renamed to ...
3394         (record_full_core_buf_list): ... this. Updated all users.
3395         (record_first): Renamed to ...
3396         (record_full_first): ... this. Updated all users.
3397         (record_list): Renamed to ...
3398         (record_full_list): ... this. Updated all users.
3399         (record_arch_list_head): Renamed to ...
3400         (record_full_arch_list_head): ... this. Updated all users.
3401         (record_arch_list_tail): Renamed to ...
3402         (record_full_arch_list_tail): ... this. Updated all users.
3403         (record_stop_at_limit): Renamed to ...
3404         (record_full_stop_at_limit): ... this. Updated all users.
3405         (record_insn_max_num): Renamed to ...
3406         (record_full_insn_max_num): ... this. Updated all users.
3407         (record_insn_num): Renamed to ...
3408         (record_full_insn_num): ... this. Updated all users.
3409         (record_insn_count): Renamed to ...
3410         (record_full_insn_count): ... this. Updated all users.
3411         (record_ops): Renamed to ...
3412         (record_full_ops): ... this. Updated all users.
3413         (record_core_ops): Renamed to ...
3414         (record_full_core_ops): ... this. Updated all users.
3415         (set_record_cmdlist): Renamed to ...
3416         (set_record_full_cmdlist): ... this. Updated all users.
3417         (show_record_cmdlist): Renamed to ...
3418         (show_record_full_cmdlist): ... this. Updated all users.
3419         (record_cmdlist): Renamed to ...
3420         (record_full_cmdlist): ... this. Updated all users.
3421         (record_beneath_to_resume_ops): Renamed to ...
3422         (record_full_beneath_to_resume_ops): ... this. Updated all users.
3423         (record_beneath_to_resume): Renamed to ...
3424         (record_full_beneath_to_resume): ... this. Updated all users.
3425         (record_beneath_to_wait_ops): Renamed to ...
3426         (record_full_beneath_to_wait_ops): ... this. Updated all users.
3427         (record_beneath_to_wait): Renamed to ...
3428         (record_full_beneath_to_wait): ... this. Updated all users.
3429         (record_beneath_to_store_registers_ops): Renamed to ...
3430         (record_full_beneath_to_store_registers_ops): ... this.
3431         Updated all users.
3432         (record_beneath_to_store_registers): Renamed to ...
3433         (record_full_beneath_to_store_registers): ... this.
3434         Updated all users.
3435         (record_beneath_to_xfer_partial_ops): Renamed to ...
3436         (record_full_beneath_to_xfer_partial_ops): ... this.
3437         Updated all users.
3438         (record_beneath_to_xfer_partial): Renamed to ...
3439         (record_full_beneath_to_xfer_partial): ... this.
3440         Updated all users.
3441         (record_beneath_to_insert_breakpoint): Renamed to ...
3442         (record_full_beneath_to_insert_breakpoint): ... this.
3443         Updated all users.
3444         (record_beneath_to_stopped_by_watchpoint): Renamed to ...
3445         (record_full_beneath_to_stopped_by_watchpoint): ... this.
3446         Updated all users.
3447         (record_beneath_to_stopped_data_address): Renamed to ...
3448         (record_full_beneath_to_stopped_data_address): ... this.
3449         Updated all users.
3450         (record_beneath_to_async): Renamed to ...
3451         (record_full_beneath_to_async): ... this. Updated all users.
3452         (record_goto_insn): Renamed to ...
3453         (record_full_goto_insn): ... this. Updated all users.
3454         (record_save): Renamed to ...
3455         (record_full_save): ... this. Updated all users.
3456         (record_reg_alloc): Renamed to ...
3457         (record_full_reg_alloc): ... this. Updated all users.
3458         (record_reg_release): Renamed to ...
3459         (record_full_reg_release): ... this. Updated all users.
3460         (record_mem_alloc): Renamed to ...
3461         (record_full_mem_alloc): ... this. Updated all users.
3462         (record_mem_release): Renamed to ...
3463         (record_full_mem_release): ... this. Updated all users.
3464         (record_end_alloc): Renamed to ...
3465         (record_full_end_alloc): ... this. Updated all users.
3466         (record_end_release): Renamed to ...
3467         (record_full_end_release): ... this. Updated all users.
3468         (record_entry_release): Renamed to ...
3469         (record_full_entry_release): ... this. Updated all users.
3470         (record_list_release): Renamed to ...
3471         (record_full_list_release): ... this. Updated all users.
3472         (record_list_release_following): Renamed to ...
3473         (record_full_list_release_following): ... this.
3474         Updated all users.
3475         (record_list_release_first): Renamed to ...
3476         (record_full_list_release_first): ... this. Updated all users.
3477         (record_arch_list_add): Renamed to ...
3478         (record_full_arch_list_add): ... this. Updated all users.
3479         (record_get_loc): Renamed to ...
3480         (record_full_get_loc): ... this. Updated all users.
3481         (record_check_insn_num): Renamed to ...
3482         (record_full_check_insn_num): ... this. Updated all users.
3483         (record_arch_list_cleanups): Renamed to ...
3484         (record_full_arch_list_cleanups): ... this. Updated all users.
3485         (record_message): Renamed to ...
3486         (record_full_message): ... this. Updated all users.
3487         (record_message_wrapper): Renamed to ...
3488         (record_full_message_wrapper): ... this. Updated all users.
3489         (record_message_wrapper_safe): Renamed to ...
3490         (record_full_message_wrapper_safe): ... this. Updated all users.
3491         (record_gdb_operation_disable): Renamed to ...
3492         (record_full_gdb_operation_disable): ... this. Updated all users.
3493         (record_hw_watchpoint): Renamed to ...
3494         (record_full_hw_watchpoint): ... this. Updated all users.
3495         (record_exec_insn): Renamed to ...
3496         (record_full_exec_insn): ... this. Updated all users.
3497         (record_restore): Renamed to ...
3498         (record_full_restore): ... this. Updated all users.
3499         (record_async_inferior_event_token): Renamed to ...
3500         (record_full_async_inferior_event_token): ... this.
3501         Updated all users.
3502         (record_async_inferior_event_handler): Renamed to ...
3503         (record_full_async_inferior_event_handler): ... this.
3504         Updated all users.
3505         (record_core_open_1): Renamed to ...
3506         (record_full_core_open_1): ... this. Updated all users.
3507         (record_open_1): Renamed to ...
3508         (record_full_open_1): ... this. Updated all users.
3509         (record_open): Renamed to ...
3510         (record_full_open): ... this. Updated all users.
3511         (record_close): Renamed to ...
3512         (record_full_close): ... this. Updated all users.
3513         (record_resume_step): Renamed to ...
3514         (record_full_resume_step): ... this. Updated all users.
3515         (record_resumed): Renamed to ...
3516         (record_full_resumed): ... this. Updated all users.
3517         (record_execution_dir): Renamed to ...
3518         (record_full_execution_dir): ... this. Updated all users.
3519         (record_resume): Renamed to ...
3520         (record_full_resume): ... this. Updated all users.
3521         (record_get_sig): Renamed to ...
3522         (record_full_get_sig): ... this. Updated all users.
3523         (record_sig_handler): Renamed to ...
3524         (record_full_sig_handler): ... this. Updated all users.
3525         (record_wait_cleanups): Renamed to ...
3526         (record_full_wait_cleanups): ... this. Updated all users.
3527         (record_wait_1): Renamed to ...
3528         (record_full_wait_1): ... this. Updated all users.
3529         (record_wait): Renamed to ...
3530         (record_full_wait): ... this. Updated all users.
3531         (record_stopped_by_watchpoint): Renamed to ...
3532         (record_full_stopped_by_watchpoint): ... this. Updated all users.
3533         (record_disconnect): Renamed to ...
3534         (record_full_disconnect): ... this. Updated all users.
3535         (record_detach): Renamed to ...
3536         (record_full_detach): ... this. Updated all users.
3537         (record_mourn_inferior): Renamed to ...
3538         (record_full_mourn_inferior): ... this. Updated all users.
3539         (record_kill): Renamed to ...
3540         (record_full_kill): ... this. Updated all users.
3541         (record_stopped_data_address): Renamed to ...
3542         (record_full_stopped_data_address): ... this. Updated all users.
3543         (record_registers_change): Renamed to ...
3544         (record_full_registers_change): ... this. Updated all users.
3545         (record_store_registers): Renamed to ...
3546         (record_full_store_registers): ... this. Updated all users.
3547         (record_xfer_partial): Renamed to ...
3548         (record_full_xfer_partial): ... this. Updated all users.
3549         (record_breakpoint): Renamed to ...
3550         (record_full_breakpoint): ... this. Updated all users.
3551         (record_breakpoint_p): Renamed to ...
3552         (record_full_breakpoint_p): ... this. Updated all users.
3553         (record_breakpoints): Renamed to ...
3554         (record_full_breakpoints): ... this. Updated all users.
3555         (record_sync_record_breakpoints): Renamed to ...
3556         (record_full_sync_record_breakpoints): ... this.
3557         Updated all users.
3558         (record_init_record_breakpoints): Renamed to ...
3559         (record_full_init_record_breakpoints): ... this.
3560         Updated all users.
3561         (record_insert_breakpoint): Renamed to ...
3562         (record_full_insert_breakpoint): ... this. Updated all users.
3563         (record_remove_breakpoint): Renamed to ...
3564         (record_full_remove_breakpoint): ... this. Updated all users.
3565         (record_can_execute_reverse): Renamed to ...
3566         (record_full_can_execute_reverse): ... this. Updated all users.
3567         (record_get_bookmark): Renamed to ...
3568         (record_full_get_bookmark): ... this. Updated all users.
3569         (record_goto_bookmark): Renamed to ...
3570         (record_full_goto_bookmark): ... this. Updated all users.
3571         (record_async): Renamed to ...
3572         (record_full_async): ... this. Updated all users.
3573         (record_can_async_p): Renamed to ...
3574         (record_full_can_async_p): ... this. Updated all users.
3575         (record_is_async_p): Renamed to ...
3576         (record_full_is_async_p): ... this. Updated all users.
3577         (record_execution_direction): Renamed to ...
3578         (record_full_execution_direction): ... this. Updated all users.
3579         (record_info): Renamed to ...
3580         (record_full_info): ... this. Updated all users.
3581         (record_delete): Renamed to ...
3582         (record_full_delete): ... this. Updated all users.
3583         (record_is_replaying): Renamed to ...
3584         (record_full_is_replaying): ... this. Updated all users.
3585         (record_goto_entry): Renamed to ...
3586         (record_full_goto_entry): ... this. Updated all users.
3587         (record_goto_begin): Renamed to ...
3588         (record_full_goto_begin): ... this. Updated all users.
3589         (record_goto_end): Renamed to ...
3590         (record_full_goto_end): ... this. Updated all users.
3591         (record_goto): Renamed to ...
3592         (record_full_goto): ... this. Updated all users.
3593         (init_record_ops): Renamed to ...
3594         (init_record_full_ops): ... this. Updated all users.
3595         (record_core_resume): Renamed to ...
3596         (record_full_core_resume): ... this. Updated all users.
3597         (record_core_kill): Renamed to ...
3598         (record_full_core_kill): ... this. Updated all users.
3599         (record_core_fetch_registers): Renamed to ...
3600         (record_full_core_fetch_registers): ... this. Updated all users.
3601         (record_core_prepare_to_store): Renamed to ...
3602         (record_full_core_prepare_to_store): ... this. Updated all users.
3603         (record_core_store_registers): Renamed to ...
3604         (record_full_core_store_registers): ... this. Updated all users.
3605         (record_core_xfer_partial): Renamed to ...
3606         (record_full_core_xfer_partial): ... this. Updated all users.
3607         (record_core_insert_breakpoint): Renamed to ...
3608         (record_full_core_insert_breakpoint): ... this. Updated all users.
3609         (record_core_remove_breakpoint): Renamed to ...
3610         (record_full_core_remove_breakpoint): ... this. Updated all users.
3611         (record_core_has_execution): Renamed to ...
3612         (record_full_core_has_execution): ... this. Updated all users.
3613         (init_record_core_ops): Renamed to ...
3614         (init_record_full_core_ops): ... this. Updated all users.
3615         (cmd_record_restore): Renamed to ...
3616         (cmd_record_full_restore): ... this. Updated all users.
3617         (record_save_cleanups): Renamed to ...
3618         (record_full_save_cleanups): ... this. Updated all users.
3619         (cmd_record_start): Renamed to ...
3620         (cmd_record_full_start): ... this. Updated all users.
3621         (set_record_insn_max_num): Renamed to ...
3622         (set_record_full_insn_max_num): ... this. Updated all users.
3623         (set_record_command): Renamed to ...
3624         (set_record_full_command): ... this. Updated all users.
3625         (show_record_command): Renamed to ...
3626         (show_record_full_command): ... this. Updated all users.
3627         (_initialize_record): Renamed to ...
3628         (_initialize_record_full): ... this. Updated all users.
3629
3630 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
3631
3632         * record.h: Split into this and ...
3633         * record-full.h: ... this.
3634         * record.c: Split into this and ...
3635         * record-full.c: ... this.
3636         * target.h (target_ops): Add new fields to_info_record,
3637         to_save_record, to_delete_record, to_record_is_replaying,
3638         to_goto_record_begin, to_goto_record_end, to_goto_record.
3639         (target_info_record): New.
3640         (target_save_record): New.
3641         (target_supports_delete_record): New.
3642         (target_delete_record): New.
3643         (target_record_is_replaying): New.
3644         (target_goto_record_begin): New.
3645         (target_goto_record_end): New.
3646         (target_goto_record): New.
3647         * target.c (target_info_record): New.
3648         (target_save_record): New.
3649         (target_supports_delete_record): New.
3650         (target_delete_record): New.
3651         (target_record_is_replaying): New.
3652         (target_goto_record_begin): New.
3653         (target_goto_record_end): New.
3654         (target_goto_record): New.
3655         * record.h: Declare struct cmd_list_element.
3656         (record_cmdlist): New declaration.
3657         (set_record_cmdlist): New declaration.
3658         (show_record_cmdlist): New declaration.
3659         (info_record_cmdlist): New declaration.
3660         (cmd_record_goto): New declaration.
3661         * record.c: Remove unnecessary includes.
3662         Include inferior.h.
3663         (cmd_record_goto): Remove declaration.
3664         (record_cmdlist): Now extern. Initialize.
3665         (set_record_cmdlist): Now extern. Initialize.
3666         (show_record_cmdlist): Now extern. Initialize.
3667         (info_record_cmdlist): Now extern. Initialize.
3668         (find_record_target): New.
3669         (require_record_target): New.
3670         (cmd_record_start): Update.
3671         (cmd_record_delete): Remove target-specific code.
3672         Call target_delete_record.
3673         (cmd_record_stop): Unpush any record target.
3674         (set_record_insn_max_num): Move to record-full.c
3675         (set_record_command): Add comment.
3676         (show_record_command): Add comment.
3677         (info_record_command): Update comment.
3678         Remove target-specific code.
3679         Call the record target's to_info_record.
3680         (cmd_record_start): New.
3681         (cmd_record_goto): Now extern.
3682         Remove target-specific code.
3683         Call target_goto_begin,  target_goto_end, or target_goto.
3684         (_initialize_record): Move record target ops initialization to
3685         record-full.c.
3686         Change "record" command help text.
3687         Move "record restore", "record set", and "record show" commands to
3688         record-full.c.
3689         * Makefile.in (SFILES): Add record-full.c.
3690         (HFILES_NO_SRCDIR): Add record-full.h.
3691         (COMMON_OBS): Add record-full.o.
3692         * amd64-linux-tdep.c: Include record-full.h instead of record.h.
3693         * arm-tdep.c: Include record-full.h.
3694         * i386-linux-tdep.c: Include record-full.h instead of record.h.
3695         * i386-tdep.c: Include record-full.h.
3696         * infrun.c: Include record-full.h.
3697         * linux-record.c: Include record-full.h.
3698         * moxie-tdep.c: Include record-full.h.
3699         * record-full.c: Include record-full.h.
3700         Change module comment.
3701         (set_record_full_cmdlist): New.
3702         (show_record_full_cmdlist): New.
3703         (record_full_cmdlist): New.
3704         (record_goto_insn): New declaration.
3705         (record_save): New declaration.
3706         (record_check_insn_num): Change query string.
3707         (record_info): New.
3708         (record_delete): New.
3709         (record_is_replaying): New.
3710         (record_goto_entry): New.
3711         (record_goto_begin): New.
3712         (record_goto_end): New.
3713         (record_goto): New.
3714         (init_record_ops): Update.
3715         (init_record_core_ops): Update.
3716         (cmd_record_save): Rename to record_save. Remove target and arg checks.
3717         (cmd_record_start): New.
3718         (set_record_insn_max_num): Moved from record.c
3719         (set_record_full_command): New.
3720         (show_record_full_command): New.
3721         (_initialize_record_full): New.
3722
3723 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
3724
3725         * target.h (add_deprecated_target_alias): New.
3726         * target.c (add_deprecated_target_alias): New.
3727
3728 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
3729
3730         * common/linux-btrace.c: Include sys/ptrace, sys/types, sys/wait.h,
3731         and signal.h.
3732         (linux_supports_btrace): Add kernel and
3733         cpuid check.
3734         (kernel_supports_btrace): New function.
3735         (cpu_supports_btrace): New function.
3736         (intel_supports_btrace): New function.
3737
3738 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
3739
3740         * target.h (enum target_object): Add TARGET_OBJECT_BTRACE.
3741         * remote.c: Include btrace.h.
3742         (struct btrace_target_info): New struct.
3743         (remote_supports_btrace): New function.
3744         (send_Qbtrace): New function.
3745         (remote_enable_btrace): New function.
3746         (remote_disable_btrace): New function.
3747         (remote_teardown_btrace): New function.
3748         (remote_read_btrace): New function.
3749         (init_remote_ops): Add btrace ops.
3750         (enum <unnamed>): Add btrace packets.
3751         (struct protocol_feature remote_protocol_features[]): Add btrace packets.
3752         (_initialize_remote): Add packet configuration for branch tracing.
3753
3754 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
3755
3756         * features/btrace.dtd: New file.
3757         * Makefile.in (XMLFILES): Add btrace.dtd.
3758         * btrace.h (parse_xml_btrace): New declaration.
3759         * btrace.c: Include xml-support.h.
3760         (parse_xml_btrace): New function.
3761         (parse_xml_btrace_block): New function.
3762         (block_attributes): New struct.
3763         (btrace_attributes): New struct.
3764         (btrace_children): New struct.
3765         (btrace_elements): New struct.
3766
3767 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
3768
3769         * amd64-linux-nat.c: Include btrace.h and linux-btrace.h.
3770         (amd64_linux_enable_btrace): New.
3771         (amd64_linux_disable_btrace): New.
3772         (amd64_linux_teardown_btrace): New.
3773         (_initialize_amd64_linux_nat): Initialize btrace ops.
3774         * i386-linux.nat.c: Include btrace.h and linux-btrace.h.
3775         (i386_linux_enable_btrace): New.
3776         (i386_linux_disable_btrace): New.
3777         (i386_linux_teardown_btrace): New.
3778         (_initialize_i386_linux_nat): Initialize btrace ops.
3779         * config/i386/linux.mh: Add linux-btrace.o.
3780         * config/i386/linux64.mh: Add linux-btrace.o.
3781
3782 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
3783
3784         * common/linux_btrace.h: New file.
3785         * common/linux_btrace.c: New file.
3786         * Makefile.in (SFILES): Add btrace.c.
3787         (HFILES_NO_SRCDIR): Add common/linux-btrace.h.
3788         (COMMON_OBS): Add btrace.o.
3789         (linux-btrace.o): New rule.
3790
3791 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
3792
3793         * target.h: Include btrace.h.
3794         (struct target_ops) <to_supports_btrace, to_enable_btrace,
3795         to_disable_btrace, to_teardown_btrace, to_read_btrace>: New.
3796         * target.c (target_supports_btrace): New function.
3797         (target_enable_btrace): New function.
3798         (target_disable_btrace): New function.
3799         (target_teardown_btrace): New function.
3800         (target_read_btrace): New function.
3801         * btrace.h: New file.
3802         * btrace.c: New file.
3803         * Makefile.in: Add btrace.c.
3804         * gdbthread.h: Include btrace.h.
3805         (struct thread_info): Add btrace field.
3806         * thread.c: Include btrace.h.
3807         (clear_thread_inferior_resources): Call target_teardown_btrace.
3808         * common/btrace-common.h: New file.
3809
3810 2013-03-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
3811
3812         * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Call also kill
3813         for CHILD, ignore PTRACE_KILL errors, move the inner block variable
3814         kill_status to outer block.
3815
3816 2013-03-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
3817
3818         Fix entry-values if the callee called a noreturn function.
3819         * dwarf2-frame-tailcall.c (dwarf2_tailcall_sniffer_first): Use
3820         get_frame_address_in_block.  Add new comment.
3821
3822 2013-03-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
3823
3824         Fix entry-values in C++ across CUs.
3825         * dwarf2loc.c (call_site_to_target_addr) <FIELD_LOC_KIND_PHYSNAME>: Use
3826         lookup_minimal_symbol.  Add a comment.
3827         * dwarf2read.c
3828         (read_call_site_scope) <is_ref_attr> <die_is_declaration>: Prefer
3829         DW_AT_linkage_name.
3830
3831 2013-03-08  Yao Qi  <yao@codesourcery.com>
3832
3833         * tracepoint.c (_initialize_tracepoint): Indent the code.
3834
3835 2013-03-08  Pedro Alves  <palves@redhat.com>
3836
3837         * findcmd.c (put_bits): Change type of parameter to 'gdb_byte *'.
3838         (parse_find_args, find_command): Change type of pattern buffer
3839         locals to 'gdb_byte *'.
3840
3841 2013-03-08  Stan Shebs  <stan@codesourcery.com>
3842             Hafiz Abid Qadeer  <abidh@codesourcery.com>
3843
3844         * NEWS: Mention set and show trace-buffer-size commands.
3845         Mention new packet.
3846         * target.h (struct target_ops): New method
3847         to_set_trace_buffer_size.
3848         (target_set_trace_buffer_size): New macro.
3849         * target.c (update_current_target): Set up new method.
3850         * tracepoint.c (trace_buffer_size): New global.
3851         (start_tracing): Send it to the target.
3852         (set_trace_buffer_size): New function.
3853         (_initialize_tracepoint): Add new setshow for trace-buffer-size.
3854         * remote.c (remote_set_trace_buffer_size): New function.
3855         (_initialize_remote): Use it.
3856         (QTBuffer:size) New remote command.
3857         (PACKET_QTBuffer_size): New enum.
3858         (remote_protocol_features): Add an entry for
3859         PACKET_QTBuffer_size.
3860
3861 2013-03-08  Tom Tromey  <tromey@redhat.com>
3862
3863         * remote-m32r-sdi.c (m32r_load): Call skip_spaces on correct
3864         variable.
3865
3866 2013-03-07  Pedro Alves  <palves@redhat.com>
3867
3868         * target.c (target_read_stralloc, target_fileio_read_alloc):
3869         *Cast pointer to 'gdb_byte *' in target call.
3870
3871 2013-03-07  Pedro Alves  <palves@redhat.com>
3872
3873         * corefile.c (read_memory_string): Cast pointer to gdb_byte* in
3874         call.
3875
3876 2013-03-07  Keith Seitz  <keiths@redhat.com>
3877
3878         * breakpoint.c (catch_syscall_split_args): Use skip_spaces.
3879         (trace_pass_command): Likewise.
3880         * cli/cli-cmds.c: Include cli/cli-utils.h.
3881         (source_command): Use skip-spaces.
3882         (disassemble_command): Likewise.
3883         * findcmd.c: Include cli/cli-utils.h.
3884         (parse_find_args): Use skip_spaces.
3885         * go32-nat.c: Include cli/cli-utils.h.
3886         (go32_sldt): Use skip_spaces.
3887         (go32_sgdt): Likewise.
3888         (go32_sidt): Likewise.
3889         (go32_pde): Likewise.
3890         (go32_pte): Likewise.
3891         (go32_pte_for_address): Likewise.
3892         * infcmd.c: Include cli/cli-utils.h.
3893         (registers_info): Use skip_spaces.
3894         * linux-tdep.c (read_mapping): Use skip_spaces_const.
3895         (linux_info_proc): Likewise.
3896         * linux-thread-db.c: Include cli/cli-utils.h.
3897         (info_auto_load_libthread_db): Use skip_spaces_const.
3898         * m32r-rom.c: Include cli/cli-utils.h.
3899         (m32r_upload_command): Use skip_spaces.
3900         * maint.c: Include cli/cli-utils.h.
3901         (maintenance_translate_address): Use skip_spaces.
3902         * mi/mi-parse.c: Include cli/cli-utils.h.
3903         (mi_parse_argv): Use skip_spaces.
3904         (mi_parse): Likewise.
3905         * minsyms.c: Include cli/cli-utils.h.
3906         (msymbol_hash_iw): Use skip_spaces_const.
3907         * objc-lang.c: Include cli/cli-utils.h.
3908         (parse_selector): Use skip_spaces.
3909         (parse_method): Likewise.
3910         * python/python.c: Include cli/cli-utils.h.
3911         (python_interactive_command)[HAVE_PYTHON]: Use skip_spaces.
3912         (python_command)[HAVE_PYTHON]: Likewise.
3913         (python_interactive_command)[!HAVE_PYTHON]: Likewise.
3914         * remote-m32r-sdi.c: Include cli/cli-utils.h.
3915         (m32r_load): Use skip_spaces.
3916         * serial.c: Include cli/cli-utils.h.
3917         (serial_open): Use skip_spaces_const.
3918         * stack.c: Include cli/cli-utils.h.
3919         (parse_frame_specification_1): Use skip_spaces_const.
3920         * symfile.c: Include cli/cli-utils.h.
3921         (set_ext_lang_command): Use skip_spaces.
3922         * symtab.c: Include cli/cli-utils.h.
3923         (rbreak_command): Use skip_spaces.
3924         * thread.c (thread_name_command): Use skip_spaces.
3925         * tracepoint.c (validate_actionline): Use skip_spaces.
3926         (encode_actions_1): Likewise.
3927         (trace_find_range_command): Likewise.
3928         (trace_find_outside_command): Likewise.
3929         (trace_dump_actions): Likewise.
3930
3931 2013-03-07  Pedro Alves  <palves@redhat.com>
3932
3933         * c-lang.c (parse_one_string): Cast argument to gdb_byte *.
3934         * expprint.c (print_subexp_standard): Likewise.
3935         * utils.c (host_char_to_target): Likewise.
3936         * valprint.c (generic_emit_char, generic_printstr): Likewise.
3937         * varobj.c (value_get_print_value): Change type of local to char*.
3938         Cast it gdb_byte * in call to language printer.
3939
3940 2013-03-07  Pedro Alves  <palves@redhat.com>
3941
3942         * charset.c (struct wchar_iterator) <input>: Change type to 'const
3943         gdb_byte *'.
3944         (make_wchar_iterator): Remove cast to char*.
3945         (wchar_iterate): Change type of local.
3946
3947 2013-03-07  Pedro Alves  <palves@redhat.com>
3948
3949         * regcache.c (regcache_xmalloc_1): Call XCALLOC with signed char
3950         for 'regcache->register_status'.
3951
3952 2013-03-07  Pedro Alves  <palves@redhat.com>
3953
3954         * breakpoint.c (breakpoint_xfer_memory): Change type of local to
3955         int.
3956
3957 2013-03-07  Pedro Alves  <palves@redhat.com>
3958
3959         * stap-probe.c (handle_stap_probe): Add cast to char*.
3960
3961 2013-03-07  Pedro Alves  <palves@redhat.com>
3962
3963         * linux-record.c (record_linux_system_call) <gdb_sys_msgrcv,
3964         RECORD_MSGRCV>: Pass a signed variable to
3965         regcache_raw_read_signed, instead of an unsigned one.
3966
3967 2013-03-07  Pedro Alves  <palves@redhat.com>
3968
3969         * remote-notif.c (notif_debug): Change type to int.
3970         * remote-notif.h (notif_debug): Likewise.
3971
3972 2013-03-07  Pedro Alves  <palves@redhat.com>
3973
3974         * ser-tcp.c (tcp_retry_limit): Change type to unsigned int.
3975
3976 2013-03-07  Pedro Alves  <palves@redhat.com>
3977
3978         * remote.c (hex2bin, bin2hex): Move extern declarations to ...
3979         * remote.h (hex2bin, bin2hex): ... here.
3980         * tracepoint.c (hex2bin, bin2hex): Remove extern declarations.
3981
3982 2013-03-07  Eli Zaretskii  <eliz@gnu.org>
3983
3984         * utils.c (initialize_utils): Improve doc strings of "set/show
3985         width", "set/show height", and "set/show pagination".
3986
3987 2013-03-06  Keith Seitz  <keiths@redhat.com>
3988
3989         * ax-gdb.c (gen_printf): Make FORMAT const.
3990         * ax-gdb.h (gen_printf): Likewise.
3991         * ax-general.c (ax_string): Make STR const.
3992         * ax.h (ax_string): Likewise.
3993
3994 2013-03-06  Doug Evans  <dje@google.com>
3995
3996         * elfread.c (elf_symfile_read): Move debugging printf to more
3997         logical location.
3998
3999 2013-03-06  Pedro Alves  <palves@redhat.com>
4000
4001         * python/py-utils.c (target_string_to_unicode): Delete function.
4002         * python/python-internal.h (target_string_to_unicode): Delete
4003         declaration.
4004
4005 2013-03-06  Pierre Muller  <muller@sourceware.org>
4006
4007         * linespec.c (get_current_search_block): ARI fix, use (void)
4008         for empty parameter list.
4009
4010 2013-03-05  Doug Evans  <dje@google.com>
4011
4012         * ada-lang.c (ada_lookup_symbol_list_worker): New function, contents
4013         of old ada_lookup_symbol_list.  In !full_search case, don't
4014         search superblocks.
4015         (ada_lookup_symbol_list): Delete arg full_search, all callers
4016         updated.  Call ada_lookup_symbol_list_worker.
4017         (ada_iterate_over_symbols): Call ada_lookup_symbol_list_worker.
4018         * ada-lang.h (ada_lookup_symbol_list): Update.
4019         * language.h (language_defn): Update comment for
4020         la_iterate_over_symbols.
4021         * linespec.c (iterate_over_file_blocks): New function.
4022         (iterate_over_all_matching_symtabs): Call it.
4023         (lookup_prefix_sym): Ditto.
4024         (get_current_search_block): New function.
4025         (get_search_block): Delete.
4026         (find_label_symbols): Call get_current_search_block.
4027         (add_matching_symbols_to_info): Call iterate_over_file_blocks.
4028         * symtab.c (iterate_over_symbols): Don't search superblocks.
4029
4030 2013-03-05  Yao Qi  <yao@codesourcery.com>
4031
4032         * cli/cli-decode.c (add_setshow_zuinteger_unlimited_cmd): Change
4033         parameter VAR's type from "unsigned int" to "int".
4034         * command.h (var_zuinteger_unlimited): Update its comments.
4035         (add_setshow_zuinteger_unlimited_cmd): Update the declaration.
4036
4037 2013-03-05  Corinna Vinschen  <vinschen@redhat.de>
4038
4039         * NEWS: Mention new target x86_64-*-cygwin*.
4040
4041 2013-03-05  Corinna Vinschen  <vinschen@redhat.de>
4042
4043         * configure.host: Add x86_64-*-cygwin* as host.
4044         * configure.tgt: Add x86_64-*-cygwin* as target.
4045         * config/i386/cygwin64.mh: New file.
4046
4047 2013-03-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
4048
4049         * linespec.c (decode_line_2): Fix duplicate request off by two message.
4050
4051 2013-03-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
4052
4053         * linespec.c (struct linespec_canonical_name): New.
4054         (struct linespec_state): Change canonical_names type to it.
4055         (add_sal_to_sals): Change variable canonical_name to canonical.  Change
4056         xrealloc element size.  Initialize the different CANONICAL fields.
4057         (canonical_to_fullform): New.
4058         (filter_results): Use it.  Add variables canonical, fullform and
4059         cleanup.
4060         (struct decode_line_2_item, decode_line_2_compare_items): New.
4061         (decode_line_2): Remove variables iter and item_names, add variables
4062         items and items_count.  Modify the code for these new variables.
4063
4064 2013-03-04  Corinna Vinschen  <vinschen@redhat.com>
4065
4066         * coff-pe-read.c (read_pe_exported_syms): Don't return without
4067         calling do_cleanup.
4068
4069 2013-03-04  Luis Machado  <lgustavo@codesourcery.com>
4070
4071         * tracepoint.c (build_traceframe_info): Add code for byte order.
4072
4073 2013-03-02  Kevin Buettner  <kevinb@redhat.com>
4074
4075         * v850-tdep.c: (v850e2_register_name): Revise system register
4076         names to match current V850E2M architecture specifications.
4077         Update register number enum comments too.
4078         
4079 2013-03-01  Jiong Wang  <jiwang@tilera.com>
4080             Pedro Alves  <palves@redhat.com>
4081
4082         * tilegx-tdep.c (tilegx_analyze_prologue): Limit bundle reading
4083         to END_ADDR.
4084         (tilegx_skip_prologue): Limit prologue analysis to section end.
4085
4086 2013-03-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
4087
4088         * dwarf2loc.c (call_site_find_chain_1): New variable save_callee_pc,
4089         use it.
4090
4091 2013-03-01  Pedro Alves  <palves@redhat.com>
4092
4093         Use gdb_byte for bytes from the program being debugged.
4094
4095         * arm-tdep.c (arm_store_return_value, arm_get_longjmp_target):
4096         Change type of local 'buf' to gdb_byte.
4097         * avr-tdep.c (avr_frame_prev_register, avr_push_dummy_call): Likewise.
4098         * bfin-tdep.c (bfin_push_dummy_call): Likewise.
4099         * cris-tdep.c (cris_sigcontext_addr)
4100         (cris_sigtramp_frame_unwind_cache): Likewise.
4101         * frv-linux-tdep.c (frv_linux_pc_in_sigtramp)
4102         (frv_linux_sigcontext_reg_addr, frv_linux_sigtramp_frame_cache):
4103         Likewise.
4104         * frv-tdep.c (frv_pseudo_register_write, frv_analyze_prologue): Likewise.
4105         * hppa-hpux-tdep.c (hppa32_hpux_find_global_pointer)
4106         (hppa32_hpux_search_dummy_call_sequence)
4107         (hppa_hpux_supply_save_state): Likewise.
4108         * hppa-linux-tdep.c (insns_match_pattern)
4109         (hppa_linux_find_global_pointer): Likewise.
4110         * hppa-tdep.c (hppa_in_function_epilogue_p)
4111         (skip_prologue_hard_way, hppa_frame_cache): Likewise.
4112         * i386-nto-tdep.c (i386nto_sigcontext_addr): Likewise.
4113         * i386fbsd-tdep.c (i386fbsd_supply_uthread)
4114         (i386fbsd_collect_uthread): Likewise.
4115         * ia64-hpux-tdep.c (ia64_hpux_push_dummy_code): Likewise.
4116         * ia64-linux-tdep.c (ia64_linux_sigcontext_register_address): Likewise.
4117         * ia64-tdep.c (examine_prologue, ia64_frame_cache)
4118         (ia64_frame_prev_register, ia64_sigtramp_frame_cache)
4119         (ia64_sigtramp_frame_prev_register, ia64_access_reg)
4120         (ia64_access_rse_reg, ia64_libunwind_frame_this_id)
4121         (ia64_libunwind_frame_prev_register)
4122         (ia64_libunwind_sigtramp_frame_this_id)
4123         (ia64_find_global_pointer_from_dynamic_section)
4124         (find_extant_func_descr, find_func_descr, ia64_dummy_id)
4125         (ia64_unwind_pc): Likewise.
4126         * iq2000-tdep.c (iq2000_store_return_value): Likewise.
4127         * m68hc11-tdep.c (m68hc11_push_dummy_call)
4128         (m68hc11_extract_return_value): Likewise.
4129         * m68klinux-nat.c (fetch_register, store_register): Likewise.
4130         * mep-tdep.c (mep_pseudo_cr32_read, mep_pseudo_cr32_write)
4131         (mep_get_insn, mep_push_dummy_call): Likewise.
4132         * mips-linux-tdep.c (mips_linux_get_longjmp_target)
4133         (mips_linux_in_dynsym_stub): Likewise.
4134         * mn10300-tdep.c (mep_pseudo_cr32_write): Likewise.
4135         * ppc-linux-nat.c (fetch_register, store_register): Likewise.
4136         * regcache.c (dump_endian_bytes): Change type of parameter 'buf'
4137         to gdb_byte.
4138         * remote-mips.c (mips_set_register): Likewise.
4139         * remote-sim.c (gdbsim_fetch_register): Likewise.
4140         * score-tdep.c (score7_fetch_inst): Change type of parameter
4141         'memblock' and local 'buf' to gdb_byte.
4142         (score7_malloc_and_get_memblock): Change return type to gdb_byte.
4143         Change type of local 'buf' to gdb_byte.  Adjust.
4144         (score7_adjust_memblock_ptr): Change type of parameter 'memblock'
4145         to gdb_byte**.
4146         (score7_analyze_prologue): Change type of 'memblock' and
4147         'memblock_ptr' locals to gdb_byte*.
4148         * sh64-tdep.c (sh64_extract_return_value)
4149         (sh64_store_return_value): Change type of local 'buf' to gdb_byte.
4150         * solib-darwin.c (darwin_current_sos, darwin_read_exec_load_addr):
4151         * solib-pa64.c (pa64_solib_create_inferior_hook)
4152         (pa64_open_symbol_file_object): Remove local 'buf'.
4153         * solib-som.c (som_solib_create_inferior_hook, link_map_start)
4154         (som_open_symbol_file_object): Likewise.
4155         * solib-spu.c (spu_current_sos): Likewise.
4156         * spu-linux-nat.c (spu_fetch_inferior_registers): Likewise.
4157         * spu-multiarch.c (parse_spufs_run, spu_fetch_registers)
4158         (spu_store_registers): Likewise.
4159         * target.c (debug_print_register): Likewise.
4160         * tic6x-tdep.c (tic6x_get_longjmp_target): Likewise.
4161         * xstormy16-tdep.c (xstormy16_store_return_value)
4162         (xstormy16_push_dummy_call, xstormy16_resolve_jmp_table_entry)
4163         (xstormy16_find_jmp_table_entry): Likewise.
4164
4165 2013-03-01  Jiong Wang  <jiwang@tilera.com>
4166
4167         * tilegx-tdep.c (tilegx_get_longjmp_target): New function.
4168         (tilegx_gdbarch_init): Install it.
4169
4170 2013-02-28  Tom Tromey  <tromey@redhat.com>
4171
4172         * python/py-arch.c (archpy_disassemble): Use PyInt_Check and
4173         PyLong_Check.
4174
4175 2013-02-28  Doug Evans  <dje@google.com>
4176
4177         * python/py-finishbreakpoint.c (bpfinishpy_init): gcc -Wall lint.
4178         * python/python.c (gdbpy_find_pc_line): Ditto.
4179
4180 2013-02-28  Tom Tromey  <tromey@redhat.com>
4181
4182         * contrib/excheck.py: New file.
4183         * contrib/exsummary.py: New file.
4184         * contrib/gcc-with-excheck: New file.
4185
4186 2013-02-28  Tom Tromey  <tromey@redhat.com>
4187
4188         * python/python.c (gdbpy_print_stack): Call begin_line and
4189         fprintf_filtered inside TRY_CATCH.
4190
4191 2013-02-28  Tom Tromey  <tromey@redhat.com>
4192
4193         * python/python.c (gdbpy_find_pc_line): Call find_pc_line
4194         inside TRY_CATCH.
4195
4196 2013-02-28  Tom Tromey  <tromey@redhat.com>
4197
4198         * py-finishbreakpoint.c (bpfinishpy_init): Reorganize to call
4199         frame_object_to_frame_info inside TRY_CATCH.
4200
4201 2013-02-28  Tom Tromey  <tromey@redhat.com>
4202
4203         * py-block.c (gdbpy_block_for_pc): Call block_for_pc inside
4204         TRY_CATCH.
4205
4206 2013-02-28  Tom Tromey  <tromey@redhat.com>
4207
4208         * objfiles.h (ALL_PSPACE_OBJFILES): Remove trailing backlash.
4209
4210 2013-02-27  Corinna Vinschen  <vinschen@redhat.com>
4211
4212         * windows-nat.c: Throughout, fix format strings and casts of
4213         printf-like functions to avoid type related warnings on all
4214         platforms.
4215         (handle_output_debug_string): Fetch context information address
4216         from debug string using string_to_core_addr.
4217
4218 2013-02-27  Jiong Wang  <jiwang@tilera.com>
4219
4220         * regformats/reg-tilegx.dat (name): Change abi name to "tilegx".
4221         * regformats/reg-tilegx32.dat: New.
4222
4223 2013-02-27  Jiong Wang  <jiwang@tilera.com>
4224
4225         * configure.tgt (tilegx-*-linux*): Enable gdbserver.
4226
4227 2013-02-27  Jiong Wang  <jiwang@tilera.com>
4228
4229         * configure.tgt (tilegx-*-linux*): Replace whitespace with tab.
4230
4231 2013-02-27  Yao Qi  <yao@codesourcery.com>
4232             Pedro Alves  <palves@redhat.com>
4233
4234         * tracepoint.c (tfile_trace_find): For tfind
4235         pc/tp/range/outside, look for the next trace frame instead of
4236         always starting from frame 0.
4237
4238 2013-02-26  Anthony Green  <green@moxielogic.com>
4239
4240         * configure.tgt: Add support for moxie-*-rtems* target.
4241
4242 2013-02-25  Pedro Alves  <palves@redhat.com>
4243
4244         * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Change
4245         warning text.
4246
4247 2013-02-24  Maciej W. Rozycki  <macro@codesourcery.com>
4248
4249         * mips-tdep.c (mips32_scan_prologue): Reset frame_offset to zero
4250         if $fp is used as the virtual frame pointer.
4251
4252 2013-02-23  Alan Modra  <amodra@gmail.com>
4253
4254         * elfread.c (elf_symtab_read): Do not use udata.p here to find
4255         symbol size.
4256         * ppc64-tdep.c (ppc64_elf_make_msymbol_special): New function.
4257         * ppc64-tdep.h (ppc64_elf_make_msymbol_special): Declare.
4258         * ppc-linux-tdep.c (ppc_linux_init_abi): Set up to use the above.
4259         * ppcfbsd-tdep.c (ppcfbsd_init_abi): Likewise.
4260
4261 2013-02-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
4262
4263         Code cleanup.
4264         * elfread.c (build_id_bfd_get): Make the return type const.
4265         (build_id_verify): Make the check parameter const.
4266         (build_id_to_debug_filename): Make the build_id parameter and variable
4267         data const.
4268         (find_separate_debug_file_by_buildid): Make the variable build_id const.
4269
4270 2013-02-21  Alan Modra  <amodra@gmail.com>
4271
4272         * elfread.c (build_id_bfd_get): Adjust for elf_tdata changes.
4273
4274 2013-02-20  Siva Chandra Reddy  <sivachandra@google.com>
4275
4276         Add a new method 'disassemble' to gdb.Architecture class.
4277         * python/py-arch.c (archpy_disassmble): Implementation of the
4278         new method gdb.Architecture.disassemble.
4279         (arch_object_methods): Add entry for the new method.
4280
4281 2013-02-20  Jiong Wang  <jiwang@tilera.com>
4282
4283         * MAINTAINERS (Write After Approval): Add myself to the list.
4284
4285 2013-02-19  Pedro Alves  <palves@redhat.com>
4286
4287         Garbage collect 'struct monitor_ops'::load_routine.
4288
4289         * monitor.h (struct monitor_ops) <load_routine>: Remove field.
4290         * monitor.c (monitor_load): No longer call
4291         current_monitor->load_routine.
4292         * dbug-rom.c (init_dbug_cmds): Don't set 'load_routine'.
4293         * m32r-rom.c (init_m32r_cmds): Don't set 'load_routine'.
4294         * ppcbug-rom.c (init_ppc_cmds): Don't set 'load_routine'.
4295
4296 2013-02-19  Pedro Alves  <palves@redhat.com>
4297
4298         PR gdb/15161
4299
4300         Harmonize with generic_load.
4301
4302         * monitor.c: Include "readline/readline.h".
4303         (monitor_load): Rename parameter 'file' to 'args'.  Use build_argv
4304         instead of sscanf.  Use CORE_ADDR/strtoulst instead of unsigned
4305         long/strtol for the 'load_offset' local.  Error out if no argument
4306         is given or if too many arguments are given.  Tilde expand the
4307         passed in file name.
4308
4309 2013-02-19  Kai Tietz  <ktietz@redhat.com>
4310
4311         PR gdb/15161
4312         * symfile.c (load_section_data): Change type of load_offset
4313         to CORE_ADDR.
4314         (generic_load): User strtoulst instead of strtoul for conversion
4315         of load_offset.
4316
4317 2013-02-19  Jiong Wang  <jiwang@tilera.com>
4318
4319         * tilegx-tdep.c (tilegx_analyze_prologue): add check for
4320          for return address, "lr" register, saved on stack.
4321         * tilegx-tdep.c (tilegx_frame_cache): update "PC" reg
4322         after we invoke tilegx_analyze_prologue.
4323
4324 2013-02-19  Jiong Wang  <jiwang@tilera.com>
4325
4326         * tilegx-tdep.c (itilegx_gdbarch_init): char type should be signed.
4327
4328 2013-02-19  Jiong Wang  <jiwang@tilera.com>
4329
4330         * tilegx-tdep.c (tilegx_skip_prologue): Use skip_prologue_using_sal.
4331
4332 2013-02-19  Jiong Wang  <jiwang@tilera.com>
4333
4334         * tilegx-tdep.c (INT_SWINT_1_SIGRETURN): New macro.
4335         (tilegx_write_pc): New function.
4336         (tilegx_cannot_reference_register): Return zero if REGNO
4337         is TILEGX_FAULTNUM_REGNUM.
4338         (tilegx_gdbarch_init): Add call to set_gdbarch_write_pc.
4339         (tilegx_register_name): Add handling of "faultnum" register.
4340         * tilegx-tdep.h (enum tilegx_regnum): Add TILEGX_FAULTNUM_REGNUM.
4341         * tilegx-linux-tdep.c (tilegx_linux_supply_regset): Add
4342         handling of TILEGX_FAULTNUM_REGNUM.
4343         * tilegx-linux-nat.c (regmap): Add entry for TILEGX_FAULTNUM_REGNUM.
4344
4345 2013-02-19  Jiong Wang  <jiwang@tilera.com>
4346
4347         * tilegx-tdep.c (tilegx_push_dummy_call): args pushed on stack
4348         should be aligned to 64bit.
4349
4350 2013-02-19  Kai Tietz  <ktietz@redhat.com>
4351
4352         * windows-nat.c (windows_xfer_memory): Fix debug-output
4353         for LLP64.
4354
4355 2013-02-19  Lei Liu  <lei.liu2@windriver.com>
4356
4357         * mips-linux-nat.c (mips64_linux_regsets_store_registers):
4358         Don't check DSP register number if HAVE_DSP is not set.
4359
4360 2013-02-19  Alan Modra  <amodra@gmail.com>
4361
4362         * elfread.c (struct build_id): Delete.  Use struct elf_build_id
4363         throughout file instead.
4364         (build_id_bfd_get): Update to use new elf_tdata build_id field.
4365         Don't xmalloc return value.
4366         (build_id_verify): Similarly.  Don't xfree.
4367         (build_id_to_debug_filename): Update.
4368         (find_separate_debug_file_by_buildid): Update, don't xfree.
4369
4370 2013-02-18  Tom Tromey  <tromey@redhat.com>
4371
4372         PR gdb/15102:
4373         * dwarf2read.c (read_subrange_type): Use result of
4374         'check_typedef'.
4375
4376 2013-02-16  Yuanhui Zhang  <asmwarrior@gmail.com>
4377
4378         * frame.c: Remove one extra white space after #include
4379         directive.
4380
4381 2013-02-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
4382
4383         * contrib/cc-with-tweaks.sh: Extend the comment for -p option.
4384
4385 2013-02-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
4386
4387         * gdb-gdb.gdb.in: Wrap set complaints, b internal_error, b info_command
4388         and dir commands into an if block.
4389
4390 2013-02-15  Sanimir Agovic  <sanimir.agovic@intel.com>
4391
4392         * python/py-breakpoint (struct pybp_code):  Use int instead of
4393         enum type_code.
4394
4395 2013-02-15  Pedro Alves  <pedro@codesourcery.com>
4396             Hafiz Abid Qadeer  <abidh@codesourcery.com>
4397
4398         * NEWS: Mention new field "trace-file".
4399         * tracepoint.c (trace_status_mi): Output "trace-file" field.
4400         (tfile_open): Record the trace file's filename in the trace
4401         status.
4402         (tfile_files_info): Mention the name of the trace file.
4403         Check the "filename" field explicitely.
4404         (trace_status_command): Explicitely check "filename" field.
4405         (trace_find_command): Ditto.
4406         (trace_find_pc_command): Ditto.
4407         (trace_find_tracepoint_command): Ditto.
4408         (trace_find_line_command): Ditto.
4409         (trace_find_range_command): Ditto.
4410         (trace_find_outside_command): Ditto.
4411         * tracepoint.h (struct trace_status) <from_file>: Rename it
4412         to "filename" and make it hold the trace file's filename
4413         instead of a boolean.
4414         * remote.c (remote_get_trace_status): Initialize "filename"
4415         field with NULL instead of 0.
4416
4417 2013-02-15  Yao Qi  <yao@codesourcery.com>
4418
4419         * remote.c: Fix a typo.
4420
4421 2013-02-14  Pierre Muller  <muller@sourceware.org>
4422
4423         * contrib/ari/gdb_ari.sh (GNU/Linux rule): Remove.
4424
4425 2013-02-14  Pedro Alves  <palves@redhat.com>
4426
4427         * utils.c (savestring): Don't #undef it.  Move function to
4428         common/common-utils.c.
4429         * common/common-utils.c: Include gdb_string.h.
4430         (savestring): Move here from utils.c.
4431         * common/common-utils.h (savestring): Declare.
4432
4433 2013-02-14  Pedro Alves  <palves@redhat.com>
4434
4435         * utils.c (savestring): Rename parameter 'size' to 'len'.
4436
4437 2013-02-14  Pedro Alves  <palves@redhat.com>
4438             Yufeng Zhang  <yufeng.zhang@arm.com>
4439
4440         * aarch64-linux-nat.c (aarch64_init_debug_reg_state): Delete.
4441         (aarch64_inferior_data, struct aarch64_inferior_data):
4442         Delete.
4443         (struct aarch64_process_info): New.
4444         (aarch64_process_list): New global.
4445         (aarch64_find_process_pid, aarch64_add_process)
4446         (aarch64_process_info_get): New functions.
4447         (aarch64_inferior_data_get): Delete.
4448         (aarch64_process_info_get): New function.
4449         (aarch64_forget_process): New function.
4450         (aarch64_get_debug_reg_state): New parameter 'pid'.  Reimplement.
4451         (aarch64_linux_prepare_to_resume): Pass the lwp's pid to
4452         aarch64_get_debug_reg_state.
4453         (aarch64_notify_debug_reg_change): Use iterate_over_lwps
4454         instead of linux_nat_iterate_watchpoint_lwps.
4455         (aarch64_linux_new_fork): New function.
4456         (aarch64_linux_child_post_startup_inferior): Use
4457         aarch64_forget_process instead of aarch64_init_debug_reg_state.
4458         (aarch64_handle_breakpoint, aarch64_linux_insert_hw_breakpoint)
4459         (aarch64_linux_remove_hw_breakpoint)
4460         (aarch64_handle_aligned_watchpoint)
4461         (aarch64_handle_unaligned_watchpoint)
4462         (aarch64_linux_insert_watchpoint)
4463         (aarch64_linux_remove_watchpoint)
4464         (aarch64_linux_stopped_data_address): Adjust to pass the current
4465         process id to aarch64_debug_reg_state.
4466         (_initialize_aarch64_linux_nat): Install aarch64_linux_new_fork as
4467         linux_nat_new_fork hook, and aarch64_forget_process as
4468         linux_nat_forget_process hook; remove the call to
4469         register_inferior_data_with_cleanup.
4470
4471 2013-02-14  Pedro Alves  <palves@redhat.com>
4472
4473         * eval.c (evaluate_subexp_for_address) <default_case_after_eval,
4474         EVAL_AVOID_SIDE_EFFECTS>: Swap and handle TYPE_CODE_REF before
4475         lval_memory.
4476
4477 2013-02-14  Pedro Alves  <pedro@codesourcery.com>
4478             Hafiz Abid Qadeer  <abidh@codesourcery.com>
4479
4480         * tracepoint.h (validate_trace_state_variable_name): Declare.
4481         * tracepoint.c (validate_trace_state_variable_name): New.
4482         (trace_variable_command): Parse the trace state variable's name
4483         without using parse_expression.  Do several validations.
4484         * mi/mi-main.c (mi_cmd_trace_define_variable): Don't parse the
4485         trace state variable's name with parse_expression.  Validate it.
4486
4487 2013-02-14  Yao Qi  <yao@codesourcery.com>
4488
4489         * infcmd.c (breakpoint_proceeded): Remove it.
4490
4491 2013-02-14  Yao Qi  <yao@codesourcery.com>
4492
4493         * tracepoint.c (end_actions_pseudocommand): Make it static.
4494         (while_stepping_pseudocommand): Likewise.
4495         * tracepoint.h (end_actions_pseudocommand): Remove the
4496         declaration.
4497         (while_stepping_pseudocommand): Likewise.
4498
4499 2013-02-14  Yao Qi  <yao@codesourcery.com>
4500
4501         * cli/cli-decode.c (help_cmd): Remove the declaration of
4502         "cmdlist".
4503         (help_all): Likewise.
4504
4505 2013-02-13  Pedro Alves  <palves@redhat.com>
4506
4507         * amd64-linux-nat.c (update_debug_registers_callback):
4508         Update comment.
4509         (amd64_linux_dr_set_control, amd64_linux_dr_set_addr): Use
4510         iterate_over_lwps.
4511         (amd64_linux_prepare_to_resume): Pass the lwp's pid to
4512         i386_debug_reg_state.
4513         (amd64_linux_new_fork): New function.
4514         (_initialize_amd64_linux_nat): Install amd64_linux_new_fork as
4515         linux_nat_new_fork hook, and i386_forget_process as
4516         linux_nat_forget_process hook.
4517         * i386-linux-nat.c (update_debug_registers_callback):
4518         Update comment.
4519         (i386_linux_dr_set_control, i386_linux_dr_set_addr): Use
4520         iterate_over_lwps.
4521         (i386_linux_prepare_to_resume): Pass the lwp's pid to
4522         i386_debug_reg_state.
4523         (i386_linux_new_fork): New function.
4524         (_initialize_i386_linux_nat): Install i386_linux_new_fork as
4525         linux_nat_new_fork hook, and i386_forget_process as
4526         linux_nat_forget_process hook.
4527         * i386-nat.c (i386_init_dregs): Delete.
4528         (i386_inferior_data, struct i386_inferior_data):
4529         Delete.
4530         (struct i386_process_info): New.
4531         (i386_process_list): New global.
4532         (i386_find_process_pid, i386_add_process, i386_process_info_get):
4533         New functions.
4534         (i386_inferior_data_get): Delete.
4535         (i386_process_info_get): New function.
4536         (i386_debug_reg_state): New parameter 'pid'.  Reimplement.
4537         (i386_forget_process): New function.
4538         (i386_cleanup_dregs): Rewrite.
4539         (i386_update_inferior_debug_regs, i386_insert_watchpoint)
4540         (i386_remove_watchpoint, i386_region_ok_for_watchpoint)
4541         (i386_stopped_data_address, i386_insert_hw_breakpoint)
4542         (i386_remove_hw_breakpoint): Adjust to pass the current process id
4543         to i386_debug_reg_state.
4544         (i386_use_watchpoints): Don't register inferior data.
4545         * i386-nat.h (i386_debug_reg_state): Add new 'pid' parameter, and
4546         adjust comment.
4547         (i386_forget_process): Declare.
4548         * linux-fork.c (delete_fork): Call linux_nat_forget_process.
4549         * linux-nat.c (linux_nat_new_fork, linux_nat_forget_process_hook):
4550         New static globals.
4551         (linux_child_follow_fork): Don't call linux_nat_new_thread here.
4552         (add_initial_lwp): New, factored out from ...
4553         (add_lwp): ... this.  Don't check the number of lwps before
4554         calling linux_nat_new_thread.
4555         (linux_nat_iterate_watchpoint_lwps): Delete.
4556         (linux_nat_attach): Use add_initial_lwp instead of add_lwp.
4557         (linux_handle_extended_wait): Call the linux_nat_new_fork hook on
4558         forks and vforks.
4559         (linux_nat_wait_1): Use add_initial_lwp instead of add_lwp for the
4560         initial lwp.
4561         (linux_nat_kill, linux_nat_mourn_inferior): Call
4562         linux_nat_forget_process.
4563         (linux_nat_set_new_fork, linux_nat_set_forget_process)
4564         (linux_nat_forget_process): New functions.
4565         * linux-nat.h (linux_nat_iterate_watchpoint_lwps_ftype): Delete
4566         type.
4567         (linux_nat_iterate_watchpoint_lwps): Delete declaration.
4568         (linux_nat_new_fork_ftype, linux_nat_forget_process_ftype): New
4569         types.
4570         (linux_nat_set_new_fork, linux_nat_set_forget_process)
4571         (linux_nat_forget_process): New declarations.
4572
4573         * amd64fbsd-nat.c (super_mourn_inferior): New global.
4574         (amd64fbsd_mourn_inferior): New function.
4575         (_initialize_amd64fbsd_nat): Override to_mourn_inferior.
4576         * windows-nat.c (windows_detach): Call i386_cleanup_dregs.
4577
4578 2013-02-13  Marcus Shawcroft  <marcus.shawcroft@arm.com>
4579
4580         * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity):
4581         Adding _().
4582
4583 2013-02-13  Marcus Shawcroft  <marcus.shawcroft@arm.com>
4584
4585         * aarch64-linux-nat.c (debug_reg_change_callback)
4586         (aarch64_linux_get_debug_reg_capacity): ARI fix: Replace %llx with
4587         %s and phex().
4588
4589 2013-02-13  Marcus Shawcroft  <marcus.shawcroft@arm.com>
4590
4591         * aarch64-linux-nat.c (dr_changed_t): ARI fix: Replace long long
4592         with LONGEST.
4593
4594 2013-02-13  Pedro Alves  <palves@redhat.com>
4595             Hafiz Abid Qadeer  <abidh@codesourcery.com>
4596
4597         * c-lang.c (c_op_print_tab): Add entry for UNOP_PLUS.
4598
4599 2013-02-12  Tom Tromey  <tromey@redhat.com>
4600
4601         PR symtab/11464:
4602         * c-exp.y (lex_one_token): Initialize other fields of yylval on
4603         NAME return.
4604         (classify_inner_name): Remove 'first_name' argument, add
4605         'context'.  Remove unused variable.
4606         (yylex): Explicitly maintain the context type.  Exit loop earlier
4607         if NAME result is seen.
4608
4609 2013-02-12  Pedro Alves  <palves@redhat.com>
4610
4611         * amd64-darwin-tdep.c: Add (C) after Copyright.
4612         * cli/cli-cmds.h: Ditto.
4613         * cli/cli-decode.c: Ditto.
4614         * cli/cli-decode.h: Ditto.
4615         * cli/cli-dump.c: Ditto.
4616         * cli/cli-dump.h: Ditto.
4617         * cli/cli-interp.c: Ditto.
4618         * cli/cli-logging.c: Ditto.
4619         * cli/cli-script.c: Ditto.
4620         * cli/cli-script.h: Ditto.
4621         * cli/cli-setshow.c: Ditto.
4622         * cli/cli-setshow.h: Ditto.
4623         * cli/cli-utils.c: Ditto.
4624         * cli/cli-utils.h: Ditto.
4625         * config/alpha/nm-osf3.h: Ditto.
4626         * config/djgpp/djconfig.sh: Ditto.
4627         * config/i386/nm-fbsd.h: Ditto.
4628         * config/i386/nm-i386gnu.h: Ditto.
4629         * config/nm-linux.h: Ditto.
4630         * config/nm-nto.h: Ditto.
4631         * config/rs6000/nm-rs6000.h: Ditto.
4632         * config/sparc/nm-sol2.h: Ditto.
4633         * darwin-nat-info.c: Ditto.
4634         * dfp.c: Ditto.
4635         * dfp.h: Ditto.
4636         * gdb-demangle.h: Ditto.
4637         * i386-darwin-nat.c: Ditto.
4638         * i386-darwin-tdep.c: Ditto.
4639         * linux-fork.h: Ditto.
4640         * m32c-tdep.c: Ditto.
4641         * microblaze-linux-tdep.c: Ditto.
4642         * microblaze-rom.c: Ditto.
4643         * microblaze-tdep.c: Ditto.
4644         * microblaze-tdep.h: Ditto.
4645         * mips-linux-tdep.h: Ditto.
4646         * ppc-ravenscar-thread.c: Ditto.
4647         * ppc-ravenscar-thread.h: Ditto.
4648         * prologue-value.c: Ditto.
4649         * prologue-value.h: Ditto.
4650         * ravenscar-thread.c: Ditto.
4651         * ravenscar-thread.h: Ditto.
4652         * sparc-ravenscar-thread.c: Ditto.
4653         * sparc-ravenscar-thread.h: Ditto.
4654         * tilegx-linux-tdep.c: Ditto.
4655         * unwind_stop_reasons.def: Ditto.
4656         * windows-nat.h: Ditto.
4657         * xtensa-linux-tdep.c: Ditto.
4658         * xtensa-xtregs.c: Ditto.
4659         * regformats/regdat.sh: Ditto.
4660         * regformats/regdef.h: Ditto.
4661
4662 2013-02-12  Pedro Alves  <palves@redhat.com>
4663
4664         * break-catch-sig.c: Update copyright years.
4665
4666 2013-02-11  Siva Chandra Reddy  <sivachandra@google.com>
4667
4668         Add support for a destructor for ui_out data and use it to
4669         provide a ui_out destructor.
4670         * ui-out.h: Declare the new ui_out destructor.
4671         (ui_out_impl): Add a field for data destructor in ui_out_impl.
4672         * ui-out.c (default_data_destroy): Add a default data destructor
4673         which does nothing.
4674         (default_ui_out_impl): Set the new data_destroy field to
4675         default_data_destroy
4676         (uo_data_destroy): Local function which invokes the data
4677         destructor if present.
4678         (clear_table): Local function which clears the table data of a
4679         ui_out object.
4680         (ui_out_destroy): Public function which frees a ui_out object.
4681         (ui_out_table_end): Use the new clear_table function.
4682         * cli-out.c (cli_ui_out_impl): Set the new data_destroy field to
4683         NULL.
4684         * mi/mi-out.c (mi_ui_out_impl): Set the new data_destroy field
4685         to NULL.
4686
4687 2013-02-11  Doug Evans  <dje@google.com>
4688
4689         * printcmd.c (printf_c_string,printf_wide_c_string): New functions.
4690         (printf_decfloat): New function.  Broken out from ui_printf.
4691         Remove unnecessary code to shift the entire format string down.
4692         (printf_pointer): New function.
4693         (ui_printf): Code to print C strings, wide C strings, decfloats,
4694         and pointers moved to separate functions.
4695
4696 2013-02-11  Sergio Durigan Junior  <sergiodj@redhat.com>
4697
4698         * valops.c (value_assign): Handling bitfield offset in
4699         `lval_internalvar_component' case.
4700
4701 2013-02-08  Doug Evans  <dje@google.com>
4702
4703         * common/format.c (parse_format_string): Fix whitespace.
4704
4705 2013-02-08  Matthew Gretton-Dann  <matthew.gretton-dann@linaro.org>
4706
4707         * stack.c (return_command): Work around uninitialized variable
4708         warning.
4709
4710 2013-02-08  Yufeng Zhang  <yufeng.zhang@arm.com>
4711
4712         * aarch64-linux-tdep.c (AARCH64_LINUX_SIZEOF_GREGSET): Change the
4713         number of the registers from 36 to 34.
4714
4715 2013-02-08  Marcus Shawcroft  <marcus.shawcroft@arm.com>
4716
4717         * NEWS: Mention new AArch64 native and target support.
4718
4719 2013-02-08  Marcus Shawcroft  <marcus.shawcroft@arm.com>
4720
4721         * MAINTAINERS (Write After Approval): Add myself.
4722
4723 2013-02-08  Jim MacArthur  <jim.macarthur@arm.com>
4724             Marcus Shawcroft  <marcus.shawcroft@arm.com>
4725             Nigel Stephens  <nigel.stephens@arm.com>
4726             Yufeng Zhang  <yufeng.zhang@arm.com>
4727
4728         * aarch64-linux-nat.c: New file.
4729         * config/aarch64/linux.mh: New file.
4730         * configure.host: Add AArch64.
4731         * Makefile.in (ALLDEPFILES): Add aarch64-linux-nat.c.
4732
4733 2013-02-07  Doug Evans  <dje@google.com>
4734
4735         * cli/cli-cmds.c (_initialize_cli_cmds): Clarify argument to
4736         disassemble command.
4737
4738 2013-02-07  Marcus Shawcroft  <marcus.shawcroft@arm.com>
4739
4740         * aarch64-linux-tdep.c (aarch64_linux_init_abi): Call
4741         set_gdbarch_fetch_tls_load_module_address.
4742
4743 2013-02-06  David S. Miller  <davem@davemloft.net>
4744
4745         * sparc-tdep.c (sparc32_return_value): Handle writing return value when
4746         using RETURN_VALUE_ABI_PRESERVES_ADDRESS.
4747         * value.c (struct_return_convention): New function.
4748         (using_struct_return): Implement in terms of struct_return_convention.
4749         * value.h (struct_return_convention): Declare.
4750         * stack.c (return_command): Allow successful overriding of the return
4751         value when RETURN_VALUE_ABI_PRESERVES_ADDRESS.
4752
4753 2013-02-06  Tom Tromey  <tromey@redhat.com>
4754
4755         * python/py-type.c (typy_strip_typedefs): Don't call check_typedef
4756         outside of TRY_CATCH.
4757
4758 2013-02-06  Yao Qi  <yao@codesourcery.com>
4759
4760         * mi/mi-interp.c: Include "tracepoint.h".
4761         (mi_tsv_modified): Declare.
4762         (mi_tsv_created, mi_tsv_deleted): Update declaration.
4763         (mi_interpreter_init): Call observer_attach_tsv_modified.
4764         (mi_tsv_modified): New.
4765         (mi_tsv_created, mi_tsv_deleted): Update.
4766         * tracepoint.c (trace_variable_command): Call
4767         observer_notify_tsv_modified if the initial value of tsv is
4768         changed.
4769         (delete_trace_state_variable): Call
4770         observer_notify_tsv_deleted earlier.
4771         (trace_variable_command): Caller update.
4772         (create_tsv_from_upload): Likewise.
4773         * observer.sh: Declare "struct trace_state_variable".
4774
4775         * NEWS: Mention the new MI notification "=tsv-modified".
4776
4777 2013-02-05  Doug Evans  <dje@google.com>
4778
4779         * completer.c (location_completer): Fix typo in comment.
4780
4781 2013-02-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
4782
4783         * breakpoint.c (add_location_to_breakpoint): Insert the location with
4784         ADDRESS sorted.
4785
4786 2013-02-05  Marcus Shawcroft  <marcus.shawcroft@arm.com>
4787
4788         * aarch64-tdep.c (aarch64_analyze_prologue): ARI fix:
4789         Refactor if statement to avoid trailing || operator.
4790
4791 2013-02-05  Andreas Tobler  <andreast@fgznet.ch>
4792
4793         * NEWS: Add PowerPC FreeBSD as a new native configuration.
4794
4795 2013-02-04  Andreas Tobler  <andreast@fgznet.ch>
4796
4797         * Makefile.in (ALL_TARGET_OBS): Add powerpc FreeBSD files.
4798         * configure.host: Add powerpc*-*-freebsd* target.
4799         * configure.tgt: Add target info for powerpc*-*-freebsd*.
4800         * ppcfbsd-nat.c, ppcfbsd-tdep.h, ppcfbsd-tdep.c: New files.
4801         * config/powerpc/fbsd.mh: New file.
4802
4803 2013-02-04  Sergio Durigan Junior  <sergiodj@redhat.com>
4804             Denys Vlasenko  <dvlasenk@redhat.com>
4805             Pedro Alves  <palves@redhat.com>
4806
4807         * gdbarch.sh (elfcore_write_linux_prpsinfo): New F hook.
4808         (struct elf_internal_linux_prpsinfo): Forward declare.
4809         * gdbarch.h, gdbarch.c: Regenerate.
4810         * linux-tdep.c: Include `cli/cli-utils.h'.
4811         (linux_fill_prpsinfo): New function.
4812         (linux_make_corefile_notes): Use linux_fill_prpsinfo.  If there's
4813         an elfcore_write_linux_prpsinfo hook, use it, otherwise, use
4814         elfcore_write_linux_prpsinfo32 or elfcore_write_linux_prpsinfo64
4815         depending on gdbarch pointer bitness.
4816         * ppc-linux-tdep.c: Include elf-bfd.h.
4817         (ppc_linux_init_abi): Hook in elfcore_write_ppc_linux_prpsinfo32
4818         on 32-bit.
4819
4820 2013-02-04  Jim MacArthur  <jim.macarthur@arm.com>
4821             Marcus Shawcroft  <marcus.shawcroft@arm.com>
4822             Nigel Stephens  <nigel.stephens@arm.com>
4823             Yufeng Zhang  <yufeng.zhang@arm.com>
4824
4825         * configure.tgt (aarch64*-*-linux*): Set build_gdbserver=yes.
4826
4827 2013-02-04  Jim MacArthur  <jim.macarthur@arm.com>
4828             Marcus Shawcroft  <marcus.shawcroft@arm.com>
4829             Nigel Stephens  <nigel.stephens@arm.com>
4830             Yufeng Zhang  <yufeng.zhang@arm.com>
4831
4832         * aarch64-newlib-tdep.c: New file.
4833         * configure.tgt: Add aarch64-newlib-tdep.o to gdb_target_obs of
4834         aarch64*-*-elf.
4835         * defs.h (enum gdb_osabi): Add GDB_OSABI_NEWLIB.
4836         * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-newlib-tdep.o.
4837         (ALLDEPFILES): Add aarch64-newlib-tdep.c.
4838         * osabi.c (gdb_osabi_names): Add "Newlib".
4839
4840 2013-02-04  Jim MacArthur  <jim.macarthur@arm.com>
4841             Marcus Shawcroft  <marcus.shawcroft@arm.com>
4842             Nigel Stephens  <nigel.stephens@arm.com>
4843             Yufeng Zhang  <yufeng.zhang@arm.com>
4844
4845         * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-linux-tdep.o.
4846         (ALLDEPFILES): Add aarch64-linux-tdep.c.
4847         * aarch64-linux-tdep.c: New file.
4848         * aarch64-linux-tdep.h: New file.
4849         * aarch64-tdep.h (gdbarch_tdep): Define gregset and fpregset.
4850         * configure.tgt: Add aarch64-none-linux-gnu.
4851
4852 2013-02-04  Jim MacArthur  <jim.macarthur@arm.com>
4853             Marcus Shawcroft  <marcus.shawcroft@arm.com>
4854             Nigel Stephens  <nigel.stephens@arm.com>
4855             Yufeng Zhang  <yufeng.zhang@arm.com>
4856
4857         * Makefile.in (ALL_64_TARGET_OBS): Add arch64-tdep.o.
4858         (HFILES_NO_SRCDIR): Add aarch64-tdep.h.
4859         (ALLDEPFILES): Add aarch64-tdep.c.
4860         * aarch64-tdep.c: New file.
4861         * aarch64-tdep.h: New file.
4862         * configure.tgt: Add AArch64.
4863         * features/Makefile (WHICH): Add aarch64 and aarch64-without-fpu.
4864         (aarch64-expedite): New definition.
4865         * features/aarch64-core.xml: New file.
4866         * features/aarch64-fpu.xml: New file.
4867         * features/aarch64-without-fpu.c: New file (generated).
4868         * features/aarch64-without-fpu.xml: New file.
4869         * features/aarch64.c: New file (generated).
4870         * features/aarch64.xml: New file.
4871         * regformats/aarch64-without-fpu.dat: New file (generated).
4872         * regformats/aarch64.dat: New file (generated).
4873
4874 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
4875
4876         * contrib/expect-read1.c: New file.
4877         * contrib/expect-read1.sh: New file.
4878
4879 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
4880
4881         * dwarf2read.c (file_file_name): New function with code from
4882         file_full_name.
4883         (file_full_name): Move most of the code to file_file_name.
4884         (macro_start_file): Rename variable full_name to file_name and use
4885         file_file_name for it.  Add comp_dir parameter to new_macro_table.
4886         * macrocmd.c (show_pp_source_pos): New variable fullname.  Replace any
4887         macro_source_file->filename access by macro_source_fullname call.
4888         * macroscope.c (_initialize_macroscope): Update the new_macro_table
4889         caller.
4890         * macrotab.c (struct macro_table): New field comp_dir.
4891         (macro_include): New variables link_fullname and source_fullname.
4892         Replace any macro_source_file->filename access by macro_source_fullname
4893         call.
4894         (macro_lookup_inclusion): Remove the partial filenames checking code.
4895         (check_for_redefinition): New variables source_fullname and
4896         found_key_fullname.  Replace any macro_source_file->filename access by
4897         macro_source_fullname call.
4898         (macro_undef): New variables source_fullname and key_fullname.  Replace
4899         any macro_source_file->filename access by macro_source_fullname call.
4900         (macro_lookup_definition): New variables retval and source_fullname.
4901         Replace any macro_source_file->filename access by macro_source_fullname
4902         call.
4903         (foreach_macro): New variable key_fullname.  Replace any
4904         macro_source_file->filename access by macro_source_fullname call.
4905         (foreach_macro_in_scope): New variable datum_fullname.  Replace any
4906         macro_source_file->filename access by macro_source_fullname call.
4907         (new_macro_table): Add parameter comp_dir.  Initialize T with it.
4908         (macro_source_fullname): New function.
4909         * macrotab.h (struct macro_source_file): Extent the filename field
4910         comment.
4911         (new_macro_table): New parameter comp_dir, add a comment for it.
4912         (macro_source_fullname): new declaration.
4913
4914 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
4915
4916         * dwarf2read.c (dw2_map_symtabs_matching_filename): Move variable
4917         this_real_name to outer block.  Use it also for
4918         compare_filenames_for_search.
4919         (dw2_expand_symtabs_matching): New variable this_real_name.  Use it
4920         with dw2_get_real_path for file_matcher, considering also
4921         BASENAMES_MAY_DIFFER.
4922         (file_full_name): Prepend COMP_DIR even for relative lh->INCLUDE_DIRS.
4923
4924 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
4925
4926         * dwarf2read.c (dw2_expand_symtabs_matching): Add basenames parameter
4927         to the file_matcher parameter.  Pass 0 to it.
4928         (dwarf2_create_include_psymtab): Copy also DIRNAME.
4929         * psymtab.c (partial_map_symtabs_matching_filename): Drop handling of
4930         NULL psymtab_to_fullname result.
4931         (psymtab_to_fullname): Remove variable r.  Never return NULL, assemble
4932         an expected filename instead.
4933         (expand_symtabs_matching_via_partial): Add basenames parameter to the
4934         file_matcher parameter.  Call also psymtab_to_fullname, after newly
4935         considering BASENAMES_MAY_DIFFER.
4936         * source.c (rewrite_source_path): Remove static.
4937         * source.h (rewrite_source_path): New declaration.
4938         * symfile.h (struct quick_symbol_functions): Add basenames parameter to
4939         the expand_symtabs_matching field.  Comment it.
4940         * symtab.c (file_matches): New function comment.  Add parameter
4941         basenames, implement it.
4942         (search_symbols_file_matches): Add basenames parameter.  Update the
4943         file_matches caller.
4944         (search_symbols): Match FILES also against symtab_to_fullname.
4945         Optimize it for BASENAMES_MAY_DIFFER.
4946
4947 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
4948
4949         * source.c (print_source_lines_base): Print for TUI also "fullname".
4950         * tui/tui-data.c (init_content_element): Change tui_locator_element
4951         field to full_name.
4952         * tui/tui-data.h (struct tui_locator_element): Likewise.
4953         * tui/tui-disasm.c (tui_show_disassem_and_update_source): Rename
4954         tui_update_locator_filename calls to tui_update_locator_fullname.
4955         Replace symtab->filename refererence by symtab_to_fullname call.
4956         * tui/tui-out.c (tui_field_string): Check for "fullname" now.
4957         * tui/tui-source.c (tui_set_source_content): Change tui_locator_element
4958         field to full_name.  Replace symtab->filename refererence by
4959         symtab_to_fullname call.
4960         (tui_show_symtab_source): Rename parameter to fullname.  Change
4961         tui_locator_element field to full_name.
4962         * tui/tui-stack.c: Include source.h.
4963         (tui_set_locator_filename): Rename the declaration to ...
4964         (tui_set_locator_fullname): ... here.  Rename its parameter to
4965         fullname, updates its comment.
4966         (tui_set_locator_info): Rename its parameter to fullname.
4967         (tui_set_locator_filename): Rename the definition to ...
4968         (tui_set_locator_fullname): ... here.  Rename its parameter to
4969         fullname, updates its comment.  Change tui_locator_element field to
4970         full_name.
4971         (tui_set_locator_info): Rename its parameter to fullname.
4972         (tui_set_locator_info): Rename callee to tui_set_locator_fullname.
4973         (tui_update_locator_filename): Rename to ...
4974         (tui_update_locator_fullname): ... here. Rename callee to
4975         tui_set_locator_fullname.
4976         (tui_show_frame_info): Replace symtab->filename refererence by
4977         symtab_to_fullname call.
4978         * tui/tui-stack.h (tui_update_locator_filename): Rename to ...
4979         (tui_update_locator_fullname): ... here.
4980         * tui/tui-winsource.c (tui_display_main): Rename the callee to
4981         tui_update_locator_fullname.  Replace symtab->filename refererence by
4982         symtab_to_fullname call.
4983         * tui/tui.c (tui_show_source): Rename its parameter to fullname.
4984         Rename the callee to tui_update_locator_fullname.
4985         * tui/tui.h (tui_show_source): Rename its parameter to fullname.
4986
4987 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
4988
4989         * ada-lang.c (user_select_syms): Replace symtab->filename refererences
4990         by symtab_to_filename_for_display calls.
4991         * breakpoint.c (print_breakpoint_location, resolve_sal_pc): Likewise.
4992         (clear_command): New variable sal_fullname, initialize it.  Replace
4993         compare_filenames_for_search by filename_cmp with sal_fullname.
4994         (say_where, update_static_tracepoint): Replace symtab->filename
4995         refererences by symtab_to_filename_for_display calls.
4996         * cli/cli-cmds.c (edit_command, list_command, ambiguous_line_spec):
4997         Likewise.
4998         * dwarf2read.c: Include source.h.
4999         (fixup_go_packaging): Replace symtab->filename refererences by
5000         symtab_to_filename_for_display calls.
5001         * linespec.c (add_sal_to_sals): Rename variable filename to fullname.
5002         Replace symtab->filename refererences by symtab_to_filename_for_display
5003         calls.
5004         (create_sals_line_offset, convert_linespec_to_sals): New variable
5005         fullname, initialize it, replace symtab->filename reference by the
5006         variable.
5007         * linux-fork.c: Include source.h.
5008         (info_checkpoints_command): Replace symtab->filename refererences by
5009         symtab_to_filename_for_display calls.
5010         * macroscope.c (sal_macro_scope): Replace symtab->filename refererences
5011         by symtab_to_filename_for_display calls.
5012         * mdebugread.c: Include source.h.
5013         (psymtab_to_symtab_1): Replace symtab->filename refererences by
5014         symtab_to_filename_for_display calls.
5015         * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file)
5016         (mi_cmd_file_list_exec_source_files): Likewise.
5017         * printcmd.c: Include source.h.
5018         (build_address_symbolic): Replace symtab->filename refererences by
5019         symtab_to_filename_for_display calls.
5020         * psymtab.c (partial_map_symtabs_matching_filename)
5021         (read_psymtabs_with_fullname): Call compare_filenames_for_search also
5022         with psymtab_to_fullname.
5023         * python/py-symtab.c (stpy_str): Replace symtab->filename refererences
5024         by symtab_to_filename_for_display calls.
5025         (stpy_get_filename): New variable filename, initialize it, use instead
5026         of symtab->filename refererences.
5027         (salpy_str): Make variable filename const char *.  Replace
5028         symtab->filename refererences by symtab_to_filename_for_display calls.
5029         * skip.c: Include source.h and filenames.h.
5030         (skip_file_command): Remove const from the symtab variable.  Replace
5031         symtab->filename refererences by symtab_to_fullname call.
5032         (function_name_is_marked_for_skip): New variables searched_for_fullname
5033         and fullname.  Use them to search also with symtab's fullname.
5034         * source.c (find_source_lines): Replace symtab->filename refererences
5035         by symtab_to_filename_for_display calls.
5036         (print_source_lines_base): New variable filename, use it instead of
5037         symtab->filename.  Replace symtab->filename refererences by
5038         symtab_to_filename_for_display calls.
5039         (line_info, forward_search_command): Replace symtab->filename
5040         refererences by symtab_to_filename_for_display calls.
5041         (reverse_search_command): Replace symtab->filename refererences by
5042         symtab_to_filename_for_display calls.  New variable filename for it.
5043         * stack.c (frame_info): Likewise.
5044         * symmisc.c: Include source.h.
5045         (dump_objfile, dump_symtab_1, maintenance_print_symbols)
5046         (maintenance_info_symtabs): Replace symtab->filename refererences by
5047         symtab_to_filename_for_display calls.
5048         * symtab.c (iterate_over_some_symtabs): Call
5049         compare_filenames_for_search also with symtab_to_fullname.
5050         (lookup_symbol_aux_quick, basic_lookup_transparent_type_quick): Replace
5051         symtab->filename refererences by symtab_to_filename_for_display calls.
5052         (find_line_symtab): Replace symtab->filename refererences by
5053         symtab_to_filename_for_display calls.
5054         (file_matches): Replace filename_cmp by compare_filenames_for_search.
5055         (print_symbol_info): Make the last parameter const char *.  New
5056         variable s_filename.  Use it in the function.
5057         (symtab_symbol_info): Make the last_filename variable const char *.
5058         Replace symtab->filename refererences by symtab_to_filename_for_display
5059         calls.
5060         (rbreak_command): New variable fullname.  Use it.  Replace
5061         symtab->filename refererence by symtab_to_filename_for_display call.
5062         * tracepoint.c (set_traceframe_context, trace_find_line_command)
5063         (print_one_static_tracepoint_marker): Replace symtab->filename
5064         refererences by symtab_to_filename_for_display calls.
5065         * tui/tui-source.c (tui_set_source_content): New variables filename and
5066         s_filename.  Replace symtab->filename refererences by this variable.
5067         Replace other symtab->filename refererences by
5068         symtab_to_filename_for_display calls.
5069
5070 2013-02-03  Eldar Gaynetdinov <hal9000ed2k@gmail.com>
5071             Jan Kratochvil  <jan.kratochvil@redhat.com>
5072
5073         Add a new variable that controls a way in which filenames are
5074         displayed.
5075         * NEWS (set filename-display): New entry.
5076         * source.c (filename_display_basename, filename_display_relative)
5077         (filename_display_absolute, filename_display_kind_names)
5078         (filename_display_string, show_filename_display_string)
5079         (symtab_to_filename_for_display): New.
5080         (_initialize_source): Added initialization of 'filename-display'
5081         variable.
5082         * source.h (symtab_to_filename_for_display): Added declaration.
5083         * stack.c (print_frame): Added new variable and calling of a new
5084         function and condition with this variable. Changed third argument of
5085         calling of a function.
5086
5087 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
5088
5089         * tui/tui-data.c (init_win_info, tui_del_window, tui_free_window):
5090         Rename field reference filename to fullname.
5091         * tui/tui-data.h (struct tui_source_info): Rename field filename to
5092         fullname.  New comment for it.
5093         * tui/tui-source.c (tui_set_source_content): Rename field reference
5094         filename to fullname.  Initialize field by symtab_to_fullname now.
5095         * tui/tui-winsource.c (tui_update_breakpoint_info): Rename field
5096         reference filename to fullname.  Use symtab_to_fullname during
5097         comparison.
5098
5099 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
5100
5101         Code cleanup.
5102         * dwarf2read.c (dw2_expand_symtabs_with_filename): Rename to ...
5103         (dw2_expand_symtabs_with_fullname): ... here.  Rename parameter
5104         filename to fullname.  Rename variable this_name to this_fullname.
5105         Lowercase FILENAME_CMP call.
5106         (dw2_find_symbol_file): New comment for the returned string.
5107         (dwarf2_gdb_index_functions): Rename the function to
5108         dw2_expand_symtabs_with_fullname.
5109         * psymtab.c (read_psymtabs_with_filename): Rename to ...
5110         (read_psymtabs_with_fullname): ... here.  Rename parameter filename to
5111         fullname.
5112         (psym_functions): Rename the function to read_psymtabs_with_fullname.
5113         * symfile.h (struct quick_symbol_functions): Rename field
5114         expand_symtabs_with_filename to expand_symtabs_with_fullname and its
5115         parameter filename to fullname.  Document returned string meaning for
5116         find_symbol_file.
5117         * symtab.c (find_line_symtab): Rename the called function to
5118         expand_symtabs_with_fullname.
5119
5120 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
5121
5122         Code cleanup.
5123         * breakpoint.c (clear_command): Remove variable is_abs, unify the
5124         call of filename_cmp with compare_filenames_for_search.
5125         * dwarf2read.c (dw2_map_symtabs_matching_filename): Remove variable
5126         is_abs, unify the call of FILENAME_CMP with
5127         compare_filenames_for_search.  New gdb_asserts for real_path and name.
5128         Unify the call of compare_filenames_for_search with FILENAME_CMP.
5129         * psymtab.c (partial_map_symtabs_matching_filename): Likewise.
5130         * symfile.h (struct quick_symbol_functions): Extend the comment for
5131         map_symtabs_matching_filename.
5132         * symtab.c (compare_filenames_for_search): Remove the function comment
5133         relative path requirement.  Handle absolute filenames, with a comment.
5134         (iterate_over_some_symtabs): Remove variable is_abs, unify the call of
5135         FILENAME_CMP with compare_filenames_for_search.  New gdb_asserts for
5136         real_path and name.  Unify the call of compare_filenames_for_search
5137         with FILENAME_CMP.
5138         (iterate_over_symtabs): New gdb_assert on REAL_PATH.
5139
5140 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
5141
5142         Code cleanup.
5143         * breakpoint.c (print_breakpoint_location): Replace bp_location field
5144         source_file references by symtab field references.  Remove variables
5145         sal and fullname.
5146         (momentary_breakpoint_from_master, add_location_to_breakpoint):
5147         (clear_command, say_where): Replace bp_location field source_file
5148         references by symtab field references.
5149         (bp_location_dtor): Remove the source_file reference.
5150         (update_static_tracepoint): Replace bp_location field source_file
5151         references by symtab field references.
5152         (breakpoint_free_objfile): New function.
5153         * breakpoint.h (struct bp_location): Extend the comment for line_number.
5154         Replace the field source_file by field symtab, extend its comment.
5155         (breakpoint_free_objfile): New declaration.
5156         * objfiles.c (free_objfile): Call breakpoint_free_objfile.
5157         * tui/tui-winsource.c (tui_update_breakpoint_info): Replace bp_location
5158         field source_file references by symtab field references.
5159
5160 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
5161
5162         Replace xfullpath calls by gdb_realpath calls.
5163         * cli/cli-cmds.c (find_and_open_script): Remove xfullpath from the
5164         function comment.
5165         * dwarf2read.c (dw2_map_expand_apply): Remove parameter full_path.
5166         Remove it from the iterate_over_some_symtabs call.
5167         (dw2_map_symtabs_matching_filename): Remove parameter full_path.
5168         Remove it from the dw2_map_expand_apply calls, remove a block handling
5169         it.
5170         * psymtab.c (partial_map_expand_apply): Remove parameter full_path.
5171         Remove it from the iterate_over_some_symtabs call.
5172         (partial_map_symtabs_matching_filename): Remove parameter full_path.
5173         Remove it from the partial_map_expand_apply calls, remove a block
5174         handling it.  Drop gdb_realpath call and cleanups from the real_path
5175         handling.
5176         * source.c (openp): Drop the comment part about xfullpath.  Replace
5177         xfullpath calls by gdb_realpath calls.
5178         (find_and_open_source): Replace xfullpath call by gdb_realpath call.
5179         * symfile.h (struct quick_symbol_functions): Remove parameter full_path
5180         from method map_symtabs_matching_filename and its comment.
5181         * symmisc.c (maintenance_print_msymbols): Replace xfullpath call by
5182         gdb_realpath call.
5183         * symtab.c (iterate_over_some_symtabs): Remove parameter full_path,
5184         remove it also from the function comment, remove a block handling it.
5185         Drop gdb_realpath call and cleanups from the real_path handling.
5186         (iterate_over_symtabs): Drop variable full_path and its use.
5187         * symtab.h (iterate_over_some_symtabs): Remove parameter full_path.
5188         * utils.c (xfullpath): Remove.
5189         * utils.h (xfullpath): Remove.
5190
5191 2013-02-01  Andreas Tobler  <andreast@fgznet.ch>
5192
5193         * Makefile.in (ALL_TARGET_OBS): Add ppc64-tdep.o.
5194         (HFILES_NO_SRCDIR): Add ppc64-tdep.h.
5195         (ALLDEPFILES): Add ppc64-tdep.c.
5196         * configure.tgt (powerpc-*-linux* | powerpc64-*-linux*): Add
5197         ppc64-tdep.o to gdb_target_obs.
5198         * ppc64-tdep.h: New file.
5199         * ppc64-tdep.c: New file.
5200         (insn_d, insn_ds, insn_xfx, ppc64_desc_entry_point): Move from
5201         ppc-linux-tdep.c to here.
5202         (PPC64_STANDARD_LINKAGE1_LEN, PPC64_STANDARD_LINKAGE2_LEN)
5203         (PPC64_STANDARD_LINKAGE2_LEN): Likewise and use ARRAY_SIZE macro.
5204         (ppc64_standard_linkage1_target, ppc64_standard_linkage2_target)
5205         (ppc64_standard_linkage3_target, ppc64_skip_trampoline_code): Move
5206         from ppc-linux-tdep.c to here.
5207         (ppc64_convert_from_func_ptr_addr): Rename from
5208         ppc64_linux_convert_from_func_ptr_addr to
5209         ppc64_convert_from_func_ptr_addr and move from ppc-linux-tdep.c to
5210         here.
5211         * rs6000-tdep.c:
5212         (read_insn): Move from ppc-linux-tdep.c to here.
5213         (insns_match_pattern, insn_d_field, insn_ds_field): Move
5214         from ppc-linux-tdep.c to here and rename them with the ppc_ prefix.
5215         * ppc-linux-tdep.c: Include ppc64-tdep.h.
5216         Removed above functions.
5217         (ppc_linux_init_abi): Adjust.
5218
5219 2013-02-01  Aleksandar Ristovski  <aristovski@qnx.com>
5220
5221         * ada-valprint.c (ada_print_floating): Remove unused 'len'.
5222
5223 2013-02-01  Aleksandar Ristovski  <aristovski@qnx.com>
5224
5225         * ada-lang.c (assign_aggregate): Remove unused 'is_array_aggregate'.
5226
5227 2013-02-01  Pedro Alves  <palves@redhat.com>
5228
5229         * dummy-frame.c (deprecated_pc_in_call_dummy): Delete function.
5230         * frame.h (deprecated_pc_in_call_dummy): Delete declaration.
5231
5232 2013-02-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
5233
5234         * elfread.c (elf_symfile_read): Limit separate debug info additions to
5235         files with no separate debug info.
5236         * objfiles.c (add_separate_debug_objfile): Add gdb_assert calls.
5237         * symfile.c (read_symbols): Call find_separate_debug_file_in_section
5238         only for files with no separate debug info.
5239
5240 2013-01-31  Tom Tromey  <tromey@redhat.com>
5241
5242         * jit.c (jit_program_space_data): Rename from jit_inferior_data;
5243         change type.
5244         (struct jit_program_space_data): Rename from jit_inferior_data.
5245         Update comments.
5246         (get_jit_program_space_data): Rename from get_jit_inferior_data.
5247         Change return type.  Attach data to program space.
5248         (jit_program_space_data_cleanup): Rename from
5249         jit_inferior_data_cleanup; change argument type.
5250         (jit_read_descriptor): Change 'inf_data' argument to 'ps_data',
5251         change type.
5252         (jit_register_code): Update.
5253         (jit_update_inferior_cache): Remove.
5254         (jit_breakpoint_deleted): Get jit data from the location's program
5255         space.
5256         (jit_breakpoint_re_set_internal): Rename 'inf_data' argument to
5257         'ps_data', change type.
5258         (jit_inferior_init, jit_breakpoint_re_set_internal)
5259         (jit_event_handler): Update.
5260         (free_objfile_data): Get data from objfile's program space.
5261         (_initialize_jit): Update.
5262
5263 2013-01-31  Tom Tromey  <tromey@redhat.com>
5264
5265         PR gdb/13987:
5266         * jit.c (struct jit_inferior_data) <cached_code_address,
5267         jit_breakpoint>: New fields.
5268         (jit_breakpoint_re_set_internal): Fix logging.  Only create
5269         breakpoint if cached address has changed.
5270         (jit_update_inferior_cache, jit_breakpoint_deleted): New
5271         functions.
5272         (_initialize_jit): Register breakpoint deleted observer.
5273
5274 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
5275
5276         * infrun.c (handle_syscall_event): Remove unused gdbarch.
5277         (save_infcall_suspend_state): Ifdef out unused inf.
5278         (restore_infcall_suspend_state): Ifdef out unused inf.
5279         * jit.c (jit_register_code): Remove unused i, b, inf_data.
5280         (jit_frame_sniffer): Remove unused inf_data.
5281
5282 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
5283
5284         * c-exp.y (classify_inner_name): Remove unused type.
5285         * c-lang.c (c_printstr): Remove unused byte_order, i, things_printed,
5286         in_quotes, need_comma, wchar_buf, output, cleanup, iter, finished,
5287         need_escape.
5288         (c_get_string): Remove unused kind.
5289         * c-typeprint.c (c_type_print_args): Remove unused i, len, args, table2.
5290
5291 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
5292
5293         * charset.c (intermediate_encoding): Remove unused i.
5294         * completer.c (signal_completer): Remove unused i.
5295         * continuations.c (discard_my_continuations_1): Remove unused
5296         continuation_ptr.
5297         * corelow.c (core_close): Remove unuseD name.
5298         (get_core_siginfo): Remove unused pid.
5299         * cp-namespace.c (cp_lookup_symbol_imports_or_template): Remove unused
5300         i, cps.
5301         * dwarf2loc.c (dwarf2_compile_expr_to_ax): Remove unused base_offset.
5302         (loclist_describe_location): Remove unused first.
5303         * event-top.c (command_line_handler): Remove unused got_eof.
5304         * exec.c (exec_close_1): Remove unused need_symtab_cleanup.
5305         (resize_section_table): Remove unused old_value.
5306         * gdb_bfd.c (gdb_bfd_map_section): Remove unused header.
5307         * gnu-v3-abi.c (compute_vtable_size): Remove unused addr.
5308         * i386-tdep.c (i386_process_record): Remove unused rex.
5309         * infcmd.c (get_return_value): Remove unused uiout.
5310         * jv-lang.c (type_from_class): Remove unused is_array.
5311         * jv-valprint.c (java_val_print): Remove unused i.
5312         * linux-nat.c (linux_nat_stop_lwp): Remove unused ptid.
5313         * linux-thread-db.c (thread_db_find_new_threads_2): Remove unuseD pid.
5314         * m2-typeprint.c (m2_print_type): Remove unused code.
5315         * macroexp.c (get_character_constant): Remove unused body_start.
5316         (macro_stringify): Remove unused result.
5317         * objc-lang.c (find_methods): Remove unused gdbarch.
5318         * objfiles.c (filter_overlapping_sections): Remove unused abfd1, abfd2.
5319         * regcache.c (regcache_cooked_read): Remove unused gdbarch.
5320         * stack.c (print_frame_args): Remove unused summary.
5321         * thread.c (thread_apply_command): Remove unused p.
5322         * valarith.c (value_x_unop): Remove unused mangle_ptr.
5323         * valops.c (search_struct_method): Remove unused skip.
5324         * valprint.c (generic_val_print): Remove unused byte_order.
5325         * varobj.c (varobj_update): Remove unused changed.
5326         * cli/cli-cmds.c (complete_command): Remove unused next_item.
5327         (alias_command): Remove unused c.
5328         * mi/mi-cmd-catch.c (mi_catch_load_unload): Remove unused c.
5329         * mi/mi-main.c (mi_cmd_data_write_register_values): Remove unused
5330         format.
5331         (mi_cmd_data_write_memory): Remove unused word_format.
5332         (mi_cmd_data_write_memory_bytes): Remove unused r.
5333         * python/py-gdb-readline.c (gdbpy_readline_wrapper): Remove unused
5334         p_start, p_end.
5335         * python/python.c (_initialize_python): Remove unused cmd_name, cmd.
5336         * tui/tui-disasm.c (tui_set_disassem_content): Remove unused
5337         line_width.
5338
5339 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
5340
5341         * dwarf2-frame.c (dwarf2_compile_cfa_to_ax): Remove unused num_regs.
5342         * symtab.c (iterate_over_symtabs): Remove unused s.
5343         (find_pc_sect_symtab): Remove unused pspAce.
5344         (find_pc_sect_line): Remove unused alt_symtab.
5345         (find_pcs_for_symtab_line): Remove unused ix, previous_function.
5346         (completion_list_add_name): Remove unused newsize.
5347
5348 2013-01-31  Tom Tromey  <tromey@redhat.com>
5349
5350         PR c++/14998:
5351         * dwarf2read.c (read_tag_ptr_to_member_type): Handle
5352         TYPE_CODE_FUNC.
5353
5354 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
5355
5356         * target.c (target_read_string): Remove unused origlen.
5357
5358 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
5359
5360         * auto-load.c (auto_load_expand_dir_vars): Remove unused dir_vec.
5361         * ax-gdb.c (gen_printf): Remove unused expr, i, bot, fr, flen, fmt.
5362         * ax-general.c (ax_print): Remove unused is_float.
5363         * blockframe.c (block_innermost_frame): Remove unused start, end.
5364         * break-catch-sig.c (catch_signal_command): Remove unused gdbarch.
5365
5366 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
5367
5368         * solib-svr4.c (svr4_keep_data_in_core): Remove unused lmo.
5369         (svr4_read_so_list): Remove unused lmo.
5370         * solib-target.c (solib_target_relocate_section_addresses): Remove
5371         unused flags.
5372
5373 2013-01-30  Tom Tromey  <tromey@redhat.com>
5374
5375         * hppa-tdep.c (read_unwind_info): Use SECT_OFF_TEXT, not "0".
5376
5377 2013-01-30  Tom Tromey  <tromey@redhat.com>
5378
5379         * symfile.c (get_file_crc): Use bfd_calc_gnu_debuglink_crc32.
5380         * utils.c (gnu_debuglink_crc32): Remove.
5381         * utils.h (gnu_debuglink_crc32): Don't declare.
5382
5383 2013-01-30  Tom Tromey  <tromey@redhat.com>
5384
5385         * dwarf2read.c (compute_delayed_physnames, read_call_site_scope)
5386         (read_structure_type, read_enumeration_type): Remove cast.
5387
5388 2013-01-30  Tom Tromey  <tromey@redhat.com>
5389
5390         * dwarf2read.c (read_namespace_type): Remove cast.
5391         (read_typedef): Likewise.
5392
5393 2013-01-29  Tom Tromey  <tromey@redhat.com>
5394
5395         * dwarf2read.c (free_dwo_file): Remove assert.
5396
5397 2013-01-29  Tom Tromey  <tromey@redhat.com>
5398
5399         * value.c (deprecated_set_value_modifiable): Remove.
5400         * value.h (deprecated_set_value_modifiable): Remove.
5401
5402 2013-01-28  Doug Evans  <dje@google.com>
5403
5404         * dwarf2loc.c (dwarf2_find_location_expression): Don't add base address
5405         to addresses from dwo files.
5406
5407 2013-01-25  Siva Chandra Reddy  <sivachandra@google.com>
5408
5409         * valops.c (find_overload_match): Remove unused argument 'lax'.
5410         * value.h: Remove unused argument 'lax' from the declaration of
5411         find_overload_match.
5412         * eval.c (value_subexp_standard): Do not pass a 'lax' argument
5413         to find_overload_match.
5414         * valarith.c (value_user_defined_cpp_op): Do not pass a 'lax'
5415         argument to find_overload_match.
5416
5417 2013-01-25  Tom Tromey  <tromey@redhat.com>
5418
5419         * dwarf2read.c (processing_has_namespace_info): Remove.
5420         (struct dwarf2_cu) <processing_has_namespace_info>: New field.
5421         (process_die, read_func_scope, dwarf2_start_symtab)
5422         (new_symbol_full): Update.
5423
5424 2013-01-25  Tom Tromey  <tromey@redhat.com>
5425
5426         * cp-namespace.c (cp_set_block_scope): Remove.
5427         * cp-support.h (cp_set_block_scope): Remove.
5428         * dbxread.c: Include block.h.
5429         (cp_set_block_scope): New function.
5430         (process_one_symbol): Update.
5431         * dwarf2read.c (read_func_scope): Use block_set_scope.
5432
5433 2013-01-25  Pedro Alves  <palves@redhat.com>
5434
5435         * remote.c (add_current_inferior_and_thread): Tweak comment.
5436
5437 2013-01-25  Tom Tromey  <tromey@redhat.com>
5438
5439         * cp-namespace.c (cp_scan_for_anonymous_namespaces): Update.
5440         (cp_add_using_directive): Add 'copy_names' argument.
5441         * cp-support.h (cp_add_using_directive): Update.
5442         (struct using_direct) <import_src, import_dest, alias,
5443         declaration>: Now const.
5444         * dwarf2read.c (read_import_statement): Use obconcat.
5445         Don't copy names passed to cp_add_using_directive.
5446
5447 2013-01-25  Tom Tromey  <tromey@redhat.com>
5448
5449         * c-exp.y (qualified_name): Use TYPE_SAFE_NAME.
5450
5451 2013-01-25  Pedro Alves  <palves@redhat.com>
5452
5453         * remote.c (stop_reply_extract_thread): New.
5454         (add_current_inferior_and_thread): New parameter 'wait_status'.
5455         Handle it.
5456         (remote_start_remote): Pass wait status to
5457         add_current_inferior_and_thread.
5458         (extended_remote_run): Update comment.
5459         (extended_remote_create_inferior_1): Pass wait status to
5460         add_current_inferior_and_thread.
5461
5462 2013-01-25  Andrew Burgess  <aburgess@broadcom.com>
5463             Ulrich Weigand  <uweigand@de.ibm.com>
5464
5465         * valarith.c (value_vector_widen): New function for replicating a
5466         scalar into a vector.
5467         (value_binop): Use value_vector_widen to widen scalar to vector
5468         rather than casting, this better matches gcc C behaviour.
5469         * valops.c (value_casst): Update logic for casting between vector
5470         types, and for casting from scalar to vector, try to match gcc C
5471         behaviour.
5472         * value.h (value_vector_widen): Declare.
5473         * opencl-lang.c (opencl_value_cast): New opencl specific casting
5474         function, handle special case for casting scalar to vector.
5475         (opencl_relop): Use opencl_value_cast.
5476         (evaluate_subexp_opencl): Use opencl_value_cast instead of
5477         value_cast, and handle BINOP_ASSIGN, UNOP_CAST, and UNOP_CAST_TYPE
5478         in order to use opencl_value_cast.
5479
5480 2013-01-25  Yao Qi  <yao@codesourcery.com>
5481
5482         * event-loop.c: Include "queue.h".
5483         (gdb_event_p): New typedef.
5484         (DECLARE_QUEUE_P): Use.
5485         (DEFINE_QUEUE_P): Use.
5486         (async_queue_event): Remove.
5487         (gdb_event_xfree): New.
5488         (initialize_event_loop): New.
5489         (process_event): Use QUEUE macros.
5490         (event_queue): Remove.
5491         (gdb_wait_for_event): Caller update.
5492         (check_async_event_handlers): Likewise.
5493         (poll_timers): Likewise.
5494         * event-loop.h (initialize_event_loop): Declare.
5495         * event-loop.c (gdb_event_xfree): New.
5496         * top.c (gdb_init): Call initialize_event_loop.
5497
5498 2013-01-25  Yao Qi  <yao@codesourcery.com>
5499
5500         * event-loop.c (async_queue_event): Remove one parameter
5501         'position'.  Remove code handling 'position' == TAIL.
5502         (gdb_wait_for_event): Caller update.
5503         (check_async_event_handlers): Caller update.
5504         (poll_timers): Caller update.
5505         * event-loop.h (enum queue_position): Remove.
5506
5507 2013-01-25  Maxim Kuvyrkov  <maxim@kugelworks.com>
5508
5509         * MAINTAINERS: Update my email.
5510
5511 2013-01-25  Yao Qi  <yao@codesourcery.com>
5512
5513         * main.c (print_gdb_help): Remove "--epoch" from the help
5514         message.
5515
5516 2013-01-24  Ulrich Weigand  <uweigand@de.ibm.com>
5517
5518         * symtab.c (skip_prologue_using_sal): Consider a file
5519         change the same as an increased line number
5520
5521 2013-01-24  Tiago Stürmer Daitx  <tdaitx@linux.vnet.ibm.com>
5522
5523         * MAINTAINERS (Write After Approval): Add myself to the list.
5524
5525 2013-01-24  Tom Tromey  <tromey@redhat.com>
5526
5527         * ada-lang.h (ada_decode_symbol): Make return type const.
5528         * ada-lang.c (ada_decode_symbol): Likewise.
5529
5530 2013-01-23  Doug Evans  <dje@google.com>
5531
5532         * linespec.c (find_linespec_symbols): Make static.
5533
5534 2013-01-23  Tiago Stürmer Daitx  <tdaitx@linux.vnet.ibm.com>
5535
5536         * ppc-sysv-tdep.c (ppc64_sysv_abi_return_value): Set correct
5537         type on float conversion for complex type.
5538
5539 2013-01-23  Siva Chandra Reddy  <sivachandra@google.com>
5540
5541         Add a new class gdb.Architecture which exposes GDB's
5542         internal representation of architecture via GDB Python API.
5543         * Makefile.in: Add entries corresponding to the new file
5544         python/py-arch.c.
5545         * NEWS (Python Scripting): Add entries for the new class
5546         gdb.Architecture and the new method gdb.Frame.architecture.
5547         * python/py-arch.c: Implement gdb.Architecture class.
5548         * python/py-frame.c (frapy_arch): Implement the method
5549         gdb.Frame.architecture().
5550         (frame_object_methods): Add 'architecture' to the method table.
5551         * python/python-internal.h: Add declarations of new utility
5552         functions.
5553         * python/python.c (_initialize_python): Initialize
5554         gdb.Architecture class.
5555
5556 2013-01-23  Doug Evans  <dje@google.com>
5557
5558         Work around binutils/15021.
5559         * dwarf2read.c (dwarf2_per_cu_data): Split imported_symtabs and
5560         type_unit_group out of union s.  All uses updated.
5561         (read_index_from_section): Watch for index version 8.
5562         (follow_die_sig): If using .gdb_index version <= 7, record the TU as
5563         an imported symtab.
5564         (write_psymtabs_to_index): Increment version number to 8.
5565
5566 2013-01-22  Pedro Alves  <palves@redhat.com>
5567
5568         * annotate.c (breakpoint_changed): Skip if breakpoint is not
5569         user-visible.
5570
5571 2013-01-22  Pedro Alves  <palves@redhat.com>
5572
5573         * annotate.c (annotate_breakpoints_changed): Rename to ...
5574         (annotate_breakpoints_invalid): ... this.  Make static.
5575         (breakpoint_changed): Adjust.
5576         (_initialize_annotate): Always install the observers.  Install a
5577         "breakpoint_created" observer.
5578         * annotate.h (annotate_breakpoints_changed): Delete declaration.
5579         * breakpoint.c (set_breakpoint_condition)
5580         (breakpoint_set_commands, do_map_commands_command)
5581         (init_raw_breakpoint, clear_command, set_ignore_count)
5582         (enable_breakpoint_disp): No longer call
5583         annotate_breakpoints_changed.
5584
5585 2013-01-22  Pedro Alves  <palves@redhat.com>
5586
5587         * annotate.c: Include "inferior.h".
5588         (frames_invalid_emitted)
5589         (breakpoints_invalid_emitted): New globals.
5590         (async_background_execution_p): New function.
5591         (annotate_breakpoints_changed, annotate_frames_invalid): Skip
5592         emitting the annotation if it has already been emitted.
5593         (annotate_display_prompt): New function.
5594         * annotate.h (annotate_display_prompt): New declaration.
5595         * event-top.c: Include annotate.h.
5596         (display_gdb_prompt): Call annotate_display_prompt.
5597
5598 2013-01-22  Pedro Alves  <palves@redhat.com>
5599
5600         * annotate.c (ignore_count_changed): Delete.
5601         (annotate_breakpoints_changed): Don't clear ignore_count_changed.
5602         (annotate_ignore_count_change): Delete.
5603         (annotate_stopped): Don't emit a delayed breakpoints-changed
5604         annotation.
5605         * annotate.h (annotate_ignore_count_change): Delete.
5606         * breakpoint.c (bpstat_check_breakpoint_conditions): Don't call
5607         annotate_ignore_count_change.
5608
5609 2013-01-22  Tom Tromey  <tromey@redhat.com>
5610
5611         * dwarf2loc.c (dwarf2_compile_expr_to_ax) <DW_OP_fbreg>: Only
5612         require_rvalue for a register location.
5613
5614 2013-01-21  Marc Khouzam  <marc.khouzam@ericsson.com>
5615
5616         * breakpoint.c (print_one_breakpoint_location): Add MI
5617         field 'thread-groups' when printing a breakpoint.
5618         (output_thread_groups): New function.
5619
5620 2013-01-21  Siva Chandra Reddy  <sivachandra@google.com>
5621
5622         * python/lib/gdb/commands/explore.py
5623         (CompoundExplorer.explore_expr): Correct the name of a method
5624         being invoked.
5625         (ExploreTypeCommand.invoke): Add a missing 'return'.
5626
5627 2013-01-21  Tom Tromey  <tromey@redhat.com>
5628
5629         * gdb_obstack.h (obconcat): Move declaration here, from...
5630         * symfile.h (obconcat): ... here.
5631         * gdb_obstack.c: New file.
5632         (obconcat): Move from...
5633         * symfile.c (obconcat): ... here.
5634         * Makefile.in (SFILES): Add gdb_obstack.c.
5635         (COMMON_OBS): Add gdb_obstack.o.
5636
5637 2013-01-21  Tom Tromey  <tromey@redhat.com>
5638
5639         * symfile.h (obsavestring): Don't declare.
5640         * symfile.c (obsavestring): Remove.
5641         * ada-exp.y: Use obstack_copy0, not obsavestring.
5642         * ada-lang.c: Use obstack_copy0, not obsavestring.
5643         * coffread.c: Use obstack_copy0, not obsavestring.
5644         * cp-namespace.c: Use obstack_copy0, not obsavestring.
5645         * dbxread.c: Use obstack_copy0, not obsavestring.
5646         * dwarf2read.c: Use obstack_copy0, not obsavestring.
5647         * jit.c: Use obstack_copy0, not obsavestring.
5648         * mdebugread.c: Use obstack_copy0, not obsavestring.
5649         * psymtab.c: Use obstack_copy0, not obsavestring.
5650         * stabsread.c: Use obstack_copy0, not obsavestring.
5651         * xcoffread.c: Use obstack_copy0, not obsavestring.
5652
5653 2013-01-21  Tom Tromey  <tromey@redhat.com>
5654
5655         * dwarf2read.c (fixup_go_packaging): Save package name
5656         on objfile obstack.
5657         * gdbtypes.c (init_type): Don't copy name.
5658
5659 2013-01-21  Tom Tromey  <tromey@redhat.com>
5660
5661         * dwarf2read.c (struct partial_die_info) <name, scope>: Now
5662         const.
5663         (struct attribute) <u.str>: Now const.
5664         (struct fnfieldlist) <name>: Now const.
5665         (dw2_get_file_names_reader, init_cutu_and_read_dies): Update.
5666         (partial_die_parent_scope): Make return type const.
5667         (partial_die_full_name, add_partial_symbol): Update.
5668         (dwarf2_compute_name, dwarf2_full_name, dwarf2_physname): Make
5669         'name' const.
5670         (find_file_and_directory): Make 'name' and 'comp_dir' const.
5671         (read_file_scope, read_func_scope, dwarf2_add_field)
5672         (dwarf2_add_member_fn, read_structure_type)
5673         (process_enumeration_scope, read_array_type, read_module_type)
5674         (read_base_type, read_subrange_type): Update.
5675         (dwarf2_start_symtab): Make 'name' and 'comp_dir' const.
5676         (new_symbol_full, guess_full_die_structure_name): Update.
5677         (dwarf2_canonicalize_name): Return const type.  Make 'name' const.
5678         (dwarf2_name): Return const type.
5679         (dwarf_decode_macro_bytes, dwarf_decode_macros): Make 'comp_dir'
5680         const.
5681
5682 2013-01-21  Tom Tromey  <tromey@redhat.com>
5683
5684         * gdbtypes.c (init_type): Make 'name' const.
5685         * gdbtypes.h (init_type): Update.
5686
5687 2013-01-21  Tom Tromey  <tromey@redhat.com>
5688
5689         * buildsym.c (patch_subfile_names): Use set_last_source_file.
5690         (start_symtab): Make 'name' and 'dirname' const.  Use
5691         set_last_source_file.
5692         (restart_symtab, reset_symtab_globals): Use set_last_source_file.
5693         (last_source_file): Define.  Now static.
5694         (set_last_source_file, get_last_source_file): New functions.
5695         * buildsym.h (last_source_file): Don't declare.
5696         (start_symtab): Update.
5697         (set_last_source_file, get_last_source_file): Declare.
5698         * coffread.c (complete_symtab): Use set_last_source_file.
5699         (coff_end_symtab): Likewise.
5700         (coff_symtab_read): Use set_last_source_file, get_last_source_file.
5701         * dbxread.c (read_dbx_symtab, read_ofile_symtab): Use
5702         set_last_source_file.
5703         (process_one_symbol): Use get_last_source_file.
5704         * mdebugread.c (parse_partial_symbols): Use set_last_source_file.
5705         (psymtab_to_symtab_1): Use get_last_source_file.
5706         * xcoffread.c (process_linenos): Use get_last_source_file.
5707         (complete_symtab): Use set_last_source_file.
5708         (read_xcoff_symtab): Use set_last_source_file, get_last_source_file.
5709         (scan_xcoff_symtab): Use set_last_source_file.
5710
5711 2013-01-21  Tom Tromey  <tromey@redhat.com>
5712
5713         * symtab.c (struct demangled_name_entry) <mangled>: Now const.
5714         (symbol_set_names): Remove casts.  Handle field const-ness.
5715
5716 2013-01-21  Tom Tromey  <tromey@redhat.com>
5717
5718         * dwarf2read.c (new_symbol_full): Remove cast.
5719         * symtab.c (symbol_set_demangled_name): Make 'name' const.
5720         * symtab.h (symbol_set_demangled_name): Update.
5721
5722 2013-01-21  Tom Tromey  <tromey@redhat.com>
5723
5724         * main.c (captured_main): Call bfd_init.
5725
5726 2013-01-21  Tom Tromey  <tromey@redhat.com>
5727
5728         * gnu-v2-abi.c (_initialize_gnu_v2_abi): Don't set default ABI.
5729         * gnu-v3-abi.c (_initialize_gnu_v3_abi): Set default ABI.
5730         * minsyms.c (install_minimal_symbols): Don't check for _Z symbols.
5731         * NEWS: Update.
5732
5733 2013-01-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
5734
5735         * symmisc.c (maintenance_print_msymbols): Check also ST_DEV.
5736
5737 2013-01-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
5738
5739         Fix gdb.fortran/common-block.exp crash in PIE mode.
5740         * dwarf2read.c (new_symbol_full) <DW_TAG_common_block>: Use
5741         LOC_COMMON_BLOCK.
5742         * f-valprint.c (info_common_command_for_block): Expect
5743         LOC_COMMON_BLOCK in gdb_assert.
5744         * symtab.h (struct general_symbol_info): Update comment for the
5745         common_block member.
5746         (domain_enum): Extend comment for the COMMON_BLOCK_DOMAIN member.
5747         (enum address_class): New member LOC_COMMON_BLOCK.
5748
5749 2013-01-18  David Blaikie  <dblaikie@gmail.com>
5750
5751         * MAINTAINERS (Write After Approval): Add "David Blaikie".
5752
5753 2013-01-18  Tom Tromey  <tromey@redhat.com>
5754
5755         PR c++/14999:
5756         * dwarf2loc.c (dwarf2_compile_expr_to_ax) <DW_OP_fbreg>:
5757         Call require_rvalue.
5758
5759 2013-01-18  Yao Qi  <yao@codesourcery.com>
5760
5761         * dbxread.c (dbx_psymtab_to_symtab): Delete the declaration.
5762         (dbx_read_symtab): New declaration.
5763         (dbx_psymtab_to_symtab): Delete.
5764         (dbx_read_symtab): Rename from dbx_psymtab_to_symtab.
5765         Rename parameter PST to SELF.  Exchanged two parameters.
5766         (start_psymtab): Caller update.
5767         * dwarf2read.c (dwarf2_psymtab_to_symtab): Delete the declaration.
5768         (dwarf2_read_symtab): New declaration.
5769         (dwarf2_psymtab_to_symtab): Delete.
5770         (dwarf2_read_symtab): Rename from dwarf2_psymtab_to_symtab.
5771         Rename parameter PST to SELF.  Exchanged two parameters.
5772         (create_partial_symtab): Caller update.
5773         * mdebugread.c (mdebug_psymtab_to_symtab): Delete.
5774         (mdebug_read_symtab): Rename from mdebug_psymtab_to_symtab.
5775         Rename parameter PST to SELF.  Exchanged two parameters.
5776         (parse_partial_symbols, new_psymtab): Caller update.
5777         * psympriv.h (struct partial_symtab) <read_symtab>: Exchange
5778         two parameters.
5779         * psymtab.c (psymtab_to_symtab): Caller update.
5780         * xcoffread.c (xcoff_psymtab_to_symtab): Delete.
5781         (xcoff_read_symtab): Rename from xcoff_psymtab_to_symtab.
5782         Rename parameter PST to SELF.  Exchanged two parameters.
5783         (xcoff_start_psymtab): Caller update.
5784
5785 2013-01-18  Yao Qi  <yao@codesourcery.com>
5786
5787         * infrun.c (proceed): Rename local variable 'oneproc' to
5788         'force_step'.
5789
5790 2013-01-17  Doug Evans  <dje@google.com>
5791
5792         * dwarf2read.c (dw2_build_type_unit_groups_reader): Delete.
5793         (dw2_build_type_unit_groups): Delete.  All uses updated.
5794
5795         * symtab.h (struct symbol_search): Add comment.
5796
5797 2013-01-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
5798
5799         * symtab.c (compare_filenames_for_search): New comment for
5800         HAS_DRIVE_SPEC.
5801
5802 2013-01-17  Tom Tromey  <tromey@redhat.com>
5803
5804         * cp-abi.c (cp_abi_completer): Fix typo in assignment.
5805
5806 2013-01-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
5807
5808         * symtab.c (iterate_over_some_symtabs): New variable cleanups,
5809         initialize it by existing make_cleanup.  Call new do_cleanups.
5810
5811 2013-01-17  Tom Tromey  <tromey@redhat.com>
5812
5813         * cp-abi.c (cp_abi_completer): New function.
5814         (_initialize_cp_abi): Set completer for "set cp-abi".
5815
5816 2013-01-17  Tom Tromey  <tromey@redhat.com>
5817
5818         * mem-break.c: Remove obsolete comment.
5819         * bfin-tdep.c (bfin_breakpoint_from_pc): Fix comment.
5820
5821 2012-01-17  Sanjoy Das <sanjoy@playingwithpointers.com>
5822
5823         * jit.c (jit_reader_load_command): Interpret the jit reader name
5824         as an absolute path if it begins with a forward slash.
5825
5826 2012-01-17  Sanjoy Das <sanjoy@playingwithpointers.com>
5827
5828         PR gdb/14550
5829
5830         * jit.c (finalize_symtab): Ensure that only the global block has a
5831         NULL superblock.
5832
5833 2013-01-17  Pedro Alves  <palves@redhat.com>
5834
5835         * acinclude.m4: Include ../config/plugins.m4,
5836         ../config/largefile.m4 and ../config/lead-dot.m4.  Add comments.
5837         * Makefile.in (aclocal_m4_deps): Update.
5838         * aclocal.m4: Renegerate.
5839
5840 2013-01-16  Doug Evans  <dje@google.com>
5841
5842         * contrib/cc-with-tweaks.sh: Add references to Fission docs.
5843
5844 2013-01-16  Pedro Alves  <palves@redhat.com>
5845             Tom Tromey  <tromey@redhat.com>
5846
5847         PR cli/7221:
5848         * NEWS: Add "catch signal".
5849         * breakpoint.c (base_breakpoint_ops): No longer static.
5850         (bpstat_explains_signal): New function.
5851         (init_catchpoint): No longer static.
5852         (base_breakpoint_explains_signal): New function.
5853         (base_breakpoint_ops): Initialize new field.
5854         * breakpoint.h (enum bpstat_signal_value): New.
5855         (struct breakpoint_ops) <explains_signal>: New field.
5856         (bpstat_explains_signal): Remove macro, declare as function.
5857         (base_breakpoint_ops, init_catchpoint): Declare.
5858         * break-catch-sig.c: New file.
5859         * inferior.h (signal_catch_update): Declare.
5860         * infrun.c (signal_catch): New global.
5861         (handle_syscall_event): Update for change to
5862         bpstat_explains_signal.
5863         (handle_inferior_event): Likewise.  Always handle random signals
5864         via bpstats.
5865         (signal_cache_update): Check signal_catch.
5866         (signal_catch_update): New function.
5867         (_initialize_infrun): Initialize signal_catch.
5868         * Makefile.in (SFILES): Add break-catch-sig.c.
5869         (COMMON_OBS): Add break-catch-sig.o.
5870
5871 2013-01-16  Tom Tromey  <tromey@redhat.com>
5872
5873         * breakpoint.c (print_one_catch_fork, print_one_catch_vfork)
5874         (print_one_catch_solib, print_one_catch_syscall)
5875         (print_one_catch_exec, print_one_exception_catchpoint): Emit
5876         "catch-type".
5877
5878 2013-01-16  Yao Qi  <yao@codesourcery.com>
5879
5880         * printcmd.c (current_display_number): Make it static.
5881
5882 2013-01-16  Yao Qi  <yao@codesourcery.com>
5883
5884         * infcmd.c (step_once): Don't check '!single_inst' as it was
5885         checked before.
5886
5887 2013-01-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
5888
5889         * dwarf2read.c (psymtab_include_file_name): Extend the function comment.
5890
5891 2013-01-14  Tom Tromey  <tromey@redhat.com>
5892
5893         * cli/cli-decode.c (add_setshow_string_noescape_cmd): Return the
5894         set command.
5895         * command.h (add_setshow_string_noescape_cmd): Update.
5896         * corefile.c (set_gnutarget_command): Remove trailing whitespace.
5897         (complete_set_gnutarget): New function.
5898         (_initialize_core): Set the "set gnutarget" completer.
5899
5900 2013-01-14  Tom Tromey  <tromey@redhat.com>
5901
5902         PR symtab/14442:
5903         * c-typeprint.c (cp_type_print_method_args): Handle 'restrict'.
5904         (c_type_print_modifier): Likewise.
5905         * dwarf2read.c (read_tag_restrict_type): New function.
5906         (read_type_die_1): Handle DW_TAG_restrict_type.
5907         * gdbtypes.c (make_restrict_type): New function.
5908         (recursive_dump_type): Handle TYPE_RESTRICT.
5909         * gdbtypes.h (enum type_flag_values): Renumber.
5910         (enum type_instance_flag_value): Add
5911         TYPE_INSTANCE_FLAG_RESTRICT.
5912         (TYPE_RESTRICT): New macro.
5913         (make_restrict_type): Declare.
5914
5915 2013-01-14  Tom Tromey  <tromey@redhat.com>
5916
5917         PR symtab/14931:
5918         * psymtab.c (struct psymtab_state): New.
5919         (discard_psymtabs_upto, make_cleanup_discard_psymtabs): New
5920         functions.
5921         * psympriv.h (make_cleanup_discard_psymtabs): Declare.
5922         * dwarf2read.c (dwarf2_build_psymtabs): Catch exceptions.
5923
5924 2013-01-14  Richard Sharman  <richard_sharman@mitel.com>
5925             Pedro Alves  <palves@redhat.com>
5926
5927         PR remote/14786
5928
5929         * remote.c (remote_threads_info): Make a copy of the reply from
5930         qfThreadInfo and use that instead of rs->buf.
5931
5932 2013-01-14  Yao Qi  <yao@codesourcery.com>
5933
5934         * dbxread.c (dbx_psymtab_to_symtab_1): Don't check PST is NULL.
5935         (dbx_psymtab_to_symtab): Likewise.
5936         * dwarf2read.c (dwarf2_psymtab_to_symtab): Likewise.
5937         * mdebugread.c (mdebug_psymtab_to_symtab): Likewise.
5938         * xcoffread.c (xcoff_psymtab_to_symtab_1): Likewise.
5939
5940 2013-01-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
5941
5942         * parse.c (parse_exp_in_context): New variable inner_chain.  Call
5943         make_cleanup_restore_current_language.  Call set_language.  Move
5944         OLD_CHAIN and INNER_CHAIN cleanups.
5945         * utils.c (do_restore_current_language)
5946         (make_cleanup_restore_current_language): New functions.
5947         * utils.h (make_cleanup_restore_current_language): New declaration.
5948
5949 2013-01-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
5950
5951         * source.c (symtab_to_fullname): Apply rewrite_source_path also for
5952         non-existing files.
5953
5954         * source.c (symtab_to_fullname): Do not prepend DIRNAME for
5955         non-existing files if FILENAME is already absolute.
5956
5957 2013-01-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
5958
5959         * macrocmd.c (macro_inform_no_debuginfo): Use puts_filtered instead of
5960         fputs_filtered.  Append trailing newline.
5961
5962 2013-01-11  Yao Qi  <yao@codesourcery.com>
5963             Stan Shebs  <stan@codesourcery.com>
5964
5965         * psymtab.c (init_psymbol_list): Clarify the comment.
5966
5967 2013-01-11  Yao Qi  <yao@codesourcery.com>
5968
5969         * breakpoint.c (print_one_breakpoint_location): Remove dead code.
5970         (update_dprintf_command_list): Assert that 'printf_line' is
5971         non-null.  Remove condition check.
5972
5973 2013-01-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
5974
5975         Code cleanup.
5976         * psymtab.c (psymtab_to_fullname, psymtab_to_fullname): Make the return
5977         type const char *.
5978         * tui/tui-source.c (tui_source_is_displayed): Make the parameter fname
5979         const char *.
5980         * tui/tui-source.h (tui_source_is_displayed): Likewise.
5981
5982 2013-01-09  Anthony Green  <green@moxielogic.com>
5983
5984         * cp-abi.c (cplus_print_vtable): Don't return value from void
5985         function.
5986         * ada-lang.c (re_set_catch_assert): Ditto.
5987
5988 2013-01-09  Doug Evans  <dje@google.com>
5989
5990         * symfile.h (quick_symbol_functions): Delete member
5991         pre_expand_symtabs_matching.  All uses removed.
5992         * dwarf2read.c (dw2_lookup_symbol): Implement.
5993         (dw2_do_expand_symtabs_matching): Delete.
5994         (dw2_pre_expand_symtabs_matching): Delete.
5995         (struct dw2_symtab_iterator): New type.
5996         (dw2_symtab_iter_init, dw2_symtab_iter_next): New functions.
5997         (dw2_expand_symtabs_for_function): Rewrite.
5998         (dwarf2_gdb_index_functions): Update.
5999         * psymtab.c (pre_expand_symtabs_matching_psymtabs): Delete.
6000         (psym_functions): Update.
6001
6002 2013-01-09  Tom Tromey  <tromey@redhat.com>
6003
6004         * config/pa/hpux.mh (NATDEPFILES): Remove somread.o.
6005         * configure: Rebuild.
6006         * configure.ac: Add somread.o to the build if BFD has SOM
6007         support.
6008         * somread.c: Include som/aout.h, not syms.h.
6009         (som_symtab_read): Use som_external_symbol_dictionary_record.
6010         Unpack records manually.
6011         (_initialize_somread): Declare.
6012
6013 2012-01-08  Mike Frysinger  <vapier@gentoo.org>
6014
6015         * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx) [__x86_64__]:
6016         Cast return_address to 64bits.
6017
6018 2013-01-08  Hui Zhu  <hui_zhu@mentor.com>
6019
6020         * printcmd.c: Remove define of function output_command.
6021         * tracepoint.c: Remove extern of function output_command.
6022         * valprint.h: (output_command): New extern.
6023
6024 2013-01-07  Tom Tromey  <tromey@redhat.com>
6025
6026         * objc-lang.c (objc_emit_char, objc_printchar, objc_printstr):
6027         Remove.
6028         (objc_language_defn): Use c_printchar, c_printstr,
6029         c_emit_char.
6030
6031 2013-01-07  Tom Tromey  <tromey@redhat.com>
6032
6033         PR cli/7719:
6034         * NEWS: Update.
6035         * ada-valprint.c (printstr, print_field_values): Remove
6036         "inspect_it" code.
6037         * cp-valprint.c (cp_print_value_fields): Remove "inspect_it"
6038         code.
6039         * jv-valprint.c (java_print_value_fields): Remove "inspect_it"
6040         code.
6041         * m2-lang.c (m2_printstr): Remove "inspect_it" code.
6042         * main.c (captured_main): Remove "epoch" argument.
6043         * objc-lang.c (objc_printstr): Remove "inspect_it" code.
6044         * p-lang.c (pascal_printstr): Remove "inspect_it" code.
6045         * p-valprint.c (pascal_object_print_value_fields): Remove
6046         "inspect_it" code.
6047         * printcmd.c (print_command_1): Remove 'inspect' argument.
6048         (print_command, call_command): Update.
6049         (inspect_command): Remove.
6050         (_initialize_printcmd): Make "inspect" an alias for "print".
6051         * top.c (epoch_interface): Remove.
6052         * top.h (epoch_interface): Remove.
6053         * valprint.c (user_print_options): Update.
6054         (print_converted_chars_to_obstack): Remove "inspect_it" code.
6055         * valprint.h (struct value_print_options) <inspect_it>: Remove
6056         field.
6057
6058 2013-01-04  Tom Tromey  <tromey@redhat.com>
6059
6060         * valprint.h (read_string): Add 'extern'.
6061
6062 2013-01-07  Joel Brobecker  <brobecker@adacore.com>
6063
6064         * darwin-nat.c: Fix typo in TASK_DYLD_INFO_COUNT macro test
6065         used to decide whether to define darwin_read_dyld_info or not.
6066
6067 2013-01-03  Pierre Muller  <muller@sourceware.org>
6068
6069         * main.c (relocate_gdb_directory): Avoid calling stat function
6070         if DIR is empty.
6071
6072 2013-01-03  Yao Qi  <yao@codesourcery.com>
6073
6074         * psymtab.c (fixup_psymbol_section): Update declaration.
6075         (fixup_psymbol_section): Remove code returning value.
6076
6077 2013-01-03  Yao Qi  <yao@codesourcery.com>
6078
6079         * symtab.h: Remove some out of date comments.
6080          (enum exception_event_kind): Move it ...
6081         * breakpoint.c: ... here.
6082
6083 2013-01-02  Iain Sandoe  <developer@sandoe-acoustics.co.uk>
6084
6085         PR gdb/14405
6086         * darwin-nat.c (darwin_read_dyld_info): Only build if
6087         TASK_DYLD_INFO_COUNT is defined.
6088         (darwin_xfer_partial): Call darwin_read_dyld_info only if
6089         TASK_DYLD_INFO_COUNT is defined.
6090
6091 2013-01-02  Tom Tromey  <tromey@redhat.com>
6092
6093         * symfile.h (struct ecoff_debug_hack): Remove.
6094         * objfiles.c: Don't include mdebugread.h.
6095
6096 2013-01-02  Tom Tromey  <tromey@redhat.com>
6097
6098         * config/i386/darwin.mh (NATDEPFILES): Remove machoread.o.
6099         * configure.ac: Check for Mach-O support in BFD.  Update
6100         CONFIG_OBS.
6101         * configure: Rebuild.
6102
6103 2013-01-02  Tom Tromey  <tromey@redhat.com>
6104
6105         * acinclude.m4 (GDB_AC_CHECK_BFD): New macro.
6106         * configure.ac: Use GDB_AC_CHECK_BFD.
6107         * configure: Rebuild.
6108
6109 2013-01-01  Maxim Kuvyrkov  <maxim.kuvyrkov@gmail.com>
6110
6111         * MAINTAINERS: Update my email.
6112
6113 2013-01-01  Joel Brobecker  <brobecker@adacore.com>
6114
6115         * cli/cli-script.h (make_cleanup_free_command_lines): Make extern.
6116
6117 2013-01-01  Joel Brobecker  <brobecker@adacore.com>
6118
6119         * rs6000-nat.c (bss_data_overlap): New function.
6120         (vmap_symtab): Use it to adjust the .bss section's offset.
6121
6122 2013-01-01  Joel Brobecker  <brobecker@adacore.com>
6123
6124         Update year range in copyright notice of all files.
6125
6126 2013-01-01, 13  Joel Brobecker  <brobecker@adacore.com>
6127
6128         * top.c (print_gdb_version): Update copyright year.
6129
6130 For older changes see ChangeLog-2012.
6131 \f
6132 Local Variables:
6133 mode: change-log
6134 left-margin: 8
6135 fill-column: 74
6136 version-control: never
6137 coding: utf-8
6138 End: