Implement demangling for rvalue reference type names
[external/binutils.git] / gdb / ChangeLog
1 2017-03-20  Artemiy Volkov  <artemiyv@acm.org>
2
3         PR gdb/14441
4         * cp-name-parser.y (ptr_operator): Handle the '&&' token in
5         typename.
6         * cp-support.c (replace_typedefs): Handle
7         DEMANGLE_COMPONENT_RVALUE_REFERENCE.
8         * python/py-type.c (typy_lookup_type): Likewise.
9
10 2017-03-20  Artemiy Volkov  <artemiyv@acm.org>
11
12         PR gdb/14441
13         * c-exp.y (ptr_operator): Handle the '&&' token in the typename.
14         * parse.c (insert_type): Change assert statement.
15         (follow_types): Handle rvalue reference types.
16         * parser-defs.h (enum type_pieces) <tp_rvalue_reference>: New
17         constant.
18
19 2017-03-20  Artemiy Volkov  <artemiyv@acm.org>
20
21         PR gdb/14441
22         * ada-lang.c (ada_evaluate_subexp): Adhere to the new
23         value_ref() interface.
24         * c-valprint.c (c_value_print): Likewise.
25         * infcall.c (value_arg_coerce): Likewise.
26         * python/py-value.c (valpy_reference_value): Likewise.
27         * valops.c (value_cast, value_reinterpret_cast)
28         (value_dynamic_cast, typecmp): Likewise.
29         (value_ref): Parameterize by kind of return value reference type.
30         * value.h (value_ref): Add new parameter "refcode".
31
32 2017-03-20  Artemiy Volkov  <artemiyv@acm.org>
33
34         PR gdb/14441
35         * dwarf2read.c (read_tag_reference_type): Use
36         lookup_lvalue_reference_type() instead of lookup_reference_type().
37         * eval.c (evaluate_subexp_standard): Likewise.
38         * f-exp.y: Likewise.
39         * gdbtypes.c (make_reference_type, lookup_reference_type):
40         Generalize with rvalue reference types.
41         (lookup_lvalue_reference_type, lookup_rvalue_reference_type): New
42         convenience wrappers for lookup_reference_type().
43         * gdbtypes.h (make_reference_type, lookup_reference_type): Add a
44         reference kind parameter.
45         (lookup_lvalue_reference_type, lookup_rvalue_reference_type): Add
46         wrappers for lookup_reference_type().
47         * guile/scm-type.c (gdbscm_type_reference): Use
48         lookup_lvalue_reference_type() instead of lookup_reference_type().
49         * guile/scm-value.c (gdbscm_value_dynamic_type): Likewise.
50         * parse.c (follow_types): Likewise.
51         * python/py-type.c (typy_reference, typy_lookup_type): Likewise.
52         * python/py-value.c (valpy_get_dynamic_type, valpy_getitem):
53         Likewise.
54         * python/py-xmethods.c (gdbpy_get_xmethod_result_type)
55         (gdbpy_invoke_xmethod): Likewise.
56         * stabsread.c: Provide extra argument to make_reference_type()
57         call.
58         * valops.c (value_ref, value_rtti_indirect_type): Use
59         lookup_lvalue_reference_type() instead of lookup_reference_type().
60
61 2017-03-20  Artemiy Volkov  <artemiyv@acm.org>
62
63         PR gdb/14441
64         * gdbtypes.h (enum type_code) <TYPE_CODE_RVALUE_REF>: New constant.
65         (TYPE_IS_REFERENCE): New macro.
66         (struct type): Add rvalue_reference_type field.
67         (TYPE_RVALUE_REFERENCE_TYPE): New macro.
68
69 2017-03-20  Marc-Andre Laperle  <marc-andre.laperle@ericsson.com>
70
71         * NEWS: Add an entry about new '-file-list-shared-libraries' command.
72         * mi/mi-cmd-file.c (mi_cmd_file_list_shared_libraries):
73         New function definition.
74         * mi/mi-cmds.c (mi_cmds): Add -file-list-shared-libraries command.
75         * mi/mi-cmds.h (mi_cmd_file_list_shared_libraries):
76         New function declaration.
77         * mi/mi-interp.c (mi_output_solib_attribs): New Function.
78         * mi/mi-interp.h: New file.
79         * solib.c (info_sharedlibrary_command): Replace for loop with
80         ALL_SO_LIBS macro
81         * solib.h (update_solib_list): New function declaration.
82         (so_list_head): Move macro.
83         * solist.h (ALL_SO_LIBS): New macro.
84
85 2017-03-20  Marc-Andre Laperle  <marc-andre.laperle@ericsson.com>
86
87         * infcmd.c (post_create_inferior): Remove unused argument in
88         call to solib_add.
89         * remote.c (remote_start_remote): Likewise.
90         * solib-frv.c (frv_fetch_objfile_link_map): Likewise.
91         * solib-svr4.c: (svr4_fetch_objfile_link_map): Likewise.
92         (enable_break): Likewise.
93         * solib.c (update_solib_list): Remove unused target argument
94         and its documentation.
95         (solib_add): Remove unused target argument.  Remove unused
96         argument in call to update_solib_list.
97         (info_sharedlibrary_command): Remove unused argument in call
98         to update_solib_list.
99         (sharedlibrary_command): Remove unused argument in call to
100         solib_add.
101         (handle_solib_event): Likewise.
102         (reload_shared_libraries): Likewise.
103         * solib.h (solib_add): Remove unused target argument.
104
105 2017-03-20  Andreas Arnez  <arnez@linux.vnet.ibm.com>
106
107         * s390-linux-tdep.c (is_rsi, is_rie): Remove functions.
108         (s390_displaced_step_fixup): Cover relative branches with the
109         default fixup handling.  This fixes lack of support for some
110         relative branch instructions.
111
112 2017-03-17  Simon Marchi  <simon.marchi@polymtl.ca>
113
114         * i386-gnu-nat.c (gnu_fetch_registers, gnu_store_registers): Use
115         ptid from regcache.
116
117 2017-03-17  Simon Marchi  <simon.marchi@polymtl.ca>
118
119         * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers,
120         i386_darwin_store_inferior_registers): Use ptid from regcache.
121
122 2017-03-17  Simon Marchi  <simon.marchi@polymtl.ca>
123
124         * i386-bsd-nat.c (i386bsd_fetch_inferior_registers,
125         i386bsd_store_inferior_registers): Use ptid from regcache.
126
127 2017-03-17  Simon Marchi  <simon.marchi@polymtl.ca>
128
129         * hppa-obsd-nat.c (hppaobsd_fetch_registers,
130         hppaobsd_store_registers): Use ptid from regcache.
131
132 2017-03-17  Simon Marchi  <simon.marchi@polymtl.ca>
133
134         * hppa-nbsd-nat.c (hppanbsd_fetch_registers,
135         hppanbsd_store_registers): Use ptid from regcache.
136
137 2017-03-17  Simon Marchi  <simon.marchi@polymtl.ca>
138
139         * hppa-linux-nat.c (fetch_register, store_register): Use ptid
140         from regcache.  Use get_ptrace_pid.
141
142 2017-03-17  Simon Marchi  <simon.marchi@polymtl.ca>
143
144         * corelow.c (get_core_register_section): Use ptid from regcache,
145         update doc.
146
147 2017-03-17  Simon Marchi  <simon.marchi@polymtl.ca>
148
149         * bsd-uthread.c (bsd_uthread_fetch_registers,
150         bsd_uthread_store_registers): Use ptid from regcache, set and
151         restore inferior_ptid.
152
153 2017-03-17  Simon Marchi  <simon.marchi@polymtl.ca>
154
155         * arm-nbsd-nat.c (fetch_register, fetch_regs, fetch_fp_register,
156         fetch_fp_regs, store_register, store_regs, store_fp_register,
157         store_fp_regs): Use ptid from regcache.
158
159 2017-03-17  Simon Marchi  <simon.marchi@polymtl.ca>
160
161         * arm-linux-nat.c (fetch_fpregs, store_fpregs, fetch_regs,
162         store_regs, fetch_wmmx_regs, store_wmmx_regs, fetch_vfp_regs,
163         store_vfp_regs): Use ptid from regcache.
164
165 2017-03-17  Pedro Alves  <palves@redhat.com>
166
167         PR remote/21188
168         * ser-base.c (ser_base_wait_for): Add comment.
169         (do_ser_base_readchar): Improve comment based on the ser-unix.c's
170         version.
171         * ser-unix.c (hardwire_raw): Remove reference to
172         scb->current_timeout.
173         (wait_for, do_hardwire_readchar, hardwire_readchar): Delete.
174         (hardwire_ops): Install ser_base_readchar instead of
175         hardwire_readchar.
176         * serial.h (struct serial) <current_timeout, timeout_remaining>:
177         Remove fields.
178
179 2017-03-17  Jonah Graham  <jonah@kichwacoders.com>
180
181         PR gdb/19637
182         * python/lib/gdb/printer/bound_registers.py: Add support for
183         Python 3.
184
185 2017-03-16  Andreas Arnez  <arnez@linux.vnet.ibm.com>
186
187         * dwarf2loc.c (indirect_synthetic_pointer): Get data type of
188         pointed-to DIE and pass it to dwarf2_evaluate_loc_desc_full.
189         (dwarf2_evaluate_loc_desc_full): New parameter subobj_type; rename
190         byte_offset to subobj_byte_offset.  Fix the handling of
191         DWARF_VALUE_STACK on big-endian targets when coming via an
192         implicit pointer.
193         (dwarf2_evaluate_loc_desc): Adjust call to
194         dwarf2_evaluate_loc_desc_full.
195         * dwarf2loc.h (dwarf2_fetch_die_type_sect_off): New declaration.
196         * dwarf2read.c (dwarf2_fetch_die_type_sect_off): New function.
197
198 2017-03-16  Yao Qi  <yao.qi@linaro.org>
199
200         * arm-tdep.c (thumb_record_misc): Decode CBNZ, CBZ, REV16,
201         and REVSH instructions.
202
203 2017-03-16  Yao Qi  <yao.qi@linaro.org>
204
205         * arm-tdep.c [GDB_SELF_TEST]: include "selftests.h".
206         (arm_record_test): Declare.
207         (_initialize_arm_tdep) [GDB_SELF_TEST]: call register_self_test.
208         (thumb_record_ld_st_reg_offset): Rewrite the opcode matching to
209         align with the manual.
210         (thumb_record_misc): Adjust the code order to align with the
211         manual.
212         (thumb2_record_decode_insn_handler): Fix instruction matching.
213         (instruction_reader_thumb): New class.
214         (arm_record_test): New function.
215
216 2017-03-16  Yao Qi  <yao.qi@linaro.org>
217
218         * arm-tdep.c (abstract_memory_reader): New class.
219         (instruction_reader): New class.
220         (extract_arm_insn): Add argument 'reader'.  Callers updated.
221         (decode_insn): Likewise.
222
223 2017-03-16  Doug Evans  <dje@google.com>
224
225         * guile/scm-lazy-string.c (lazy_string_smob): Clarify use of LENGTH
226         member.  Change type of TYPE member to SCM.  All uses updated.
227         (lsscm_make_lazy_string_smob): Add assert.
228         (lsscm_make_lazy_string): Flag bad length values.
229         (lsscm_elt_type): New function.
230         (gdbscm_lazy_string_to_value): Rewrite to use
231         lsscm_safe_lazy_string_to_value.
232         (lsscm_safe_lazy_string_to_value): Fix handling of TYPE_CODE_PTR.
233         * guile/scm-value.c (gdbscm_value_to_lazy_string): Flag bad length
234         values.  Fix TYPE_CODE_PTR.  Handle TYPE_CODE_ARRAY.  Handle typedefs
235         in incoming type.
236         * guile/guile-internal.h (tyscm_scm_to_type): Declare.
237         * guile/scm-type.c (tyscm_scm_to_type): New function.
238
239 2017-03-15  Doug Evans  <dje@google.com>
240
241         PR python/17728, python/18439, python/18779
242         * python/py-lazy-string.c (lazy_string_object): Clarify use of LENGTH
243         member.  Change type of TYPE member to PyObject *.  All uses updated.
244         (stpy_convert_to_value): Fix handling of TYPE_CODE_PTR.
245         (gdbpy_create_lazy_string_object): Flag bad length values.
246         Handle TYPE_CODE_ARRAY with possibly different user-provided length.
247         Handle typedefs in incoming type.
248         (stpy_lazy_string_elt_type): New function.
249         (gdbpy_extract_lazy_string): Call it.
250         * python/py-value.c (valpy_lazy_string): Flag bad length values.
251         Fix handling of TYPE_CODE_PTR.  Handle TYPE_CODE_ARRAY.  Handle
252         typedefs in incoming type.
253
254 2017-03-16  Doug Evans  <dje@google.com>
255
256         * guile/guile-internal.h (tyscm_scm_to_type): Declare.
257         * guile/scm-type.c (tyscm_scm_to_type): New function.
258
259 2017-03-16  Jiong Wang  <jiong.wang@arm.com>
260
261         * inf-ptrace.c (inf_ptrace_peek_poke): Change the type to
262         "ULONGEST" for "skip".
263
264 2017-03-14  Andreas Arnez  <arnez@linux.vnet.ibm.com>
265
266         PR gdb/21220
267         * inf-ptrace.c (inf_ptrace_xfer_partial): In "case
268         TARGET_OBJECT_MEMORY", extract the logic for ptrace peek/poke...
269         (inf_ptrace_peek_poke): ...here.  New function.  Now also loop
270         over ptrace peek/poke until end of buffer or error.
271
272 2017-03-14  Simon Marchi  <simon.marchi@ericsson.com>
273
274         * parse.c (length_of_subexp): Make static.
275         * parser-defs.h (length_of_subexp): Remove.
276
277 2017-03-14  Andreas Arnez  <arnez@linux.vnet.ibm.com>
278
279         * linux-nat.c (linux_proc_xfer_partial): Handle write operations
280         as well.
281
282 2017-03-14  Pedro Alves  <palves@redhat.com>
283
284         * cp-name-parser.y (cp_demangled_name_to_comp): Update comment.
285         (main): Use std::unique_ptr.  Remove calls to
286         cp_demangled_name_parse_free.
287
288 2017-03-13  Simon Marchi  <simon.marchi@polymtl.ca>
289
290         * alpha-bsd-nat.c (alphabsd_fetch_inferior_registers,
291         alphabsd_store_inferior_registers): Use regcache->ptid instead
292         of inferior_ptid.
293
294 2017-03-13  Simon Marchi  <simon.marchi@polymtl.ca>
295
296         * aix-thread.c (aix_thread_fetch_registers,
297         aix_thread_store_registers): Use regcache->ptid instead of
298         inferior_ptid.
299
300 2017-03-13  Simon Marchi  <simon.marchi@polymtl.ca>
301
302         * aarch64-linux-nat.c (fetch_gregs_from_thread,
303         store_gregs_to_thread, fetch_fpregs_from_thread,
304         store_fpregs_to_thread): Use regcache->ptid instead of
305         inferior_ptid.
306
307 2017-03-13  Simon Marchi  <simon.marchi@polymtl.ca>
308
309         * amd64-linux-nat.c (amd64_linux_fetch_inferior_registers,
310         amd64_linux_fetch_inferior_registers): Use regcache->ptid
311         instead of inferior_ptid.
312
313 2017-03-13  Simon Marchi  <simon.marchi@polymtl.ca>
314
315         * target.c (target_fetch_registers, target_store_registers): Add
316         assert.
317
318 2017-03-13  Simon Marchi  <simon.marchi@polymtl.ca>
319
320         * regcache.h (regcache_get_ptid): New function.
321         * regcache.c (regcache_get_ptid): New function.
322
323 2017-03-13  Mark Wielaard  <mark@klomp.org>
324
325         * cp-name-parser.y (make_empty): Initialize d_printing to zero.
326
327 2017-03-10  Keith Seitz  <keiths@redhat.com>
328
329         PR c++/8218
330         * c-typeprint.c (cp_type_print_method_args): Skip artificial arguments.
331
332 2017-03-08  Pedro Alves  <palves@redhat.com>
333
334         PR gdb/18360
335         * infrun.c (start_step_over, do_target_resume, resume)
336         (restart_threads): Assert we're not resuming a thread that is
337         meant to be stopped.
338         (infrun_thread_stop_requested_callback): Delete.
339         (infrun_thread_stop_requested): If the thread is internally
340         stopped, queue a pending stop event and clear the thread's
341         inline-frame state.
342         (handle_stop_requested): New function.
343         (handle_syscall_event, handle_inferior_event_1): Use
344         handle_stop_requested.
345         (handle_stop_requested): New function.
346         (handle_signal_stop): Set the thread's stop_signal here instead of
347         at caller.
348         (finish_step_over): Clear step over info unconditionally.
349         (handle_signal_stop): If the user had interrupted the event
350         thread, consider the stop a random signal.
351         (handle_signal_stop) <signal arrived while stepping over
352         breakpoint>: Don't restart threads here.
353         (stop_waiting): Don't clear step-over info here.
354
355 2017-03-08  Pedro Alves  <palves@redhat.com>
356
357         PR 21206
358         * common/gdb_unlinker.h (unlinker::unlinker): Attribute nonnull
359         goes to argument 2, not 1.
360
361 2017-03-08  Pedro Alves  <palves@redhat.com>
362
363         PR cli/21218
364         * top.c (gdb_readline_wrapper): Avoid passing NULL to
365         display_gdb_prompt.
366         (command_line_input): Add comment.
367
368 2017-03-08  Pedro Alves  <palves@redhat.com>
369
370         PR tui/21216
371         * tui/tui-file.c (tui_file::write): New.
372         * tui/tui-file.h (tui_file): Override "write".
373         * tui/tui-io.c (do_tui_putc, update_start_line): New functions,
374         factored out from ...
375         (tui_puts): ... here.
376         (tui_putc): Use them.
377         (tui_write): New function.
378         * tui/tui-io.h (tui_write): Declare.
379
380 2017-03-07  Sergio Durigan Junior  <sergiodj@redhat.com>
381
382         * Makefile.in (SFILES): Replace "environ.c" with
383         "common/environ.c".
384         (HFILES_NO_SRCDIR): Likewise, for "environ.h".
385         * environ.c: Include "common-defs.h" instead of "defs.h.  Moved
386         to...
387         * common/environ.c: ... here.
388         * environ.h: Moved to...
389         * common/environ.h: ... here.
390
391 2017-03-07  Peter Bergner  <bergner@vnet.ibm.com>
392
393         * gdbarch.sh (pstring_ptr): New static function.
394         (gdbarch_disassembler_options): Use it.
395         (gdbarch_verify_disassembler_options): Print valid_disassembler_options,
396         not valid_disassembler_option->name.
397         * gdbarch.c: Regenerate.
398
399 2017-03-07  Peter Bergner  <bergner@vnet.ibm.com>
400
401         * config/powerpc/ppc64-linux.mh (MH_CFLAGS): Delete.
402
403 2017-03-07  Pedro Alves  <palves@redhat.com>
404
405         * tui/tui-regs.c (tui_restore_gdbout): Don't delete gdb_stdout.
406
407 2017-03-07  Walfred Tedeschi  <walfred.tedeschi@intel.com>
408
409         * i387-tdep.h (i387_reset_bnd_regs): Add function definition.
410         * i387-tdep.c (i387_reset_bnd_regs): Add function implementation.
411         * i386-tdep.c (i386_push_dummy_call): Call i387_reset_bnd_regs.
412         * amd64-tdep.c (amd64_push_dummy_call): Call i387_reset_bnd_regs.
413
414 2017-03-06  Simon Marchi  <simon.marchi@ericsson.com>
415
416         * xtensa-linux-nat.c (fetch_gregs): Remove const.
417
418 2017-03-03  Simon Marchi  <simon.marchi@ericsson.com>
419
420         * remote.c (remote_add_target_side_commands): Use range-based
421         for loop.
422
423 2017-03-03  Yao Qi  <yao.qi@linaro.org>
424
425         PR gdb/21165
426         * ada-valprint.c (ada_val_print_ref): Call value_fetch_lazy if
427         value is lazy.
428         * valprint.c (common_val_print): Likewise.
429
430 2017-02-28  Peter Bergner  <bergner@vnet.ibm.com>
431
432         * NEWS: Mention new set/show disassembler-options commands.
433         * doc/gdb.texinfo: Document new set/show disassembler-options commands.
434         * disasm.c: Include "arch-utils.h", "gdbcmd.h" and "safe-ctype.h".
435         (prospective_options): New static variable.
436         (gdb_disassembler::gdb_disassembler): Initialize
437         m_di.disassembler_options.
438         (gdb_buffered_insn_length_init_dis): Initilize di->disassembler_options.
439         (get_disassembler_options): New function.
440         (set_disassembler_options): Likewise.
441         (set_disassembler_options_sfunc): Likewise.
442         (show_disassembler_options_sfunc): Likewise.
443         (disassembler_options_completer): Likewise.
444         (_initialize_disasm): Likewise.
445         * disasm.h (get_disassembler_options): New prototype.
446         (set_disassembler_options): Likewise.
447         * gdbarch.sh (gdbarch_disassembler_options): New variable.
448         (gdbarch_verify_disassembler_options): Likewise.
449         * gdbarch.c: Regenerate.
450         * gdbarch.h: Likewise.
451         * arm-tdep.c (num_disassembly_options): Delete.
452         (set_disassembly_style): Likewise.
453         (arm_disassembler_options): New static variable.
454         (set_disassembly_style_sfunc): Convert short style name into long
455         option name.  Call set_disassembler_options.
456         (show_disassembly_style_sfunc): New function.
457         (arm_gdbarch_init): Call set_gdbarch_disassembler_options and
458         set_gdbarch_verify_disassembler_options.
459         (_initialize_arm_tdep): Delete regnames variable and update callers.
460         (arm_disassembler_options): Initialize.
461         (disasm_options): New variable.
462         (num_disassembly_options): Rename from this...
463         (num_disassembly_styles): ...to this.  Compute by scanning through
464         disasm_options.
465         (valid_disassembly_styles): Initialize using disasm_options.
466         Remove calls to parse_arm_disassembler_option, get_arm_regnames and
467         set_arm_regname_option.
468         Pass show_disassembly_style_sfunc to the "disassembler" setshow command.
469         * rs6000-tdep.c (powerpc_disassembler_options): New static variable.
470         (rs6000_gdbarch_init): Call set_gdbarch_disassembler_options and
471         set_gdbarch_verify_disassembler_options.
472         * s390-tdep.c (s390_disassembler_options): New static variable.
473         (s390_gdbarch_init):all set_gdbarch_disassembler_options and
474         set_gdbarch_verify_disassembler_options.
475
476 2017-02-27  Simon Marchi  <simon.marchi@ericsson.com>
477
478         * remote.c (remote_add_target_side_condition): Remove "struct"
479         keyword from range-based for loop.
480
481 2017-02-27  Simon Marchi  <simon.marchi@ericsson.com>
482
483         * remote.c (remote_add_target_side_condition): Use range-based
484         for loop.  Update comment.
485
486 2017-02-27  Yao Qi  <yao.qi@linaro.org>
487
488         * f-typeprint.c (f_print_type): Check "varstring" is empty first.
489
490 2017-02-26  Alan Hayward  <alan.hayward@arm.com>
491
492         * regcache.c (regcache_raw_update): New function.
493         (regcache_raw_read): Move code to regcache_raw_update.
494         * regcache.h (regcache_raw_update): New declaration.
495         * remote.c (remote_prepare_to_store): Call regcache_raw_update.
496
497 2017-02-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
498
499         * dwarf2read.c (create_debug_type_hash_table): Initialize
500         header.signature and header.type_offset_in_tu.
501
502 2017-02-24  Pedro Alves  <palves@redhat.com>
503
504         * symtab.c (make_file_symbol_completion_list_1): Use
505         add_symtab_completions.
506
507 2017-02-24  Alan Hayward  <alan.hayward@arm.com>
508
509         * stack.c (frame_info): Use frame_unwind_register_value to avoid buf.
510
511 2017-02-24  Alan Hayward  <alan.hayward@arm.com>
512
513         * i386-tdep.c (i386_pseudo_register_read_into_value): Use
514         I386_MAX_REGISTER_SIZE.
515         (i386_pseudo_register_write): Likewise.
516         (i386_process_record): Likewise.
517         * i387-tdep.c (i387_supply_xsave): Likewise.
518         * m68k-linux-nat.c (fetch_register): Use M68K_MAX_REGISTER_SIZE.
519         (store_register): Likewise.
520
521 2017-02-23  Pedro Alves  <palves@redhat.com>
522
523         * ada-lang.c: Include "common/function-view.h".
524         (ada_iterate_over_symbols): Adjust to use function_view as
525         callback type.
526         (struct add_partial_datum, ada_complete_symbol_matcher): Delete.
527         (ada_make_symbol_completion_list): Use a lambda.
528         (ada_exc_search_name_matches): Delete.
529         (name_matches_regex): New.
530         (ada_add_global_exceptions): Use a lambda and name_matches_regex.
531         * compile/compile-c-support.c: Include "common/function-view.h".
532         (print_one_macro): Change prototype to accept a ui_file pointer.
533         (write_macro_definitions): Use a lambda.
534         * dwarf2read.c: Include "common/function-view.h".
535         (dw2_map_expand_apply, dw2_map_symtabs_matching_filename)
536         (dw2_expand_symtabs_matching): Adjust to use function_view as
537         callback type.
538         * language.h: Include "common/function-view.h".
539         (struct language_defn) <la_iterate_over_symbols>: Adjust to use
540         function_view as callback type.
541         (LA_ITERATE_OVER_SYMBOLS): Remove DATA parameter.
542         * linespec.c: Include "common/function-view.h".
543         (collect_info::add_symbol): New method.
544         (struct symbol_and_data_callback, iterate_inline_only, struct
545         symbol_matcher_data, iterate_name_matcher): Delete.
546         (iterate_over_all_matching_symtabs): Adjust to use function_view
547         as callback type and lambdas.
548         (iterate_over_file_blocks): Adjust to use function_view as
549         callback type.
550         (decode_compound_collector): Now a class with private fields.
551         (decode_compound_collector::release_symbols): New method.
552         (collect_one_symbol): Rename to...
553         (decode_compound_collector::operator()): ... this and adjust.
554         (lookup_prefix_sym): decode_compound_collector construction bits
555         move to decode_compound_collector ctor.  Pass the
556         decode_compound_collector object directly as callback.  Remove
557         cleanups and use decode_compound_collector::release_symbols
558         instead.
559         (symtab_collector): Now a class with private fields.
560         (symtab_collector::release_symtabs): New method.
561         (add_symtabs_to_list): Rename to...
562         (symtab_collector::operator()): ... this and adjust.
563         (collect_symtabs_from_filename): symtab_collector construction
564         bits move to symtab_collector ctor.  Pass the symtab_collector
565         object directly as callback.  Remove cleanups and use
566         symtab_collector::release_symtabs instead.
567         (collect_symbols): Delete.
568         (add_matching_symbols_to_info): Use lambdas.
569         * macrocmd.c (print_macro_callback): Delete.
570         (info_macro_command): Use a lambda.
571         (info_macros_command): Pass print_macro_definition as callable
572         directly.
573         (print_one_macro): Remove 'ignore' parameter.
574         (macro_list_command): Adjust.
575         * macrotab.c (macro_for_each_data::fn): Now a function_view.
576         (macro_for_each_data::user_data): Delete field.
577         (foreach_macro): Adjust to call the function_view.
578         (macro_for_each): Adjust to use function_view as callback type.
579         (foreach_macro_in_scope): Adjust to call the function_view.
580         (macro_for_each_in_scope): Adjust to use function_view as callback
581         type.
582         * macrotab.h: Include "common/function-view.h".
583         (macro_callback_fn): Declare a prototype instead of a pointer.
584         Remove "user_data" parameter.
585         (macro_for_each, macro_for_each_in_scope): Adjust to use
586         function_view as callback type.
587         * psymtab.c (partial_map_expand_apply)
588         (psym_map_symtabs_matching_filename, recursively_search_psymtabs):
589         Adjust to use function_view as callback type and to return bool.
590         (psym_expand_symtabs_matching): Adjust to use function_view as
591         callback types.
592         * symfile-debug.c (debug_qf_map_symtabs_matching_filename): Adjust
593         to use function_view as callback type and to return bool.
594         (debug_qf_expand_symtabs_matching): Adjust to use function_view as
595         callback types.
596         * symfile.c (expand_symtabs_matching): Adjust to use function_view
597         as callback types.
598         * symfile.h: Include "common/function-view.h".
599         (expand_symtabs_file_matcher_ftype)
600         (expand_symtabs_symbol_matcher_ftype)
601         (expand_symtabs_exp_notify_ftype): Remove "data" parameter and
602         return bool.
603         (quick_symbol_functions::map_symtabs_matching_filename)
604         (quick_symbol_functions::expand_symtabs_matching): Adjust to use
605         function_view as callback type and return bool.
606         (expand_symtabs_matching): Adjust to use function_view as callback
607         type.
608         (maintenance_expand_name_matcher)
609         (maintenance_expand_file_matcher): Delete.
610         (maintenance_expand_symtabs): Use lambdas.
611         * symtab.c (iterate_over_some_symtabs): Adjust to use
612         function_view as callback types and return bool.
613         (iterate_over_symtabs): Likewise.  Use unique_xmalloc_ptr instead
614         of a cleanup.
615         (lookup_symtab_callback): Delete.
616         (lookup_symtab): Use a lambda.
617         (iterate_over_symbols): Adjust to use function_view as callback
618         type.
619         (struct search_symbols_data, search_symbols_file_matches)
620         (search_symbols_name_matches): Delete.
621         (search_symbols): Use a pair of lambdas.
622         (struct add_name_data, add_macro_name, symbol_completion_matcher)
623         (symtab_expansion_callback): Delete.
624         (default_make_symbol_completion_list_break_on_1): Use lambdas.
625         * symtab.h: Include "common/function-view.h".
626         (iterate_over_some_symtabs): Adjust to use function_view as
627         callback type and return bool.
628         (iterate_over_symtabs): Adjust to use function_view as callback
629         type.
630         (symbol_found_callback_ftype): Remove 'data' parameter and return
631         bool.
632         (iterate_over_symbols): Adjust to use function_view as callback
633         type.
634
635 2017-02-23  Pedro Alves  <palves@redhat.com>
636
637         * Makefile.in (SUBDIR_UNITTESTS_SRCS, SUBDIR_UNITTESTS_OBS): New.
638         (%.o) <unittests/%.c>: New pattern.
639         * configure.ac ($development): Add $(SUBDIR_UNITTESTS_OBS) to
640         CONFIG_OBS, and $(SUBDIR_UNITTESTS_SRCS) to CONFIG_SRCS.
641         * common/function-view.h: New file.
642         * unittests/function-view-selftests.c: New file.
643         * configure: Regenerate.
644
645 2017-02-23  Simon Marchi  <simon.marchi@ericsson.com>
646
647         * bsd-uthread.c (bsd_uthread_thread_alive): Use ptid instead of
648         inferior_ptid.
649         * go32-nat.c (go32_thread_alive): Likewise.
650
651 2017-02-23  Yao Qi  <yao.qi@linaro.org>
652
653         * varobj-iter.h (varobj_iter_delete): Call xfree instead of
654         delete.
655
656 2017-02-23  Yao Qi  <yao.qi@linaro.org>
657
658         * varobj.c (varobj_clear_saved_item): Use delete instead of
659         xfree.
660         (update_dynamic_varobj_children): Likewise.
661
662 2017-02-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
663
664         * dwarf2read.c (dwarf2_record_block_ranges): Add forgotten BASEADDR.
665
666 2017-02-21  Simon Marchi  <simon.marchi@ericsson.com>
667
668         * common/enum-flags.h (enum_flags::enum_flags): Initialize
669         m_enum_value to 0 in default constructor.
670
671 2017-02-21  Edjunior Barbosa Machado  <emachado@linux.vnet.ibm.com>
672
673         * rs6000-tdep.c (LOAD_AND_RESERVE_MASK): Rename from LWARX_MASK.
674         (STORE_CONDITIONAL_MASK): Rename from STWCX_MASK.
675         (LBARX_INSTRUCTION, LHARX_INSTRUCTION, LQARX_INSTRUCTION,
676         STBCX_INSTRUCTION, STHCX_INSTRUCTION, STQCX_INSTRUCTION): New defines.
677         (IS_LOAD_AND_RESERVE_INSN, IS_STORE_CONDITIONAL_INSN): New macros.
678         (ppc_displaced_step_copy_insn): Use IS_LOAD_AND_RESERVE_INSN.
679         (ppc_deal_with_atomic_sequence): Use IS_LOAD_AND_RESERVE_INSN and
680         IS_STORE_CONDITIONAL_INSN.
681
682 2017-02-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
683
684         * dwarf2_rnglists_process: Initialize range_beginning and range_end.
685
686 2017-02-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
687
688         * NEWS (Changes since GDB 7.12): Add DWARF-5.
689
690 2017-02-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
691
692         * dwarf2read.c (skip_one_die, read_attribute_value)
693         (dwarf2_const_value_attr, dump_die_shallow)
694         (dwarf2_get_attr_constant_value, dwarf2_fetch_constant_bytes)
695         (skip_form_bytes, attr_form_is_constant): Handle DW_FORM_data16.
696
697 2017-02-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
698
699         * dwarf2read.c (read_file_scope): Rename DW_MACRO_GNU_*.
700         (dwarf_parse_macro_header): Accept DWARF version 5.
701         (dwarf_decode_macro_bytes, dwarf_decode_macros): Rename DW_MACRO_GNU_*.
702
703 2017-02-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
704
705         * block.c (call_site_for_pc): Rename DW_OP_GNU_*, DW_TAG_GNU_* and
706         DW_AT_GNU_*.
707         * common/common-exceptions.h (enum errors): Likewise.
708         * dwarf2-frame.c (class dwarf_expr_executor): Likewise.
709         * dwarf2expr.c (dwarf_block_to_dwarf_reg)
710         (dwarf_expr_context::execute_stack_op): Likewise.
711         * dwarf2expr.h (struct dwarf_expr_context, struct dwarf_expr_piece):
712         Likewise.
713         * dwarf2loc.c (dwarf_evaluate_loc_desc::get_base_type)
714         (dwarf_evaluate_loc_desc::push_dwarf_reg_entry_value)
715         (show_entry_values_debug, call_site_to_target_addr)
716         (func_addr_to_tail_call_list, func_verify_no_selftailcall)
717         (dwarf_expr_reg_to_entry_parameter, dwarf_entry_parameter_to_value)
718         (entry_data_value_free_closure, value_of_dwarf_reg_entry)
719         (value_of_dwarf_block_entry, indirect_pieced_value)
720         (symbol_needs_eval_context::push_dwarf_reg_entry_value):
721         (disassemble_dwarf_expression): Likewise.
722         * dwarf2read.c (process_die, inherit_abstract_dies)
723         (read_call_site_scope): Likewise.
724         * gdbtypes.h (struct func_type, struct call_site_parameter)
725         (struct call_site): Likewise.
726         * stack.c (read_frame_arg): Likewise.
727         * std-operator.def (OP_VAR_ENTRY_VALUE): Likewise.
728
729 2017-02-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
730
731         * defs.h (read_unsigned_leb128): New declaration.
732         * dwarf2loc.c (decode_debug_loclists_addresses): New function.
733         (decode_debug_loc_dwo_addresses): Update DEBUG_LOC_* to DW_LLE_*.
734         (dwarf2_find_location_expression): Call also
735         decode_debug_loclists_addresses.  Handle DWARF-5 ULEB128 length.
736         * dwarf2loc.h (dwarf2_version): New declaration.
737         * dwarf2read.c (struct dwarf2_per_objfile): Add loclists, line_str,
738         rnglists.
739         (dwarf2_elf_names): Add .debug_loclists, .debug_line_str,
740         .debug_rnglists.
741         (struct dwop_section_names): Add loclists_dwo.
742         (dwop_section_names): Add .debug_loclists.dwo.
743         (struct comp_unit_head): Add unit_type, signature, type_offset_in_tu.
744         (struct dwarf2_per_cu_data): Add dwarf_version.
745         (struct dwo_sections): Add loclists.
746         (struct attr_abbrev): Add implicit_const.
747         (read_indirect_line_string): New declaration.
748         (read_unsigned_leb128): Delete declaration.
749         (rcuh_kind): New definition.
750         (read_and_check_comp_unit_head): Change parameter
751         is_debug_types_section to section_kind.
752         (dwarf2_locate_sections): Handle loclists, line_str and rnglists.
753         (read_comp_unit_head): Change parameter abfd to section, add parameter
754         section_kind.  Handle DWARF-5.
755         (error_check_comp_unit_head): Accept also DWARF version 5.
756         (read_and_check_comp_unit_head): Change parameter
757         is_debug_types_section to section_kind.
758         (read_and_check_type_unit_head): Delete function.
759         (read_abbrev_offset): Handle DWARF-5.
760         (create_debug_type_hash_table): Add parameter section_kind.  Process
761         only DW_UT_type.  Use signature and type_offset_in_tu from struct
762         comp_unit_head.
763         (create_debug_types_hash_table): Update create_debug_type_hash_table
764         caller.
765         (create_all_type_units): Call create_debug_type_hash_table.
766         (read_cutu_die_from_dwo, init_cutu_and_read_dies): Change
767         read_and_check_type_unit_head caller to read_and_check_comp_unit_head
768         caller.
769         (skip_one_die): Handle DW_FORM_implicit_const.
770         (dwarf2_rnglists_process): New function.
771         (dwarf2_ranges_process): Call dwarf2_rnglists_process for DWARF-5.
772         (abbrev_table_read_table): Handle DW_FORM_implicit_const.
773         (read_attribute_value): Handle DW_FORM_implicit_const,
774         DW_FORM_line_strp.
775         (read_attribute): Handle DW_FORM_implicit_const.
776         (read_indirect_string_at_offset_from): New function from
777         read_indirect_string_at_offset.
778         (read_indirect_string_at_offset): Call
779         read_indirect_string_at_offset_from.
780         (read_indirect_line_string_at_offset): New function.
781         (read_indirect_string): New function comment.
782         (read_indirect_line_string): New function.
783         (read_unsigned_leb128): Make it global.
784         (dwarf2_string_attr): Handle DWARF-5.
785         (add_include_dir_stub, read_formatted_entries): New functions.
786         (dwarf_decode_line_header, dump_die_shallow, cu_debug_loc_section):
787         Handle DWARF-5.
788         (per_cu_header_read_in): Update read_comp_unit_head caller.
789         (dwarf2_version): New function.
790         * symfile.h (struct dwarf2_debug_sections): Add loclists, line_str and
791         rnglists.
792         * xcoffread.c (dwarf2_xcoff_names): Update struct dwarf2_debug_sections
793         fields.
794
795 2017-02-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
796
797         * dwarf2read.c (abbrev_table_read_table): Read the data only once.
798
799 2017-02-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
800
801         * dwarf2read.c (dwarf2_ranges_process): New function from
802         dwarf2_ranges_read.
803         (dwarf2_ranges_read, dwarf2_record_block_ranges): Use
804         dwarf2_ranges_process.
805
806 2017-02-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
807
808         * dwarf2read.c (create_debug_type_hash_table): New function from
809         create_debug_types_hash_table.
810         (create_debug_types_hash_table): Call create_debug_type_hash_table.
811         (create_all_type_units, open_and_init_dwo_file): Update
812         create_debug_types_hash_table callers.
813
814 2017-02-20  Sergio Durigan Junior  <sergiodj@redhat.com>
815
816         PR gdb/16188
817         * fork-child.c (trace_start_error): Fix thinko.  va_end should
818         refer to 'ap', not 'args'.
819
820 2017-02-20  Sergio Durigan Junior  <sergiodj@redhat.com>
821             Pedro Alves  <palves@redhat.com>
822
823         PR gdb/16188
824         * darwin-nat.c (darwin_ptrace_me): Check if calls to system
825         calls succeeded.
826         * fork-child.c (trace_start_error): New function.
827         (trace_start_error_with_name): Likewise.
828         * gnu-nat.c (gnu_ptrace_me): Check if call to PTRACE succeeded.
829         * inf-ptrace.c (inf_ptrace_me): Likewise.
830         * inferior.h (trace_start_error): New prototype.
831         (trace_start_error_with_name): Likewise.
832
833 2017-02-15  Sergio Durigan Junior  <sergiodj@redhat.com>
834
835         PR gdb/21164
836         * psymtab.c (maintenance_print_psymbols): Verify if 'argv' is not
837         NULL before using it.
838         * symmisc.c (maintenance_print_symbols): Likewise.
839         (maintenance_print_msymbols): Likewise.
840
841 2017-02-14  Tim Wiederhake  <tim.wiederhake@intel.com>
842
843         * NEWS: Add record Python bindings entry.
844
845 2017-02-14  Tim Wiederhake  <tim.wiederhake@intel.com>
846
847         * Makefile.in (SUBDIR_PYTHON_OBS): Add py-record-btrace.o,
848         py-record-full.o.
849         (SUBDIR_PYTHON_SRCS): Add py-record-btrace.c, py-record-full.c.
850         * python/py-record-btrace.c, python/py-record-btrace.h,
851         python/py-record-full.c, python/py-record-full.h: New file.
852         * python/py-record.c: Add include for py-record-btrace.h and
853         py-record-full.h.
854         (recpy_method, recpy_format, recpy_goto, recpy_replay_position,
855         recpy_instruction_history, recpy_function_call_history, recpy_begin,
856         recpy_end): Use functions from py-record-btrace.c and py-record-full.c.
857         * python/python-internal.h (PyInt_FromSsize_t, PyInt_AsSsize_t):
858         New definition.
859         (gdbpy_initialize_btrace): New export.
860         * python/python.c (_initialize_python): Add gdbpy_initialize_btrace.
861
862 2017-02-14  Tim Wiederhake  <tim.wiederhake@intel.com>
863
864         * Makefile.in (SUBDIR_PYTHON_OBS): Add python/py-record.o.
865         (SUBDIR_PYTHON_SRCS): Add python/py-record.c.
866         * python/py-record.c: New file.
867         * python/python-internal.h (gdbpy_start_recording,
868         gdbpy_current_recording, gdpy_stop_recording,
869         gdbpy_initialize_record): New export.
870         * python/python.c (_initialize_python): Add gdbpy_initialize_record.
871         (python_GdbMethods): Add gdbpy_start_recording,
872         gdbpy_current_recording and gdbpy_stop_recording.
873
874 2017-02-14  Tim Wiederhake  <tim.wiederhake@intel.com>
875
876         * record-btrace.c (record_btrace_record_method): New function.
877         (init_record_btrace_ops): Initialize to_record_method.
878         * record-full.c (record_full_record_method): New function.
879         (init_record_full_ops, init_record_full_core_ops): Add
880         record_full_record_method.
881         * record.h (enum record_method): New enum.
882         * target-debug.h (target_debug_print_enum_record_method: New define.
883         * target-delegates.c: Regenerate.
884         * target.c (target_record_method): New function.
885         * target.h: Include record.h.
886         (struct target_ops) <to_record_method>: New field.
887         (target_record_method): New export.
888
889 2017-02-14  Tim Wiederhake  <tim.wiederhake@intel.com>
890
891         * record.h (record_start, record_stop): New export.
892         * record.c (record_start, record_stop): New function.
893
894 2017-02-14  Tim Wiederhake  <tim.wiederhake@intel.com>
895
896         * btrace.c (btrace_fetch): Copy function call segments pointer
897         into a vector.
898         (btrace_clear): Clear the vector.
899         (btrace_find_insn_by_number): Use binary search to find the correct
900         function call segment.
901         * btrace.h (brace_fun_p): New typedef.
902         (struct btrace_thread_info) <functions>: New field.
903
904 2017-02-14  Tim Wiederhake  <tim.wiederhake@intel.com>
905
906         * record-btrace.c (btrace_ui_out_decode_error): Move most of it ...
907         * btrace.c (btrace_decode_error): ... here.  New function.
908         * btrace.h (btrace_decode_error): New export.
909
910 2017-02-14  Tim Wiederhake  <tim.wiederhake@intel.com>
911
912         * btrace.c (ftrace_call_num_insn, btrace_insn_get_error): New function.
913         (ftrace_new_function, btrace_insn_number, btrace_insn_cmp,
914         btrace_find_insn_by_number): Remove special case for gaps.
915         * btrace.h (btrace_insn_get_error): New export.
916         (btrace_insn_number, btrace_find_insn_by_number): Adjust comment.
917         * record-btrace.c (btrace_insn_history): Print number for gaps.
918         (record_btrace_info, record_btrace_goto): Handle gaps.
919
920 2017-02-14  Tom Tromey  <tom@tromey.com>
921
922         PR python/13598:
923         * python/python.c (gdbpy_before_prompt_hook): Emit before_prompt
924         event.
925         * python/py-evts.c (gdbpy_initialize_py_events): Add
926         before_prompt registry.
927         * python/py-events.h (events_object) <before_prompt>: New field.
928
929 2017-02-14  Markus Metzger  <markus.t.metzger@intel.com>
930
931         * btrace.c (ftrace_new_switch): Preserve up link and flags.
932
933 2017-02-13  Luis Machado  <lgustavo@codesourcery.com>
934
935         * symfile (_initialize_symfile): Add usage text to the load command's
936         help text.
937
938 2017-02-10  Simon Marchi  <simon.marchi@ericsson.com>
939
940         * utils.c (defaulted_query): Don't query on secondary UIs.
941
942 2017-02-10  Tom Tromey  <tom@tromey.com>
943
944         * rust-lang.c (rust_get_disr_info): Remove unused variable.
945
946 2017-02-10  Tom Tromey  <tom@tromey.com>
947
948         * python/py-value.c (valpy_richcompare_throw): Remove unnecessary
949         "cleanup" local.
950         * python/py-type.c (typy_legacy_template_argument): Remove
951         unnecessary "cleanup" local.
952
953 2017-02-10  Tom Tromey  <tom@tromey.com>
954
955         * python/python.c (do_start_initialization): New function, from
956         _initialize_python.
957         (_initialize_python): Call do_start_initialization.
958         * python/py-linetable.c (ltpy_iternext): Use explicit returns, not
959         goto.
960
961 2017-02-10  Tom Tromey  <tom@tromey.com>
962
963         * python/py-prettyprint.c (pretty_print_one_value): Use
964         gdbpy_ref.
965
966 2017-02-10  Tom Tromey  <tom@tromey.com>
967
968         * python/py-cmd.c (cmdpy_destroyer): Use gdbpy_ref.
969         * python/py-breakpoint.c (gdbpy_breakpoint_deleted): Use
970         gdbpy_ref.
971         * python/py-type.c (field_new): Use gdbpy_ref.
972         * python/py-symtab.c (symtab_and_line_to_sal_object): Use
973         gdbpy_ref.
974         * python/py-progspace.c (pspy_new): Use gdbpy_ref.
975         (py_free_pspace): Likewise.
976         (pspace_to_pspace_object): Likewise.
977         * python/py-objfile.c (objfpy_new): Use gdbpy_ref.
978         (py_free_objfile): Likewise.
979         (objfile_to_objfile_object): Likewise.
980         * python/py-inferior.c (delete_thread_object): Use
981         gdbpy_ref.
982         (infpy_read_memory): Likewise.
983         (py_free_inferior): Likewise.
984         * python/py-evtregistry.c (create_eventregistry_object): Use
985         gdbpy_ref.
986         * python/py-event.c (create_event_object): Use gdbpy_ref.
987
988 2017-02-10  Tom Tromey  <tom@tromey.com>
989
990         * python/py-ref.h (gdbpy_ref_policy): Now a template.
991         (gdbpy_ref): Now a template; allow subclasses of PyObject to be
992         used.
993         * python/py-arch.c, python/py-bpevent.c, python/py-breakpoint.c,
994         python/py-cmd.c, python/py-continueevent.c, python/py-event.c,
995         python/py-exitedevent.c, python/py-finishbreakpoint.c,
996         python/py-framefilter.c, python/py-function.c,
997         python/py-inferior.c, python/py-infevents.c,
998         python/py-linetable.c, python/py-newobjfileevent.c,
999         python/py-param.c, python/py-prettyprint.c, python/py-ref.h,
1000         python/py-signalevent.c, python/py-stopevent.c,
1001         python/py-symbol.c, python/py-threadevent.c, python/py-type.c,
1002         python/py-unwind.c, python/py-utils.c, python/py-value.c,
1003         python/py-varobj.c, python/py-xmethods.c, python/python.c,
1004         varobj.c: Change gdbpy_ref to gdbpy_ref<>.
1005
1006 2017-02-10  Tom Tromey  <tom@tromey.com>
1007
1008         * ui-out.h (ui_out_emit_type): New class.
1009         (ui_out_emit_tuple, ui_out_emit_list): New typedefs.
1010         * python/py-framefilter.c (py_print_single_arg): Use gdb::optional
1011         and ui_out_emit_tuple.
1012         (enumerate_locals): Likewise.
1013         (py_mi_print_variables, py_print_locals, py_print_args): Use
1014         ui_out_emit_list.
1015         (py_print_frame): Use gdb::optional, ui_out_emit_tuple,
1016         ui_out_emit_list.
1017         * common/gdb_optional.h: New file.
1018
1019 2017-02-10  Martin Galvan  <martingalvan@sourceware.org>
1020
1021         * MAINTAINERS (Write After Approval): Update my e-mail address.
1022
1023 2017-02-10  Martin Galvan  <martingalvan@sourceware.org>
1024
1025         PR gdb/21122
1026         * breakpoint.c (_initialize_breakpoint): Update the help description
1027         of the 'commands' command to indicate that it takes a list argument.
1028
1029 2017-02-09  Simon Marchi  <simon.marchi@ericsson.com>
1030
1031         * interps.c (current_interp_set_logging): Remove "return".
1032
1033 2017-02-09  Gary Benson  <gbenson@redhat.com>
1034
1035         * symtab.c (add_symtab_completions): Prevent NULL pointer
1036         dereference.
1037
1038 2017-02-08  Pedro Alves  <palves@redhat.com>
1039
1040         * interps.c (interp::interp): Remove reference to quiet_p.
1041         (interp_set): Make static.  Remove dead "Switching to" output
1042         code.
1043         (interp_quiet_p, interp_set_quiet): Delete.
1044         (interpreter_exec_cmd): Don't set the interpreter quiet.
1045         * interps.h (interp_quiet_p): Make static.
1046         (class interp) <quiet_p>: Remove field
1047
1048 2017-02-08  Jerome Guitton  <guitton@adacore.com>
1049
1050         * cli/cli-decode.c (find_command_name_length): Make it extern.
1051         * cli/cli-decode.h (find_command_name_length): Declare.
1052         * cli/cli-script.c (command_name_equals, line_first_arg):
1053         New functions.
1054         (process_next_line): Use cli-decode to parse command names.
1055         (build_command_line): Make args a constant pointer.
1056
1057 2017-02-08  Jerome Guitton  <guitton@adacore.com>
1058
1059         * cli-decode.c (lookup_cmd_1, lookup_cmd_composition):
1060         Remove case-insensitive search.
1061
1062 2017-02-07  Jose E. Marchesi  <jose.marchesi@oracle.com>
1063
1064         * sparc-tdep.c (sparc32_gdbarch_init): Do not place a + operator
1065         at the end of the line.  Avoids an ARI warning.
1066
1067 2017-02-06  Luis Machado  <lgustavo@codesourcery.com>
1068
1069         * NEWS: Mention support for record/replay of Intel 64 rdrand and
1070         rdseed instructions.
1071         i386-tdep.c (i386_process_record): Handle Intel 64 rdrand and rseed.
1072
1073 2017-02-06  Ivo Raisr  <ivo.raisr@oracle.com>
1074
1075         PR tdep/20936
1076         Provide and use sparc32 and sparc64 target description XML files.
1077         * features/sparc/sparc32-cp0.xml, features/sparc/sparc32-cpu.xml,
1078         features/sparc/sparc32-fpu.xml: New files for sparc 32-bit.
1079         * features/sparc/sparc64-cp0.xml, features/sparc/sparc64-cpu.xml,
1080         features/sparc/sparc64-fpu.xml: New files for sparc 64-bit.
1081         * features/sparc/sparc32-solaris.xml: New file.
1082         * features/sparc/sparc64-solaris.xml: New file.
1083         * features/sparc/sparc32-solaris.c: Generated.
1084         * features/sparc/sparc64-solaris.c: Generated.
1085         * sparc-tdep.h: Account for differences in target descriptions.
1086         * sparc-tdep.c (sparc32_register_name): Use target provided registers.
1087         (sparc32_register_type): Use target provided registers.
1088         (validate_tdesc_registers): New function.
1089         (sparc32_gdbarch_init): Use tdesc_has_registers.
1090         Set pseudoregister functions.
1091         * sparc64-tdep.c (sparc64_register_name): Use target provided registers.
1092         (sparc64_register_type): Use target provided registers.
1093         (sparc64_init_abi): Set pseudoregister functions.
1094
1095 2017-02-03  Tom Tromey  <tom@tromey.com>
1096
1097         PR rust/21097:
1098         * rust-lang.c (rust_print_type) <TYPE_CODE_UNION>: Handle enums
1099         with a single member.
1100
1101 2017-02-03  Pedro Alves  <palves@redhat.com>
1102
1103         * cli/cli-interp.c (cli_interp_base::cli_interp_base)
1104         (cli_interp_base::~cli_interp_base): New.
1105         (cli_interp): New struct.
1106         (as_cli_interp): Cast the interp itself to cli_interp.
1107         (cli_interpreter_pre_command_loop): Rename to ...
1108         (cli_interp_base::pre_command_loop): ... this.  Remove 'self'
1109         parameter.
1110         (cli_interpreter_init): Rename to ...
1111         (cli_interp::init): ... this.  Remove 'self' parameter.  Use
1112         boolean.  Make extern.
1113         (cli_interpreter_resume): Rename to ...
1114         (cli_interp::resume): ... this.  Remove 'data' parameter.  Make
1115         extern.
1116         (cli_interpreter_suspend): Rename to ...
1117         (cli_interp::suspend): ... this.  Remove 'data' parameter.  Make
1118         extern.
1119         (cli_interpreter_exec): Rename to ...
1120         (cli_interp::exec): ... this.  Remove 'data' parameter.  Make
1121         extern.
1122         (cli_interpreter_supports_command_editing): Rename to ...
1123         (cli_interp_base::supports_command_editing): ... this.  Remove
1124         'interp' parameter.  Make extern.
1125         (cli_ui_out): Rename to ...
1126         (cli_interp::interp_ui_out): ... this.  Remove 'interp' parameter.
1127         Make extern.
1128         (cli_set_logging): Rename to ...
1129         (cli_interp_base::set_logging): ... this.  Remove 'interp'
1130         parameter.  Make extern.
1131         (cli_interp_procs): Delete.
1132         (cli_interp_factory): Adjust to use "new".
1133         * cli/cli-interp.h: Include "interps.h".
1134         (struct cli_interp_base): New struct.
1135         * interps.c (struct interp): Delete.  Fields moved to interps.h.
1136         (interp_new): Delete.
1137         (interp::interp, interp::~interp): New.
1138         (interp_set): Use bool, and return void.  Assume the interpreter
1139         has suspend, init and resume methods, and that the all return
1140         void.
1141         (set_top_level_interpreter): interp_set returns void.
1142         (interp_ui_out): Adapt.
1143         (current_interp_set_logging): Adapt.
1144         (interp_data): Delete.
1145         (interp_pre_command_loop, interp_supports_command_editing): Adapt.
1146         (interp_exec): Adapt.
1147         (top_level_interpreter_data): Delete.
1148         * interps.h (interp_init_ftype, interp_resume_ftype)
1149         (interp_suspend_ftype, interp_exec_ftype)
1150         (interp_pre_command_loop_ftype, interp_ui_out_ftype): Delete.
1151         (class interp): New.
1152         (interp_new): Delete.
1153         (interp_set): Now returns void.  Use bool.
1154         (interp_data, top_level_interpreter_data): Delete.
1155         * mi/mi-common.h: Include interps.h.
1156         (class mi_interp): Inherit from interp.  Define a ctor.  Declare
1157         init, resume, suspect, exec, interp_ui_out, set_logging and
1158         pre_command_loop methods.
1159         * mi/mi-interp.c (as_mi_interp): Cast the interp itself.
1160         (mi_interpreter_init): Rename to ...
1161         (mi_interp::init): ... this.  Remove the 'interp' parameter, use
1162         bool, return void and make extern.  Adjust.
1163         (mi_interpreter_resume): ... Rename to ...
1164         (mi_interp::resume): ... this.  Remove the 'data' parameter,
1165         return void and make extern.  Adjust.
1166         (mi_interpreter_suspend): ... Rename to ...
1167         (mi_interp::suspend): ... this.  Remove the 'data' parameter,
1168         return void and make extern.  Adjust.
1169         (mi_interpreter_exec): ... Rename to ...
1170         (mi_interp::exec): ... this.  Remove the 'data' parameter and make
1171         extern.  Adjust.
1172         (mi_interpreter_pre_command_loop): ... Rename to ...
1173         (mi_interp::pre_command_loop): ... this.  Remove the 'self'
1174         parameter and make extern.
1175         (mi_on_normal_stop_1): Adjust.
1176         (mi_ui_out): Rename to ...
1177         (mi_interp::interp_ui_out): ... this.  Remove the 'interp'
1178         parameter and make extern.  Adjust.
1179         (mi_set_logging): Rename to ...
1180         (mi_interp::set_logging): ... this.  Remove the 'interp'
1181         parameter and make extern.  Adjust.
1182         (mi_interp_procs): Delete.
1183         (mi_interp_factory): Adjust to use 'new'.
1184         * mi/mi-main.c (mi_cmd_gdb_exit, captured_mi_execute_command)
1185         (mi_print_exception, mi_execute_command, mi_load_progress):
1186         Adjust.
1187         * tui/tui-interp.c (tui_interp): New class.
1188         (as_tui_interp): Return a tui_interp pointer.
1189         (tui_on_normal_stop, tui_on_signal_received)
1190         (tui_on_end_stepping_range, tui_on_signal_exited, tui_on_exited)
1191         (tui_on_no_history, tui_on_user_selected_context_changed): Adjust
1192         to use interp::interp_ui_out.
1193         (tui_init): Rename to ...
1194         (tui_interp::init): ... this.  Remove the 'self' parameter, use
1195         bool, return void and make extern.  Adjust.
1196         (tui_resume): Rename to ...
1197         (tui_interp::resume): ... this.  Remove the 'data' parameter,
1198         return void and make extern.  Adjust.
1199         (tui_suspend): Rename to ...
1200         (tui_interp::suspend): ... this.  Remove the 'data' parameter,
1201         return void and make extern.  Adjust.
1202         (tui_ui_out): Rename to ...
1203         (tui_interp::interp_ui_out): ... this.  Remove the 'self'
1204         parameter, and make extern.  Adjust.
1205         (tui_exec): Rename to ...
1206         (tui_interp::exec): ... this.  Remove the 'data' parameter and
1207         make extern.
1208         (tui_interp_procs): Delete.
1209         (tui_interp_factory): Use "new".
1210
1211 2017-02-02  Tom Tromey  <tom@tromey.com>
1212
1213         * rust-exp.y (ends_raw_string, space_then_number)
1214         (rust_identifier_start_p): Return bool.
1215         * rust-lang.c (rust_tuple_type_p, rust_underscore_fields)
1216         (rust_tuple_struct_type_p, rust_tuple_variant_type_p)
1217         (rust_slice_type_p, rust_range_type_p, rust_u8_type_p)
1218         (rust_chartype_p): Return bool.
1219         (val_print_struct, rust_print_struct_def, rust_print_type):
1220         Update.
1221         * rust-lang.h (rust_tuple_type_p, rust_tuple_struct_type_p):
1222         Return bool.
1223
1224 2017-02-02  Tom Tromey  <tom@tromey.com>
1225
1226         * rust-lang.c: Reindent.
1227
1228 2017-02-02  Tom Tromey  <tom@tromey.com>
1229
1230         * rust-lang.h (rust_crate_for_block): Update.
1231         * rust-lang.c (rust_crate_for_block): Return std::string.
1232         (rust_get_disr_info): Use std:;string, not
1233         gdb::unique_xmalloc_ptr.
1234         * rust-exp.y (crate_name): Update.
1235
1236 2017-02-02  Pedro Alves  <palves@redhat.com>
1237
1238         * disasm-selftests.c (print_one_insn_test): Move the "verbose"
1239         field out of gdb_disassembler_test and make it static.
1240
1241 2017-02-02  Pedro Alves  <palves@redhat.com>
1242
1243         * mi/mi-common.h (struct mi_interp): Delete the mi2_interp,
1244         mi1_interp and mi_interp fields.
1245
1246 2017-02-02  Pedro Alves  <palves@redhat.com>
1247
1248         * cli/cli-interp.c (struct saved_output_files, saved_output):
1249         Moved from cli/cli-logging.c.
1250         (cli_set_logging): New function.
1251         (cli_interp_procs): Install cli_set_logging.
1252         * cli/cli-interp.h (make_logging_output, cli_set_logging):
1253         Declare.
1254         * cli/cli-logging.c (struct saved_output_files, saved_output):
1255         Moved to cli/cli-interp.c.
1256         (pop_output_files): Don't save outputs here.
1257         (make_logging_output): New function.
1258         (handle_redirections): Don't build tee nor save previous outputs
1259         here.
1260         * interps.c (current_interp_set_logging): Change prototype.
1261         Assume there's always a set_logging_proc method installed.
1262         * interps.h (interp_set_logging_ftype): Change prototype.
1263         (current_interp_set_logging): Change prototype and adjust comment.
1264         * mi/mi-interp.c (mi_set_logging): Change protototype.  Adjust to
1265         use make_logging_output.
1266         * tui/tui-interp.c (tui_interp_procs): Install cli_set_logging.
1267 2017-02-02  Pedro Alves  <palves@redhat.com>
1268
1269         * cli/cli-logging.c (maybe_warn_already_logging): New factored out
1270         from ...
1271         (set_logging_overwrite): ... here.
1272         (logging_no_redirect_file): Delete.
1273         (set_logging_redirect): Don't handle redirection on the fly.
1274         Instead warn that "logging off" / "logging on" is necessary.
1275         (pop_output_files): Delete references to logging_no_redirect_file.
1276         (show_logging_command): Always speak in terms of what will happen
1277         once logging is reenabled.
1278
1279 2017-02-02  Pedro Alves  <palves@redhat.com>
1280
1281         * disasm.h (gdb_pretty_print_disassembler): Tweak intro comment.
1282
1283 2017-02-02  Pedro Alves  <palves@redhat.com>
1284
1285         * disasm.c (gdb_pretty_print_insn): Rename to ...
1286         (gdb_pretty_print_disassembler::pretty_print_insn): ... this.
1287         Remove gdbarch parameter.  Adapt to clear the object's buffers
1288         instead of allocating new buffers, and to print using the object's
1289         gdb_disassembler instead of calling gdb_print_insn.
1290         (dump_insns): Use gdb_pretty_print_disassembler.
1291         * disasm.h (gdb_pretty_print_insn): Delete declaration.
1292         (gdb_pretty_print_disassembler): New class.
1293         * record-btrace.c (btrace_insn_history): Use
1294         gdb_pretty_print_disassembler.
1295
1296 2017-02-02  Pedro Alves  <palves@redhat.com>
1297
1298         * ada-lang.c (type_as_string): Use string_file.
1299         * ada-valprint.c (ada_print_floating): Use string_file.
1300         * ada-varobj.c (ada_varobj_scalar_image)
1301         (ada_varobj_get_value_image): Use string_file.
1302         * aix-thread.c (aix_thread_extra_thread_info): Use string_file.
1303         * arm-tdep.c (_initialize_arm_tdep): Use string_printf.
1304         * breakpoint.c (update_inserted_breakpoint_locations)
1305         (insert_breakpoint_locations, reattach_breakpoints)
1306         (print_breakpoint_location, print_one_detail_ranged_breakpoint)
1307         (print_it_watchpoint): Use string_file.
1308         (save_breakpoints): Use stdio_file.
1309         * c-exp.y (oper): Use string_file.
1310         * cli/cli-logging.c (set_logging_redirect): Use ui_file_up and
1311         tee_file.
1312         (pop_output_files): Use delete.
1313         (handle_redirections): Use stdio_file and tee_file.
1314         * cli/cli-setshow.c (do_show_command): Use string_file.
1315         * compile/compile-c-support.c (c_compute_program): Use
1316         string_file.
1317         * compile/compile-c-symbols.c (generate_vla_size): Take a
1318         'string_file &' instead of a 'ui_file *'.
1319         (generate_c_for_for_one_variable): Take a 'string_file &' instead
1320         of a 'ui_file *'.  Use string_file.
1321         (generate_c_for_variable_locations): Take a 'string_file &'
1322         instead of a 'ui_file *'.
1323         * compile/compile-internal.h (generate_c_for_for_one_variable):
1324         Take a 'string_file &' instead of a 'ui_file *'.
1325         * compile/compile-loc2c.c (push, pushf, unary, binary)
1326         (print_label, pushf_register_address, pushf_register)
1327         (do_compile_dwarf_expr_to_c): Take a 'string_file &' instead of a
1328         'ui_file *'.  Adjust.
1329         * compile/compile.c (compile_to_object): Use string_file.
1330         * compile/compile.h (compile_dwarf_expr_to_c)
1331         (compile_dwarf_bounds_to_c): Take a 'string_file &' instead of a
1332         'ui_file *'.
1333         * cp-support.c (inspect_type): Use string_file and obstack_copy0.
1334         (replace_typedefs_qualified_name): Use string_file and
1335         obstack_copy0.
1336         * disasm.c (gdb_pretty_print_insn): Use string_file.
1337         (gdb_disassembly): Adjust reference the null_stream global.
1338         (do_ui_file_delete): Delete.
1339         (gdb_insn_length): Use null_stream.
1340         * dummy-frame.c (maintenance_print_dummy_frames): Use stdio_file.
1341         * dwarf2loc.c (dwarf2_compile_property_to_c)
1342         (locexpr_generate_c_location, loclist_generate_c_location): Take a
1343         'string_file &' instead of a 'ui_file *'.
1344         * dwarf2loc.h (dwarf2_compile_property_to_c): Likewise.
1345         * dwarf2read.c (do_ui_file_peek_last): Delete.
1346         (dwarf2_compute_name): Use string_file.
1347         * event-top.c (gdb_setup_readline): Use stdio_file.
1348         * gdbarch.sh (verify_gdbarch): Use string_file.
1349         * gdbtypes.c (safe_parse_type): Use null_stream.
1350         * guile/scm-breakpoint.c (gdbscm_breakpoint_commands): Use
1351         string_file.
1352         * guile/scm-disasm.c (gdbscm_print_insn_from_port): Take a
1353         'string_file *' instead of a 'ui_file *'.
1354         (gdbscm_arch_disassemble): Use string_file.
1355         * guile/scm-frame.c (frscm_print_frame_smob): Use string_file.
1356         * guile/scm-ports.c (class ioscm_file_port): Now a class that
1357         inherits from ui_file.
1358         (ioscm_file_port_delete, ioscm_file_port_rewind)
1359         (ioscm_file_port_put): Delete.
1360         (ioscm_file_port_write): Rename to ...
1361         (ioscm_file_port::write): ... this.  Remove file_port_magic
1362         checks.
1363         (ioscm_file_port_new): Delete.
1364         (ioscm_with_output_to_port_worker): Use ioscm_file_port and
1365         ui_file_up.
1366         * guile/scm-type.c (tyscm_type_name): Use string_file.
1367         * guile/scm-value.c (vlscm_print_value_smob, gdbscm_value_print):
1368         Use string_file.
1369         * infcmd.c (print_return_value_1): Use string_file.
1370         * infrun.c (print_target_wait_results): Use string_file.
1371         * language.c (add_language): Use string_file.
1372         * location.c (explicit_to_string_internal): Use string_file.
1373         * main.c (captured_main_1): Use null_file.
1374         * maint.c (maintenance_print_architecture): Use stdio_file.
1375         * mi/mi-cmd-stack.c (list_arg_or_local): Use string_file.
1376         * mi/mi-common.h (struct mi_interp) <out, err, log, targ,
1377         event_channel>: Change type to mi_console_file pointer.
1378         * mi/mi-console.c (mi_console_file_fputs, mi_console_file_flush)
1379         (mi_console_file_delete): Delete.
1380         (struct mi_console_file): Delete.
1381         (mi_console_file_magic): Delete.
1382         (mi_console_file_new): Delete.
1383         (mi_console_file::mi_console_file): New.
1384         (mi_console_file_delete): Delete.
1385         (mi_console_file_fputs): Delete.
1386         (mi_console_file::write): New.
1387         (mi_console_raw_packet): Delete.
1388         (mi_console_file::flush): New.
1389         (mi_console_file_flush): Delete.
1390         (mi_console_set_raw): Rename to ...
1391         (mi_console_file::set_raw): ... this.
1392         * mi/mi-console.h (class mi_console_file): New class.
1393         (mi_console_file_new, mi_console_set_raw): Delete.
1394         * mi/mi-interp.c (mi_interpreter_init): Use mi_console_file.
1395         (mi_set_logging): Use delete and tee_file.  Adjust.
1396         * mi/mi-main.c (output_register): Use string_file.
1397         (mi_cmd_data_evaluate_expression): Use string_file.
1398         (mi_cmd_data_read_memory): Use string_file.
1399         (mi_cmd_execute, print_variable_or_computed): Use string_file.
1400         * mi/mi-out.c (mi_ui_out::main_stream): New.
1401         (mi_ui_out::rewind): Use main_stream and
1402         string_file.
1403         (mi_ui_out::put): Use main_stream and string_file.
1404         (mi_ui_out::mi_ui_out): Remove 'stream' parameter.
1405         Allocate a 'string_file' instead.
1406         (mi_out_new): Don't allocate a mem_fileopen stream here.
1407         * mi/mi-out.h (mi_ui_out::mi_ui_out): Remove 'stream' parameter.
1408         (mi_ui_out::main_stream): Declare method.
1409         * printcmd.c (eval_command): Use string_file.
1410         * psymtab.c (maintenance_print_psymbols): Use stdio_file.
1411         * python/py-arch.c (archpy_disassemble): Use string_file.
1412         * python/py-breakpoint.c (bppy_get_commands): Use string_file.
1413         * python/py-frame.c (frapy_str): Use string_file.
1414         * python/py-framefilter.c (py_print_type, py_print_single_arg):
1415         Use string_file.
1416         * python/py-type.c (typy_str): Use string_file.
1417         * python/py-unwind.c (unwind_infopy_str): Use string_file.
1418         * python/py-value.c (valpy_str): Use string_file.
1419         * record-btrace.c (btrace_insn_history): Use string_file.
1420         * regcache.c (regcache_print): Use stdio_file.
1421         * reggroups.c (maintenance_print_reggroups): Use stdio_file.
1422         * remote.c (escape_buffer): Use string_file.
1423         * rust-lang.c (rust_get_disr_info): Use string_file.
1424         * serial.c (serial_open_ops_1): Use stdio_file.
1425         (do_serial_close): Use delete.
1426         * stack.c (print_frame_arg): Use string_file.
1427         (print_frame_args): Remove local mem_fileopen stream, not used.
1428         (print_frame): Use string_file.
1429         * symmisc.c (maintenance_print_symbols): Use stdio_file.
1430         * symtab.h (struct symbol_computed_ops) <generate_c_location>:
1431         Take a 'string_file *' instead of a 'ui_file *'.
1432         * top.c (new_ui): Use stdio_file and stderr_file.
1433         (free_ui): Use delete.
1434         (execute_command_to_string): Use string_file.
1435         (quit_confirm): Use string_file.
1436         * tracepoint.c (collection_list::append_exp): Use string_file.
1437         * tui/tui-disasm.c (tui_disassemble): Use string_file.
1438         * tui/tui-file.c: Don't include "ui-file.h".
1439         (enum streamtype, struct tui_stream): Delete.
1440         (tui_file_new, tui_file_delete, tui_fileopen, tui_sfileopen)
1441         (tui_file_isatty, tui_file_rewind, tui_file_put): Delete.
1442         (tui_file::tui_file): New method.
1443         (tui_file_fputs): Delete.
1444         (tui_file_get_strbuf): Delete.
1445         (tui_file::puts): New method.
1446         (tui_file_adjust_strbuf): Delete.
1447         (tui_file_flush): Delete.
1448         (tui_file::flush): New method.
1449         * tui/tui-file.h: Tweak intro comment.
1450         Include ui-file.h.
1451         (tui_fileopen, tui_sfileopen, tui_file_get_strbuf)
1452         (tui_file_adjust_strbuf): Delete declarations.
1453         (class tui_file): New class.
1454         * tui/tui-io.c (tui_initialize_io): Use tui_file.
1455         * tui/tui-regs.c (tui_restore_gdbout): Use delete.
1456         (tui_register_format): Use string_stream.
1457         * tui/tui-stack.c (tui_make_status_line): Use string_file.
1458         (tui_get_function_from_frame): Use string_file.
1459         * typeprint.c (type_to_string): Use string_file.
1460         * ui-file.c (struct ui_file, ui_file_magic, ui_file_new): Delete.
1461         (null_stream): New global.
1462         (ui_file_delete): Delete.
1463         (ui_file::ui_file): New.
1464         (null_file_isatty): Delete.
1465         (ui_file::~ui_file): New.
1466         (null_file_rewind): Delete.
1467         (ui_file::printf): New.
1468         (null_file_put): Delete.
1469         (null_file_flush): Delete.
1470         (ui_file::putstr): New.
1471         (null_file_write): Delete.
1472         (ui_file::putstrn): New.
1473         (null_file_read): Delete.
1474         (ui_file::putc): New.
1475         (null_file_fputs): Delete.
1476         (null_file_write_async_safe): Delete.
1477         (ui_file::vprintf): New.
1478         (null_file_delete): Delete.
1479         (null_file::write): New.
1480         (null_file_fseek): Delete.
1481         (null_file::puts): New.
1482         (ui_file_data): Delete.
1483         (null_file::write_async_safe): New.
1484         (gdb_flush, ui_file_isatty): Adjust.
1485         (ui_file_put, ui_file_rewind): Delete.
1486         (ui_file_write): Adjust.
1487         (ui_file_write_for_put): Delete.
1488         (ui_file_write_async_safe, ui_file_read): Adjust.
1489         (ui_file_fseek): Delete.
1490         (fputs_unfiltered): Adjust.
1491         (set_ui_file_flush, set_ui_file_isatty, set_ui_file_rewind)
1492         (set_ui_file_put, set_ui_file_write, set_ui_file_write_async_safe)
1493         (set_ui_file_read, set_ui_file_fputs, set_ui_file_fseek)
1494         (set_ui_file_data): Delete.
1495         (string_file::~string_file, string_file::write)
1496         (struct accumulated_ui_file, do_ui_file_xstrdup, ui_file_xstrdup)
1497         (do_ui_file_as_string, ui_file_as_string): Delete.
1498         (do_ui_file_obsavestring, ui_file_obsavestring): Delete.
1499         (struct mem_file): Delete.
1500         (mem_file_new): Delete.
1501         (stdio_file::stdio_file): New.
1502         (mem_file_delete): Delete.
1503         (stdio_file::stdio_file): New.
1504         (mem_fileopen): Delete.
1505         (stdio_file::~stdio_file): New.
1506         (mem_file_rewind): Delete.
1507         (stdio_file::set_stream): New.
1508         (mem_file_put): Delete.
1509         (stdio_file::open): New.
1510         (mem_file_write): Delete.
1511         (stdio_file_magic, struct stdio_file): Delete.
1512         (stdio_file_new, stdio_file_delete, stdio_file_flush): Delete.
1513         (stdio_file::flush): New.
1514         (stdio_file_read): Rename to ...
1515         (stdio_file::read): ... this.  Adjust.
1516         (stdio_file_write): Rename to ...
1517         (stdio_file::write): ... this.  Adjust.
1518         (stdio_file_write_async_safe): Rename to ...
1519         (stdio_file::write_async_safe) ... this.  Adjust.
1520         (stdio_file_fputs): Rename to ...
1521         (stdio_file::puts) ... this.  Adjust.
1522         (stdio_file_isatty): Delete.
1523         (stdio_file_fseek): Delete.
1524         (stdio_file::isatty): New.
1525         (stderr_file_write): Rename to ...
1526         (stderr_file::write) ... this.  Adjust.
1527         (stderr_file_fputs): Rename to ...
1528         (stderr_file::puts) ... this.  Adjust.
1529         (stderr_fileopen, stdio_fileopen, gdb_fopen): Delete.
1530         (stderr_file::stderr_file): New.
1531         (tee_file_magic): Delete.
1532         (struct tee_file): Delete.
1533         (tee_file::tee_file): New.
1534         (tee_file_new): Delete.
1535         (tee_file::~tee_file): New.
1536         (tee_file_delete): Delete.
1537         (tee_file_flush): Rename to ...
1538         (tee_file::flush): ... this.  Adjust.
1539         (tee_file_write): Rename to ...
1540         (tee_file::write): ... this.  Adjust.
1541         (tee_file::write_async_safe): New.
1542         (tee_file_fputs): Rename to ...
1543         (tee_file::puts): ... this.  Adjust.
1544         (tee_file_isatty): Rename to ...
1545         (tee_file::isatty): ... this.  Adjust.
1546         * ui-file.h (struct obstack, struct ui_file): Don't
1547         forward-declare.
1548         (ui_file_new, ui_file_flush_ftype, set_ui_file_flush)
1549         (ui_file_write_ftype)
1550         (set_ui_file_write, ui_file_fputs_ftype, set_ui_file_fputs)
1551         (ui_file_write_async_safe_ftype, set_ui_file_write_async_safe)
1552         (ui_file_read_ftype, set_ui_file_read, ui_file_isatty_ftype)
1553         (set_ui_file_isatty, ui_file_rewind_ftype, set_ui_file_rewind)
1554         (ui_file_put_method_ftype, ui_file_put_ftype, set_ui_file_put)
1555         (ui_file_delete_ftype, set_ui_file_data, ui_file_fseek_ftype)
1556         (set_ui_file_fseek): Delete.
1557         (ui_file_data, ui_file_delete, ui_file_rewind)
1558         (struct ui_file): New.
1559         (ui_file_up): New.
1560         (class null_file): New.
1561         (null_stream): Declare.
1562         (ui_file_write_for_put, ui_file_put): Delete.
1563         (ui_file_xstrdup, ui_file_as_string, ui_file_obsavestring):
1564         Delete.
1565         (ui_file_fseek, mem_fileopen, stdio_fileopen, stderr_fileopen)
1566         (gdb_fopen, tee_file_new): Delete.
1567         (struct string_file): New.
1568         (struct stdio_file): New.
1569         (stdio_file_up): New.
1570         (struct stderr_file): New.
1571         (class tee_file): New.
1572         * ui-out.c (ui_out::field_stream): Take a 'string_file &' instead
1573         of a 'ui_file *'.  Adjust.
1574         * ui-out.h (class ui_out) <field_stream>: Likewise.
1575         * utils.c (do_ui_file_delete, make_cleanup_ui_file_delete)
1576         (null_stream): Delete.
1577         (error_stream): Take a 'string_file &' instead of a 'ui_file *'.
1578         Adjust.
1579         * utils.h (struct ui_file): Delete forward declaration..
1580         (make_cleanup_ui_file_delete, null_stream): Delete declarations.
1581         (error_stream): Take a 'string_file &' instead of a
1582         'ui_file *'.
1583         * varobj.c (varobj_value_get_print_value): Use string_file.
1584         * xtensa-tdep.c (xtensa_verify_config): Use string_file.
1585         * gdbarch.c: Regenerate.
1586
1587 2017-02-02  Pedro Alves  <palves@redhat.com>
1588
1589         * disasm.c (gdb_disassembler::pretty_print_insn): Rename to...
1590         (gdb_pretty_print_insn): ... this.  Now a free function.  Add back
1591         a 'gdbarch' parameter.  Allocate a mem_fileopen stream here.
1592         Adjust to call gdb_print_insn instead of
1593         gdb_disassembler::print_insn.
1594         (dump_insns, do_mixed_source_and_assembly_deprecated)
1595         (do_mixed_source_and_assembly, do_assembly_only): Add back a
1596         'gdbarch' parameter.  Remove gdb_disassembler parameter.
1597         (gdb_disassembly): Don't allocate a gdb_disassembler here.
1598         * disasm.h (gdb_disassembler::pretty_print_insn): Delete
1599         declaration.
1600         (gdb_pretty_print_insn): Re-add declaration.
1601         * record-btrace.c (btrace_insn_history): Don't allocate a
1602         gdb_disassembler here.  Adjust to call gdb_pretty_print_insn.
1603
1604 2017-02-01  Simon Marchi  <simon.marchi@polymtl.ca>
1605
1606         * disasm.h (gdb_disassembly): Remove file_string parameter.
1607         * disasm.c (gdb_disassembly): Likewise.
1608         * cli/cli-cmds.c (print_disassembly): Adapt.
1609         * mi/mi-cmd-disas.c (mi_cmd_disassemble): Likewise.
1610         * stack.c (do_gdb_disassembly): Likewise.
1611
1612 2017-02-01  Andreas Arnez  <arnez@linux.vnet.ibm.com>
1613
1614         * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): For
1615         DWARF_VALUE_LITERAL, no longer ignore the offset on big-endian
1616         targets.  And if the implicit value is longer than needed, extract
1617         the first bytes instead of the "least significant" ones.
1618
1619 2017-02-01  Markus Metzger  <markus.t.metzger@intel.com>
1620
1621         * btrace.c (btrace_enable): Do not call btrace_add_pc for
1622         BTRACE_FORMAT_PT or if can_access_registers_ptid returns false.
1623         (btrace_fetch): Assert can_access_registers_ptid.
1624         * record-btrace.c (require_btrace_thread, record_btrace_info): Call
1625         validate_registers_access.
1626
1627 2017-02-01  Markus Metzger  <markus.t.metzger@intel.com>
1628
1629         * gdbthread.h (can_access_registers_ptid): New.
1630         * thread.c (can_access_registers_ptid): New.
1631
1632 2017-02-01  Pedro Alves  <palves@redhat.com>
1633
1634         * i386-tdep.c (i386_fast_tracepoint_valid_at): Use gdb_insn_length.
1635
1636 2017-01-31  Pedro Alves  <palves@redhat.com>
1637
1638         * mi/mi-interp.c (mi_breakpoint_created, mi_breakpoint_modified):
1639         Fix typos.
1640
1641 2017-01-31  Pedro Alves  <palves@redhat.com>
1642
1643         * stack.c (print_frame_args): Remove local mem_fileopen stream,
1644         not used.
1645
1646 2017-01-31  Pedro Alves  <palves@redhat.com>
1647
1648         * varobj.c (varobj_value_get_print_value): Remove xstrdup call.
1649
1650 2017-01-31  Pedro Alves  <palves@redhat.com>
1651
1652         * common/scoped_restore.h
1653         (scoped_restore_tmpl::scoped_restore_tmpl): Template on T2, and
1654         change the value's parameter type to T2.
1655         (make_scoped_restore): Likewise.
1656
1657 2017-01-27  Walfred Tedeschi  <walfred.tedeschi@intel.com>
1658             Richard Henderson  <rth@redhat.com>
1659
1660         * amd64-linux-nat.c (PTRACE_ARCH_PRCTL): New define.
1661         (amd64_linux_fetch_inferior_registers): Add case to fetch FS_BASE
1662         GS_BASE for older kernels.
1663         (amd64_linux_store_inferior_registers): Add case to store FS_BASE
1664         GS_BASE for older kernels.
1665         * amd64-linux-tdep.c (amd64_linux_gregset_reg_offset): Add FS_BASE
1666         and GS_BASE to the offset table.
1667         (amd64_linux_register_reggroup_p): Add FS_BASE and GS_BASE to the
1668         system register group.
1669         * amd64-nat.c (amd64_native_gregset_reg_offset): Implements case
1670         for older kernels.
1671         * amd64-tdep.c (amd64_init_abi): Add segment registers for the
1672         amd64 ABI.
1673         * amd64-tdep.h (amd64_regnum): Add AMD64_FSBASE_REGNUM and
1674         AMD64_GSBASE_REGNUM.
1675         (AMD64_NUM_REGS): Set to AMD64_GSBASE_REGNUM + 1.
1676         * features/Makefile (amd64-linux.dat, amd64-avx-linux.dat)
1677         (amd64-mpx-linux.dat, amd64-avx512-linux.dat, x32-linux.dat)
1678         (x32-avx-linux.dat, x32-avx512-linux.dat): Add
1679         i386/64bit-segments.xml in those rules.
1680         * features/i386/64bit-segments.xml: New file.
1681         * features/i386/amd64-avx-mpx-linux.xml: Add 64bit-segments.xml.
1682         * features/i386/amd64-avx-linux.xml: Add 64bit-segments.xml.
1683         * features/i386/amd64-avx512-linux.xml: Add 64bit-segments.xml.
1684         * features/i386/amd64-mpx-linux.xml: Add 64bit-segments.xml.
1685         * features/i386/x32-avx512-linux.xml: Add 64bit-segments.xml.
1686         * features/i386/x32-avx-linux.xml: Add 64bit-segments.xml.
1687         * features/i386/amd64-linux.xml: Add 64bit-segments.xml.
1688         * features/i386/amd64-avx-linux.c: Regenerated.
1689         * features/i386/amd64-avx-mpx-linux.c: Regenerated.
1690         * features/i386/amd64-avx-mpx.c: Regenerated.
1691         * features/i386/amd64-avx512-linux.c: Regenerated.
1692         * features/i386/amd64-linux.c: Regenerated.
1693         * features/i386/amd64-mpx-linux.c: Regenerated.
1694         * features/i386/i386-avx-mpx-linux.c: Regenerated.
1695         * features/i386/i386-avx-mpx.c: Regenerated.
1696         * features/i386/x32-avx-linux.c: Regenerated.
1697         * features/i386/x32-avx512-linux.c: Regenerated.
1698         * regformats/i386/amd64-avx-linux.dat: Regenerated.
1699         * regformats/i386/amd64-avx-mpx-linux.dat: Regenerated.
1700         * regformats/i386/amd64-avx512-linux.dat: Regenerated.
1701         * regformats/i386/amd64-linux.dat: Regenerated.
1702         * regformats/i386/amd64-mpx-linux.dat: Regenerated.
1703         * regformats/i386/x32-avx-linux.dat: Regenerated.
1704         * regformats/i386/x32-avx512-linux.dat: Regenerated.
1705         * regformats/i386/x32-linux.dat: Regenerated.
1706
1707 2017-01-27  Walfred Tedeschi  <walfred.tedeschi@intel.com>
1708
1709         * amd64-linux-tdep.h (AMD64_LINUX_ORIG_RAX_REGNUM):
1710         Set to AMD64_NUM_REGS.
1711
1712 2017-01-27  Walfred Tedeschi  <walfred.tedeschi@intel.com>
1713
1714         * amd64-nat.c (amd64_native_gregset_reg_offset): Simplify logic
1715         that checks validity of a register number.
1716
1717 2017-01-27  Kees Cook  <keescook@google.com>
1718
1719         * gdb/arm-linux-nat.c (arm_linux_fetch_inferior_registers): Call
1720         fetch_fpregs if target has fpa registers.
1721         (arm_linux_store_inferior_registers): Call store_fpregs if target
1722         has fpa registers.
1723
1724 2017-01-26  Andreas Arnez  <arnez@linux.vnet.ibm.com>
1725
1726         * cris-tdep.c (cris_gdbarch_init): Remove check for
1727         info.byte_order and force it to BFD_ENDIAN_LITTLE.
1728
1729 2017-01-26  Antoine Tremblay  <antoine.tremblay@ericsson.com>
1730
1731         * corelow.c (get_core_register_section): Check for regset
1732         existence before checking for REGSET_VARIABLE_SIZE.
1733
1734 2017-01-26  Yao Qi  <yao.qi@linaro.org>
1735             Pedro Alves  <palves@redhat.com>
1736
1737         PR gdb/20939
1738         * disasm.c (gdb_disassembler::dis_asm_memory_error): Don't
1739         call memory_error, save memaddr instead.
1740         (gdb_disassembler::print_insn): If gdbarch_print_insn returns
1741         negative, cal memory_error.
1742         * disasm.h (gdb_disassembler) <m_err_memaddr>: New field.
1743
1744 2017-01-26  Yao Qi  <yao.qi@linaro.org>
1745
1746         * disasm-selftests.c (memory_error_test): New function.
1747         (_initialize_disasm_selftests): Register memory_error_test.
1748
1749 2017-01-26  Yao Qi  <yao.qi@linaro.org>
1750
1751         * Makefile.in (SFILES): Add disasm-selftests.c and
1752         selftest-arch.c.
1753         (COMMON_OBS): Add disasm-selftests.o and selftest-arch.o.
1754         * disasm-selftests.c: New file.
1755         * selftest-arch.c: New file.
1756         * selftest-arch.h: New file.
1757
1758 2017-01-26  Yao Qi  <yao.qi@linaro.org>
1759
1760         * mep-tdep.c (mep_gdb_print_insn): Set info->arch
1761         to bfd_arch_mep.  Don't return 0 if section is not
1762         found.  Call print_insn_mep.
1763
1764 2017-01-26  Pedro Alves  <palves@redhat.com>
1765             Yao Qi  <yao.qi@linaro.org>
1766
1767         * arm-tdep.c: Include "disasm.h".
1768         (gdb_print_insn_arm): Update code to get gdbarch.
1769         * disasm.c (dis_asm_read_memory): Change it to
1770         gdb_disassembler::dis_asm_read_memory.
1771         (dis_asm_memory_error): Likewise.
1772         (dis_asm_print_address): Likewise.
1773         (gdb_pretty_print_insn): Change it to
1774         gdb_disassembler::pretty_print_insn.
1775         (dump_insns): Add one argument gdb_disassemlber.  All
1776         callers updated.
1777         (do_mixed_source_and_assembly_deprecated): Likewise.
1778         (do_mixed_source_and_assembly): Likewise.
1779         (do_assembly_only): Likewise.
1780         (gdb_disassembler::gdb_disassembler): New.
1781         (gdb_disassembler::print_insn): New.
1782         * disasm.h (class gdb_disassembler): New.
1783         (gdb_pretty_print_insn): Remove declaration.
1784         (gdb_disassemble_info): Likewise.
1785         * guile/scm-disasm.c (class gdbscm_disassembler): New.
1786         (gdbscm_disasm_read_memory_worker): Update.
1787         (gdbscm_disasm_read_memory): Update.
1788         (gdbscm_disasm_memory_error): Remove.
1789         (gdbscm_disasm_print_address): Remove.
1790         (gdbscm_disassembler::gdbscm_disassembler): New.
1791         (gdbscm_print_insn_from_port): Update.
1792         * mips-tdep.c: Include disasm.h.
1793         (gdb_print_insn_mips): Update code to get gdbarch.
1794         * record-btrace.c (btrace_insn_history): Update.
1795         * spu-tdep.c: Include disasm.h.
1796         (struct spu_dis_asm_data): Remove.
1797         (struct spu_dis_asm_info): New.
1798         (spu_dis_asm_print_address): Use spu_dis_asm_info to get
1799         SPU id.
1800         (gdb_print_insn_spu): Cast disassemble_info to
1801         spu_dis_asm_info.
1802
1803 2017-01-26  Yao Qi  <yao.qi@linaro.org>
1804
1805         * disasm.c (do_ui_file_delete): Delete.
1806         (gdb_insn_length): Move code creating stream to ...
1807         * utils.c (null_stream): ... here.  New function.
1808         * utils.h (null_stream): Declare.
1809
1810 2017-01-23  Simon Marchi  <simon.marchi@polymtl.ca>
1811
1812         * python/py-inferior.c (find_thread_object): Return directly
1813         from the loop.  Remove "found" variable.
1814
1815 2017-01-21  Joel Brobecker  <brobecker@adacore.com>
1816
1817         GDB 7.12.1 released.
1818
1819 2017-01-20  Simon Marchi  <simon.marchi@ericsson.com>
1820
1821         * python/py-function.c (fnpy_call): Reorder declarations to have
1822         the gdbpy_enter object declared first.
1823         * python/py-xmethods.c (gdbpy_get_xmethod_arg_types): Likewise.
1824
1825 2017-01-20  Simon Marchi  <simon.marchi@ericsson.com>
1826
1827         PR python/21068
1828         * python/python-internal.h (PyMem_RawMalloc): Define for
1829         Python < 3.4.
1830         * python/py-gdb-readline.c (gdbpy_readline_wrapper): Use
1831         PyMem_RawMalloc instead of PyMem_Malloc.
1832
1833 2017-01-20  Mike Wrighton  <mike_wrighton@codesourcery.com>
1834             Luis Machado  <lgustavo@codesourcery.com>
1835
1836         * NEWS (New commands): Mention flash-erase.
1837         (New MI commands): Mention target-flash-erase.
1838         * mi/mi-cmds.c (mi_cmd_target_flash_erase): Add target-flash-erase MI
1839         command.
1840         * mi/mi-cmds.h (mi_cmd_target_flash_erase): New declaration.
1841         * mi/mi-main.c (mi_cmd_target_flash_erase): New function.
1842         * target.c (flash_erase_command): New function.
1843         (initialize_targets): Add new flash-erase command.
1844         * target.h (flash_erase_command): New declaration.
1845
1846 2017-01-20  Joel Brobecker  <brobecker@adacore.com>
1847
1848         * nat/linux-ptrace.c: Only include <sys/procfs.h> if
1849         HAVE_SYS_PROCFS_H is defined.
1850
1851 2017-01-18  Alan Hayward  <alan.hayward@arm.com>
1852
1853         * remote.c (struct cached_reg): Change data into a pointer.
1854         * (stop_reply_dtr): Free data pointers before deleting vector.
1855         (process_stop_reply): Likewise.
1856         (remote_parse_stop_reply): Allocate space for data
1857
1858 2017-01-18  Alan Hayward  <alan.hayward@arm.com>
1859
1860         * amd64-tdep.c (amd64_pseudo_register_read_value): remove
1861         MAX_REGISTER_SIZE.
1862         (amd64_pseudo_register_read_value): Likewise.
1863         * remote.c (fetch_register_using_p): Remove MAX_REGISTER_SIZE.
1864         (store_register_using_P): Likewise.
1865         * regcache.c (regcache_xfer_part): Likewise.
1866
1867 2017-01-16  Ivo Raisr  <ivo.raisr@oracle.com>
1868
1869         Split real and pseudo registers.
1870         * sparc-tdep.h (SPARC_CORE_REGISTERS): New macro.
1871         (sparc32_pseudo_regnum): New enum.
1872         * sparc64-tdep.h (sparc64_pseudo_regnum): New enum.
1873         * sparc-tdep.c (SPARC32_FPU_REGISTERS): New macro.
1874         (SPARC32_CP0_REGISTERS): New macro.
1875         (sparc32_pseudo_register_name): New function.
1876         (sparc32_register_name): Use sparc32_pseudo_register_name.
1877         (sparc32_pseudo_register_type): New function.
1878         (sparc32_register_type): Use sparc32_pseudo_register_type.
1879         (sparc32_pseudo_register_read, sparc32_pseudo_register_write): Handle
1880         pseudo register numbers.
1881         * sparc64-tdep.c SPARC64_FPU_REGISTERS): New macro.
1882         (SPARC64_CP0_REGISTERS): New macro.
1883         (sparc64_pseudo_register_name): New function.
1884         (sparc64_register_name): Use sparc64_pseudo_register_name.
1885         (sparc64_pseudo_register_type): New function.
1886         (sparc64_register_type): Use sparc64_pseudo_register_type.
1887         (sparc64_pseudo_register_read, sparc64_pseudo_register_write): Handle
1888         pseudo register numbers.
1889         (sparc64_store_floating_fields, sparc64_extract_floating_fields,
1890         sparc64_store_arguments): Handle pseudo register numbers.
1891
1892 2017-01-13  Yao Qi  <yao.qi@linaro.org>
1893
1894         * remote.c (REMOTE_DEBUG_MAX_CHAR): New macro.
1895         (putpkt_binary): Print only REMOTE_DEBUG_MAX_CHAR chars in debug
1896         output.
1897         (getpkt_or_notif_sane_1): Likewise.
1898
1899 2017-01-13  Yao Qi  <yao.qi@linaro.org>
1900
1901         * Makefile.in (checker-headers): Use CXX and CXX_DIALET instead
1902         of CC.  Pass "-x c++-header" instead of "-x c".
1903
1904 2017-01-12  Simon Marchi  <simon.marchi@ericsson.com>
1905
1906         * remote.c (remote_can_async_p): Update comment.
1907
1908 2017-01-12  Simon Marchi  <simon.marchi@ericsson.com>
1909
1910         * linux-nat.c (linux_nat_can_async_p): Update comment.
1911
1912 2017-01-12  Simon Marchi  <simon.marchi@ericsson.com>
1913
1914         * serial.c (serial_open): Forget about "pc" and "lpt" serial interface.
1915
1916 2017-01-11  Simon Marchi  <simon.marchi@ericsson.com>
1917
1918         * cli/cli-decode.c (lookup_cmd_1): Fix typo in comment.
1919
1920 2017-01-10  Tom Tromey  <tom@tromey.com>
1921
1922         * python/py-type.c (typy_legacy_template_argument): Update.
1923         * cp-support.h (struct demangle_parse_info) (demangle_parse_info,
1924         ~demangle_parse_info): Declare new members.
1925         (cp_demangled_name_to_comp): Return unique_ptr.
1926         (cp_demangled_name_parse_free)
1927         (make_cleanup_cp_demangled_name_parse_free)
1928         (cp_new_demangle_parse_info): Remove.
1929         * cp-support.c (do_demangled_name_parse_free_cleanup)
1930         (make_cleanup_cp_demangled_name_parse_free): Remove.
1931         (inspect_type, cp_canonicalize_string_full)
1932         (cp_canonicalize_string): Update.
1933         (mangled_name_to_comp): Change return type.
1934         (cp_class_name_from_physname, method_name_from_physname)
1935         (cp_func_name, cp_remove_params): Update.
1936         * cp-name-parser.y (demangle_parse_info): New constructor, from
1937         cp_new_demangle_parse_info.
1938         (~demangle_parse_info): New destructor, from
1939         cp_demangled_name_parse_free.
1940         (cp_merge_demangle_parse_infos): Update.
1941         (cp_demangled_name_to_comp): Change return type.
1942
1943 2017-01-10  Tom Tromey  <tom@tromey.com>
1944
1945         * top.c (prevent_dont_repeat): Change return type.
1946         * python/python.c (execute_gdb_command): Use std::string.
1947         Update.
1948         * guile/guile.c (gdbscm_execute_gdb_command): Update.
1949         * command.h (prevent_dont_repeat): Change return type.
1950         * breakpoint.c (bpstat_do_actions_1): Update.
1951
1952 2017-01-10  Tom Tromey  <tom@tromey.com>
1953
1954         * value.h (scoped_value_mark::~scoped_value_mark): Call
1955         free_to_mark.
1956         (scoped_value_mark::free_to_mark): New method.
1957         * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Use
1958         scoped_value_mark.
1959
1960 2017-01-10  Tom Tromey  <tom@tromey.com>
1961
1962         * python/py-value.c (valpy_dereference, valpy_referenced_value)
1963         (valpy_reference_value, valpy_const_value, valpy_get_address)
1964         (valpy_get_dynamic_type, valpy_lazy_string, valpy_do_cast)
1965         (valpy_getitem, valpy_call, valpy_binop_throw, valpy_negative)
1966         (valpy_absolute, valpy_richcompare_throw): Use scoped_value_mark.
1967         * dwarf2loc.c (dwarf2_loc_desc_get_symbol_read_needs): Use
1968         scoped_value_mark.
1969         * dwarf2-frame.c (execute_stack_op): Use scoped_value_mark.
1970         * value.h (scoped_value_mark): New class.
1971
1972 2017-01-10  Tom Tromey  <tom@tromey.com>
1973
1974         * dwarf2read.c (dwarf2_build_psymtabs): Use psymtab_discarder.
1975         * psympriv.h (make_cleanup_discard_psymtabs): Don't declare.
1976         * psymtab.c (discard_psymtabs_upto): Remove.
1977         (make_cleanup_discard_psymtabs): Remove.
1978         (struct psymtab_state): Remove.
1979
1980 2017-01-10  Tom Tromey  <tom@tromey.com>
1981
1982         * record-full.c (record_full_save_cleanups): Remove.
1983         (record_full_save): Use gdb::unlinker.
1984         * gcore.c (do_bfd_delete_cleanup): Remove.
1985         (gcore_command): Use gdb::unlinker, unique_xmalloc_ptr.  Remove
1986         cleanups.
1987         * dwarf2read.c (unlink_if_set): Remove.
1988         (write_psymtabs_to_index): Use gdb::unlinker.
1989         * common/gdb_unlinker.h: New file.
1990
1991 2017-01-10  Tom Tromey  <tom@tromey.com>
1992
1993         * windows-tdep.c (windows_xfer_shared_library): Update.
1994         * windows-nat.c (windows_make_so): Update.
1995         * utils.h (make_cleanup_bfd_unref): Remove.
1996         * utils.c (do_bfd_close_cleanup, make_cleanup_bfd_unref): Remove.
1997         * symfile.h (symfile_bfd_open)
1998         (find_separate_debug_file_in_section): Return gdb_bfd_ref_ptr.
1999         * symfile.c (read_symbols, symbol_file_add)
2000         (separate_debug_file_exists): Update.
2001         (symfile_bfd_open): Return gdb_bfd_ref_ptr.
2002         (generic_load, reread_symbols): Update.
2003         * symfile-mem.c (symbol_file_add_from_memory): Update.
2004         * spu-linux-nat.c (spu_bfd_open): Return gdb_bfd_ref_ptr.
2005         (spu_symbol_file_add_from_memory): Update.
2006         * solist.h (struct target_so_ops) <bfd_open>: Return
2007         gdb_bfd_ref_ptr.
2008         (solib_bfd_fopen, solib_bfd_open): Return gdb_bfd_ref_ptr.
2009         * solib.c (solib_bfd_fopen, solib_bfd_open): Return
2010         gdb_bfd_ref_ptr.
2011         (solib_map_sections, reload_shared_libraries_1): Update.
2012         * solib-svr4.c (enable_break): Update.
2013         * solib-spu.c (spu_bfd_fopen): Return gdb_bfd_ref_ptr.
2014         * solib-frv.c (enable_break2): Update.
2015         * solib-dsbt.c (enable_break): Update.
2016         * solib-darwin.c (gdb_bfd_mach_o_fat_extract): Return
2017         gdb_bfd_ref_ptr.
2018         (darwin_solib_get_all_image_info_addr_at_init): Update.
2019         (darwin_bfd_open): Return gdb_bfd_ref_ptr.
2020         * solib-aix.c (solib_aix_bfd_open): Return gdb_bfd_ref_ptr.
2021         * record-full.c (record_full_save): Update.
2022         * python/py-objfile.c (objfpy_add_separate_debug_file): Update.
2023         * procfs.c (insert_dbx_link_bpt_in_file): Update.
2024         * minidebug.c (find_separate_debug_file_in_section): Return
2025         gdb_bfd_ref_ptr.
2026         * machoread.c (macho_add_oso_symfile): Change abfd to
2027         gdb_bfd_ref_ptr.
2028         (macho_symfile_read_all_oso): Update.
2029         (macho_check_dsym): Return gdb_bfd_ref_ptr.
2030         (macho_symfile_read): Update.
2031         * jit.c (bfd_open_from_target_memory): Return gdb_bfd_ref_ptr.
2032         (jit_bfd_try_read_symtab): Update.
2033         * gdb_bfd.h (gdb_bfd_open, gdb_bfd_fopen, gdb_bfd_openr)
2034         (gdb_bfd_openw, gdb_bfd_openr_iovec)
2035         (gdb_bfd_openr_next_archived_file, gdb_bfd_fdopenr): Return
2036         gdb_bfd_ref_ptr.
2037         (gdb_bfd_ref_policy): New struct.
2038         (gdb_bfd_ref_ptr): New typedef.
2039         * gdb_bfd.c (gdb_bfd_open, gdb_bfd_fopen, gdb_bfd_openr)
2040         (gdb_bfd_openw, gdb_bfd_openr_iovec)
2041         (gdb_bfd_openr_next_archived_file, gdb_bfd_fdopenr): Return
2042         gdb_bfd_ref_ptr.
2043         * gcore.h (create_gcore_bfd): Return gdb_bfd_ref_ptr.
2044         * gcore.c (create_gcore_bfd): Return gdb_bfd_ref_ptr.
2045         (gcore_command): Update.
2046         * exec.c (exec_file_attach): Update.
2047         * elfread.c (elf_symfile_read): Update.
2048         * dwarf2read.c (dwarf2_get_dwz_file): Update.
2049         (try_open_dwop_file, open_dwo_file): Return gdb_bfd_ref_ptr.
2050         (open_and_init_dwo_file): Update.
2051         (open_dwp_file): Return gdb_bfd_ref_ptr.
2052         (open_and_init_dwp_file): Update.
2053         * corelow.c (core_open): Update.
2054         * compile/compile-object-load.c (compile_object_load): Update.
2055         * common/gdb_ref_ptr.h (ref_ptr::operator->): New operator.
2056         * coffread.c (coff_symfile_read): Update.
2057         * cli/cli-dump.c (bfd_openr_or_error, bfd_openw_or_error): Return
2058         gdb_bfd_ref_ptr.  Rename.
2059         (dump_bfd_file, restore_command): Update.
2060         * build-id.h (build_id_to_debug_bfd): Return gdb_bfd_ref_ptr.
2061         * build-id.c (build_id_to_debug_bfd): Return gdb_bfd_ref_ptr.
2062         (find_separate_debug_file_by_buildid): Update.
2063
2064 2017-01-10  Tom Tromey  <tom@tromey.com>
2065
2066         * common/gdb_ref_ptr.h: New file.
2067         * python/py-ref.h (struct gdbpy_ref_policy): New.
2068         (gdbpy_ref): Now a typedef.
2069
2070 2017-01-10  Tom Tromey  <tom@tromey.com>
2071
2072         * utils.h (make_cleanup_htab_delete): Don't declare.
2073         * utils.c (do_htab_delete_cleanup, make_cleanup_htab_delete):
2074         Remove.
2075         * linespec.c (decode_compound_collector): Add constructor,
2076         destructor.
2077         (lookup_prefix_sym): Remove cleanup.
2078         (symtab_collector): Add constructor, destructor.
2079         (collect_symtabs_from_filename): Remove cleanup.
2080         * disasm.c (do_mixed_source_and_assembly): Use htab_up.
2081         * compile/compile-c-symbols.c (generate_c_for_variable_locations):
2082         Use htab_up.
2083         * gnu-v3-abi.c (gnuv3_print_vtable): Use htab_up.
2084         * dwarf2read.c (dw2_expand_symtabs_matching)
2085         (dw2_map_symbol_filenames, dwarf_decode_macros)
2086         (write_psymtabs_to_index): Use htab_up.
2087         * dwarf2loc.c (func_verify_no_selftailcall)
2088         (call_site_find_chain_1, func_verify_no_selftailcall)
2089         (chain_candidate, call_site_find_chain_1): Use std::unordered_set,
2090         std::vector, gdb::unique_xmalloc_ptr.
2091         (call_sitep): Remove typedef.
2092         (dwarf2_locexpr_baton_eval): Remove unused variable.
2093
2094 2017-01-10  Tom Tromey  <tom@tromey.com>
2095
2096         * python/python-internal.h (make_cleanup_py_decref)
2097         (make_cleanup_py_xdecref): Don't declare.
2098         * python/py-utils.c (py_decref, make_cleanup_py_decref)
2099         (py_xdecref, make_cleanup_py_xdecref): Remove.
2100
2101 2017-01-10  Tom Tromey  <tom@tromey.com>
2102
2103         * python/py-framefilter.c (py_mi_print_variables): Use gdbpy_ref.
2104         (py_print_locals, enumerate_locals, py_print_args): Use gdbpy_ref.
2105
2106 2017-01-10  Tom Tromey  <tom@tromey.com>
2107
2108         * python/py-framefilter.c (enumerate_args): Use gdbpy_ref.
2109
2110 2017-01-10  Tom Tromey  <tom@tromey.com>
2111
2112         * python/py-utils.c (unicode_to_encoded_string)
2113         (python_string_to_target_string)
2114         (python_string_to_target_python_string)
2115         (python_string_to_host_string, gdbpy_obj_to_string)
2116         (get_addr_from_python): Use gdbpy_ref.
2117
2118 2017-01-10  Tom Tromey  <tom@tromey.com>
2119
2120         * python/py-unwind.c (pyuw_object_attribute_to_pointer): Use
2121         gdbpy_ref.
2122
2123 2017-01-10  Tom Tromey  <tom@tromey.com>
2124
2125         * python/python.c (eval_python_command, gdbpy_decode_line)
2126         (gdbpy_run_events, gdbpy_start_type_printers)
2127         (gdbpy_apply_type_printers): Use gdbpy_ref.
2128
2129 2017-01-10  Tom Tromey  <tom@tromey.com>
2130
2131         * python/py-param.c (get_doc_string, compute_enum_values): Use
2132         gdbpy_ref.
2133
2134 2017-01-10  Tom Tromey  <tom@tromey.com>
2135
2136         * python/py-inferior.c (find_thread_object, build_inferior_list):
2137         Use gdbpy_ref.
2138
2139 2017-01-10  Tom Tromey  <tom@tromey.com>
2140
2141         * python/py-framefilter.c (py_print_frame): Use gdbpy_ref.
2142
2143 2017-01-10  Tom Tromey  <tom@tromey.com>
2144
2145         * python/py-finishbreakpoint.c (bpfinishpy_out_of_scope): Use
2146         gdbpy_ref.
2147
2148 2017-01-10  Tom Tromey  <tom@tromey.com>
2149
2150         * python/py-cmd.c (cmdpy_completer_helper): Use gdbpy_ref.  Remove
2151         extra incref.
2152         (cmdpy_completer_handle_brkchars, cmdpy_completer, cmdpy_init):
2153         Use gdbpy_ref.
2154
2155 2017-01-10  Tom Tromey  <tom@tromey.com>
2156
2157         * python/py-breakpoint.c (gdbpy_breakpoint_cond_says_stop): Use
2158         gdbpy_ref.
2159
2160 2017-01-10  Tom Tromey  <tom@tromey.com>
2161
2162         * python/py-arch.c (archpy_disassemble): Use gdbpy_ref.  Don't
2163         decref results of PyArg_ParseTupleAndKeywords.
2164
2165 2017-01-10  Tom Tromey  <tom@tromey.com>
2166
2167         * python/python.c (python_run_simple_file): Use
2168         unique_xmalloc_ptr, gdbpy_ref.
2169
2170 2017-01-10  Tom Tromey  <tom@tromey.com>
2171
2172         * python/py-prettyprint.c (print_stack_unless_memory_error)
2173         (print_string_repr, print_children): Use gdbpy_ref.
2174         (dummy_python_frame): New class.
2175         (dummy_python_frame::dummy_python_frame): Rename from
2176         push_dummy_python_frame.
2177         (py_restore_tstate): Remove.
2178
2179 2017-01-10  Tom Tromey  <tom@tromey.com>
2180
2181         * python/py-framefilter.c (py_print_frame): Use gdbpy_ref.
2182
2183 2017-01-10  Tom Tromey  <tom@tromey.com>
2184
2185         * python/python.c (ensure_python_env, restore_python_env):
2186         Remove.
2187         * python/python-internal.h (ensure_python_env): Don't declare.
2188         * varobj.h (varobj_ensure_python_env): Don't declare.
2189         * varobj.c (varobj_ensure_python_env): Remove.
2190
2191 2017-01-10  Tom Tromey  <tom@tromey.com>
2192
2193         * varobj.c (varobj_value_get_print_value): Use
2194         gdbpy_enter_varobj.
2195
2196 2017-01-10  Tom Tromey  <tom@tromey.com>
2197
2198         * python/py-prettyprint.c (print_string_repr, print_children):
2199         Update.
2200         * python/py-lazy-string.c (gdbpy_extract_lazy_string): Change type
2201         of "encoding".
2202         * varobj.c (varobj_value_get_print_value): Update.
2203         * python/python-internal.h (gdbpy_extract_lazy_string): Update.
2204
2205 2017-01-10  Tom Tromey  <tom@tromey.com>
2206
2207         * varobj.c (varobj_get_display_hint)
2208         (dynamic_varobj_has_child_method, install_new_value_visualizer)
2209         (varobj_set_visualizer, free_variable): Use
2210         gdbpy_enter_varobj.
2211
2212 2017-01-10  Tom Tromey  <tom@tromey.com>
2213
2214         * python/python.c (python_command): Use gdbpy_enter, gdbpy_ref.
2215         (do_finish_initialization): New function.  Use gdbpy_ref.
2216         (gdbpy_finish_initialization): Use gdbpy_enter.  Call
2217         do_finish_initialization.
2218
2219 2017-01-10  Tom Tromey  <tom@tromey.com>
2220
2221         * python/py-param.c (get_set_value, get_show_value): Use
2222         gdbpy_enter, gdbpy_ref.
2223
2224 2017-01-10  Tom Tromey  <tom@tromey.com>
2225
2226         * python/py-function.c (fnpy_call): Use gdbpy_enter, gdbpy_ref.
2227
2228 2017-01-10  Tom Tromey  <tom@tromey.com>
2229
2230         * python/py-cmd.c (cmdpy_function): Use gdbpy_enter, gdbpy_ref.
2231
2232 2017-01-10  Tom Tromey  <tom@tromey.com>
2233
2234         * python/py-varobj.c (py_varobj_iter_dtor, py_varobj_iter_next):
2235         Use gdbpy_enter_varobj.
2236
2237 2017-01-10  Tom Tromey  <tom@tromey.com>
2238
2239         * varobj.c (gdbpy_enter_varobj): New constructor.
2240         * python/python-internal.h (gdbpy_enter_varobj): New class.
2241         * python/py-varobj.c (py_varobj_get_iterator): Use
2242         gdbpy_enter_varobj.
2243
2244 2017-01-10  Tom Tromey  <tom@tromey.com>
2245
2246         * python/py-xmethods.c (gdbpy_get_xmethod_result_type): Use
2247         gdbpy_enter, gdbpy_ref, unique_xmalloc_ptr.
2248         (gdbpy_invoke_xmethod): Use gdbpy_ref, gdbpy_enter.
2249         (gdbpy_get_xmethod_arg_types): Use gdbpy_ref,
2250         unique_xmalloc_ptr.
2251         (gdbpy_get_xmethod_arg_types): Use gdbpy_ref, gdbpy_enter.
2252
2253 2017-01-10  Tom Tromey  <tom@tromey.com>
2254
2255         * python/py-xmethods.c (invoke_match_method): Use
2256         gdbpy_ref.
2257
2258 2017-01-10  Tom Tromey  <tom@tromey.com>
2259
2260         * python/py-xmethods.c (gdbpy_get_matching_xmethod_workers): use
2261         gdbpy_enter, gdbpy_ref.
2262
2263 2017-01-10  Tom Tromey  <tom@tromey.com>
2264
2265         * python/python.c (python_interactive_command): Use gdbpy_enter.
2266
2267 2017-01-10  Tom Tromey  <tom@tromey.com>
2268
2269         * python/python.c (gdbpy_before_prompt_hook): Use gdbpy_enter,
2270         gdbpy_ref.
2271
2272 2017-01-10  Tom Tromey  <tom@tromey.com>
2273
2274         * python/py-prettyprint.c (gdbpy_apply_val_pretty_printer): Use
2275         gdbpy_enter, gdbpy_ref, unique_xmalloc_ptr.
2276
2277 2017-01-10  Tom Tromey  <tom@tromey.com>
2278
2279         * utils.h (htab_deleter): New struct.
2280         (htab_up): New typedef.
2281         * python/py-framefilter.c (gdbpy_apply_frame_filter): Use
2282         gdbpy_enter, gdbpy_ref, htab_up.
2283
2284 2017-01-10  Tom Tromey  <tom@tromey.com>
2285
2286         * python/py-unwind.c (pending_frame_invalidate): Remove.
2287         (pyuw_sniffer): Use gdbpy_enter and gdbpy_ref.
2288
2289 2017-01-10  Tom Tromey  <tom@tromey.com>
2290
2291         * python/py-xmethods.c (gdbpy_free_xmethod_worker_data)
2292         (gdbpy_clone_xmethod_worker_data): Use gdbpy_enter.
2293
2294 2017-01-10  Tom Tromey  <tom@tromey.com>
2295
2296         * python/py-type.c (save_objfile_types): Use gdbpy_enter.
2297
2298 2017-01-10  Tom Tromey  <tom@tromey.com>
2299
2300         * python/python.c (gdbpy_eval_from_control_command)
2301         (gdbpy_source_script, gdbpy_run_events)
2302         (gdbpy_source_objfile_script, gdbpy_execute_objfile_script)
2303         (gdbpy_free_type_printers, gdbpy_finish_initialization): Use
2304         gdbpy_enter.
2305
2306 2017-01-10  Tom Tromey  <tom@tromey.com>
2307
2308         * python/py-progspace.c (py_free_pspace): Use gdbpy_enter.
2309
2310 2017-01-10  Tom Tromey  <tom@tromey.com>
2311
2312         * python/py-objfile.c (py_free_objfile): Use gdbpy_enter.
2313
2314 2017-01-10  Tom Tromey  <tom@tromey.com>
2315
2316         * python/py-inferior.c (python_on_normal_stop, python_on_resume)
2317         (python_on_inferior_call_pre, python_on_inferior_call_post)
2318         (python_on_memory_change, python_on_register_change)
2319         (python_inferior_exit, python_new_objfile, add_thread_object)
2320         (delete_thread_object, py_free_inferior): Use gdbpy_enter.
2321
2322 2017-01-10  Tom Tromey  <tom@tromey.com>
2323
2324         * python/py-finishbreakpoint.c (bpfinishpy_handle_stop)
2325         (bpfinishpy_handle_exit): Use gdbpy_enter.
2326
2327 2017-01-10  Tom Tromey  <tom@tromey.com>
2328
2329         * python/py-cmd.c (cmdpy_destroyer)
2330         (cmdpy_completer_handle_brkchars, cmdpy_completer): Use
2331         gdbpy_enter.
2332
2333 2017-01-10  Tom Tromey  <tom@tromey.com>
2334
2335         * python/py-breakpoint.c (gdbpy_breakpoint_cond_says_stop): Use
2336         gdbpy_enter.
2337         (gdbpy_breakpoint_has_cond): Likewise.
2338
2339 2017-01-10  Tom Tromey  <tom@tromey.com>
2340
2341         * python/python.c (gdbpy_enter): New constructor.
2342         (~gdbpy_enter): New destructor.
2343         (restore_python_env, ensure_python_env): Rewrite.
2344         * python/python-internal.h (gdbpy_enter): New class.
2345
2346 2017-01-10  Tom Tromey  <tom@tromey.com>
2347
2348         * python/py-symbol.c (gdbpy_lookup_symbol): Use gdbpy_ref.
2349
2350 2017-01-10  Tom Tromey  <tom@tromey.com>
2351
2352         * python/py-value.c (value_has_field, get_field_flag)
2353         (get_field_type, valpy_getitem, convert_value_from_python): Use
2354         gdbpy_ref.
2355
2356 2017-01-10  Tom Tromey  <tom@tromey.com>
2357
2358         * python/python.c (gdbpy_progspaces, gdbpy_objfiles): Use
2359         gdbpy_ref.
2360
2361 2017-01-10  Tom Tromey  <tom@tromey.com>
2362
2363         * python/py-prettyprint.c (search_pp_list)
2364         (find_pretty_printer_from_objfiles)
2365         (find_pretty_printer_from_progspace)
2366         (find_pretty_printer_from_gdb, find_pretty_printer)
2367         (gdbpy_get_display_hint, gdbpy_get_varobj_pretty_printer): Use
2368         gdbpy_ref.
2369
2370 2017-01-10  Tom Tromey  <tom@tromey.com>
2371
2372         * python/py-param.c (call_doc_function): Use gdbpy_ref.
2373
2374 2017-01-10  Tom Tromey  <tom@tromey.com>
2375
2376         * python/py-linetable.c (build_line_table_tuple_from_pcs)
2377         (ltpy_get_all_source_lines): Use gdbpy_ref.
2378
2379 2017-01-10  Tom Tromey  <tom@tromey.com>
2380
2381         * python/py-framefilter.c (extract_sym, extract_value)
2382         (get_py_iter_from_func, bootstrap_python_frame_filters): Use
2383         gdbpy_ref.
2384
2385 2017-01-10  Tom Tromey  <tom@tromey.com>
2386
2387         * python/py-breakpoint.c (gdbpy_breakpoints): Use gdbpy_ref.
2388
2389 2017-01-10  Tom Tromey  <tom@tromey.com>
2390
2391         * python/py-inferior.c (gdbpy_inferiors): Use gdbpy_ref.
2392
2393 2017-01-10  Tom Tromey  <tom@tromey.com>
2394
2395         * python/py-function.c (convert_values_to_python, fnpy_init): Use
2396         gdbpy_ref.
2397
2398 2017-01-10  Tom Tromey  <tom@tromey.com>
2399
2400         * python/py-cmd.c (gdbpy_string_to_argv): Use gdbpy_ref.
2401
2402 2017-01-10  Tom Tromey  <tom@tromey.com>
2403
2404         * python/py-type.c (convert_field, make_fielditem, typy_fields)
2405         (typy_range): Use gdbpy_ref.
2406
2407 2017-01-10  Tom Tromey  <tom@tromey.com>
2408
2409         * python/py-threadevent.c (create_thread_event_object): Use
2410         gdbpy_ref.
2411         * python/py-stopevent.c (create_stop_event_object): Simplify.
2412         (emit_stop_event): Use gdbpy_ref.
2413         * python/py-signalevent.c (create_signal_event_object): Use
2414         gdbpy_ref.
2415         * python/py-newobjfileevent.c (create_new_objfile_event_object)
2416         (emit_new_objfile_event, create_clear_objfiles_event_object)
2417         (emit_clear_objfiles_event): Use gdbpy_ref.
2418         * python/py-infevents.c (create_inferior_call_event_object)
2419         (create_register_changed_event_object)
2420         (create_memory_changed_event_object, emit_inferior_call_event)
2421         (emit_memory_changed_event, emit_register_changed_event): Use
2422         gdbpy_ref.
2423         * python/py-exitedevent.c (create_exited_event_object)
2424         (emit_exited_event): Use gdbpy_ref.
2425         * python/py-event.h (evpy_emit_event): Remove
2426         CPYCHECKER_STEALS_REFERENCE_TO_ARG annotation.
2427         * python/py-event.c (evpy_emit_event): Use gdbpy_ref.
2428         * python/py-continueevent.c (emit_continue_event): Use
2429         gdbpy_ref.
2430         * python/py-breakpoint.c (gdbpy_breakpoint_created)
2431         (gdbpy_breakpoint_deleted, gdbpy_breakpoint_modified): Use
2432         gdbpy_ref.
2433         * python/py-bpevent.c (create_breakpoint_event_object): Use
2434         gdbpy_ref.
2435
2436 2017-01-10  Tom Tromey  <tom@tromey.com>
2437
2438         * python/py-ref.h: New file.
2439
2440 2017-01-10  Simon Marchi  <simon.marchi@ericsson.com>
2441
2442         * cli-out.c (cli_ui_out::do_redirect): Change return type to
2443         void.
2444         * cli-out.h (cli_ui_out::do_redirect): Likewise.
2445         * mi/mi-out.c (mi_ui_out::do_redirect): Likewise.
2446         * mi/mi-out.h (mi_ui_out::do_redirect): Likewise.
2447         * ui-out.c (ui_out::redirect): Likewise.
2448         * ui-out.h (ui_out::redirect, ui_out::do_redirect): Likewise.
2449         * cli/cli-logging.c (set_logging_redirect): Update call site of
2450         ui_out::redirect.
2451         (handle_redirections): Likewise.
2452         * scm-ports.c (ioscm_with_output_to_port_worker): Likewise.
2453         * top.c (execute_command_to_string): Likewise.
2454         * utils.c (do_ui_out_redirect_pop): Likewise.
2455
2456 2017-01-10  Simon Marchi  <simon.marchi@ericsson.com>
2457
2458         * stack.c (_initialize_stack): Update "frame" command help message.
2459
2460 2017-01-08  Iain Buclaw  <ibuclaw@gdcproject.org>
2461
2462         * d-exp.y (CastExpression): Emit UNOP_CAST_TYPE.
2463
2464 2017-01-06  Yao Qi  <yao.qi@linaro.org>
2465
2466         * x86-linux-nat.h: Include gdb_proc_service.h.
2467
2468 2017-01-06  Yao Qi  <yao.qi@linaro.org>
2469
2470         * ser-base.h: Include serial.h.
2471
2472 2017-01-06  Yao Qi  <yao.qi@linaro.org>
2473
2474         * ppc-linux-tdep.h: Include ppc-tdep.h.
2475
2476 2017-01-06  Yao Qi  <yao.qi@linaro.org>
2477
2478         * nat/amd64-linux-siginfo.h: Include signal.h.
2479
2480 2017-01-06  Yao Qi  <yao.qi@linaro.org>
2481
2482         * nat/aarch64-linux-hw-point.h: Include break-common.h.
2483
2484 2017-01-06  Yao Qi  <yao.qi@linaro.org>
2485
2486         * mi/mi-parse.h: Include mi-cmds.h.
2487
2488 2017-01-06  Yao Qi  <yao.qi@linaro.org>
2489
2490         * inf-loop.c: Don't include "target.h".
2491         * inf-loop.h: Include it here.
2492
2493 2017-01-06  Yao Qi  <yao.qi@linaro.org>
2494
2495         * dfp.h: Include "dboulest.h" and "expression.h".
2496
2497 2017-01-06  Yao Qi  <yao.qi@linaro.org>
2498
2499         * ax-gdb.h: Include "ax.h".
2500
2501 2017-01-06  Yao Qi  <yao.qi@linaro.org>
2502
2503         * Makefile.in (HFILES_NO_SRCDIR): Replace gdb_ptrace.h
2504         with nat/gdb_ptrace.h.
2505
2506 2017-01-05  Yao Qi  <yao.qi@linaro.org>
2507
2508         * mips-fbsd-tdep.c (mips_fbsd_sigframe_init): Move && to
2509         new line.
2510         (mips64_fbsd_sigframe_init): Likewise.
2511
2512 2017-01-04  John Baldwin  <jhb@FreeBSD.org>
2513
2514         * mips-fbsd-tdep.c (_initialize_mips_fbsd_tdep): Use
2515         GDB_OSABI_FREEBSD instead of GDB_OSABI_FREEBSD_ELF.
2516
2517 2017-01-04  John Baldwin  <jhb@FreeBSD.org>
2518
2519         * Makefile.in (ALLDEPFILES): Add mips-fbsd-nat.c.
2520         * NEWS: Mention new FreeBSD/mips native configuration.
2521         * config/mips/fbsd.mh: New file.
2522         * configure.host: Add mips*-*-freebsd*.
2523         * mips-fbsd-nat.c: New file.
2524
2525 2017-01-04  John Baldwin  <jhb@FreeBSD.org>
2526
2527         * Makefile.in (ALL_TARGET_OBS): Add mips-fbsd-tdep.o.
2528         (ALLDEPFILES): Add mips-fbsd-tdep.c.
2529         * NEWS: Mention new FreeBSD/mips target.
2530         * configure.tgt: Add mips*-*-freebsd*.
2531         * mips-fbsd-tdep.c: New file.
2532         * mips-fbsd-tdep.h: New file.
2533
2534 2017-01-04  Yao Qi  <yao.qi@linaro.org>
2535
2536         * dwarf2loc.c (write_pieced_value): Don't use VALUE_FRAME_ID (to),
2537         use c->frame_id when the piece location is DWARF_VALUE_REGISTER.
2538
2539 2017-01-01  Joel Brobecker  <brobecker@adacore.com>
2540
2541         Update copyright year range in all GDB files.
2542
2543 2017-01-01  Joel Brobecker  <brobecker@adacore.com>
2544
2545         * config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2016.
2546
2547 For older changes see ChangeLog-2016.
2548 \f
2549 Local Variables:
2550 mode: change-log
2551 left-margin: 8
2552 fill-column: 74
2553 version-control: never
2554 coding: utf-8
2555 End: