gdb: Disable -Werror for -Wmaybe-uninitialized
[external/binutils.git] / gdb / ChangeLog
1 2017-05-05  Pedro Alves  <palves@redhat.com>
2
3         * warning.m4 (build_warnings): Add -Wno-error=maybe-uninitialized.
4         * configure: Regenerate.
5
6 2017-05-04  Pedro Alves  <palves@redhat.com>
7
8         * Makefile.in (SFILES): Add progspace-and-thread.c.
9         (HFILES_NO_SRCDIR): Add progspace-and-thread.h.
10         (COMMON_OBS): Add progspace-and-thread.o.
11         * breakpoint.c: Include "progspace-and-thread.h".
12         (update_inserted_breakpoint_locations)
13         (insert_breakpoint_locations, create_longjmp_master_breakpoint):
14         Use scoped_restore_current_pspace_and_thread.
15         (create_std_terminate_master_breakpoint): Use
16         scoped_restore_current_program_space.
17         (remove_breakpoint): Use scoped_restore_current_pspace_and_thread.
18         (print_breakpoint_location): Use
19         scoped_restore_current_program_space.
20         (bp_loc_is_permanent): Use
21         scoped_restore_current_pspace_and_thread.
22         (resolve_sal_pc): Use scoped_restore_current_pspace_and_thread.
23         (download_tracepoint_locations): Use
24         scoped_restore_current_pspace_and_thread.
25         (breakpoint_re_set): Use scoped_restore_current_pspace_and_thread.
26         * exec.c (exec_close_1): Use scoped_restore_current_program_space.
27         (enum step_over_calls_kind): Moved from inferior.h.
28         (class scoped_restore_current_thread): New class.
29         * gdbthread.h (make_cleanup_restore_current_thread): Delete
30         declaration.
31         (scoped_restore_current_thread): New class.
32         * infcmd.c: Include "common/gdb_optional.h".
33         (continue_1, proceed_after_attach): Use
34         scoped_restore_current_thread.
35         (notice_new_inferior): Use scoped_restore_current_thread.
36         * inferior.c: Include "progspace-and-thread.h".
37         (restore_inferior, save_current_inferior): Delete.
38         (add_inferior_command, clone_inferior_command): Use
39         scoped_restore_current_pspace_and_thread.
40         * inferior.h (scoped_restore_current_inferior): New class.
41         * infrun.c: Include "progspace-and-thread.h" and
42         "common/gdb_optional.h".
43         (follow_fork_inferior): Use
44         scoped_restore_current_pspace_and_thread.
45         (scoped_restore_exited_inferior): New class.
46         (handle_vfork_child_exec_or_exit): Use
47         scoped_restore_exited_inferior,
48         scoped_restore_current_pspace_and_thread,
49         scoped_restore_current_thread and scoped_restore.
50         (fetch_inferior_event): Use scoped_restore_current_thread.
51         * linespec.c (decode_line_full, decode_line_1): Use
52         scoped_restore_current_program_space.
53         * mi/mi-main.c: Include "progspace-and-thread.h".
54         (exec_continue): Use scoped_restore_current_thread.
55         (mi_cmd_exec_run): Use scoped_restore_current_pspace_and_thread.
56         (mi_cmd_trace_frame_collected): Use scoped_restore_current_thread.
57         * proc-service.c (ps_pglobal_lookup): Use
58         scoped_restore_current_program_space.
59         * progspace-and-thread.c: New file.
60         * progspace-and-thread.h: New file.
61         * progspace.c (release_program_space, clone_program_space): Use
62         scoped_restore_current_program_space.
63         (restore_program_space, save_current_program_space)
64         (save_current_space_and_thread): Delete.
65         (switch_to_program_space_and_thread): Moved to
66         progspace-and-thread.c.
67         * progspace.h (save_current_program_space)
68         (save_current_space_and_thread): Delete declarations.
69         (scoped_restore_current_program_space): New class.
70         * remote.c (remote_btrace_maybe_reopen): Use
71         scoped_restore_current_thread.
72         * symtab.c: Include "progspace-and-thread.h".
73         (skip_prologue_sal): Use scoped_restore_current_pspace_and_thread.
74         * thread.c (print_thread_info_1): Use
75         scoped_restore_current_thread.
76         (struct current_thread_cleanup): Delete.
77         (do_restore_current_thread_cleanup)
78         (restore_current_thread_cleanup_dtor): Rename/convert both to ...
79         (scoped_restore_current_thread::~scoped_restore_current_thread):
80         ... this new dtor.
81         (make_cleanup_restore_current_thread): Rename/convert to ...
82         (scoped_restore_current_thread::scoped_restore_current_thread):
83         ... this new ctor.
84         (thread_apply_all_command): Use scoped_restore_current_thread.
85         (thread_apply_command): Use scoped_restore_current_thread.
86         * tracepoint.c (tdump_command): Use scoped_restore_current_thread.
87         * varobj.c (value_of_root_1): Use scoped_restore_current_thread.
88
89 2017-05-04  Pedro Alves  <palves@redhat.com>
90
91         * thread.c (make_cleanup_restore_current_thread): Move
92         find_thread_ptid call before the is_stopped call.  Assert that the
93         thread is found.  Replace is_stopped call by checking the thread's
94         state directly.  Remove unnecessary NULL-thread check.
95
96 2017-05-04  Pedro Alves  <palves@redhat.com>
97
98         * corelow.c (thread_section_name): New class.
99         (get_core_register_section, get_core_siginfo): Use it.
100
101 2017-05-04  Andreas Arnez  <arnez@linux.vnet.ibm.com>
102
103         * corelow.c (sniff_core_bfd): Remove extra semicolon.
104         (get_core_register_section): Remove xfree of NULL pointer.
105
106 2017-05-03  Alan Hayward  <alan.hayward@arm.com>
107
108         * frv-linux-tdep.c (frv_linux_supply_gregset): Use raw_supply_zeroed.
109         * regcache.c (regcache::raw_supply_zeroed): New function.
110         * regcache.h (regcache::raw_supply_zeroed): New declaration.
111
112 2017-05-03  Simon Marchi  <simon.marchi@ericsson.com>
113
114         * gdbarch.sh: Remove commented out definition of
115         TARGET_CHAR_BIT.
116         * gdbarch.h: Re-generate.
117
118 2017-05-03  Sergio Durigan Junior  <sergiodj@redhat.com>
119
120         * configure: Regenerate.
121
122 2017-05-02  Simon Marchi  <simon.marchi@ericsson.com>
123
124         * solib-target.c (solib_target_relocate_section_addresses):
125         Remove num_section_bases, num_bases, segment_bases variables.
126
127 2017-05-02  Simon Marchi  <simon.marchi@polymtl.ca>
128
129         * common/gdb_vecs.h (DEF_VEC_I (CORE_ADDR)): Remove.
130
131 2017-05-02  Simon Marchi  <simon.marchi@polymtl.ca>
132
133         * solib-target.c: Include <vector>
134         (struct lm_info_target) <~lm_info_target>: Remove.
135         <segment_bases, section_bases>: Change type to
136         std::vector<CORE_ADDR>.
137         (library_list_start_segment, library_list_start_section,
138         library_list_end_library,
139         solib_target_relocate_section_addresses): Adjust.
140
141 2017-05-02  Simon Marchi  <simon.marchi@polymtl.ca>
142
143         * gdbarch.sh (software_single_step): Change return type to
144         std::vector<CORE_ADDR>.
145         * gdbarch.c, gdbarch.h: Re-generate.
146         * arch/arm-get-next-pcs.c (thumb_deal_with_atomic_sequence_raw):
147         Adjust.
148         (arm_deal_with_atomic_sequence_raw): Adjust.
149         (thumb_get_next_pcs_raw): Adjust.
150         (arm_get_next_pcs_raw): Adjust.
151         (arm_get_next_pcs): Adjust.
152         * arch/arm-get-next-pcs.h (arm_get_next_pcs): Adjust.
153         * aarch64-tdep.c (aarch64_software_single_step): Adjust.
154         * alpha-tdep.c (alpha_deal_with_atomic_sequence): Adjust.
155         (alpha_software_single_step): Adjust.
156         * alpha-tdep.h (alpha_software_single_step): Adjust.
157         * arm-linux-tdep.c (arm_linux_software_single_step): Adjust.
158         * arm-tdep.c (arm_software_single_step): Adjust.
159         (arm_breakpoint_kind_from_current_state): Adjust.
160         * arm-tdep.h (arm_software_single_step): Adjust.
161         * breakpoint.c (insert_single_step_breakpoint): Adjust.
162         * cris-tdep.c (cris_software_single_step): Adjust.
163         * mips-tdep.c (mips_deal_with_atomic_sequence): Adjust.
164         (micromips_deal_with_atomic_sequence): Adjust.
165         (deal_with_atomic_sequence): Adjust.
166         (mips_software_single_step): Adjust.
167         * mips-tdep.h (mips_software_single_step): Adjust.
168         * moxie-tdep.c (moxie_software_single_step): Adjust.
169         * nios2-tdep.c (nios2_software_single_step): Adjust.
170         * ppc-tdep.h (ppc_deal_with_atomic_sequence): Adjust.
171         * rs6000-aix-tdep.c (rs6000_software_single_step): Adjust.
172         * rs6000-tdep.c (ppc_deal_with_atomic_sequence): Adjust.
173         * s390-linux-tdep.c (s390_software_single_step): Adjust.
174         * sparc-tdep.c (sparc_software_single_step): Adjust.
175         * spu-tdep.c (spu_software_single_step): Adjust.
176         * tic6x-tdep.c (tic6x_software_single_step): Adjust.
177
178 2017-05-02  Simon Marchi  <simon.marchi@polymtl.ca>
179
180         * gdbarch.sh: Use semi-colon as field separator instead of colon.
181         * gdbarch.h: Re-generate.
182
183 2017-05-01  Tim Wiederhake  <tim.wiederhake@intel.com>
184
185         * Makefile.in (SUBDIR_PYTHON_OBS): Add py-instruction.o.
186         (SUBDIR_PYTHON_SRCS): Add py-instruction.c.
187         * python/py-instruction.c, python/py-instruction.h: New file.
188         * python/py-record.c: Add py-instruction.h include.
189         (gdbpy_initialize_record): Make gdb.Instruction a super class of
190         gdb.RecordInstruction.
191         * python/python-internal.h: Add gdbpy_initialize_instruction
192         declaration.
193         * python/python.c (do_start_initialization): Add
194         gdbpy_initialize_instruction.
195
196 2017-05-01  Tim Wiederhake  <tim.wiederhake@intel.com>
197
198         * python/py-record-btrace.c (BTPY_REQUIRE_VALID_CALL, btpy_call_type):
199         Remove.
200         (btrace_func_from_recpy_func): New function.
201         (btpy_call_new, btpy_number, btpy_hash, btpy_richcompare): Remove.
202         (btpy_call_level, btpy_call_symbol, btpy_call_instructions,
203         btpy_call_up, btpy_call_prev_sibling, btpy_call_next_sibling): Rename to ...
204         (recpy_bt_func_level, recpy_bt_func_symbol, recpy_bt_func_instructions,
205         recpy_bt_func_up, recpy_bt_func_prev, recpy_bt_func_next): This.
206         Also, use new helper functions.
207         (btpy_list_item): Use new helper functions.
208         (recpy_bt_function_call_history): Use new type name.
209         (btpy_call_getset): Remove.
210         (gdbpy_initialize_btrace): Remove code to initialize
211         gdb.BtraceFunctionCall.
212         * python/py-record-btrace.h (recpy_bt_func_number, recpy_btb_func_level,
213         recpy_btb_func_symbol, recpy_bt_func_instructions, recpy_bt_func_up,
214         recpy_bt_func_prev, recpy_bt_func_next): New export.
215         * python/py-record.c (recpy_func_type): New static object.
216         (recpy_func_new, recpy_func_level, recpy_func_symbol,
217         recpy_func_instructions, recpy_func_up, recpy_func_prev,
218         recpy_func_next): New function.
219         (recpy_element_hash, recpy_element_richcompare): Updated comment.
220         (recpy_func_getset): New static object.
221         (gdbpy_initialize_record): Add code to initialize gdb.RecordInstruction.
222         * python/py-record.h (recpy_func_type, recpy_func_new): New export.
223
224 2017-05-01  Tim Wiederhake  <tim.wiederhake@intel.com>
225
226         * python/py-record-btrace.c (BTPY_REQUIRE_VALID_INSN): Remove.
227         (btpy_object, btpy_insn_type, btpy_new): Remove.
228         (btpy_list_object): Use gdb.RecordInstruction type instead of
229         gdb.BtraceInstruction type.
230         (btrace_insn_from_recpy_insn): New function.
231         (btpy_insn_or_gap_new): Adjust comment. Use recpy_insn_new instead of
232         btpy_new.
233         (btpy_call_new, btpy_list_item): Do not use btpy_new anymore.
234         (btpy_number, btpy_hash, btpy_call_level, btpy_call_symbol,
235         btpy_call_instructions, btpy_call_up, btpy_call_prev_sibling,
236         btpy_call_next_sibling, btpy_richcompare): Use recpy_element_object
237         instead of btpy_object.
238         (btpy_insn_sal, btpy_insn_pc, btpy_insn_size, btpy_insn_is_speculative,
239         btpy_insn_data, btpy_insn_decode): Rename to ...
240         (recpy_bt_insn_sal, recpy_bt_insn_pc, recpy_bt_insn_size,
241         recpy_bt_insn_is_speculative, recpy_bt_insn_data,
242         recpy_bt_insn_decode): This.  Also, use new helper functions.
243         (btpy_list_position, recpy_bt_goto): Use recpy_element_object and
244         recpy_insn_type.
245         (btpy_insn_getset): Remove.
246         (gdbpy_initialize_btrace): Remove code to initialize
247         gdb.BtraceInstruction.  Use recpy_element_object.
248         * python/py-record-btrace.h (recpy_bt_insn_number, recpy_bt_insn_sal,
249         recpy_bt_insn_pc, recpy_bt_insn_data, recpy_bt_insn_decoded,
250         recpy_bt_insn_size, recpy_bt_insn_is_speculative): New export.
251         * python/py-record.c (recpy_insn_type): New static object.
252         (recpy_insn_new, recpy_insn_sal, recpy_insn_pc, recpy_insn_data,
253         recpy_insn_decoded, recpy_insn_size, recpy_insn_is_speculative,
254         recpy_element_number, recpy_element_hash, recpy_element_richcompare):
255         New function.
256         (recpy_insn_getset): New static object.
257         (gdbpy_initialize_record): Initialize gdb.RecordInstruction.
258         * python/py-record.h (recpy_element_object): New typedef.
259         (recpy_insn_type, recpy_insn_new): New export.
260
261 2017-05-01  Tim Wiederhake  <tim.wiederhake@intel.com>
262
263         * py-record-btrace.c (btpy_insn_new): Removed.
264         (btpy_insn_or_gap_new): New function.
265         (btpy_insn_error): Removed.
266         (btpy_insn_sal, btpy_insn_pc, btpy_insn_size, btpy_insn_is_speculative,
267         btpy_insn_data, btpy_insn_decode): Remove code path for gaps.
268         (recpy_bt_replay_position, recpy_bt_begin, recpy_bt_end): Call
269         btpy_insn_or_gap_new instead of btpy_insn_new.
270         (btpy_insn_getset): Remove btpy_insn_error.
271         * py-record.c (recpy_gap_type): New static object.
272         (recpy_gap_object): New typedef.
273         (recpy_gap_new, recpy_gap_number, recpy_gap_reason_code,
274         recpy_gap_reason_string): New function.
275         (recpy_gap_getset): New static object.
276         (gdbpy_initialize_record): Initialize gdb.RecordGap type.
277         * py-record.h (recpy_gap_new): New export.
278
279 2017-05-01  Tim Wiederhake  <tim.wiederhake@intel.com>
280
281         * python/py-record.c (recpy_ptid): Remove.
282         (recpy_record_getset): Remove recpy_ptid.
283
284 2017-05-01  Tim Wiederhake  <tim.wiederhake@intel.com>
285
286         * btrace.c (btrace_fetch): Set inferior_ptid.
287         * python/py-record-btrace.c: Add "py-record.h" include.
288         (recpy_bt_format, recpy_bt_replay_position, recpy_bt_begin,
289         recpy_bt_end, recpy_bt_instruction_history,
290         recpy_bt_function_call_history, recpy_bt_goto): Use ptid stored
291         in gdb.Record object instead of current ptid.
292         * python/py-record.c: Include new "py-record.h" file.
293         (recpy_record_object): Moved to py-record.h.
294         * python/py-record.h: New file.
295
296 2017-05-01  Tim Wiederhake  <tim.wiederhake@intel.com>
297
298         * python/py-record-btrace.c (BTPY_REQUIRE_VALID_INSN,
299         BTPY_REQUIRE_VALID_CALL, recpy_bt_function_call_history): Fix
300         indentation.
301
302 2017-05-01  Joel Brobecker  <brobecker@adacore.com>
303
304         * MAINTAINERS: Move Daniel Jacobowitz and Mark Kettenis to
305         the past maintainers section.
306
307 2017-04-28  Yao Qi  <yao.qi@linaro.org>
308
309         * infcmd.c (get_return_value): Use regcache ctor, and remove
310         cleanup.
311
312 2017-04-28  Yao Qi  <yao.qi@linaro.org>
313             Pedro Alves  <palves@redhat.com>
314
315         * regcache.c (regcache::regcache): New tag dispatch ctor.
316         (do_cooked_read): Moved above.
317         (regcache_dup): Use the tag dispatch ctor..
318         * regcache.h (regcache): Declare ctor, delete copy ctor and
319         assignment operator, remove friend regcache_dup.
320
321 2017-04-28  Yao Qi  <yao.qi@linaro.org>
322
323         * regcache.c (regcache_dup): Assert !src->m_readonly_p and
324         call method save instead of regcache_cpy.
325         * regcache.h (struct regcache): Make regcache_dup a friend.
326
327 2017-04-28  Yao Qi  <yao.qi@linaro.org>
328
329         * regcache.c (struct regcache): Move to regcache.h
330         (regcache::arch): New method.
331         (regcache_get_ptid): Update.
332         (get_regcache_arch): Call arch method.
333         (get_regcache_aspace): Call method aspace.
334         (register_buffer): Change it to method.
335         (regcache_save): Change it to regcache::save.
336         (regcache_restore): Likewise.
337         (regcache_cpy_no_passthrough): Remove the declaration.
338         (regcache_cpy): Call methods restore and cpy_no_passthrough.
339         (regcache_cpy_no_passthrough): Change it to method
340         cpy_no_passthrough.
341         (regcache_register_status): Change it to method
342         get_register_status.
343         (regcache_invalidate): Change it to method invalidate.
344         (regcache_thread_ptid_changed): Use methods ptid and set_ptid.
345         (regcache_raw_update): Change it to method raw_update.
346         (regcache_raw_read): Likewise.
347         (regcache_raw_read_signed): Likewise.
348         (regcache_raw_read_unsigned): Likewise.
349         (regcache_raw_write_signed): Likewise.
350         (regcache_raw_write_unsigned): Likewise.
351         (regcache_cooked_read): Likewise.
352         (regcache_cooked_read_value): Likewise.
353         (regcache_cooked_read_signed): Likewise.
354         (regcache_cooked_read_unsigned): Likewise.
355         (regcache_cooked_write_signed): Likewise.
356         (regcache_cooked_write_unsigned): Likewise.
357         (regcache_raw_set_cached_value): Likewise.
358         (regcache_raw_write): Likewise.
359         (regcache_cooked_write): Likewise.
360         (regcache_xfer_part): Likewise.
361         (regcache_raw_read_part): Likewise.
362         (regcache_raw_write_part): Likewise.
363         (regcache_cooked_read_part): Likewise.
364         (regcache_cooked_write_part): Likewise.
365         (regcache_raw_supply): Likewise.
366         (regcache_raw_collect): Likewise.
367         (regcache_transfer_regset): Likewise.
368         (regcache_supply_regset): Likewise.
369         (regcache_collect_regset): Likewise.
370         (regcache_debug_print_register): Likewise.
371         (enum regcache_dump_what): Move it to regcache.h.
372         (regcache_dump): Change it to method dump.
373         * regcache.h (enum regcache_dump_what): New.
374         (class regcache): New.
375         * target.c (target_fetch_registers): Call method
376         debug_print_register.
377         (target_store_registers): Likewise.
378
379 2017-04-28  Simon Marchi  <simon.marchi@ericsson.com>
380
381         * windows-nat.c (struct lm_info_windows): Initialize field.
382         (windows_make_so): Allocate lm_info_windows with new.
383         (windows_free_so): Free lm_info_windows with delete.
384
385 2017-04-28  Simon Marchi  <simon.marchi@ericsson.com>
386
387         * solib-darwin.c (struct lm_info_darwin): Initialize field.
388         (darwin_current_sos): Allocate lm_info_darwin with new, remove
389         cleanup.
390         (darwin_free_so): Free lm_info_darwin with delete.
391
392 2017-04-28  Simon Marchi  <simon.marchi@ericsson.com>
393
394         * solib-svr4.h (struct lm_info_svr4): Initialize fields.
395         <l_addr_p>: Change type to bool.
396         * solib-svr4.c (lm_info_read): Allocate lm_info_svr4 with new.
397         (svr4_free_so): Free lm_info_svr4 with delete.
398         (svr4_copy_library_list): Replace memcpy with call to copy
399         constructor.
400         (library_list_start_library, svr4_default_sos): Allocate
401         lm_info_svr4 with new.
402
403 2017-04-28  Simon Marchi  <simon.marchi@ericsson.com>
404
405         * solib-target.c (struct lm_info_target): Add destructor,
406         initialize fields.
407         <name>: Change type to std::string.
408         (library_list_start_library): Allocate lm_info_target with new.
409         (solib_target_free_library_list): Free lm_info_target with
410         delete.
411         (solib_target_current_sos): Adapt to std::string.
412         (solib_target_free_so): Free lm_info_target with delete.
413
414 2017-04-28  Simon Marchi  <simon.marchi@ericsson.com>
415
416         * solib-frv.c (struct lm_info_frv): Add destructor, initialize
417         fields.
418         (frv_current_sos): Allocate lm_info_frv with new.
419         (frv_relocate_main_executable): Free lm_info_frv with delete,
420         allocate with new.
421         (frv_clear_solib, frv_free_so): Free lm_info_frv with delete.
422
423 2017-04-28  Simon Marchi  <simon.marchi@ericsson.com>
424
425         * solib-frv.c (struct lm_info_frv): Fix indentation.
426
427 2017-04-28  Simon Marchi  <simon.marchi@ericsson.com>
428
429         * solib-dsbt.c (struct lm_info_dsbt): Add destructor, initialize
430         map field.
431         (dsbt_current_sos): Allocate lm_info_dsbt with new.
432         (dsbt_relocate_main_executable): Free lm_info_dsbt with delete
433         and allocate with new.
434         (dsbt_clear_solib, dsbt_free_so): Free lm_info_dsbt with delete.
435
436 2017-04-28  Simon Marchi  <simon.marchi@ericsson.com>
437
438         * solib-aix.c (struct lm_info_aix): Initialize fields in-class.
439         <filename, member_name>: Change type to std::string.
440         (solib_aix_new_lm_info, solib_aix_xfree_lm_info): Remove.
441         (library_list_start_library): Allocate lm_info_aix with new.
442         (solib_aix_free_library_list, solib_aix_free_so): Free with delete.
443         (solib_aix_current_sos): Adapt to std::string, copy lm_info_aix
444         with copy constructor.
445
446 2017-04-28  Simon Marchi  <simon.marchi@ericsson.com>
447
448         * solist.h (struct lm_info): Remove.
449         (struct lm_info_base): New class.
450         (struct so_list) <lm_info>: Change type to lm_info_base *.
451         * nto-tdep.c (struct lm_info): Remove.
452         (lm_addr): Adjust.
453         * solib-aix.c (struct lm_info): Rename to ...
454         (struct lm_info_aix): ... this.  Extend lm_info_base.
455         (lm_info_p): Rename to ...
456         (lm_info_aix_p): ... this, and adjust.
457         (solib_aix_new_lm_info, solib_aix_xfree_lm_info,
458         solib_aix_parse_libraries, library_list_start_library,
459         solib_aix_free_library_list, solib_aix_parse_libraries,
460         solib_aix_get_library_list,
461         solib_aix_relocate_section_addresses, solib_aix_free_so,
462         solib_aix_get_section_offsets,
463         solib_aix_solib_create_inferior_hook, solib_aix_current_sos):
464         Adjust.
465         (struct solib_aix_inferior_data) <library_list>: Adjust.
466         * solib-darwin.c (struct lm_info): Rename to ...
467         (struct lm_info_darwin): ... this.  Extend lm_info_base.
468         (darwin_current_sos, darwin_relocate_section_addresses): Adjust.
469         * solib-dsbt.c (struct lm_info): Rename to ...
470         (struct lm_info_dsbt): ... this.  Extend lm_info_base.
471         (struct dsbt_info) <main_executable_lm_info): Adjust.
472         (dsbt_current_sos, dsbt_relocate_main_executable, dsbt_free_so,
473         dsbt_relocate_section_addresses): Adjust.
474         * solib-frv.c (struct lm_info): Rename to ...
475         (struct lm_info_frv): ... this.  Extend lm_info_base.
476         (main_executable_lm_info): Adjust.
477         (frv_current_sos, frv_relocate_main_executable, frv_free_so,
478         frv_relocate_section_addresses, frv_fdpic_find_global_pointer,
479         find_canonical_descriptor_in_load_object,
480         frv_fdpic_find_canonical_descriptor): Adjust.
481         * solib-svr4.c (struct lm_info): Move to solib-svr4.h, renamed
482         to lm_info_svr4.
483         (lm_info_read, lm_addr_check, svr4_keep_data_in_core,
484         svr4_clear_so, svr4_copy_library_list,
485         library_list_start_library, svr4_default_sos, svr4_read_so_list,
486         svr4_current_sos, svr4_fetch_objfile_link_map,
487         solist_update_incremental): Adjust.
488         * solib-svr4.h (struct lm_info_svr4): Move here from
489         solib-svr4.c.
490         * solib-target.c (struct lm_info): Rename to ...
491         (struct lm_info_target): ... this.  Extend lm_info_base.
492         (lm_info_p): Rename to ...
493         (lm_info_target_p): ... this.
494         (solib_target_parse_libraries, library_list_start_segment,
495         library_list_start_section, library_list_start_library,
496         library_list_end_library, solib_target_free_library_list,
497         solib_target_current_sos, solib_target_free_so,
498         solib_target_relocate_section_addresses): Adjust.
499         * windows-nat.c (struct lm_info): Rename to ...
500         (struct lm_info_windows): ... this.  Extend lm_info_base.
501         (windows_make_so, handle_load_dll, handle_unload_dll,
502         windows_xfer_shared_libraries): Adjust.
503
504 2017-04-28  Simon Marchi  <simon.marchi@ericsson.com>
505
506         * solib-darwin.c (struct darwin_so_list): Remove.
507         (darwin_current_sos): Allocate an so_list object instead of a
508         darwin_so_list, separately allocate an lm_info object.
509         (darwin_free_so): Free lm_info.
510
511 2017-04-28  John Baldwin  <jhb@FreeBSD.org>
512
513         * mips-tdep.c (print_gp_register_row): Replace printf_filtered
514         with fprintf_filtered.
515
516 2017-04-28  Yao Qi  <yao.qi@linaro.org>
517
518         * regcache.c (regcache::regcache): New function.
519         (regcache::~regcache): New function.
520         (regcache_xmalloc_1): Remove.
521         (regcache_xmalloc): Call new regcache.
522         (regcache_xfree): Call delete regcache.
523         (get_thread_arch_aspace_regcache): Call new regcache.
524
525 2017-04-28  Yao Qi  <yao.qi@linaro.org>
526
527         * mips-linux-nat.c (mips_linux_new_thread): Use ptid method
528         lwp instead of ptid_get_lwp.
529
530 2017-04-28  Yao Qi  <yao.qi@linaro.org>
531
532         * mips-linux-nat.c (mips_linux_new_thread): Get lwpid from
533         lwp_info instead of getting from inferior_ptid.
534
535 2017-04-27  Keith Seitz  <keiths@redhat.com>
536
537         * gdbtypes.c (LVALUE_REFERENCE_TO_RVALUE_BINDING_BADNESS)
538         DIFFERENT_REFERENCE_TYPE_BADNESS): Remove.
539         (CV_CONVERSION_BADNESS): Define.
540         (rank_one_type): Remove overly restrictive rvalue reference
541         rank checks.
542         Add cv-qualifier checks and subranks for type equality.
543         * gdbtypes.h (REFERENCE_CONVERSION_RVALUE,
544         REFERENCE_CONVERSION_CONST_LVALUE, CV_CONVERSION_BADNESS,
545         CV_CONVERSION_CONST, CV_CONVERSION_VOLATILE): Declare.
546
547 2017-04-27  Simon Marchi  <simon.marchi@ericsson.com>
548
549         * python/py-inferior.c (inferior_to_inferior_object): Increment reference
550         count when creating the object.
551
552 2017-04-27  Sangamesh Mallayya  <sangamesh.swamy@in.ibm.com>
553             Ulrich Weigand  <uweigand@de.ibm.com>
554
555         * xcoffread.c (read_xcoff_symtab): Read correct function auxiliary
556         entry if xlc -qfuncsect or gcc -ffunction-sections compiler option
557         is used in AIX.
558         (read_xcoff_symtab): Handle C_WEAKEXT storage class.
559         (process_xcoff_symbol): Likewise.
560         (scan_xcoff_symtab): Likewise.
561
562 2017-04-26  Alan Hayward  <alan.hayward@arm.com>
563
564         * ia64-tdep.c (examine_prologue): Use get_frame_register_unsigned.
565         (ia64_sigtramp_frame_prev_register): Use read_memory_unsigned_integer.
566         (ia64_access_reg): Use get_frame_register_unsigned.
567         (ia64_access_rse_reg): Likewise.
568         (ia64_libunwind_frame_prev_register): Likewise.
569
570 2017-04-26  Jiong Wang  <jiong.wang@arm.com>
571
572         * gdbarch.sh: New gdbarch method execute_dwarf_cfa_vendor_op.
573         * gdbarch.c: Regenerated.
574         * gdbarch.h: Regenerated.
575         * dwarf2-frame.c (dwarf2_frame_state_alloc_regs): Made the
576         visibility external.
577         (execute_cfa_program): Call execute_dwarf_cfa_vendor_op for CFI
578         between DW_CFA_lo_user and DW_CFA_high_user inclusive.
579         (enum cfa_how_kind): Move to ...
580         (struct dwarf2_frame_state_reg_info): Likewise.
581         (struct dwarf2_frame_state): Likewise.
582         * dwarf2-frame.h: ... here.
583         (dwarf2_frame_state_alloc_regs): New declaration.
584         * sparc-tdep.c (sparc_execute_dwarf_cfa_vendor_op): New function.
585         (sparc32_gdbarch_init): Register execute_dwarf_cfa_vendor_op hook.
586
587 2017-04-26  Alan Hayward  <alan.hayward@arm.com>
588
589         * xtensa-tdep.c (xtensa_pseudo_register_read): Use
590         regcache_raw_read_unsigned.
591         (xtensa_pseudo_register_write): Likewise.
592
593 2017-04-26  Alan Hayward  <alan.hayward@arm.com>
594
595         * nds32-tdep.c (nds32_pseudo_register_read): Abort on errors.
596         (nds32_pseudo_register_write): Likewise.
597
598 2017-04-25  Yao Qi  <yao.qi@linaro.org>
599
600         * regcache.c (struct regcache) <readonly_p>: Change its type
601         to bool.
602         (regcache_xmalloc_1): Update parameter type and callers update.
603
604 2017-04-25  Yao Qi  <yao.qi@linaro.org>
605
606         * aarch64-tdep.c (aarch64_gdbarch_init): Don't call
607         set_gdbarch_wchar_bit.
608         * arm-tdep.c (arm_gdbarch_init): Likewise.
609
610 2017-04-25  Pedro Alves  <palves@redhat.com>
611
612         * common/poison.h [!HAVE_IS_TRIVIALLY_COPYABLE] (IsRelocatable)
613         (BothAreRelocatable, memcopy, memmove): Don't define.
614         * common/traits.h (__has_feature, HAVE_IS_TRIVIALLY_COPYABLE): New
615         macros.
616
617 2017-04-25  Pedro Alves  <palves@redhat.com>
618
619         * common/common-defs.h: Include "common/poison.h".
620         * common/function-view.h: (Not, Or, Requires): Move to traits.h
621         and adjust.
622         * common/poison.h: New file.
623         * common/traits.h: Include <type_traits>.
624         (Not, Or, Requires): New, moved from common/function-view.h.
625
626 2017-04-25  Pedro Alves  <palves@redhat.com>
627
628         * breakpoint.h (struct breakpoint): In-class initialize all
629         fields.  Make boolean fields "bool".
630         * breakpoint.c (init_raw_breakpoint_without_location): Remove
631         memset call and initializations no longer necessary.
632
633 2017-04-25  Pedro Alves  <palves@redhat.com>
634
635         * btrace.c (pt_btrace_insn_flags): Change parameter type to
636         reference.
637         (pt_btrace_insn): New function.
638         (ftrace_add_pt): Remove memset call and use pt_btrace_insn.
639
640 2017-04-25  Pedro Alves  <palves@redhat.com>
641
642         * ada-lang.c (ada_catchpoint_location): Now a "class".  Remove
643         "base" field and inherit from "bp_location" instead.  Add
644         non-default ctor.
645         (allocate_location_exception): Use new non-default ctor.
646         * breakpoint.c (get_first_locp_gte_addr): Remove memset call.
647         (init_bp_location): Convert to ...
648         (bp_location::bp_location): ... this new ctor, and remove memset
649         call.
650         (base_breakpoint_allocate_location): Use the new non-default ctor.
651         * breakpoint.h (bp_location): Now a class.  Declare default and
652         non-default ctors.  In-class initialize all members.
653         (init_bp_location): Remove declaration.
654
655 2017-04-25  Pedro Alves  <palves@redhat.com>
656
657         * common/enum-flags.h (enum_flags): Don't implement copy ctor and
658         assignment operator.
659
660 2017-04-24  Yao Qi  <yao.qi@linaro.org>
661
662         * doublest.c (convert_doublest_to_floatformat): Call
663         floatformat_totalsize_bytes.
664
665 2017-04-22  Tom Tromey  <tom@tromey.com>
666
667         * mi/mi-cmd-file.c (mi_cmd_file_list_shared_libraries): Use
668         ui_out_emit_list.
669         * stack.c (print_frame): Use ui_out_emit_list.
670         * mi/mi-symbol-cmds.c (mi_cmd_symbol_list_lines): Use
671         ui_out_emit_list.
672         * mi/mi-main.c (print_one_inferior)
673         (mi_cmd_data_list_register_names)
674         (mi_cmd_data_list_register_values, mi_cmd_list_features)
675         (mi_cmd_list_target_features, mi_cmd_trace_frame_collected): Use
676         ui_out_emit_list.
677         * mi/mi-interp.c (mi_on_normal_stop_1): Use ui_out_emit_list.
678         (mi_output_solib_attribs): Use ui_out_emit_list,
679         ui_out_emit_tuple.
680         * mi/mi-cmd-var.c (varobj_update_one): Use ui_out_emit_list.
681         * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames)
682         (mi_cmd_stack_list_args, list_args_or_locals): Use
683         ui_out_emit_list.
684         * disasm.c (do_assembly_only): Use ui_out_emit_list.
685         * breakpoint.c (print_solib_event, output_thread_groups): Use
686         ui_out_emit_list.
687
688 2017-04-22  Tom Tromey  <tom@tromey.com>
689
690         * mi/mi-main.c (print_variable_or_computed): Use ui_out_emit_tuple.
691         * mi/mi-cmd-var.c (varobj_update_one): Use ui_out_emit_tuple.
692         * mi/mi-cmd-stack.c (list_arg_or_local): Use ui_out_emit_tuple.
693
694 2017-04-22  Tom Tromey  <tom@tromey.com>
695
696         * tracepoint.c (tvariables_info_1)
697         (print_one_static_tracepoint_marker): Use ui_out_emit_tuple.
698
699 2017-04-22  Tom Tromey  <tom@tromey.com>
700
701         * stack.c (print_frame_arg): Use ui_out_emit_tuple,
702         annotate_arg_emitter.
703         * breakpoint.c (print_mention_watchpoint)
704         (print_mention_masked_watchpoint): Use ui_out_emit_tuple.
705         * annotate.h (struct annotate_arg_emitter): New.
706
707 2017-04-22  Tom Tromey  <tom@tromey.com>
708
709         * record-btrace.c (record_btrace_insn_history)
710         (record_btrace_insn_history_range, record_btrace_call_history)
711         (record_btrace_call_history_range): Use ui_out_emit_tuple.
712         * thread.c (do_captured_list_thread_ids, print_thread_info_1): Use
713         ui_out_emit_tuple.
714         * stack.c (print_frame_info): Use ui_out_emit_tuple.
715         * solib.c (info_sharedlibrary_command): Use ui_out_emit_tuple.
716         * skip.c (skip_info): Use ui_out_emit_tuple.
717         * remote.c (show_remote_cmd): Use ui_out_emit_tuple.
718         * progspace.c (print_program_space): Use ui_out_emit_tuple.
719         * probe.c (info_probes_for_ops): Use ui_out_emit_tuple.
720         * osdata.c (info_osdata): Use ui_out_emit_tuple.
721         * mi/mi-symbol-cmds.c (mi_cmd_symbol_list_lines): Use
722         ui_out_emit_tuple.
723         * mi/mi-main.c (print_one_inferior, list_available_thread_groups)
724         (output_register, mi_cmd_data_read_memory)
725         (mi_cmd_data_read_memory_bytes, mi_load_progress)
726         (mi_cmd_trace_frame_collected): Use ui_out_emit_tuple.
727         * mi/mi-cmd-var.c (mi_cmd_var_list_children, varobj_update_one):
728         Use ui_out_emit_tuple.
729         * mi/mi-cmd-stack.c (mi_cmd_stack_list_args): Use
730         ui_out_emit_tuple.
731         * mi/mi-cmd-info.c (mi_cmd_info_ada_exceptions)
732         (mi_cmd_info_gdb_mi_command): Use ui_out_emit_tuple.
733         * linux-thread-db.c (info_auto_load_libthread_db): Use
734         ui_out_emit_tuple.
735         * inferior.c (print_inferior): Use ui_out_emit_tuple.
736         * gdb_bfd.c (print_one_bfd): Use ui_out_emit_tuple.
737         * disasm.c (do_mixed_source_and_assembly_deprecated)
738         (do_mixed_source_and_assembly): Use ui_out_emit_tuple.
739         * cp-abi.c (list_cp_abis): Use ui_out_emit_tuple.
740         * cli/cli-setshow.c (cmd_show_list): Use ui_out_emit_tuple.
741         * breakpoint.c (print_one_breakpoint_location)
742         (print_one_breakpoint): Use ui_out_emit_tuple.
743         * auto-load.c (print_script, info_auto_load_cmd): Use
744         ui_out_emit_tuple.
745         * ada-tasks.c (print_ada_task_info): Use ui_out_emit_tuple.
746
747 2017-04-21  Simon Marchi  <simon.marchi@ericsson.com>
748
749         * thread.c (print_thread_info_1): Remove dead code.
750
751 2017-04-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
752
753         * aarch64-tdep.c (selftests::aarch64_process_record_test): Make it #if
754         GDB_SELF_TEST.
755         * arm-tdep.c (selftests::arm_record_test): Likewise.
756
757 2017-04-21  Yao Qi  <yao.qi@linaro.org>
758
759         * regcache.c (regcache_restore): Remove argument 2.  Replace
760         argument 3 with regcache.  Get register status from
761         src->register_status and get register contents from
762         register_buffer (src, regnum).
763         (regcache_cpy): Update.
764
765 2017-04-19  Pedro Alves  <palves@redhat.com>
766
767         * gdbthread.h (thread): Add missing closing parenthesis in
768         comment.
769
770 2017-04-19  Pedro Alves  <palves@redhat.com>
771
772         * common/refcounted-object.h: New file.
773         * gdbthread.h: Include "common/refcounted-object.h".
774         (thread_info): Inherit from refcounted_object and add comments.
775         (thread_info::incref, thread_info::decref)
776         (thread_info::m_refcount): Delete.
777         (thread_info::deletable): Use the refcounted_object::refcount()
778         method.
779         * inferior.c (current_inferior_): Add comment.
780         (set_current_inferior): Increment/decrement refcounts.
781         (prune_inferiors, remove_inferior_command): Skip inferiors marked
782         not-deletable instead of comparing with the current inferior.
783         (initialize_inferiors): Increment the initial inferior's refcount.
784         * inferior.h (struct inferior): Forward declare.
785         Include "common/refcounted-object.h".
786         (current_inferior, set_current_inferior): Move declaration to
787         before struct inferior's definition, and fix comment.
788         (inferior): Inherit from refcounted_object.  Add comments.
789         * thread.c (switch_to_thread_no_regs): Reference the thread's
790         inferior pointer directly instead of doing a ptid lookup.
791         (switch_to_no_thread): New function.
792         (switch_to_thread(thread_info *)): New function, factored out
793         from ...
794         (switch_to_thread(ptid_t)): ... this.
795         (restore_current_thread): Delete.
796         (current_thread_cleanup): Remove 'inf_id' and 'was_removable'
797         fields, and add 'inf' field.
798         (do_restore_current_thread_cleanup): Check whether old->inf is
799         alive instead of looking up an inferior by ptid.  Use
800         switch_to_thread and switch_to_no_thread.
801         (restore_current_thread_cleanup_dtor): Use old->inf directly
802         instead of lookup up an inferior by id.  Decref the inferior.
803         Don't restore 'removable'.
804         (make_cleanup_restore_current_thread): Same the inferior pointer
805         in old, instead of the inferior number.  Incref the inferior.
806         Don't save/clear 'removable'.
807
808 2017-04-19  Pedro Alves  <palves@redhat.com>
809
810         * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
811         unittests/scoped_restore-selftests.c.
812         (SUBDIR_UNITTESTS_OBS): Add scoped_restore-selftests.o.
813         * common/scoped_restore.h (scoped_restore_base): Make "class".
814         (scoped_restore_base::release): New public method.
815         (scoped_restore_base::scoped_restore_base): New protected ctor.
816         (scoped_restore_base::m_saved_var): New protected field.
817         (scoped_restore_tmpl::scoped_restore_tmpl(T*)): Initialize the
818         scoped_restore_base base class instead of m_saved_var directly.
819         (scoped_restore_tmpl::scoped_restore_tmpl(T*, T2)): Likewise.
820         (scoped_restore_tmpl::scoped_restore_tmpl(const
821         scoped_restore_tmpl<T>&)): Likewise.
822         (scoped_restore_tmpl::~scoped_restore_tmpl): Use the saved_var
823         method.
824         (scoped_restore_tmpl::saved_var): New method.
825         (scoped_restore_tmpl::m_saved_var): Delete.
826         * inferior.h (inferior::detaching): Now a bool.
827         * infrun.c (prepare_for_detach): Use a scoped_restore instead of a
828         cleanup.
829         * unittests/scoped_restore-selftests.c: New file.
830
831 2017-04-19  Pedro Alves  <palves@redhat.com>
832
833         * Makefile.in (SUBDIR_UNITTESTS_SRCS, SUBDIR_UNITTESTS_OBS):
834         Re-sort in alphabetic order.
835
836 2017-04-18  Pedro Alves  <palves@redhat.com>
837
838         * xml-support.c (obstack_xml_printf): Delete.
839         * xml-support.h (obstack_xml_printf): Delete.
840
841 2017-04-18  Pedro Alves  <palves@redhat.com>
842
843         * xml-support.c (gdb_xml_parser) <use_dtd, dtd_name, parse,
844         vdebug, verror, body_text, start_element, end_element, name,
845         user_data, set_is_xinclude, set_error, expat_parser>: New methods.
846         <name, user_data, expat_parser, scopes, error, last_line, dtd_name,
847         is_xinclude>: Make private and add m_ prefix.
848         (gdb_xml_parser::body_text): New method, based on ...
849         (gdb_xml_body_text): ... this.  Adjust.
850         (gdb_xml_parser::vdebug): New method, based on ...
851         (gdb_xml_debug): ... this.  Adjust.
852         (gdb_xml_parser::verror): New method, based on ...
853         (gdb_xml_error): ... this.  Adjust.
854         (gdb_xml_parser::start_element): New method, based on ...
855         (gdb_xml_start_element): ... this.  Adjust.
856         (gdb_xml_start_element_wrapper): Defer to
857         gdb_xml_parser::start_element and gdb_xml_parser::set_error.
858         (gdb_xml_parser::end_element): New method, based on ...
859         (gdb_xml_end_element_wrapper): ... this.  Adjust.
860         (gdb_xml_parser::~gdb_xml_parser): Adjust.
861         (gdb_xml_parser::gdb_xml_parser): Adjust to field renames.
862         (gdb_xml_parser::use_dtd): New method, based on ...
863         (gdb_xml_use_dtd): ... this.  Adjust.
864         (gdb_xml_parser::parse): New method, based on ...
865         (gdb_xml_parse): ... this.  Adjust.
866         (gdb_xml_parse_quick): Adjust to call the parser's parse method.
867         (xinclude_start_include): Adjust to call the parser's name method.
868         (xml_xinclude_default, xml_xinclude_start_doctype)
869         (xml_xinclude_end_doctype): Adjust to call the parser's user_data
870         method.
871         (xml_process_xincludes): Adjust to call parser methods.
872         * xml-support.h (gdb_xml_use_dtd, gdb_xml_parse): Delete
873         declarations.
874
875 2017-04-18  Pedro Alves  <palves@redhat.com>
876
877         * tracefile-tfile.c (tfile_write_tdesc): Adjust to use
878         gdb::optional<std::string>.
879         * xml-support.c: Include <string>.
880         (scope_level::scope_level(scope_level &&))
881         (scope_level::~scope_level): Delete.
882         (scope_level::body): Now a std::string.
883         (gdb_xml_body_text, gdb_xml_end_element): Adjust.
884         (xinclude_parsing_data::xinclude_parsing_data): Add 'output'
885         parameter.
886         (xinclude_parsing_data::~xinclude_parsing_data): Delete.
887         (xinclude_parsing_data::output): Now a std::string reference.
888         (xinclude_start_include): Adjust.
889         (xml_xinclude_default): Adjust.
890         (xml_process_xincludes): Add 'output' parameter, and return bool.
891         * xml-support.h (xml_process_xincludes): Add 'output' parameter,
892         and return bool.
893         * xml-tdesc.c: Include <unordered_map> and <string>.
894         (tdesc_xml_cache): Delete.
895         (tdesc_xml_cache_s): Delete.
896         (xml_cache): Now an std::unordered_map.
897         (tdesc_parse_xml): Adjust to use std::string and unordered_map.
898         (target_fetch_description_xml): Change return type to
899         gdb::optional<std::string>, and adjust.
900         * xml-tdesc.h: Include "common/gdb_optional.h" and <string>.
901         (target_fetch_description_xml): Change return type to
902         gdb::optional<std::string>.
903
904 2017-04-18  Pedro Alves  <palves@redhat.com>
905
906         * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
907         unittests/optional-selftests.c.
908         (SUBDIR_UNITTESTS_OBS): Add optional-selftests.o.
909         * unittests/optional-selftests.c: New file.
910         * unittests/optional/assignment/1.cc: New file.
911         * unittests/optional/assignment/2.cc: New file.
912         * unittests/optional/assignment/3.cc: New file.
913         * unittests/optional/assignment/4.cc: New file.
914         * unittests/optional/assignment/5.cc: New file.
915         * unittests/optional/assignment/6.cc: New file.
916         * unittests/optional/assignment/7.cc: New file.
917         * unittests/optional/cons/copy.cc: New file.
918         * unittests/optional/cons/default.cc: New file.
919         * unittests/optional/cons/move.cc: New file.
920         * unittests/optional/cons/value.cc: New file.
921         * unittests/optional/in_place.cc: New file.
922         * unittests/optional/observers/1.cc: New file.
923         * unittests/optional/observers/2.cc: New file.
924
925 2017-04-18  Pedro Alves  <palves@redhat.com>
926
927         * common/gdb_optional.h: Include common/traits.h.
928         (in_place_t): New type.
929         (in_place): New constexpr variable.
930         (optional::optional): Remove member initialization of
931         m_instantiated.
932         (optional::optional(in_place_t...)): New constructor.
933         (optional::~optional): Use reset.
934         (optional::optional(const optional&)): New.
935         (optional::optional(const optional&&)): New.
936         (optional::optional(T &)): New.
937         (optional::optional(T &&)): New.
938         (operator::operator=(const optional &)): New.
939         (operator::operator=(optional &&)): New.
940         (operator::operator= (const T &))
941         (operator::operator= (T &&))
942         (operator::emplace (Args &&... args)): Return a T&.  Use reset.
943         (operator::reset): New.
944         (operator::m_instantiated):: Add in-class initializer.
945         * common/traits.h: Include <type_traits>.
946         (struct And): New types.
947
948 2017-04-18  Pedro Alves  <palves@redhat.com>
949
950         * xml-support.c: Include <vector>.
951         (scope_level::scope_level(const gdb_xml_element *))
952         (scope_level::scope_level(scope_level&&)): New.
953         (scope_level::~scope_level): New.
954         (scope_level_s): Delete.
955         (gdb_xml_parser::scopes): Now a std::vector.
956         (gdb_xml_body_text, gdb_xml_start_element, gdb_xml_end_element):
957         Use std::vector.
958         (gdb_xml_parser::~gdb_xml_parser): Remove now unnecessary
959         scope cleanup code.
960         (gdb_xml_parser::gdb_xml_parser): Remove explicit initialization
961         of the scopes member.  Use std::vector::emplace_back.
962
963 2017-04-18  Pedro Alves  <palves@redhat.com>
964
965         * xml-support.c (gdb_xml_parser): Add ctor/dtor.  Make is_xinclude
966         a bool.
967         (gdb_xml_end_element): Change type of first parameter.
968         (gdb_xml_cleanup): Rename to ...
969         (gdb_xml_parser::~gdb_xml_parser): ... this.
970         (gdb_xml_create_parser_and_cleanup): Delete with ...
971         (gdb_xml_parser::gdb_xml_parser): ... creation parts factored out
972         to this new ctor.
973         (gdb_xml_parse_quick): Create a local gdb_xml_parser instead of
974         using gdb_xml_create_parser_and_cleanup.
975         (xinclude_parsing_data): Add ctor/dtor.
976         (xml_xinclude_cleanup): Delete.
977         (xml_process_xincludes): Create a local xinclude_parsing_data
978         instead of heap-allocating one.  Create a local gdb_xml_parser
979         instead of heap-allocating one with
980         gdb_xml_create_parser_and_cleanup.
981
982 2017-04-18  John Baldwin  <jhb@FreeBSD.org>
983
984         PR threads/20743
985         * fbsd-nat.c (resume_one_thread_cb): Remove.
986         (resume_all_threads_cb): Remove.
987         (fbsd_resume): Use ALL_NON_EXITED_THREADS instead of
988         iterate_over_threads.
989
990 2017-04-17  Joel Brobecker  <brobecker@adacore.com>
991
992         * NEWS: Create a new section for the next release branch.
993         Rename the section of the current branch, now that it has
994         been cut.
995
996 2017-04-17  Joel Brobecker  <brobecker@adacore.com>
997
998         GDB 8.0 branch created (725bf5cf125783c2a7ca4ab63d3768e220bab2db):
999         * version.in: Bump version to 8.0.50.DATE-git.
1000
1001 2017-04-13  Sergio Durigan Junior  <sergiodj@redhat.com>
1002
1003         PR gdb/21385
1004         * windows-nat.c (windows_create_inferior): Declare 'allargs'
1005         independently of the host, and fix build breakage on Cygwin.
1006
1007 2017-04-13  Pedro Alves  <palves@redhat.com>
1008
1009         * inferior.c (free_inferior): Convert to ...
1010         (inferior::~inferior): ... this dtor.
1011         (inferior::inferior): New ctor, factored out from ...
1012         (add_inferior_silent): ... here.  Allocate the inferior with a new
1013         expression.
1014         (delete_inferior): Call delete instead of free_inferior.
1015         * inferior.h (gdb_environ, continuation): Forward declare.
1016         (inferior): Now a class.  Add in-class initialization to all
1017         members.  Make boolean fields bool, except 'detaching'.
1018         (inferior::inferior): New explicit ctor.
1019         (inferior::~inferior): New.
1020
1021 2017-04-13  Pedro Alves  <palves@redhat.com>
1022
1023         * inferior.c (init_inferior_list): Delete.
1024         * inferior.h (init_inferior_list): Delete.
1025
1026 2017-04-13  Pedro Alves  <palves@redhat.com>
1027
1028         PR threads/13217
1029         * gdb.threads/threadapply.exp (thr_apply_detach): New procedure.
1030         (top level): Call it twice, with different thread sets.
1031
1032 2017-04-13  Pedro Alves  <palves@redhat.com>
1033
1034         * thread.c: Include <algorithm>.
1035         (thread_array_cleanup): Delete.
1036         (scoped_inc_dec_ref): New class.
1037         (live_threads_count): New function.
1038         (set_thread_refcount): Delete.
1039         (tp_array_compar_ascending): Now a bool.
1040         (tp_array_compar): Convert to a std::sort comparison function.
1041         (thread_apply_all_command): Use std::vector and scoped_inc_dec_ref
1042         and live_threads_count.
1043
1044 2017-04-13  Pedro Alves  <palves@redhat.com>
1045
1046         * infrun.c (follow_fork_inferior): Also switch the current
1047         inferior.
1048
1049 2017-04-13  Pedro Alves  <palves@redhat.com>
1050
1051         * breakpoint.c (watch_command_1): Save watchpoint-frame info
1052         before calling create_internal_breakpoint.
1053
1054 2017-04-13  Pedro Alves  <palves@redhat.com>
1055
1056         * fork-child.c (execv_argv): New class.
1057         (breakup_args): Refactored as ...
1058         (execv_argv::init_for_no_shell): .. this method of execv_argv.
1059         Copy arguments to storage and replace separators with NULL
1060         terminators in place.
1061         (escape_bang_in_quoted_argument): Adjust to return bool.
1062         (execv_argv::execv_argv): New ctor.
1063         (execv_argv::init_for_shell): New method, factored out from
1064         fork_inferior.  Don't strdup strings into the vector.
1065         (fork_inferior): Eliminate "shell" local and use execv_argv.  Use
1066         Remove free_vector_argv call.
1067
1068 2017-04-13  Yao Qi  <yao.qi@linaro.org>
1069
1070         * rx-tdep.c (rx_fpsw_type): Check tdep->rx_fpsw_type instead of
1071         tdep->rx_psw_type.
1072
1073 2017-04-13  Yao Qi  <yao.qi@linaro.org>
1074
1075         * rl78-tdep.c (rl78_gdbarch_init): Use XCNEW instead of XNEW.
1076         * rx-tdep.c (rx_gdbarch_init): Likewise.
1077
1078 2017-04-13  Pedro Alves  <palves@redhat.com>
1079
1080         * breakpoint.h (struct breakpoint): Reindent.
1081
1082 2017-04-13  Pedro Alves  <palves@redhat.com>
1083
1084         * breakpoint.c (bp_location): Rename to ...
1085         (bp_locations): ... this.  All references updated.
1086         (bp_location_count): Rename to ...
1087         (bp_locations_count): ... this.  All references updated.
1088         (bp_location_placed_address_before_address_max): Rename to ...
1089         (bp_locations_placed_address_before_address_max): ... this.  All
1090         references updated.
1091         (bp_location_shadow_len_after_address_max): Rename to ...
1092         (bp_locations_shadow_len_after_address_max): ... this.  All
1093         references updated.
1094         (bp_location_compare_addrs): Rename to ...
1095         (bp_locations_compare_addrs): ... this.  All references updated.
1096         (bp_location_compare):Rename to ...
1097         (bp_locations_compare): ... this.  All references updated.
1098         (bp_location_target_extensions_update): Rename to ...
1099         (bp_locations_target_extensions_update): ... this.  All references
1100         updated.
1101
1102 2017-04-12  Sergio Durigan Junior  <sergiodj@redhat.com>
1103
1104         * Makefile.in (HFILES_NO_SRCDIR): Add "common/gdb_termios.h".
1105         * common/common.m4: Check headers 'termios.h', 'termio.h' and
1106         'sgtty.h'.
1107         * common/gdb_termios.h: New file, with parts of "terminal.h".
1108         * inflow.c: Include "gdb_termios.h".
1109         * ser-unix.c: Include "gdb_termios.h".
1110         * terminal.h: Move terminal-related defines to
1111         "common/gdb_termios.h".
1112
1113 2017-04-12  Tom Tromey  <tom@tromey.com>
1114
1115         * probe.c (parse_probes): Update.
1116         * location.h (delete_event_location): Don't declare.
1117         (event_location_deleter::operator()): Update.
1118         * location.c (event_location_deleter::operator()): Rename from
1119         delete_event_location.
1120         * linespec.h (linespec_result) <location>: Change type to
1121         event_location_up.
1122         * linespec.c (canonicalize_linespec, event_location_to_sals)
1123         (decode_objc): Update.
1124         (linespec_result): Don't call delete_event_location.
1125         * breakpoint.c (create_breakpoints_sal)
1126         (bkpt_probe_create_sals_from_location)
1127         (strace_marker_create_sals_from_location): Update.
1128
1129 2017-04-12  Tom Tromey  <tom@tromey.com>
1130
1131         * linespec.h (struct linespec_result): Add constructor and
1132         destructor.
1133         (init_linespec_result, destroy_linespec_result)
1134         (make_cleanup_destroy_linespec_result): Don't declare.
1135         * linespec.c (init_linespec_result): Remove.
1136         (linespec_result::~linespec_result): Rename from
1137         destroy_linespec_result.  Update.
1138         (cleanup_linespec_result, make_cleanup_destroy_linespec_result):
1139         Remove.
1140         * breakpoint.c (create_breakpoint, break_range_command)
1141         (decode_location_default): Update.
1142         * ax-gdb.c (agent_command_1): Update.
1143
1144 2017-04-12  Tom Tromey  <tom@tromey.com>
1145
1146         * remote.c (remote_download_tracepoint): Update.
1147         * python/py-breakpoint.c (bppy_get_location): Update.
1148         * guile/scm-breakpoint.c (bpscm_print_breakpoint_smob)
1149         (gdbscm_breakpoint_location): Update.
1150         * elfread.c (elf_gnu_ifunc_resolver_return_stop): Update.
1151         * breakpoint.h (struct breakpoint) <location, location_range_end>:
1152         Change type to event_location_up.
1153         * breakpoint.c (create_overlay_event_breakpoint)
1154         (create_longjmp_master_breakpoint)
1155         (create_std_terminate_master_breakpoint)
1156         (create_exception_master_breakpoint)
1157         (breakpoint_event_location_empty_p, print_breakpoint_location)
1158         (print_one_breakpoint_location, create_thread_event_breakpoint)
1159         (init_breakpoint_sal, create_breakpoint)
1160         (print_recreate_ranged_breakpoint, break_range_command)
1161         (init_ada_exception_breakpoint, say_where): Update.
1162         (base_breakpoint_dtor): Don't call delete_event_location.
1163         (bkpt_print_recreate, tracepoint_print_recreate)
1164         (dprintf_print_recreate, update_static_tracepoint)
1165         (breakpoint_re_set_default): Update.
1166
1167 2017-04-12  Tom Tromey  <tom@tromey.com>
1168
1169         * compile/compile-loc2c.c (compute_stack_depth_worker): Change
1170         type of "to_do".  Update.
1171         (compute_stack_depth): Use std::vector.
1172
1173 2017-04-12  Tom Tromey  <tom@tromey.com>
1174
1175         * printcmd.c (find_instruction_backward): Use std::vector.
1176
1177 2017-04-12  Tom Tromey  <tom@tromey.com>
1178
1179         * symfile.c (objfilep): Remove typedef.
1180         (reread_symbols): Use a std::vector.
1181
1182 2017-04-12  Tom Tromey  <tom@tromey.com>
1183
1184         * mi/mi-main.c (exec_direction_forward): Remove.
1185         (exec_reverse_continue, mi_execute_command): Use scoped_restore.
1186         * guile/scm-ports.c (ioscm_with_output_to_port_worker): Use
1187         scoped_restore.
1188         * guile/guile.c (guile_repl_command, guile_command)
1189         (gdbscm_execute_gdb_command): Use scoped_restore.
1190         * go-exp.y (go_parse): Use scoped_restore.
1191         * d-exp.y (d_parse): Use scoped_restore.
1192         * cli/cli-decode.c (cmd_func): Use scoped_restore.
1193         * c-exp.y (c_parse): Use scoped_restore.
1194
1195 2017-04-12  Tom Tromey  <tom@tromey.com>
1196
1197         * mi/mi-parse.h (struct mi_parse): Add constructor, destructor.
1198         (mi_parse): Update return type.
1199         (mi_parse_free): Remove.
1200         * mi/mi-parse.c (mi_parse::mi_parse): New constructor.
1201         (mi_parse::~mi_parse): Rename from mi_parse_free.
1202         (mi_parse_cleanup): Remove.
1203         (mi_parse): Return a unique_ptr.  Use new.
1204         * mi/mi-main.c (mi_execute_command): Update.
1205
1206 2017-04-12  Tom Tromey  <tom@tromey.com>
1207
1208         * location.c (explicit_location_lex_one): Return a
1209         unique_xmalloc_ptr.
1210         (string_to_explicit_location): Update.  Remove cleanups.
1211
1212 2017-04-12  Tom Tromey  <tom@tromey.com>
1213
1214         * gnu-v3-abi.c (value_and_voffset_p): Remove typedef.
1215         (compare_value_and_voffset): Change type.  Update.
1216         (compute_vtable_size): Change type of "offset_vec".
1217         (gnuv3_print_vtable): Use std::vector.  Remove cleanups.
1218         (gnuv3_get_typeid): Remove extraneous declaration.
1219
1220 2017-04-12  Tom Tromey  <tom@tromey.com>
1221
1222         * charset.h (wchar_iterator): Fix comment.
1223
1224 2017-04-12  Tom Tromey  <tom@tromey.com>
1225
1226         * charset.c (iconv_wrapper): New class.
1227         (cleanup_iconv): Remove.
1228         (convert_between_encodings): Use it.
1229
1230 2017-04-12  Tom Tromey  <tom@tromey.com>
1231
1232         * symfile.h (increment_reading_symtab): Update type.
1233         * symfile.c (decrement_reading_symtab): Remove.
1234         (increment_reading_symtab): Return a scoped_restore_tmpl<int>.
1235         * psymtab.c (psymtab_to_symtab): Update.
1236         * dwarf2read.c (dw2_instantiate_symtab): Update.
1237
1238 2017-04-12  Tom Tromey  <tom@tromey.com>
1239
1240         * jit.c (struct jit_reader): Declare separately.  Add constructor
1241         and destructor.  Change type of "handle".
1242         (loaded_jit_reader): Define separately.
1243         (jit_reader_load): Update.  New "new".
1244         (jit_reader_unload_command): Use "delete".
1245         * gdb-dlfcn.h (struct dlclose_deleter): New.
1246         (gdb_dlhandle_up): New typedef.
1247         (gdb_dlopen, gdb_dlsym): Update types.
1248         (gdb_dlclose): Remove.
1249         * gdb-dlfcn.c (gdb_dlopen): Return a gdb_dlhandle_up.
1250         (gdb_dlsym): Change type of "handle".
1251         (make_cleanup_dlclose): Remove.
1252         (dlclose_deleter::operator()): Rename from gdb_dlclose.
1253         * compile/compile-c-support.c (load_libcc): Update.
1254
1255 2017-04-12  Tom Tromey  <tom@tromey.com>
1256
1257         * symtab.h (find_pcs_for_symtab_line): Change return type.
1258         * symtab.c (find_pcs_for_symtab_line): Change return type.
1259         * python/py-linetable.c (build_line_table_tuple_from_pcs): Change
1260         type of "vec".  Update.
1261         (ltpy_get_pcs_for_line): Update.
1262         * linespec.c (decode_digits_ordinary): Update.
1263
1264 2017-04-12  Tom Tromey  <tom@tromey.com>
1265
1266         * tracepoint.c (actions_command): Update.
1267         * python/python.c (python_command, python_interactive_command):
1268         Update.
1269         * mi/mi-cmd-break.c (mi_cmd_break_commands): Update.
1270         * guile/guile.c (guile_command): Update.
1271         * defs.h (read_command_lines, read_command_lines_1): Return
1272         command_line_up.
1273         (command_lines_deleter): New struct.
1274         (command_line_up): New typedef.
1275         * compile/compile.c (compile_code_command)
1276         (compile_print_command): Update.
1277         * cli/cli-script.h (get_command_line, copy_command_lines): Return
1278         command_line_up.
1279         (make_cleanup_free_command_lines): Remove.
1280         * cli/cli-script.c (get_command_line, read_command_lines_1)
1281         (copy_command_lines): Return command_line_up.
1282         (while_command, if_command, read_command_lines, define_command)
1283         (document_command): Update.
1284         (do_free_command_lines_cleanup, make_cleanup_free_command_lines):
1285         Remove.
1286         * breakpoint.h (breakpoint_set_commands): Change type of
1287         "commands".
1288         * breakpoint.c (breakpoint_set_commands): Change type of
1289         "commands".  Update.
1290         (do_map_commands_command, update_dprintf_command_list)
1291         (create_tracepoint_from_upload): Update.
1292
1293 2017-04-12  Tom Tromey  <tom@tromey.com>
1294
1295         * tracepoint.c (scope_info): Update.
1296         * spu-tdep.c (spu_catch_start): Update.
1297         * python/python.c (gdbpy_decode_line): Update.
1298         * python/py-finishbreakpoint.c (bpfinishpy_init): Update.
1299         * python/py-breakpoint.c (bppy_init): Update.
1300         * probe.c (parse_probes): Update.
1301         * mi/mi-cmd-break.c (mi_cmd_break_insert_1): Update.
1302         * location.h (event_location_deleter): New struct.
1303         (event_location_up): New typedef.
1304         (new_linespec_location, new_address_location, new_probe_location)
1305         (new_explicit_location, copy_event_location)
1306         (string_to_event_location, string_to_event_location_basic)
1307         (string_to_explicit_location): Update return type.
1308         (make_cleanup_delete_event_location): Remove.
1309         * location.c (new_linespec_location, new_address_location)
1310         (new_probe_location, new_explicit_location, copy_event_location):
1311         Return event_location_up.
1312         (delete_event_location_cleanup)
1313         (make_cleanup_delete_event_location): Remove.
1314         (string_to_explicit_location, string_to_event_location_basic)
1315         (string_to_event_location): Return event_location_up.
1316         * linespec.c (canonicalize_linespec, event_location_to_sals)
1317         (decode_line_with_current_source)
1318         (decode_line_with_last_displayed, decode_objc): Update.
1319         * guile/scm-breakpoint.c (gdbscm_register_breakpoint_x): Update.
1320         * completer.c (location_completer): Update.
1321         * cli/cli-cmds.c (edit_command, list_command): Update.
1322         * breakpoint.c (create_overlay_event_breakpoint)
1323         (create_longjmp_master_breakpoint)
1324         (create_std_terminate_master_breakpoint)
1325         (create_exception_master_breakpoint)
1326         (create_thread_event_breakpoint): Update.
1327         (init_breakpoint_sal): Update.  Remove some dead code.
1328         (create_breakpoint_sal): Change type of "location".  Update.
1329         (create_breakpoints_sal, create_breakpoint, break_command_1)
1330         (dprintf_command, break_range_command, until_break_command)
1331         (init_ada_exception_breakpoint)
1332         (strace_marker_create_sals_from_location)
1333         (update_static_tracepoint, trace_command, ftrace_command)
1334         (strace_command, create_tracepoint_from_upload): Update.
1335         * break-catch-throw.c (re_set_exception_catchpoint): Update.
1336         * ax-gdb.c (agent_command_1): Update.
1337
1338 2017-04-12  Pedro Alves  <palves@redhat.com>
1339
1340         * Makefile.in (ALL_TARGET_OBS): Add i386-go32-tdep.o.
1341         * configure.tgt: Handle i[34567]86-*-go32* and
1342         i[34567]86-*-msdosdjgpp*.
1343         * i386-tdep.c (i386_svr4_reg_to_regnum):
1344         Make extern.
1345         (i386_go32_init_abi, i386_coff_osabi_sniffer): Moved to
1346         i386-go32-tdep.c.
1347         (_initialize_i386_tdep): DJGPP bits moved to i386-go32-tdep.c.
1348         * i386-go32-tdep.c: New file.
1349         * i386-tdep.h (tdesc_i386_mmx, i386_svr4_reg_to_regnum): New
1350         declarations.
1351
1352 2017-04-12  Simon Marchi  <simon.marchi@ericsson.com>
1353
1354         * aix-thread.c (pd_status2str): Change return type to const char *.
1355
1356 2017-04-12  Pedro Alves  <palves@redhat.com>
1357
1358         * i386-tdep.c (i386_elf_init_abi, i386_go32_init_abi): Remove
1359         calls to set_gdbarch_gnu_triplet_regexp.
1360
1361 2017-04-12  Pedro Alves  <palves@redhat.com>
1362
1363         PR gdb/21323
1364         * c-lang.c (cplus_primitive_types) <cplus_primitive_type_wchar_t>:
1365         New enum value.
1366         (cplus_language_arch_info): Register cplus_primitive_type_wchar_t.
1367         * gdbtypes.h (struct builtin_type) <builtin_wchar>: New field.
1368         * gdbtypes.c (gdbtypes_post_init): Create the "wchar_t" type.
1369         * gdbarch.sh (wchar_bit, wchar_signed): New per-arch values.
1370         * gdbarch.h, gdbarch.c: Regenerate.
1371         * aarch64-tdep.c (aarch64_gdbarch_init): Override
1372         gdbarch_wchar_bit and gdbarch_wchar_signed.
1373         * alpha-tdep.c (alpha_gdbarch_init): Likewise.
1374         * arm-tdep.c (arm_gdbarch_init): Likewise.
1375         * avr-tdep.c (avr_gdbarch_init): Likewise.
1376         * h8300-tdep.c (h8300_gdbarch_init): Likewise.
1377         * i386-nto-tdep.c (i386nto_init_abi): Likewise.
1378         * i386-tdep.c (i386_go32_init_abi): Likewise.
1379         * m32r-tdep.c (m32r_gdbarch_init): Likewise.
1380         * moxie-tdep.c (moxie_gdbarch_init): Likewise.
1381         * nds32-tdep.c (nds32_gdbarch_init): Likewise.
1382         * rs6000-aix-tdep.c (rs6000_aix_init_osabi): Likewise.
1383         * sh-tdep.c (sh_gdbarch_init): Likewise.
1384         * sparc-tdep.c (sparc32_gdbarch_init): Likewise.
1385         * sparc64-tdep.c (sparc64_init_abi): Likewise.
1386         * windows-tdep.c (windows_init_abi): Likewise.
1387         * xstormy16-tdep.c (xstormy16_gdbarch_init): Likewise.
1388
1389 2017-04-12  Pedro Alves  <palves@redhat.com>
1390
1391         PR c++/21323
1392         * c-lang.c (cplus_primitive_types) <cplus_primitive_type_char16_t,
1393         cplus_primitive_type_char32_t>: New enum values.
1394         (cplus_language_arch_info): Register cplus_primitive_type_char16_t
1395         and cplus_primitive_type_char32_t.
1396         * dwarf2read.c (read_base_type) <DW_ATE_UTF>: If bit size is 16 or
1397         32, use the archtecture's built-in type for char16_t and char32_t,
1398         respectively.  Otherwise, fallback to init_integer_type as before,
1399         but make the type unsigned, and issue a complaint.
1400         * gdbtypes.c (gdbtypes_post_init): Make char16_t and char32_t unsigned.
1401
1402 2017-04-12  Alan Hayward  <alan.hayward@arm.com>
1403
1404         * m32r-tdep.c (M32R_ARG_REGISTER_SIZE): Added.
1405         (m32r_push_dummy_call): Use M32R_ARG_REGISTER_SIZE.
1406
1407 2017-04-12  Sergio Durigan Junior  <sergiodj@redhat.com>
1408
1409         * windows-nat.c (windows_create_inferior): Declare 'toexec' as
1410         'const char *'.
1411
1412 2017-04-12  Sergio Durigan Junior  <sergiodj@redhat.com>
1413
1414         * common/common-utils.c (free_vector_argv): New function.
1415         * common/common-utils.h: Include <vector>.
1416         (free_vector_argv): New prototype.
1417         * darwin-nat.c (darwin_create_inferior): Rewrite function
1418         prototype in order to constify "exec_file" and accept a
1419         "std::string" for "allargs".
1420         * fork-child.c: Include <vector>.
1421         (breakup_args): Rewrite function, using C++.
1422         (fork_inferior): Rewrite function header, constify "exec_file_arg"
1423         and accept "std::string" for "allargs".  Update the code to
1424         calculate "argv" based on "allargs".  Update calls to "exec_fun"
1425         and "execvp".
1426         * gnu-nat.c (gnu_create_inferior): Rewrite function prototype in
1427         order to constify "exec_file" and accept a "std::string" for
1428         "allargs".
1429         * go32-nat.c (go32_create_inferior): Likewise.
1430         * inf-ptrace.c (inf_ptrace_create_inferior): Likewise.
1431         * infcmd.c (run_command_1): Constify "exec_file".  Use
1432         "std::string" for inferior arguments.
1433         * inferior.h (fork_inferior): Update prototype.
1434         * linux-nat.c (linux_nat_create_inferior): Rewrite function
1435         prototype in order to constify "exec_file" and accept a
1436         "std::string" for "allargs".
1437         * nto-procfs.c (procfs_create_inferior): Likewise.
1438         * procfs.c (procfs_create_inferior): Likewise.
1439         * remote-sim.c (gdbsim_create_inferior): Likewise.
1440         * remote.c (extended_remote_run): Update code to accept
1441         "std::string" as argument.
1442         (extended_remote_create_inferior): Rewrite function prototype in
1443         order to constify "exec_file" and accept a "std::string" for
1444         "allargs".
1445         * rs6000-nat.c (super_create_inferior): Likewise.
1446         (rs6000_create_inferior): Likewise.
1447         * target.h (struct target_ops) <to_create_inferior>: Likewise.
1448         * windows-nat.c (windows_create_inferior): Likewise.
1449
1450 2017-04-11  Pedro Alves  <palves@redhat.com>
1451
1452         * thread.c: Fix whitespace throughout.
1453
1454 2017-04-11  Philipp Rudo  <prudo@linux.vnet.ibm.com>
1455
1456         * linux-nat.c (linux_nat_detach): Remove delete_lwp call.
1457
1458 2017-04-11  Alan Hayward  <alan.hayward@arm.com>
1459
1460         * arm-tdep.c (arm_store_return_value): Use FP_REGISTER_SIZE
1461
1462 2017-04-10  Sergio Durigan Junior  <sergiodj@redhat.com>
1463
1464         PR gdb/21364
1465         * osdata.c (info_osdata): Check if 'type' is an empty string
1466         instead of NULL.
1467
1468 2017-04-10  Pedro Alves  <palves@redhat.com>
1469
1470         * thread.c (add_thread_silent, delete_thread_1, find_thread_ptid)
1471         (ptid_to_global_thread_id, in_thread_list)
1472         (do_captured_list_thread_ids, set_resumed, set_running)
1473         (set_executing, set_stop_requested, finish_thread_state)
1474         (validate_registers_access, can_access_registers_ptid)
1475         (print_thread_info_1, switch_to_thread)
1476         (do_restore_current_thread_cleanup)
1477         (make_cleanup_restore_current_thread, thread_command)
1478         (thread_name_command): Use operator== instead of ptid_equal.
1479
1480 2017-04-10  Pedro Alves  <palves@redhat.com>
1481
1482         * thread.c (struct current_thread_cleanup) <next>: Delete field.
1483         (current_thread_cleanup_chain): Delete.
1484         (restore_current_thread_cleanup_dtor)
1485         (make_cleanup_restore_current_thread): Remove references to
1486         current_thread_cleanup_chain.
1487
1488 2017-04-10  Alan Hayward  <alan.hayward@arm.com>
1489
1490         * msp430-tdep.c (msp430_pseudo_register_read): Never return
1491         REG_UNKNOWN.
1492
1493 2017-04-10  Yao Qi  <yao.qi@linaro.org>
1494
1495         PR gdb/19942
1496         * gdbthread.h (thread_info::deletable): New method.
1497         (thread_info::incref): New method.
1498         (thread_info::decref): New method.
1499         (thread_info::refcount): Move it to private.
1500         * infrun.c (save_stop_context): Call inc_refcount.
1501         (release_stop_context_cleanup): Likewise.
1502         * thread.c (set_thread_exited): New function.
1503         (init_thread_list): Delete "tp" only it is deletable, otherwise
1504         call set_thread_exited.
1505         (delete_thread_1): Call set_thread_exited.
1506         (current_thread_cleanup) <inferior_pid>: Remove.
1507         <thread>: New field.
1508         (restore_current_thread_ptid_changed): Removed.
1509         (do_restore_current_thread_cleanup): Adjust.
1510         (restore_current_thread_cleanup_dtor): Don't call
1511         find_thread_ptid.
1512         (set_thread_refcount): Use dec_refcount.
1513         (make_cleanup_restore_current_thread): Adjust.
1514         (thread_apply_all_command): Call inc_refcount.
1515         (_initialize_thread): Don't call
1516         observer_attach_thread_ptid_changed.
1517
1518 2017-04-10  Yao Qi  <yao.qi@linaro.org>
1519
1520         * thread.c (delete_thread_1): Hoist code on marking thread as
1521         exited.
1522
1523 2017-04-09  Simon Marchi  <simon.marchi@polymtl.ca>
1524
1525         * windows-nat.c (windows_detach): Initialize ptid with
1526         minus_one_ptid.
1527
1528 2017-04-07  Simon Marchi  <simon.marchi@ericsson.com>
1529
1530         * unittests/ptid-selftests.c: Fix erroneous assert messages.
1531
1532 2017-04-07  Alan Hayward  <alan.hayward@arm.com>
1533
1534         * bfin-tdep.c (BFIN_MAX_REGISTER_SIZE): Add.
1535         (bfin_pseudo_register_read): Use BFIN_MAX_REGISTER_SIZE.
1536         (bfin_pseudo_register_write): Likewise
1537
1538 2017-04-06  Simon Marchi  <simon.marchi@ericsson.com>
1539
1540         * common/ptid.h (struct ptid): Change to...
1541         (class ptid_t): ... this.
1542         <ptid_t>: New constructors.
1543         <pid, lwp_p, lwp, tid_p, tid, is_pid, operator==, operator!=,
1544         matches>: New methods.
1545         <make_null, make_minus_one>: New static methods.
1546         <pid>: Rename to...
1547         <m_pid>: ...this.
1548         <lwp>: Rename to...
1549         <m_lwp>: ...this.
1550         <tid>: Rename to...
1551         <m_tid>: ...this.
1552         (ptid_build, ptid_get_pid, ptid_get_lwp, ptid_get_tid, ptid_equal,
1553         ptid_is_pid, ptid_lwp_p, ptid_tid_p, ptid_match): Take ptid arguments
1554         as references, move comment to class ptid_t.
1555         * common/ptid.c (null_ptid, minus_one_ptid): Initialize with
1556         ptid_t static methods.
1557         (ptid_build, pid_to_ptid, ptid_get_pid, ptid_get_tid,
1558         ptid_equal, ptid_is_pid, ptid_lwp_p, ptid_tid_p, ptid_match):
1559         Take ptid arguments as references, implement using ptid_t methods.
1560         * unittests/ptid-selftests.c: New file.
1561         * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
1562         unittests/ptid-selftests.c.
1563         (SUBDIR_UNITTESTS_OBS): Add unittests/ptid-selftests.o.
1564
1565 2017-04-06  Thomas Preud'homme  <thomas.preudhomme@arm.com>
1566
1567         * python/python.c (python_run_simple_file): Cast mode literal to
1568         non-const char pointer as expected by PyFile_FromString.
1569
1570 2017-04-05  Simon Marchi  <simon.marchi@ericsson.com>
1571
1572         * common/ptid.c (ptid_lwp_p, ptid_tid_p): Remove comparison with
1573         minus_one_ptid and null_ptid.
1574
1575 2017-04-05  Pedro Alves  <palves@redhat.com>
1576
1577         * warning.m4 (build_warnings): Remove -Wno-write-strings.
1578         * configure: Regenerate.
1579
1580 2017-04-05  Pedro Alves  <palves@redhat.com>
1581
1582         * ada-exp.y (yyerror): Constify.
1583         * ada-lang.c (bound_name, get_selections)
1584         (ada_variant_discrim_type)
1585         (ada_variant_discrim_name, ada_value_struct_elt)
1586         (ada_lookup_struct_elt_type, is_unchecked_variant)
1587         (ada_which_variant_applies, standard_exc, ada_get_next_arg)
1588         (catch_ada_exception_command_split)
1589         (catch_ada_assert_command_split, catch_assert_command)
1590         (ada_op_name): Constify.
1591         * ada-lang.h (ada_yyerror, get_selections)
1592         (ada_variant_discrim_name, ada_value_struct_elt): Constify.
1593         * arc-tdep.c (arc_print_frame_cache): Constify.
1594         * arm-tdep.c (arm_skip_stub): Constify.
1595         * ax-gdb.c (gen_binop, gen_struct_ref_recursive, gen_struct_ref)
1596         (gen_aggregate_elt_ref): Constify.
1597         * bcache.c (print_bcache_statistics): Constify.
1598         * bcache.h (print_bcache_statistics): Constify.
1599         * break-catch-throw.c (catch_exception_command_1):
1600         * breakpoint.c (struct ep_type_description::description):
1601         Constify.
1602         (add_solib_catchpoint): Constify.
1603         (catch_fork_command_1): Add cast.
1604         (add_catch_command): Constify.
1605         * breakpoint.h (add_catch_command, add_solib_catchpoint):
1606         Constify.
1607         * bsd-uthread.c (bsd_uthread_state): Constify.
1608         * buildsym.c (patch_subfile_names): Constify.
1609         * buildsym.h (next_symbol_text_func, patch_subfile_names):
1610         Constify.
1611         * c-exp.y (yyerror): Constify.
1612         (token::oper): Constify.
1613         * c-lang.h (c_yyerror, cp_print_class_member): Constify.
1614         * c-varobj.c (cplus_describe_child): Constify.
1615         * charset.c (find_charset_names): Add cast.
1616         (find_charset_names): Constify array and add const_cast.
1617         * cli/cli-cmds.c (complete_command, cd_command): Constify.
1618         (edit_command): Constify.
1619         * cli/cli-decode.c (lookup_cmd): Constify.
1620         * cli/cli-dump.c (dump_memory_command, dump_value_command):
1621         Constify.
1622         (struct dump_context): Constify.
1623         (add_dump_command, restore_command): Constify.
1624         * cli/cli-script.c (get_command_line): Constify.
1625         * cli/cli-script.h (get_command_line): Constify.
1626         * cli/cli-utils.c (check_for_argument): Constify.
1627         * cli/cli-utils.h (check_for_argument): Constify.
1628         * coff-pe-read.c (struct read_pe_section_data): Constify.
1629         * command.h (lookup_cmd): Constify.
1630         * common/print-utils.c (decimal2str): Constify.
1631         * completer.c (gdb_print_filename): Constify.
1632         * corefile.c (set_gnutarget): Constify.
1633         * cp-name-parser.y (yyerror): Constify.
1634         * cp-valprint.c (cp_print_class_member): Constify.
1635         * cris-tdep.c (cris_register_name, crisv32_register_name):
1636         Constify.
1637         * d-exp.y (yyerror): Constify.
1638         (struct token::oper): Constify.
1639         * d-lang.h (d_yyerror): Constify.
1640         * dbxread.c (struct header_file_location::name): Constify.
1641         (add_old_header_file, add_new_header_file, last_function_name)
1642         (dbx_next_symbol_text, add_bincl_to_list)
1643         (find_corresponding_bincl_psymtab, set_namestring)
1644         (find_stab_function_addr, read_dbx_symtab, start_psymtab)
1645         (dbx_end_psymtab, read_ofile_symtab, process_one_symbol):
1646         * defs.h (command_line_input, print_address_symbolic)
1647         (deprecated_readline_begin_hook): Constify.
1648         * dwarf2read.c (anonymous_struct_prefix, dwarf_bool_name):
1649         Constify.
1650         * event-top.c (handle_line_of_input): Constify and add cast.
1651         * exceptions.c (catch_errors): Constify.
1652         * exceptions.h (catch_errors): Constify.
1653         * expprint.c (print_subexp_standard, op_string, op_name)
1654         (op_name_standard, dump_raw_expression, dump_raw_expression):
1655         * expression.h (op_name, op_string, dump_raw_expression):
1656         Constify.
1657         * f-exp.y (yyerror): Constify.
1658         (struct token::oper): Constify.
1659         (struct f77_boolean_val::name): Constify.
1660         * f-lang.c (f_word_break_characters): Constify.
1661         * f-lang.h (f_yyerror): Constify.
1662         * fork-child.c (fork_inferior): Add cast.
1663         * frv-tdep.c (struct gdbarch_tdep::register_names): Constify.
1664         (new_variant): Constify.
1665         * gdbarch.sh (pstring_ptr, pstring_list): Constify.
1666         * gdbarch.c: Regenerate.
1667         * gdbcore.h (set_gnutarget): Constify.
1668         * go-exp.y (yyerror): Constify.
1669         (token::oper): Constify.
1670         * go-lang.h (go_yyerror): Constify.
1671         * go32-nat.c (go32_sysinfo): Constify.
1672         * guile/scm-breakpoint.c (gdbscm_breakpoint_expression): Constify.
1673         * guile/scm-cmd.c (cmdscm_function): Constify.
1674         * guile/scm-param.c (pascm_param_value): Constify.
1675         * h8300-tdep.c (h8300_register_name, h8300s_register_name)
1676         (h8300sx_register_name): Constify.
1677         * hppa-tdep.c (hppa32_register_name, hppa64_register_name):
1678         Constify.
1679         * ia64-tdep.c (ia64_register_names): Constify.
1680         * infcmd.c (construct_inferior_arguments): Constify.
1681         (path_command, attach_post_wait): Constify.
1682         * language.c (show_range_command, show_case_command)
1683         (unk_lang_error): Constify.
1684         * language.h (language_defn::la_error)
1685         (language_defn::la_name_of_this): Constify.
1686         * linespec.c (decode_line_2): Constify.
1687         * linux-thread-db.c (thread_db_err_str): Constify.
1688         * lm32-tdep.c (lm32_register_name): Constify.
1689         * m2-exp.y (yyerror): Constify.
1690         * m2-lang.h (m2_yyerror): Constify.
1691         * m32r-tdep.c (m32r_register_names): Constify and make static.
1692         * m68hc11-tdep.c (m68hc11_register_names): Constify.
1693         * m88k-tdep.c (m88k_register_name): Constify.
1694         * macroexp.c (appendmem): Constify.
1695         * mdebugread.c (fdr_name, add_data_symbol, parse_type)
1696         (upgrade_type, parse_external, parse_partial_symbols)
1697         (mdebug_next_symbol_text, cross_ref, mylookup_symbol, new_psymtab)
1698         (new_symbol): Constify.
1699         * memattr.c (mem_info_command): Constify.
1700         * mep-tdep.c (register_name_from_keyword): Constify.
1701         * mi/mi-cmd-env.c (mi_cmd_env_path, _initialize_mi_cmd_env):
1702         Constify.
1703         * mi/mi-cmd-stack.c (list_args_or_locals): Constify.
1704         * mi/mi-cmd-var.c (mi_cmd_var_show_attributes): Constify.
1705         * mi/mi-main.c (captured_mi_execute_command): Constify and add
1706         cast.
1707         (mi_execute_async_cli_command): Constify.
1708         * mips-tdep.c (mips_register_name): Constify.
1709         * mn10300-tdep.c (register_name, mn10300_generic_register_name)
1710         (am33_register_name, am33_2_register_name)
1711         * moxie-tdep.c (moxie_register_names): Constify.
1712         * nat/linux-osdata.c (osdata_type): Constify fields.
1713         * nto-tdep.c (nto_parse_redirection): Constify.
1714         * objc-lang.c (lookup_struct_typedef, lookup_objc_class)
1715         (lookup_child_selector): Constify.
1716         (objc_methcall::name): Constify.
1717         * objc-lang.h (lookup_objc_class, lookup_child_selector)
1718         (lookup_struct_typedef): Constify.
1719         * objfiles.c (pc_in_section): Constify.
1720         * objfiles.h (pc_in_section): Constify.
1721         * p-exp.y (struct token::oper): Constify.
1722         (yyerror): Constify.
1723         * p-lang.h (pascal_yyerror): Constify.
1724         * parser-defs.h (op_name_standard): Constify.
1725         (op_print::string): Constify.
1726         (exp_descriptor::op_name): Constify.
1727         * printcmd.c (print_address_symbolic): Constify.
1728         * psymtab.c (print_partial_symbols): Constify.
1729         * python/py-breakpoint.c (stop_func): Constify.
1730         (bppy_get_expression): Constify.
1731         * python/py-cmd.c (cmdpy_completer::name): Constify.
1732         (cmdpy_function): Constify.
1733         * python/py-event.c (evpy_add_attribute)
1734         (gdbpy_initialize_event_generic): Constify.
1735         * python/py-event.h (evpy_add_attribute)
1736         (gdbpy_initialize_event_generic): Constify.
1737         * python/py-evts.c (add_new_registry): Constify.
1738         * python/py-finishbreakpoint.c (outofscope_func): Constify.
1739         * python/py-framefilter.c (get_py_iter_from_func): Constify.
1740         * python/py-inferior.c (get_buffer): Add cast.
1741         * python/py-param.c (parm_constant::name): Constify.
1742         * python/py-unwind.c (fprint_frame_id): Constify.
1743         * python/python.c (gdbpy_parameter_value): Constify.
1744         * remote-fileio.c (remote_fio_func_map): Make 'name' const.
1745         * remote.c (memory_packet_config::name): Constify.
1746         (show_packet_config_cmd, remote_write_bytes)
1747         (remote_buffer_add_string):
1748         * reverse.c (exec_reverse_once): Constify.
1749         * rs6000-tdep.c (variant::name, variant::description): Constify.
1750         * rust-exp.y (rustyyerror): Constify.
1751         * rust-lang.c (rust_op_name): Constify.
1752         * rust-lang.h (rustyyerror): Constify.
1753         * serial.h (serial_ops::name): Constify.
1754         * sh-tdep.c (sh_sh_register_name, sh_sh3_register_name)
1755         (sh_sh3e_register_name, sh_sh2e_register_name)
1756         (sh_sh2a_register_name, sh_sh2a_nofpu_register_name)
1757         (sh_sh_dsp_register_name, sh_sh3_dsp_register_name)
1758         (sh_sh4_register_name, sh_sh4_nofpu_register_name)
1759         (sh_sh4al_dsp_register_name): Constify.
1760         * sh64-tdep.c (sh64_register_name): Constify.
1761         * solib-darwin.c (lookup_symbol_from_bfd): Constify.
1762         * spu-tdep.c (spu_register_name, info_spu_dma_cmdlist): Constify.
1763         * stabsread.c (patch_block_stabs, read_type_number)
1764         (ref_map::stabs, ref_add, process_reference)
1765         (symbol_reference_defined, define_symbol, define_symbol)
1766         (error_type, read_type, read_member_functions, read_cpp_abbrev)
1767         (read_one_struct_field, read_struct_fields, read_baseclasses)
1768         (read_tilde_fields, read_struct_type, read_array_type)
1769         (read_enum_type, read_sun_builtin_type, read_sun_floating_type)
1770         (read_huge_number, read_range_type, read_args, common_block_start)
1771         (find_name_end): Constify.
1772         * stabsread.h (common_block_start, define_symbol)
1773         (process_one_symbol, symbol_reference_defined, ref_add):
1774         * symfile.c (get_section_index, add_symbol_file_command):
1775         * symfile.h (get_section_index): Constify.
1776         * target-descriptions.c (tdesc_type::name): Constify.
1777         (tdesc_free_type): Add cast.
1778         * target.c (find_default_run_target):
1779         (add_deprecated_target_alias, find_default_run_target)
1780         (target_announce_detach): Constify.
1781         (do_option): Constify.
1782         * target.h (add_deprecated_target_alias): Constify.
1783         * thread.c (print_thread_info_1): Constify.
1784         * top.c (deprecated_readline_begin_hook, command_line_input):
1785         Constify.
1786         (init_main): Add casts.
1787         * top.h (handle_line_of_input): Constify.
1788         * tracefile-tfile.c (tfile_write_uploaded_tsv): Constify.
1789         * tracepoint.c (tvariables_info_1, trace_status_mi): Constify.
1790         (tfind_command): Rename to ...
1791         (tfind_command_1): ... this and constify.
1792         (tfind_command): New function.
1793         (tfind_end_command, tfind_start_command): Adjust.
1794         (encode_source_string): Constify.
1795         * tracepoint.h (encode_source_string): Constify.
1796         * tui/tui-data.c (tui_partial_win_by_name): Constify.
1797         * tui/tui-data.h (tui_partial_win_by_name): Constify.
1798         * tui/tui-source.c (tui_set_source_content_nil): Constify.
1799         * tui/tui-source.h (tui_set_source_content_nil): Constify.
1800         * tui/tui-win.c (parse_scrolling_args): Constify.
1801         * tui/tui-windata.c (tui_erase_data_content): Constify.
1802         * tui/tui-windata.h (tui_erase_data_content): Constify.
1803         * tui/tui-winsource.c (tui_erase_source_content): Constify.
1804         * tui/tui.c (tui_enable): Add cast.
1805         * utils.c (defaulted_query): Constify.
1806         (init_page_info): Add cast.
1807         (puts_debug, subset_compare): Constify.
1808         * utils.h (subset_compare): Constify.
1809         * varobj.c (varobj_format_string): Constify.
1810         * varobj.h (varobj_format_string): Constify.
1811         * vax-tdep.c (vax_register_name): Constify.
1812         * windows-nat.c (windows_detach): Constify.
1813         * xcoffread.c (process_linenos, xcoff_next_symbol_text): Constify.
1814         * xml-support.c (gdb_xml_end_element): Constify.
1815         * xml-tdesc.c (tdesc_start_reg): Constify.
1816         * xstormy16-tdep.c (xstormy16_register_name): Constify.
1817         * xtensa-tdep.c (xtensa_find_register_by_name): Constify.
1818         * xtensa-tdep.h (xtensa_register_t::name): Constify.
1819
1820 2017-04-05  Pedro Alves  <palves@redhat.com>
1821
1822         * proc-api.c (struct trans): Constify.
1823         (procfs_note): Constify.
1824         * proc-events.c (struct trans, syscall_table):
1825         * proc-flags.c (struct trans): Constify.
1826         * proc-utils.h (procfs_note): Constify.
1827         * proc-why.c (struct trans): Constify.
1828         * procfs.c (dead_procinfo, find_syscall, proc_warn, proc_error)
1829         (procfs_detach): Constify.
1830         * sol-thread.c (struct string_map): Constify.
1831         (td_err_string, td_state_string): Constify.
1832
1833 2017-04-05  Pedro Alves  <palves@redhat.com>
1834
1835         * proc-api.c (procfs_filename): Don't initialize
1836         procfs_filename.
1837         (prepare_to_trace): Assume procfs_filename is non-NULL.
1838         (_initialize_proc_api): Give procfs_filename a default value here.
1839
1840 2017-04-05  Pedro Alves  <palves@redhat.com>
1841
1842         * break-catch-throw.c (handle_gnu_v3_exceptions): Constify
1843         'cond_string' parameter.
1844         (extract_exception_regexp): Constify 'string' parameter.
1845         (catch_exception_command_1): Constify.
1846         * breakpoint.c (init_catchpoint)
1847         (create_fork_vfork_event_catchpoint): Constify 'cond_string'
1848         parameter.
1849         (ep_parse_optional_if_clause, catch_fork_command_1)
1850         (catch_exec_command_1): Constify.
1851         * breakpoint.h (init_catchpoint): Constify 'cond_string'
1852         parameter.
1853         (ep_parse_optional_if_clause): Constify.
1854         * cli/cli-utils.c (remove_trailing_whitespace)
1855         (check_for_argument): Constify.
1856         * cli/cli-utils.h (remove_trailing_whitespace): Constify and add
1857         non-const overload.
1858         (check_for_argument): Likewise.
1859
1860 2017-04-05  Pedro Alves  <palves@redhat.com>
1861
1862         * event-top.c (command_line_handler): Add cast to execute_command
1863         call.
1864         * record-btrace.c (cmd_record_btrace_bts_start)
1865         (cmd_record_btrace_pt_start, cmd_record_btrace_start)
1866         (cmd_record_btrace_start): Add cast to execute_command call.
1867         * record-full.c (record_full_goto_insn):
1868         * record.c (record_start, record_stop): Add cast to
1869         execute_command_to_string calls.
1870         (cmd_record_start): Add cast to execute_command calls.
1871
1872 2017-04-05  Pedro Alves  <palves@redhat.com>
1873
1874         * python/python-internal.h (gdb_PyArg_ParseTupleAndKeywords): New
1875         static inline function.
1876         * python/py-arch.c (archpy_disassemble): Constify 'keywords'
1877         array and use gdb_PyArg_ParseTupleAndKeywords.
1878         * python/py-cmd.c (cmdpy_init): Likewise.
1879         * python/py-finishbreakpoint.c (bpfinishpy_init): Likewise.
1880         * python/py-inferior.c (infpy_read_memory, infpy_write_memory)
1881         (infpy_search_memory): Likewise.
1882         * python/py-objfile.c (objfpy_add_separate_debug_file)
1883         (gdbpy_lookup_objfile): Likewise.
1884         * python/py-symbol.c (gdbpy_lookup_symbol)
1885         (gdbpy_lookup_global_symbol): Likewise.
1886         * python/py-type.c (gdbpy_lookup_type): Likewise.
1887         * python/py-value.c (valpy_lazy_string, valpy_string): Likewise.
1888         * python/python.c (execute_gdb_command, gdbpy_write, gdbpy_flush):
1889         Likewise.
1890
1891 2017-04-05  Pedro Alves  <palves@redhat.com>
1892
1893         * python/python-internal.h (gdb_PyGetSetDef): New type.
1894         * python/py-block.c (block_object_getset)
1895         (breakpoint_object_getset): Now a gdb_PyGetSetDef array.
1896         * python/py-event.c (event_object_getset)
1897         (finish_breakpoint_object_getset): Likewise.
1898         * python/py-inferior.c (inferior_object_getset): Likewise.
1899         * python/py-infthread.c (thread_object_getset): Likewise.
1900         * python/py-lazy-string.c (lazy_string_object_getset): Likewise.
1901         * python/py-linetable.c (linetable_entry_object_getset): Likewise.
1902         * python/py-objfile.c (objfile_getset): Likewise.
1903         * python/py-progspace.c (pspace_getset): Likewise.
1904         * python/py-record-btrace.c (btpy_insn_getset, btpy_call_getset):
1905         Likewise.
1906         * python/py-record.c (recpy_record_getset): Likewise.
1907         * python/py-symbol.c (symbol_object_getset): Likewise.
1908         * python/py-symtab.c (symtab_object_getset, sal_object_getset):
1909         Likewise.
1910         * python/py-type.c (type_object_getset, field_object_getset):
1911         Likewise.
1912         * python/py-value.c (value_object_getset): Likewise.
1913
1914 2017-04-05  Pedro Alves  <palves@redhat.com>
1915
1916         * python/python-internal.h (gdb_PyObject_CallMethod)
1917         (gdb_PyErr_NewException, gdb_PySys_GetObject, gdb_PySys_SetPath):
1918         New functions.
1919         (GDB_PYSYS_SETPATH_CHAR, PyObject_CallMethod, PyErr_NewException)
1920         (PySys_GetObject, PySys_SetPath): New macros.
1921
1922 2017-04-05  Pedro Alves  <palves@redhat.com>
1923
1924         * mi/mi-cmd-info.c (mi_cmd_info_os): Call info_osdata instead of
1925         info_osdata_command.
1926         * osdata.c (info_osdata_command): Rename to ...
1927         (info_osdata): ... this.  Constify 'type' parameter, and remove
1928         the 'from_tty' parameter.  Accept NULL TYPE.
1929         (info_osdata_command): New function.
1930         * osdata.h (info_osdata_command): Remove declaration.
1931         (info_osdata): New declaration.
1932
1933 2017-04-05  Pedro Alves  <palves@redhat.com>
1934
1935         * mi/mi-cmd-break.c (mi_cmd_break_insert_1, mi_cmd_break_insert)
1936         (mi_cmd_dprintf_insert, mi_cmd_break_passcount)
1937         (mi_cmd_break_watch, mi_cmd_break_commands): Constify 'command'
1938         parameter.
1939         * mi/mi-cmd-catch.c (mi_cmd_catch_assert, mi_cmd_catch_exception)
1940         (mi_cmd_catch_load, mi_cmd_catch_unload): Constify cmd' parameter.
1941         * mi/mi-cmd-disas.c (mi_cmd_disassemble): Constify 'command'
1942         parameter.
1943         * mi/mi-cmd-env.c (mi_cmd_env_pwd, mi_cmd_env_cd, mi_cmd_env_path)
1944         (mi_cmd_env_dir, mi_cmd_inferior_tty_set, _cmd_inferior_tty_show)
1945         * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file)
1946         (mi_cmd_file_list_exec_source_files)
1947         (mi_cmd_file_list_shared_libraries): Constify 'command' parameter.
1948         * mi/mi-cmd-info.c (mi_cmd_info_ada_exceptions)
1949         (mi_cmd_info_gdb_mi_command, mi_cmd_info_os): Constify 'command'
1950         parameter.
1951         * mi/mi-cmd-stack.c (mi_cmd_enable_frame_filters)
1952         (mi_cmd_stack_list_frames, mi_cmd_stack_info_depth)
1953         (mi_cmd_stack_list_locals, mi_cmd_stack_list_args)
1954         (mi_cmd_stack_list_variables, mi_cmd_stack_select_frame)
1955         (mi_cmd_stack_info_frame): Constify 'command' parameter.
1956         * mi/mi-cmd-target.c (mi_cmd_target_file_get)
1957         (mi_cmd_target_file_put, mi_cmd_target_file_delete): Constify
1958         'command' parameter.
1959         * mi/mi-cmd-var.c (mi_cmd_var_create, mi_cmd_var_delete)
1960         (mi_cmd_var_set_format, mi_cmd_var_set_visualizer)
1961         (mi_cmd_var_set_frozen, mi_cmd_var_show_format)
1962         (mi_cmd_var_info_num_children, mi_cmd_var_list_children)
1963         (mi_cmd_var_info_type, mi_cmd_var_info_path_expression)
1964         (mi_cmd_var_info_expression, mi_cmd_var_show_attributes)
1965         (mi_cmd_var_evaluate_expression, mi_cmd_var_assign)
1966         (mi_cmd_var_update, mi_cmd_enable_pretty_printing)
1967         (mi_cmd_var_set_update_range): Constify 'command' parameter.
1968         * mi/mi-cmds.h (mi_cmd_argv_ftype): Constify 'command' parameter.
1969         * mi/mi-interp.c (mi_cmd_interpreter_exec): Constify 'command'
1970         parameter.
1971         * mi/mi-main.c (mi_cmd_gdb_exit, mi_cmd_exec_next)
1972         (mi_cmd_exec_next_instruction, mi_cmd_exec_step)
1973         (mi_cmd_exec_step_instruction, mi_cmd_exec_finish)
1974         (mi_cmd_exec_return ,mi_cmd_exec_jump, mi_cmd_exec_continue)
1975         (mi_cmd_exec_interrupt, mi_cmd_exec_run, mi_cmd_target_detach)
1976         (mi_cmd_target_flash_erase, mi_cmd_thread_select)
1977         (mi_cmd_thread_list_ids, mi_cmd_thread_info)
1978         (mi_cmd_list_thread_groups, mi_cmd_data_list_register_names)
1979         (mi_cmd_data_list_changed_registers)
1980         (mi_cmd_data_write_register_values)
1981         (mi_cmd_data_evaluate_expression, mi_cmd_data_read_memory)
1982         (mi_cmd_data_read_memory_bytes, mi_cmd_data_write_memory)
1983         (mi_cmd_data_write_memory_bytes, mi_cmd_enable_timings)
1984         (mi_cmd_list_features, mi_cmd_list_target_features)
1985         (mi_cmd_add_inferior, mi_cmd_remove_inferior)
1986         (mi_cmd_trace_define_variable, mi_cmd_trace_list_variables)
1987         (mi_cmd_trace_find, mi_cmd_trace_save, mi_cmd_trace_start)
1988         (mi_cmd_trace_status, mi_cmd_trace_stop, mi_cmd_ada_task_info)
1989         (mi_cmd_trace_frame_collected): Constify 'command'
1990         parameter.
1991         * mi/mi-symbol-cmds.c (mi_cmd_symbol_list_lines): Constify
1992         'command' parameter.
1993
1994 2017-04-05  Pedro Alves  <palves@redhat.com>
1995
1996         * ada-lang.c (ada_completer_word_break_characters): Now a const
1997         array.
1998         (ada_get_gdb_completer_word_break_characters): Constify.
1999         * completer.c (gdb_completer_command_word_break_characters)
2000         (gdb_completer_file_name_break_characters)
2001         (gdb_completer_quote_characters): Now const arrays.
2002         (get_gdb_completer_quote_characters): Constify.
2003         (set_rl_completer_word_break_characters): New function.
2004         (set_gdb_completion_word_break_characters)
2005         (complete_line_internal): Use it.
2006         * completer.h (get_gdb_completer_quote_characters): Constify.
2007         (set_rl_completer_word_break_characters): Declare.
2008         * f-lang.c (f_word_break_characters): Constify.
2009         * language.c (default_word_break_characters): Constify.
2010         * language.h (language_defn::la_word_break_characters): Constify.
2011         (default_word_break_characters): Constify.
2012         * top.c (init_main): Use set_rl_completer_word_break_characters.
2013
2014 2017-04-05  Pedro Alves  <palves@redhat.com>
2015
2016         * aix-thread.c (aix_thread_pid_to_str)
2017         (aix_thread_extra_thread_info): Constify.
2018         * bsd-kvm.c (bsd_kvm_pid_to_str): Constify.
2019         * bsd-uthread.c (bsd_uthread_extra_thread_info)
2020         (bsd_uthread_pid_to_str): Constify.
2021         * corelow.c (core_pid_to_str): Constify.
2022         * darwin-nat.c (darwin_pid_to_str): Constify.
2023         * fbsd-nat.c (fbsd_pid_to_str): Constify.
2024         * fbsd-tdep.c (fbsd_core_pid_to_str, gdbarch_core_pid_to_str):
2025         Constify.
2026         * gnu-nat.c (gnu_pid_to_str): Constify.
2027         * go32-nat.c (go32_pid_to_str): Constify.
2028         * i386-cygwin-tdep.c (i386_windows_core_pid_to_str): Constify.
2029         * inf-ptrace.c (inf_ptrace_pid_to_str): Constify.
2030         * inferior.c (inferior_pid_to_str): Constify.
2031         * linux-nat.c (linux_nat_pid_to_str): Constify.
2032         * linux-tdep.c (linux_core_pid_to_str): Constify.
2033         * linux-thread-db.c (thread_db_pid_to_str)
2034         (thread_db_extra_thread_info): Constify.
2035         * nto-tdep.c (nto_extra_thread_info): Constify.
2036         * nto-tdep.h (nto_extra_thread_info): Constify.
2037         * obsd-nat.c (obsd_pid_to_str): Constify.
2038         * procfs.c (procfs_pid_to_str): Constify.
2039         * ravenscar-thread.c (ravenscar_extra_thread_info)
2040         (ravenscar_pid_to_str): Constify.
2041         * remote-sim.c (gdbsim_pid_to_str): Constify.
2042         * remote.c (remote_threads_extra_info, remote_pid_to_str):
2043         Constify.
2044         * sol-thread.c (solaris_pid_to_str): Constify.
2045         * sol2-tdep.c (sol2_core_pid_to_str): Constify.
2046         * sol2-tdep.h (sol2_core_pid_to_str): Constify.
2047         * target.c (default_pid_to_str, target_pid_to_str)
2048         (normal_pid_to_str, default_pid_to_str): Constify.
2049         * target.h (target_ops::to_pid_to_str)
2050         (target_ops::to_extra_thread_info): Constify.
2051         (target_pid_to_str, normal_pid_to_str): Constify.
2052         * windows-nat.c (windows_pid_to_str): Constify.
2053         * gdbarch.sh (core_pid_to_str): Constify.
2054         * target-delegates.c: Regenerate.
2055         * gdbarch.h, gdbarch.c: Regenerate.
2056
2057 2017-04-05  Pedro Alves  <palves@redhat.com>
2058
2059         * main.c (captured_main_1): Use gdb::unique_xmalloc_ptr to manage
2060         the memory of the temporary warning_pre_print override.
2061         * utils.c (warning_pre_print): Constify.
2062         * utils.h (warning_pre_print): Constify.
2063
2064 2017-04-05  Pedro Alves  <palves@redhat.com>
2065
2066         * cli/cli-cmds.c (shell_escape): Constify 'arg' parameter.
2067         (shell_command): New function.
2068         (make_command): Use std::string.
2069         (init_cli_cmds): Register shell_command instead of shell_escape.
2070
2071 2017-04-05  Pedro Alves  <palves@redhat.com>
2072
2073         * breakpoint.c (dprintf_function, dprintf_channel): Don't initialize.
2074         * tracepoint.c (default_collect): Don't initialize.
2075
2076 2017-04-05  Pedro Alves  <palves@redhat.com>
2077
2078         * macroexp.c (macro_buffer::shared): Now a bool.
2079         (init_buffer): Update.
2080         (init_shared_buffer): Constify 'addr' parameter.
2081         (substitute_args, expand, macro_expand, macro_expand_next): Remove
2082         casts.
2083
2084 2017-04-05  Pedro Alves  <palves@redhat.com>
2085
2086         * arm-tdep.c (show_disassembly_style_sfunc): Constify local.
2087         * disasm.c (set_disassembler_options): Constify local.
2088         * i386-tdep.c (i386_print_insn): Remove cast and FIXME comment.
2089
2090 2017-04-05  Sergio Durigan Junior  <sergiodj@redhat.com>
2091
2092         PR gdb/21352
2093         * tracefile.c (tsave_command): Fix argument parsing for '-r'
2094         option.
2095
2096 2017-04-05  Yao Qi  <yao.qi@linaro.org>
2097
2098         * frame.c (frame_unwind_register_unsigned): Call
2099         frame_unwind_register_value.
2100
2101 2017-04-05  Yao Qi  <yao.qi@linaro.org>
2102
2103         * gdb.threads/thread-specific-bp.exp (check_thread_specific_breakpoint):
2104         Use gdb_test_multiple, and don't match anchor.
2105
2106 2017-04-05  Pedro Alves  <palves@redhat.com>
2107
2108         * MAINTAINERS (Global Maintainers): Add Simon Marchi.
2109         (Write After Approval): Remove Simon Marchi.
2110
2111 2017-04-05  Pedro Alves  <palves@redhat.com>
2112
2113         * common/gdb_optional.h (optional::optional): Make constexpr and
2114         initialize m_dummy.
2115
2116 2017-04-04  John Baldwin  <jhb@FreeBSD.org>
2117
2118         * amd64-fbsd-tdep.c: Remove "bsd-uthread.h" include.
2119         (amd64fbsd_jmp_buf_reg_offset): Remove.
2120         (amd64fbsd_supply_uthread): Remove function.
2121         (amd64fbsd_collect_uthread): Remove function.
2122         (amd64fbsd_init_abi): Don't set bsd-uthread callbacks.
2123         * configure.tgt (i[34567]86-*-freebsd*): Remove bsd-uthread.o.
2124         (x86_64-*-freebsd*): Remove bsd-uthread.o.
2125         (fbsd-nat.c): Update comment.
2126         * i386-fbsd-tdep.c: Remove "bsd-uthread.h" include.
2127         (i386fbsd_jmp_buf_reg_offset): Remove.
2128         (i386fbsd_supply_uthread): Remove function.
2129         (i386fbsd_collect_uthread): Remove function.
2130         (i386fbsd_init_abi): Don't set bsd-uthread callbacks.
2131
2132 2017-04-04  John Baldwin  <jhb@FreeBSD.org>
2133
2134         * Makefile.in (ALL_64_TARGET_OBS): Remove alpha-fbsd-tdep.o.
2135         (ALLDEPFILES): Remove alpha-fbsd-tdep.c
2136         * NEWS: Mention that support for FreeBSD/alpha was removed.
2137         * alpha-fbsd-tdep.c: Delete file.
2138         * config/alpha/fbsd.mh: Delete file.
2139         * configure.host: Delete alpha*-*-freebsd* and
2140         alpha*-*-kfreebsd*-gnu.
2141         * configure.tgt: Delete alpha*-*-freebsd* and
2142         alpha*-*-kfreebsd*-gnu.
2143
2144 2017-04-04  John Baldwin  <jhb@FreeBSD.org>
2145
2146         * amd64-bsd-nat.c (amd64bsd_fetch_inferior_registers,
2147         amd64bsd_store_inferior_registers): Use ptid from regcache.
2148
2149 2017-04-04  Pedro Alves  <palves@redhat.com>
2150
2151         * dwarf2read.c (lnp_state_machine): Now a class.  Initialize all
2152         data fields, make them private and add "m_" prefixes.
2153         (lnp_state_machine::lnp_state_machine): New ctor.
2154         (record_line, check_line_address, handle_set_discriminator)
2155         (handle_set_address, handle_advance_pc, handle_special_opcode)
2156         (handle_advance_line, handle_set_file, handle_negate_stmt)
2157         (handle_const_add_pc, handle_fixed_advance_pc, handle_copy)
2158         (end_sequence, advance_line): New methods.
2159         (m_gdbarch, m_record_lines_p): New fields.
2160         (lnp_reader_state): Delete.
2161         (dwarf_record_line): Rename to ...
2162         (lnp_state_machine::record_line): ... adjust.
2163         (init_lnp_state_machine): Delete.
2164         (lnp_state_machine::lnp_state_machine): New.
2165         (check_line_address): Rename to ...
2166         (lnp_state_machine::check_line_address): This.
2167         (dwarf_decode_lines_1): Remove reference to "reader_state".
2168         Adjust lnp_state_machine having a non-default ctor.  Use bool.
2169         State machine internal state manipulation moved to
2170         lnp_state_machine methods.
2171
2172 2017-04-04  Pedro Alves  <palves@redhat.com>
2173
2174         * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
2175         unittests/offset-type-selftests.c.
2176         (SUBDIR_UNITTESTS_OBS): Add offset-type-selftests.o.
2177         * common/offset-type.h: New file.
2178         * common/preprocessor.h: New file.
2179         * common/traits.h: New file.
2180         * common/valid-expr.h: New file.
2181         * dwarf2expr.c: Include "common/underlying.h".  Adjust to use
2182         sect_offset and cu_offset strong typedefs throughout.
2183         * dwarf2expr.h: Adjust to use sect_offset and cu_offset strong
2184         typedefs throughout.
2185         * dwarf2loc.c: Include "common/underlying.h".  Adjust to use
2186         sect_offset and cu_offset strong typedefs throughout.
2187         * dwarf2read.c: Adjust to use sect_offset and cu_offset strong
2188         typedefs throughout.
2189         * gdbtypes.h: Include "common/offset-type.h".
2190         (cu_offset): Now an offset type (strong typedef) instead of a
2191         struct.
2192         (sect_offset): Likewise.
2193         (union call_site_parameter_u): Rename "param_offset" field to
2194         "param_cu_off".
2195         * unittests/offset-type-selftests.c: New file.
2196
2197 2017-04-04  Pedro Alves  <palves@redhat.com>
2198
2199         * common/underlying.h: New file.
2200         * dwarf2read.c: Include "common/gdb_optional.h" and
2201         "common/underlying.h".
2202         (dir_index, file_name_index): New types.
2203         (file_entry): Use them.
2204         (file_entry::include): Use to_underlying.
2205         (line_header::add_file_name): Use dir_index.
2206         (read_formatted_entries): Use gdb::optional.  Read form before
2207         writting to file_entry.
2208         (dwarf_decode_line_header): Use dir_index.
2209         (lnp_state_machine::current_file): Use to_underlying.
2210         (lnp_state_machine::file): Change type to file_name_index.
2211         (dwarf_record_line): Use to_underlying.
2212         (init_lnp_state_machine): Use file_name_index.
2213         (dwarf_decode_lines_1): Use dir_index and file_name_index.
2214
2215 2017-04-04  Pedro Alves  <palves@redhat.com>
2216
2217         * common/gdb_optional.h (gdb::optiona): Add operator->, operator*,
2218         operator bool, has_value and get methods.
2219
2220 2017-04-04  Pedro Alves  <palves@redhat.com>
2221
2222         * dwarf2read.c (struct file_entry): Add ctors, and initialize all
2223         fields.
2224         (line_header): Initialize all data fields.  Change type of
2225         standard_opcode_lengths to std::unique_ptr<unsigned char[]>.
2226         Change type of include_dirs to std::vector<const char *>.  Remove
2227         num_include_dirs, include_dirs_size.  Change type of file_names to
2228         std::vector<file_entry>.  Remove num_file_names, file_names_size.
2229         (line_header::line_header): New.
2230         (line_header::add_include_dir, line_header::add_file_name): New
2231         methods.
2232         (line_header::include_dir_at): Remove NULL check.
2233         (line_header::file_name_at): Add const overload.
2234         (line_header_up): New unique_ptr typedef.
2235         (dw2_get_file_names_reader): Use line_header_up.  Adjust to use
2236         std::vector.  Remove free_line_header call.
2237         (dwarf2_build_include_psymtabs): Use line_header_up.  Remove
2238         free_line_header call.
2239         (free_cu_line_header): Delete.
2240         (handle_DW_AT_stmt_list, handle_DW_AT_stmt_list)
2241         (setup_type_unit_groups): Use line_header_up instead of cleanups.
2242         Adjust to use std::vector.
2243         (free_line_header): Delete.
2244         (free_line_header_voidp): Use delete.
2245         (add_include_dir): Replace with ...
2246         (line_header::add_include_dir): ... this method.  Use std::vector.
2247         (add_file_name): Replace with ...
2248         (line_header::add_file_name): ... this method.  Use std::vector.
2249         (add_include_dir_stub): Delete.
2250         (read_formatted_entries): Remove memset.
2251         (dwarf_decode_line_header): Return a line_header_up instead of a
2252         raw pointer.  Remove cleanup handling.  Pass lambdas to
2253         read_formatted_entries.  Adjust to use line_header methods.
2254         (dwarf_decode_lines_1): Adjust to use line_header methods.
2255         (dwarf_decode_lines, file_file_name, file_full_name): Adjust to
2256         use std::vector.
2257
2258 2017-04-04  Simon Marchi  <simon.marchi@polymtl.ca>
2259
2260         * remote.c (set_general_thread, set_continue_thread): Use ptid_t
2261         instead of struct ptid.
2262
2263 2017-05-04  Alan Hayward  <alan.hayward@arm.com>
2264
2265         * frame.c (get_frame_register_bytes): Unwind using value.
2266         (put_frame_register_bytes): Likewise.
2267
2268 2017-03-30  Iain Buclaw  <ibuclaw@gdcproject.org>
2269
2270         * d-exp.y (type_aggregate_p): Treat TYPE_CODE_MODULE as being
2271         aggregate-like.
2272
2273 2017-03-29  Jan Kratochvil  <jan.kratochvil@redhat.com>
2274
2275         * auto-load.c (auto_load_section_scripts): Check SEC_HAS_CONTENTS.
2276
2277 2017-03-29  Yao Qi  <yao.qi@linaro.org>
2278
2279         * gdbthread.h (struct thread_info): Declare constructor and
2280         destructor.  Add some in-class member initializers.
2281         * thread.c (free_thread): Remove.
2282         (init_thread_list): Call delete instead of free_thread.
2283         (new_thread): Call thread_info constructor.
2284         (thread_info::thread_info): New function.
2285         (thread_info::~thread_info): New function.
2286         (delete_thread_1): Call delete instead of free_thread.
2287         (make_cleanup_restore_current_thread): Move tp and frame to
2288         inner block.
2289
2290 2017-03-28  Anton Kolesov  <anton.kolesov@synopsys.com>
2291
2292         * arc-tdep.c (arc_frame_cache): Add support for prologue analysis.
2293         (arc_skip_prologue): Likewise.
2294         (arc_make_frame_cache): Likewise.
2295         (arc_pv_get_operand): New function.
2296         (arc_is_in_prologue): Likewise.
2297         (arc_analyze_prologue): Likewise.
2298         (arc_print_frame_cache): Likewise.
2299         (MAX_PROLOGUE_LENGTH): New constant.
2300
2301 2017-03-28  Anton Kolesov  <anton.kolesov@synopsys.com>
2302
2303         * configure.tgt: Add arc-insn.o.
2304         * arc-tdep.c (arc_delayed_print_insn): Make non-static.
2305         (dump_arc_instruction_command): New function.
2306         (arc_fprintf_disasm): Likewise.
2307         (arc_disassemble_info): Likewise.
2308         (arc_insn_get_operand_value): Likewise.
2309         (arc_insn_get_operand_value_signed): Likewise.
2310         (arc_insn_get_memory_base_reg): Likewise.
2311         (arc_insn_get_memory_offset): Likewise.
2312         (arc_insn_get_branch_target): Likewise.
2313         (arc_insn_dump): Likewise.
2314         (arc_insn_get_linear_next_pc): Likewise.
2315         * arc-tdep.h (arc_delayed_print_insn): Add function declaration.
2316         (arc_disassemble_info): Likewise.
2317         (arc_insn_get_branch_target): Likewise.
2318         (arc_insn_get_linear_next_pc): Likewise.
2319         * NEWS: Mention new "maint print arc arc-instruction".
2320
2321 2017-03-28  Anton Kolesov  <anton.kolesov@synopsys.com>
2322
2323         * arc-tdep (maintenance_print_arc_list): New variable.
2324         (maintenance_print_arc_command): New function.
2325
2326 2017-03-28  Anton Kolesov  <anton.kolesov@synopsys.com>
2327
2328         * arc-tdep.c (core_v2_register_names, core_arcompact_register_names)
2329         Add "limm" and "reserved".
2330         (arc_cannot_fetch_register, arc_cannot_store_register): Add
2331         ARC_RESERVED_REGNUM and ARC_LIMM_REGNUM.
2332         * arc-tdep.h (arc_regnum): Likewise.
2333
2334 2017-03-27  Max Filippov  <jcmvbkbc@gmail.com>
2335
2336         * xtensa-linux-nat.c (fill_gregset): Call regcache_raw_collect
2337         for THREADPTR register.
2338         (supply_gregset_reg): Call regcache_raw_supply for THREADPTR
2339         register.
2340         * xtensa-tdep.c (XTENSA_DBREGN_UREG): New definition.
2341         (xtensa_derive_tdep): Initialize tdep->threadptr_regnum.
2342         * xtensa-tdep.h (gdbarch_tdep::threadptr_regnum): New field.
2343
2344 2017-03-27  Max Filippov  <jcmvbkbc@gmail.com>
2345
2346         * xtensa-tdep.c (xtensa_pseudo_register_read): Treat all
2347         registers above gdbarch_num_regs (gdbarch) as privileged in
2348         call0 ABI.
2349
2350 2017-03-27  Max Filippov  <jcmvbkbc@gmail.com>
2351
2352         * xtensa-linux-nat.c (fill_gregset): Call regcache_raw_collect
2353         for a single specified register or for all registers in
2354         a0_base..a0_base + C0_NREGS range.
2355         (supply_gregset_reg): Call regcache_raw_supply for a single
2356         specified register or for all registers in a0_base..a0_base +
2357         C0_NREGS range.
2358
2359 2017-03-27  Max Filippov  <jcmvbkbc@gmail.com>
2360
2361         * arch/xtensa.h (C0_NREGS): Add definition.
2362         * xtensa-tdep.c (C0_NREGS): Remove definition.
2363
2364 2017-03-27  Max Filippov  <jcmvbkbc@gmail.com>
2365
2366         * xtensa-tdep.c (xtensa_scan_prologue, call0_analyze_prologue):
2367         Drop xtensa_default_isa initialization.
2368         (xtensa_gdbarch_init): Initialize xtensa_default_isa.
2369
2370 2017-03-27  Pedro Alves  <palves@redhat.com>
2371
2372         * dwarf2read.c (file_entry) <dir_index>: Add comment.
2373         (file_entry::include_dir): New method.
2374         (line_header::include_dir_at, line_header::file_name_at): New
2375         methods.
2376         (setup_type_unit_groups, setup_type_unit_groups)
2377         (psymtab_include_file_name): Simplify using the new methods.
2378         (lnp_state_machine) <the_line_header>: New field.
2379         <file>: Add comment.
2380         (lnp_state_machine::current_file): New method.
2381         (dwarf_record_line): Simplify using the new methods.
2382         (init_lnp_state_machine): Initialize the "the_line_header" field.
2383         (dwarf_decode_lines_1, dwarf_decode_lines, file_file_name):
2384         Simplify using the new methods.
2385
2386 2017-03-27  Pedro Alves  <palves@redhat.com>
2387
2388         * cp-name-parser.y (make_empty): Delete.
2389         (demangler_special, nested_name, ptr_operator, array_indicator)
2390         (direct_declarator, declarator_1): Use fill_comp instead of
2391         make_empty.
2392
2393 2017-03-27  Pedro Alves  <palves@redhat.com>
2394
2395         * xml-support.h (gdb_xml_debug): Pass a "first-to-check" argument
2396         to ATTRIBUTE_PRINTF.
2397         * solib-target.c (library_list_start_list): Print "string" not
2398         "version".
2399         * xml-tdesc.c (tdesc_start_field): Pass "field_name" to
2400         gdb_xml_error call.
2401
2402 2017-03-27  Pedro Alves  <palves@redhat.com>
2403
2404         * dwarf2read.c (struct file_and_directory): New.
2405         (dwarf2_get_dwz_file): Adjust to use std::string.
2406         (dw2_get_file_names_reader): Adjust to use file_and_directory.
2407         (find_file_and_directory): Adjust to return a file_and_directory
2408         object.
2409         (read_file_scope): Adjust to use file_and_directory.  Remove
2410         make_cleanup/do_cleanups calls.
2411         (open_and_init_dwp_file): Adjust to use std::string.  Remove
2412         make_cleanup/do_cleanups calls.
2413         * python/python.c (do_start_initialization): Adjust to ldirname
2414         returning a std::string.
2415         * utils.c (ldirname): Now returns a std::string.
2416         * utils.h (ldirname): Change return type to std::string.
2417         * xml-syscall.c (xml_init_syscalls_info): Adjust to ldirname
2418         returning a std::string.
2419         * xml-tdesc.c (file_read_description_xml): Likewise.
2420
2421 2017-03-24  Alan Hayward  <alan.hayward@arm.com>
2422
2423         * regcache.c (regcache_debug_print_register): New function.
2424         * regcache.h (regcache_debug_print_register): New declaration.
2425         * target.c (debug_print_register): Remove.
2426         (target_fetch_registers): Call regcache_debug_print_register.
2427         (target_store_registers): Likewise.
2428
2429 2017-03-24  Pádraig Brady  <pbrady@fb.com>
2430
2431         * dwarf2read.c (setup_type_unit_groups): Ensure dir_index doesn't
2432         reference beyond the 'lh->include_dirs' array before accessing to
2433         it.
2434         (psymtab_include_file_name): Likewise.
2435         (dwarf_decode_lines_1): Likewise.
2436         (dwarf_decode_lines): Likewise.
2437         (file_file_name): Likewise.
2438
2439 2017-03-23  Simon Marchi  <simon.marchi@ericsson.com>
2440
2441         * fbsd-tdep.c (fbsd_corefile_thread): Don't set/restore
2442         inferior_ptid.
2443         * proc-service.c (ps_lgetregs, ps_lsetregs, ps_lgetfpregs,
2444         ps_lsetfpregs): Likewise.
2445         * regcache.c (regcache_raw_update, regcache_raw_write): Likewise.
2446         * sol-thread.c (ps_lgetregs, ps_lsetregs, ps_lgetfpregs,
2447         ps_lsetfpregs): Likewise.
2448         * target.c (target_fetch_registers, target_store_registers):
2449         Remove asserts.
2450
2451 2017-03-23  Alan Hayward  <alan.hayward@arm.com>
2452
2453         * sol-thread.c (sol_thread_store_registers): Remove regcache calls.
2454
2455 2017-03-23  Yao Qi  <yao.qi@linaro.org>
2456
2457         * aarch64-tdep.c (aarch64_process_record_test): Declare.
2458         (_initialize_aarch64_tdep): Register it.
2459         (aarch64_record_load_store): Handle PRFM instruction.
2460         (aarch64_process_record_test): New function.
2461
2462 2017-03-23  Yao Qi  <yao.qi@linaro.org>
2463
2464         * aarch64-tdep.c (aarch64_record_load_store): Fix code
2465         indentation.
2466
2467 2017-03-23  Yao Qi  <yao.qi@linaro.org>
2468
2469         * aarch64-tdep.c: Remove AARCH64_RECORD_FAILURE.
2470
2471 2017-03-23  Philipp Rudo  <prudo@linux.vnet.ibm.com>
2472
2473         python/python.c (do_start_initialization): Fix memory leak.
2474
2475 2017-03-22  Simon Marchi  <simon.marchi@polymtl.ca>
2476
2477         * inf-ptrace.c (inf_ptrace_xfer_partial): Get pid from ptid
2478         using get_ptrace_pid.
2479         * linux-nat.c (linux_nat_xfer_partial): Don't set/restore
2480         inferior_ptid.
2481         (linux_proc_xfer_partial, linux_proc_xfer_spu): Use lwp of
2482         inferior_ptid instead of pid.
2483
2484 2017-03-22  Yao Qi  <yao.qi@linaro.org>
2485
2486         * aarch64-tdep.c: Wrap locally used classes in anonymous
2487         namespace.
2488         * arm-tdep.c: Likewise.
2489         * linespec.c: Likewise.
2490         * ui-out.c: Likewise.
2491
2492 2017-03-22  Jonah Graham  <jonah@kichwacoders.com>
2493
2494         PR gdb/19637
2495         * python/lib/gdb/printer/bound_registers.py: Import sys.
2496
2497 2017-03-21  Simon Marchi  <simon.marchi@ericsson.com>
2498
2499         * windows-nat.c (do_windows_fetch_inferior_registers): Add
2500         windows_thread_info parameter and use it instead of
2501         current_thread.
2502         (windows_fetch_inferior_registers): Don't set current_thread,
2503         pass the thread to do_windows_fetch_inferior_registers.  Use
2504         ptid from regcache instead of inferior_ptid.
2505         (do_windows_store_inferior_registers): Add windows_thread_info
2506         parameter and use it instead of current_thread.
2507         (windows_store_inferior_registers): Don't set current_thread,
2508         pass the thread to do_windows_store_inferior_registers.  Use
2509         ptid from regcache instead of inferior_ptid.
2510
2511 2017-03-21  Simon Marchi  <simon.marchi@ericsson.com>
2512
2513         * ser-mingw.c (ser_windows_raw): Remove reference to
2514         struct serial::current_timeout.
2515
2516 2017-03-21  Ivo Raisr  <ivo.raisr@oracle.com>
2517
2518         PR tdep/20928
2519         * gdb/sparc-tdep.h (gdbarch_tdep) <sparc64_ccr_type>: New field.
2520         * gdb/sparc64-tdep.c (sparc64_ccr_type): New function.
2521         (sparc64_fsr_type): Fix %fsr decoding.
2522
2523 2017-03-21  Tim Wiederhake  <tim.wiederhake@intel.com>
2524
2525         * python/py-record-btrace.c (btpy_insn_data): Change return type
2526         for Python 2.
2527
2528 2017-03-20  Simon Marchi  <simon.marchi@polymtl.ca>
2529
2530         * spu-linux-nat.c (spu_fetch_inferior_registers,
2531         spu_store_inferior_registers): Use ptid from regcache, set and
2532         restore inferior_ptid.
2533         * spu-multiarch.c (spu_fetch_registers, spu_store_registers):
2534         Likewise.
2535
2536 2017-03-20  Simon Marchi  <simon.marchi@polymtl.ca>
2537
2538         * i386-linux-nat.c (fetch_register, store_register,
2539         i386_linux_fetch_inferior_registers,
2540         i386_linux_store_inferior_registers): Use ptid from regcache.
2541         * ia64-linux-nat.c (ia64_linux_fetch_register,
2542         ia64_linux_store_register): Likewise.
2543         * inf-ptrace.c (inf_ptrace_fetch_register,
2544         inf_ptrace_store_register): Likewise.
2545         * m32r-linux-nat.c (m32r_linux_fetch_inferior_registers,
2546         m32r_linux_store_inferior_registers): Likewise.
2547         * m68k-bsd-nat.c (m68kbsd_fetch_inferior_registers,
2548         m68kbsd_store_inferior_registers): Likewise.
2549         * m68k-linux-nat.c (fetch_register, store_register,
2550         m68k_linux_fetch_inferior_registers,
2551         m68k_linux_store_inferior_registers): Likewise.
2552         * m88k-bsd-nat.c (m88kbsd_fetch_inferior_registers,
2553         m88kbsd_store_inferior_registers): Likewise.
2554         * mips-fbsd-nat.c (mips_fbsd_fetch_inferior_registers,
2555         mips_fbsd_store_inferior_registers): Likewise.
2556         * mips-linux-nat.c (mips64_linux_regsets_fetch_registers,
2557         mips64_linux_regsets_store_registers): Likewise.
2558         * mips-nbsd-nat.c (mipsnbsd_fetch_inferior_registers,
2559         mipsnbsd_store_inferior_registers): Likewise.
2560         * mips-obsd-nat.c (mips64obsd_fetch_inferior_registers,
2561         mips64obsd_store_inferior_registers): Likewise.
2562         * nto-procfs.c (procfs_fetch_registers, procfs_store_registers):
2563         Likewise.
2564         * ppc-fbsd-nat.c (ppcfbsd_fetch_inferior_registers,
2565         ppcfbsd_store_inferior_registers): Likewise.
2566         * ppc-linux-nat.c (ppc_linux_fetch_inferior_registers,
2567         ppc_linux_store_inferior_registers): Likewise.
2568         * ppc-nbsd-nat.c (ppcnbsd_fetch_inferior_registers,
2569         ppcnbsd_store_inferior_registers): Likewise.
2570         * ppc-obsd-nat.c (ppcobsd_fetch_registers,
2571         ppcobsd_store_registers): Likewise.
2572         * procfs.c (procfs_fetch_registers, procfs_store_registers):
2573         Likewise.
2574         * ravenscar-thread.c (ravenscar_fetch_registers,
2575         ravenscar_store_registers, ravenscar_prepare_to_store):
2576         Likewise.
2577         * record-btrace.c (record_btrace_fetch_registers,
2578         record_btrace_store_registers, record_btrace_prepare_to_store):
2579         Likewise.
2580         * remote-sim.c (gdbsim_fetch_register, gdbsim_store_register):
2581         Lookup inferior using ptid from regcache, instead of
2582         current_inferior.
2583         * remote.c (remote_fetch_registers, remote_store_registers): Use
2584         ptid from regcache.
2585         * rs6000-nat.c (fetch_register, store_register): Likewise.
2586         * s390-linux-nat.c (s390_linux_fetch_inferior_registers,
2587         s390_linux_store_inferior_registers): Likewise.
2588         * sh-nbsd-nat.c (shnbsd_fetch_inferior_registers,
2589         shnbsd_store_inferior_registers): Likewise.
2590         * sol-thread.c (sol_thread_fetch_registers,
2591         sol_thread_store_registers): Likewise.
2592         * sparc-nat.c (sparc_fetch_inferior_registers,
2593         sparc_store_inferior_registers): Likewise.
2594         * tilegx-linux-nat.c (fetch_inferior_registers,
2595         store_inferior_registers): Likewise.
2596         * vax-bsd-nat.c (vaxbsd_fetch_inferior_registers,
2597         vaxbsd_store_inferior_registers): Likewise.
2598         * xtensa-linux-nat.c (fetch_gregs, store_gregs, fetch_xtregs,
2599         store_xtregs): Likewise.
2600
2601 2017-03-20  Artemiy Volkov  <artemiyv@acm.org>
2602
2603         PR gdb/14441
2604         * NEWS: Mention support for rvalue references in GDB and python.
2605         * doc/gdb.texinfo (C Plus Plus Expressions): Mention that GDB
2606         supports both lvalue and rvalue references.
2607
2608 2017-03-20  Artemiy Volkov  <artemiyv@acm.org>
2609
2610         PR gdb/14441
2611         * gdbtypes.c (rank_one_type): Implement overloading
2612         resolution rules regarding rvalue references.
2613
2614 2017-03-20  Artemiy Volkov  <artemiyv@acm.org>
2615
2616         PR gdb/14441
2617         * aarch64-tdep.c (aarch64_type_align)
2618         (aarch64_extract_return_value, aarch64_store_return_value): Change
2619         lvalue reference type checks to general reference type checks.
2620         * amd64-tdep.c (amd64_classify): Likewise.
2621         * amd64-windows-tdep.c (amd64_windows_passed_by_integer_register):
2622         Likewise.
2623         * arm-tdep.c (arm_type_align, arm_extract_return_value)
2624         (arm_store_return_value): Likewise.
2625         * ax-gdb.c (gen_fetch, gen_cast): Likewise.
2626         * c-typeprint.c (c_print_type): Likewise.
2627         * c-varobj.c (adjust_value_for_child_access, c_value_of_variable)
2628         (cplus_number_of_children, cplus_describe_child): Likewise.
2629         * compile/compile-c-symbols.c (generate_vla_size): Likewise.
2630         * completer.c (expression_completer): Likewise.
2631         * cp-support.c (make_symbol_overload_list_adl_namespace):
2632         Likewise.
2633         * darwin-nat-info.c (info_mach_region_command): Likewise.
2634         * dwarf2loc.c (entry_data_value_coerce_ref)
2635         (value_of_dwarf_reg_entry): Likewise.
2636         * eval.c (ptrmath_type_p, evaluate_subexp_standard)
2637         (evaluate_subexp_for_address, evaluate_subexp_for_sizeof):
2638         Likewise.
2639         * findvar.c (extract_typed_address, store_typed_address):
2640         Likewise.
2641         * gdbtypes.c (rank_one_type): Likewise.
2642         * hppa-tdep.c (hppa64_integral_or_pointer_p): Likewise.
2643         * infcall.c (value_arg_coerce): Likewise.
2644         * language.c (pointer_type): Likewise.
2645         * m32c-tdep.c (m32c_reg_arg_type, m32c_m16c_address_to_pointer):
2646         Likewise.
2647         * m88k-tdep.c (m88k_integral_or_pointer_p): Likewise.
2648         * mn10300-tdep.c (mn10300_type_align): Likewise.
2649         * msp430-tdep.c (msp430_push_dummy_call): Likewise.
2650         * ppc-sysv-tdep.c (do_ppc_sysv_return_value)
2651         (ppc64_sysv_abi_push_param, ppc64_sysv_abi_return_value):
2652         Likewise.
2653         * printcmd.c (print_formatted, x_command): Likewise.
2654         * python/py-type.c (typy_get_composite, typy_template_argument):
2655         Likewise.
2656         * python/py-value.c (valpy_referenced_value)
2657         (valpy_get_dynamic_type, value_has_field): Likewise.
2658         * s390-linux-tdep.c (s390_function_arg_integer): Likewise.
2659         * sparc-tdep.c (sparc_integral_or_pointer_p): Likewise.
2660         * sparc64-tdep.c (sparc64_integral_or_pointer_p): Likewise.
2661         * spu-tdep.c (spu_scalar_value_p): Likewise.
2662         * symtab.c (lookup_symbol_aux): Likewise.
2663         * typeprint.c (whatis_exp, print_type_scalar): Likewise.
2664         * valarith.c (binop_types_user_defined_p, unop_user_defined_p):
2665         Likewise.
2666         * valops.c (value_cast_pointers, value_cast)
2667         (value_reinterpret_cast, value_dynamic_cast, value_addr, typecmp)
2668         (value_struct_elt, value_struct_elt_bitpos)
2669         (value_find_oload_method_list, find_overload_match)
2670         (value_rtti_indirect_type): Likewise.
2671         * valprint.c (val_print_scalar_type_p, generic_val_print):
2672         Likewise.
2673         * value.c (value_actual_type, value_as_address, unpack_long)
2674         (pack_long, pack_unsigned_long, coerce_ref_if_computed)
2675         (coerce_ref): Likewise.
2676         * varobj.c (varobj_get_value_type): Likewise.
2677
2678 2017-03-20  Artemiy Volkov  <artemiyv@acm.org>
2679
2680         PR gdb/14441
2681         * doc/python.texi (Types in Python): Add TYPE_CODE_RVALUE_REF to
2682         table of constants.
2683         * python/lib/gdb/command/explore.py: Support exploring values
2684         of rvalue reference types.
2685         * python/lib/gdb/types.py: Implement get_basic_type() for
2686         rvalue reference types.
2687         * python/py-type.c (pyty_codes) <TYPE_CODE_RVALUE_REF>: New
2688         constant.
2689         * python/py-value.c (valpy_getitem): Add an rvalue reference
2690         check.
2691         (valpy_reference_value): Add new parameter "refcode".
2692         (valpy_lvalue_reference_value, valpy_rvalue_reference_value):
2693         New wrappers for valpy_reference_value().
2694         * python/py-xmethods.c (gdbpy_get_xmethod_result_type)
2695         (gdbpy_invoke_xmethod): Likewise.
2696
2697 2017-03-20  Artemiy Volkov  <artemiyv@acm.org>
2698
2699         PR gdb/14441
2700         * dwarf2read.c (process_die, read_type_die_1): Handle the
2701         DW_TAG_rvalue_reference_type DIE.
2702         (read_tag_reference_type): Add new parameter "refcode".
2703
2704 2017-03-20  Artemiy Volkov  <artemiyv@acm.org>
2705
2706         PR gdb/14441
2707         * c-typeprint.c (c_print_type, c_type_print_varspec_prefix)
2708         (c_type_print_modifier, c_type_print_varspec_suffix)
2709         (c_type_print_base): Support printing rvalue reference types.
2710         * c-valprint.c (c_val_print, c_value_print): Support printing
2711         rvalue reference values.
2712
2713 2017-03-20  Artemiy Volkov  <artemiyv@acm.org>
2714
2715         PR gdb/14441
2716         * cp-name-parser.y (ptr_operator): Handle the '&&' token in
2717         typename.
2718         * cp-support.c (replace_typedefs): Handle
2719         DEMANGLE_COMPONENT_RVALUE_REFERENCE.
2720         * python/py-type.c (typy_lookup_type): Likewise.
2721
2722 2017-03-20  Artemiy Volkov  <artemiyv@acm.org>
2723
2724         PR gdb/14441
2725         * c-exp.y (ptr_operator): Handle the '&&' token in the typename.
2726         * parse.c (insert_type): Change assert statement.
2727         (follow_types): Handle rvalue reference types.
2728         * parser-defs.h (enum type_pieces) <tp_rvalue_reference>: New
2729         constant.
2730
2731 2017-03-20  Artemiy Volkov  <artemiyv@acm.org>
2732
2733         PR gdb/14441
2734         * ada-lang.c (ada_evaluate_subexp): Adhere to the new
2735         value_ref() interface.
2736         * c-valprint.c (c_value_print): Likewise.
2737         * infcall.c (value_arg_coerce): Likewise.
2738         * python/py-value.c (valpy_reference_value): Likewise.
2739         * valops.c (value_cast, value_reinterpret_cast)
2740         (value_dynamic_cast, typecmp): Likewise.
2741         (value_ref): Parameterize by kind of return value reference type.
2742         * value.h (value_ref): Add new parameter "refcode".
2743
2744 2017-03-20  Artemiy Volkov  <artemiyv@acm.org>
2745
2746         PR gdb/14441
2747         * dwarf2read.c (read_tag_reference_type): Use
2748         lookup_lvalue_reference_type() instead of lookup_reference_type().
2749         * eval.c (evaluate_subexp_standard): Likewise.
2750         * f-exp.y: Likewise.
2751         * gdbtypes.c (make_reference_type, lookup_reference_type):
2752         Generalize with rvalue reference types.
2753         (lookup_lvalue_reference_type, lookup_rvalue_reference_type): New
2754         convenience wrappers for lookup_reference_type().
2755         * gdbtypes.h (make_reference_type, lookup_reference_type): Add a
2756         reference kind parameter.
2757         (lookup_lvalue_reference_type, lookup_rvalue_reference_type): Add
2758         wrappers for lookup_reference_type().
2759         * guile/scm-type.c (gdbscm_type_reference): Use
2760         lookup_lvalue_reference_type() instead of lookup_reference_type().
2761         * guile/scm-value.c (gdbscm_value_dynamic_type): Likewise.
2762         * parse.c (follow_types): Likewise.
2763         * python/py-type.c (typy_reference, typy_lookup_type): Likewise.
2764         * python/py-value.c (valpy_get_dynamic_type, valpy_getitem):
2765         Likewise.
2766         * python/py-xmethods.c (gdbpy_get_xmethod_result_type)
2767         (gdbpy_invoke_xmethod): Likewise.
2768         * stabsread.c: Provide extra argument to make_reference_type()
2769         call.
2770         * valops.c (value_ref, value_rtti_indirect_type): Use
2771         lookup_lvalue_reference_type() instead of lookup_reference_type().
2772
2773 2017-03-20  Artemiy Volkov  <artemiyv@acm.org>
2774
2775         PR gdb/14441
2776         * gdbtypes.h (enum type_code) <TYPE_CODE_RVALUE_REF>: New constant.
2777         (TYPE_IS_REFERENCE): New macro.
2778         (struct type): Add rvalue_reference_type field.
2779         (TYPE_RVALUE_REFERENCE_TYPE): New macro.
2780
2781 2017-03-20  Marc-Andre Laperle  <marc-andre.laperle@ericsson.com>
2782
2783         * NEWS: Add an entry about new '-file-list-shared-libraries' command.
2784         * mi/mi-cmd-file.c (mi_cmd_file_list_shared_libraries):
2785         New function definition.
2786         * mi/mi-cmds.c (mi_cmds): Add -file-list-shared-libraries command.
2787         * mi/mi-cmds.h (mi_cmd_file_list_shared_libraries):
2788         New function declaration.
2789         * mi/mi-interp.c (mi_output_solib_attribs): New Function.
2790         * mi/mi-interp.h: New file.
2791         * solib.c (info_sharedlibrary_command): Replace for loop with
2792         ALL_SO_LIBS macro
2793         * solib.h (update_solib_list): New function declaration.
2794         (so_list_head): Move macro.
2795         * solist.h (ALL_SO_LIBS): New macro.
2796
2797 2017-03-20  Marc-Andre Laperle  <marc-andre.laperle@ericsson.com>
2798
2799         * infcmd.c (post_create_inferior): Remove unused argument in
2800         call to solib_add.
2801         * remote.c (remote_start_remote): Likewise.
2802         * solib-frv.c (frv_fetch_objfile_link_map): Likewise.
2803         * solib-svr4.c: (svr4_fetch_objfile_link_map): Likewise.
2804         (enable_break): Likewise.
2805         * solib.c (update_solib_list): Remove unused target argument
2806         and its documentation.
2807         (solib_add): Remove unused target argument.  Remove unused
2808         argument in call to update_solib_list.
2809         (info_sharedlibrary_command): Remove unused argument in call
2810         to update_solib_list.
2811         (sharedlibrary_command): Remove unused argument in call to
2812         solib_add.
2813         (handle_solib_event): Likewise.
2814         (reload_shared_libraries): Likewise.
2815         * solib.h (solib_add): Remove unused target argument.
2816
2817 2017-03-20  Andreas Arnez  <arnez@linux.vnet.ibm.com>
2818
2819         * s390-linux-tdep.c (is_rsi, is_rie): Remove functions.
2820         (s390_displaced_step_fixup): Cover relative branches with the
2821         default fixup handling.  This fixes lack of support for some
2822         relative branch instructions.
2823
2824 2017-03-17  Simon Marchi  <simon.marchi@polymtl.ca>
2825
2826         * i386-gnu-nat.c (gnu_fetch_registers, gnu_store_registers): Use
2827         ptid from regcache.
2828
2829 2017-03-17  Simon Marchi  <simon.marchi@polymtl.ca>
2830
2831         * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers,
2832         i386_darwin_store_inferior_registers): Use ptid from regcache.
2833
2834 2017-03-17  Simon Marchi  <simon.marchi@polymtl.ca>
2835
2836         * i386-bsd-nat.c (i386bsd_fetch_inferior_registers,
2837         i386bsd_store_inferior_registers): Use ptid from regcache.
2838
2839 2017-03-17  Simon Marchi  <simon.marchi@polymtl.ca>
2840
2841         * hppa-obsd-nat.c (hppaobsd_fetch_registers,
2842         hppaobsd_store_registers): Use ptid from regcache.
2843
2844 2017-03-17  Simon Marchi  <simon.marchi@polymtl.ca>
2845
2846         * hppa-nbsd-nat.c (hppanbsd_fetch_registers,
2847         hppanbsd_store_registers): Use ptid from regcache.
2848
2849 2017-03-17  Simon Marchi  <simon.marchi@polymtl.ca>
2850
2851         * hppa-linux-nat.c (fetch_register, store_register): Use ptid
2852         from regcache.  Use get_ptrace_pid.
2853
2854 2017-03-17  Simon Marchi  <simon.marchi@polymtl.ca>
2855
2856         * corelow.c (get_core_register_section): Use ptid from regcache,
2857         update doc.
2858
2859 2017-03-17  Simon Marchi  <simon.marchi@polymtl.ca>
2860
2861         * bsd-uthread.c (bsd_uthread_fetch_registers,
2862         bsd_uthread_store_registers): Use ptid from regcache, set and
2863         restore inferior_ptid.
2864
2865 2017-03-17  Simon Marchi  <simon.marchi@polymtl.ca>
2866
2867         * arm-nbsd-nat.c (fetch_register, fetch_regs, fetch_fp_register,
2868         fetch_fp_regs, store_register, store_regs, store_fp_register,
2869         store_fp_regs): Use ptid from regcache.
2870
2871 2017-03-17  Simon Marchi  <simon.marchi@polymtl.ca>
2872
2873         * arm-linux-nat.c (fetch_fpregs, store_fpregs, fetch_regs,
2874         store_regs, fetch_wmmx_regs, store_wmmx_regs, fetch_vfp_regs,
2875         store_vfp_regs): Use ptid from regcache.
2876
2877 2017-03-17  Pedro Alves  <palves@redhat.com>
2878
2879         PR remote/21188
2880         * ser-base.c (ser_base_wait_for): Add comment.
2881         (do_ser_base_readchar): Improve comment based on the ser-unix.c's
2882         version.
2883         * ser-unix.c (hardwire_raw): Remove reference to
2884         scb->current_timeout.
2885         (wait_for, do_hardwire_readchar, hardwire_readchar): Delete.
2886         (hardwire_ops): Install ser_base_readchar instead of
2887         hardwire_readchar.
2888         * serial.h (struct serial) <current_timeout, timeout_remaining>:
2889         Remove fields.
2890
2891 2017-03-17  Jonah Graham  <jonah@kichwacoders.com>
2892
2893         PR gdb/19637
2894         * python/lib/gdb/printer/bound_registers.py: Add support for
2895         Python 3.
2896
2897 2017-03-16  Andreas Arnez  <arnez@linux.vnet.ibm.com>
2898
2899         * dwarf2loc.c (indirect_synthetic_pointer): Get data type of
2900         pointed-to DIE and pass it to dwarf2_evaluate_loc_desc_full.
2901         (dwarf2_evaluate_loc_desc_full): New parameter subobj_type; rename
2902         byte_offset to subobj_byte_offset.  Fix the handling of
2903         DWARF_VALUE_STACK on big-endian targets when coming via an
2904         implicit pointer.
2905         (dwarf2_evaluate_loc_desc): Adjust call to
2906         dwarf2_evaluate_loc_desc_full.
2907         * dwarf2loc.h (dwarf2_fetch_die_type_sect_off): New declaration.
2908         * dwarf2read.c (dwarf2_fetch_die_type_sect_off): New function.
2909
2910 2017-03-16  Yao Qi  <yao.qi@linaro.org>
2911
2912         * arm-tdep.c (thumb_record_misc): Decode CBNZ, CBZ, REV16,
2913         and REVSH instructions.
2914
2915 2017-03-16  Yao Qi  <yao.qi@linaro.org>
2916
2917         * arm-tdep.c [GDB_SELF_TEST]: include "selftests.h".
2918         (arm_record_test): Declare.
2919         (_initialize_arm_tdep) [GDB_SELF_TEST]: call register_self_test.
2920         (thumb_record_ld_st_reg_offset): Rewrite the opcode matching to
2921         align with the manual.
2922         (thumb_record_misc): Adjust the code order to align with the
2923         manual.
2924         (thumb2_record_decode_insn_handler): Fix instruction matching.
2925         (instruction_reader_thumb): New class.
2926         (arm_record_test): New function.
2927
2928 2017-03-16  Yao Qi  <yao.qi@linaro.org>
2929
2930         * arm-tdep.c (abstract_memory_reader): New class.
2931         (instruction_reader): New class.
2932         (extract_arm_insn): Add argument 'reader'.  Callers updated.
2933         (decode_insn): Likewise.
2934
2935 2017-03-16  Doug Evans  <dje@google.com>
2936
2937         * guile/scm-lazy-string.c (lazy_string_smob): Clarify use of LENGTH
2938         member.  Change type of TYPE member to SCM.  All uses updated.
2939         (lsscm_make_lazy_string_smob): Add assert.
2940         (lsscm_make_lazy_string): Flag bad length values.
2941         (lsscm_elt_type): New function.
2942         (gdbscm_lazy_string_to_value): Rewrite to use
2943         lsscm_safe_lazy_string_to_value.
2944         (lsscm_safe_lazy_string_to_value): Fix handling of TYPE_CODE_PTR.
2945         * guile/scm-value.c (gdbscm_value_to_lazy_string): Flag bad length
2946         values.  Fix TYPE_CODE_PTR.  Handle TYPE_CODE_ARRAY.  Handle typedefs
2947         in incoming type.
2948         * guile/guile-internal.h (tyscm_scm_to_type): Declare.
2949         * guile/scm-type.c (tyscm_scm_to_type): New function.
2950
2951 2017-03-15  Doug Evans  <dje@google.com>
2952
2953         PR python/17728, python/18439, python/18779
2954         * python/py-lazy-string.c (lazy_string_object): Clarify use of LENGTH
2955         member.  Change type of TYPE member to PyObject *.  All uses updated.
2956         (stpy_convert_to_value): Fix handling of TYPE_CODE_PTR.
2957         (gdbpy_create_lazy_string_object): Flag bad length values.
2958         Handle TYPE_CODE_ARRAY with possibly different user-provided length.
2959         Handle typedefs in incoming type.
2960         (stpy_lazy_string_elt_type): New function.
2961         (gdbpy_extract_lazy_string): Call it.
2962         * python/py-value.c (valpy_lazy_string): Flag bad length values.
2963         Fix handling of TYPE_CODE_PTR.  Handle TYPE_CODE_ARRAY.  Handle
2964         typedefs in incoming type.
2965
2966 2017-03-16  Doug Evans  <dje@google.com>
2967
2968         * guile/guile-internal.h (tyscm_scm_to_type): Declare.
2969         * guile/scm-type.c (tyscm_scm_to_type): New function.
2970
2971 2017-03-16  Jiong Wang  <jiong.wang@arm.com>
2972
2973         * inf-ptrace.c (inf_ptrace_peek_poke): Change the type to
2974         "ULONGEST" for "skip".
2975
2976 2017-03-14  Andreas Arnez  <arnez@linux.vnet.ibm.com>
2977
2978         PR gdb/21220
2979         * inf-ptrace.c (inf_ptrace_xfer_partial): In "case
2980         TARGET_OBJECT_MEMORY", extract the logic for ptrace peek/poke...
2981         (inf_ptrace_peek_poke): ...here.  New function.  Now also loop
2982         over ptrace peek/poke until end of buffer or error.
2983
2984 2017-03-14  Simon Marchi  <simon.marchi@ericsson.com>
2985
2986         * parse.c (length_of_subexp): Make static.
2987         * parser-defs.h (length_of_subexp): Remove.
2988
2989 2017-03-14  Andreas Arnez  <arnez@linux.vnet.ibm.com>
2990
2991         * linux-nat.c (linux_proc_xfer_partial): Handle write operations
2992         as well.
2993
2994 2017-03-14  Pedro Alves  <palves@redhat.com>
2995
2996         * cp-name-parser.y (cp_demangled_name_to_comp): Update comment.
2997         (main): Use std::unique_ptr.  Remove calls to
2998         cp_demangled_name_parse_free.
2999
3000 2017-03-13  Simon Marchi  <simon.marchi@polymtl.ca>
3001
3002         * alpha-bsd-nat.c (alphabsd_fetch_inferior_registers,
3003         alphabsd_store_inferior_registers): Use regcache->ptid instead
3004         of inferior_ptid.
3005
3006 2017-03-13  Simon Marchi  <simon.marchi@polymtl.ca>
3007
3008         * aix-thread.c (aix_thread_fetch_registers,
3009         aix_thread_store_registers): Use regcache->ptid instead of
3010         inferior_ptid.
3011
3012 2017-03-13  Simon Marchi  <simon.marchi@polymtl.ca>
3013
3014         * aarch64-linux-nat.c (fetch_gregs_from_thread,
3015         store_gregs_to_thread, fetch_fpregs_from_thread,
3016         store_fpregs_to_thread): Use regcache->ptid instead of
3017         inferior_ptid.
3018
3019 2017-03-13  Simon Marchi  <simon.marchi@polymtl.ca>
3020
3021         * amd64-linux-nat.c (amd64_linux_fetch_inferior_registers,
3022         amd64_linux_fetch_inferior_registers): Use regcache->ptid
3023         instead of inferior_ptid.
3024
3025 2017-03-13  Simon Marchi  <simon.marchi@polymtl.ca>
3026
3027         * target.c (target_fetch_registers, target_store_registers): Add
3028         assert.
3029
3030 2017-03-13  Simon Marchi  <simon.marchi@polymtl.ca>
3031
3032         * regcache.h (regcache_get_ptid): New function.
3033         * regcache.c (regcache_get_ptid): New function.
3034
3035 2017-03-13  Mark Wielaard  <mark@klomp.org>
3036
3037         * cp-name-parser.y (make_empty): Initialize d_printing to zero.
3038
3039 2017-03-10  Keith Seitz  <keiths@redhat.com>
3040
3041         PR c++/8218
3042         * c-typeprint.c (cp_type_print_method_args): Skip artificial arguments.
3043
3044 2017-03-08  Pedro Alves  <palves@redhat.com>
3045
3046         PR gdb/18360
3047         * infrun.c (start_step_over, do_target_resume, resume)
3048         (restart_threads): Assert we're not resuming a thread that is
3049         meant to be stopped.
3050         (infrun_thread_stop_requested_callback): Delete.
3051         (infrun_thread_stop_requested): If the thread is internally
3052         stopped, queue a pending stop event and clear the thread's
3053         inline-frame state.
3054         (handle_stop_requested): New function.
3055         (handle_syscall_event, handle_inferior_event_1): Use
3056         handle_stop_requested.
3057         (handle_stop_requested): New function.
3058         (handle_signal_stop): Set the thread's stop_signal here instead of
3059         at caller.
3060         (finish_step_over): Clear step over info unconditionally.
3061         (handle_signal_stop): If the user had interrupted the event
3062         thread, consider the stop a random signal.
3063         (handle_signal_stop) <signal arrived while stepping over
3064         breakpoint>: Don't restart threads here.
3065         (stop_waiting): Don't clear step-over info here.
3066
3067 2017-03-08  Pedro Alves  <palves@redhat.com>
3068
3069         PR 21206
3070         * common/gdb_unlinker.h (unlinker::unlinker): Attribute nonnull
3071         goes to argument 2, not 1.
3072
3073 2017-03-08  Pedro Alves  <palves@redhat.com>
3074
3075         PR cli/21218
3076         * top.c (gdb_readline_wrapper): Avoid passing NULL to
3077         display_gdb_prompt.
3078         (command_line_input): Add comment.
3079
3080 2017-03-08  Pedro Alves  <palves@redhat.com>
3081
3082         PR tui/21216
3083         * tui/tui-file.c (tui_file::write): New.
3084         * tui/tui-file.h (tui_file): Override "write".
3085         * tui/tui-io.c (do_tui_putc, update_start_line): New functions,
3086         factored out from ...
3087         (tui_puts): ... here.
3088         (tui_putc): Use them.
3089         (tui_write): New function.
3090         * tui/tui-io.h (tui_write): Declare.
3091
3092 2017-03-07  Sergio Durigan Junior  <sergiodj@redhat.com>
3093
3094         * Makefile.in (SFILES): Replace "environ.c" with
3095         "common/environ.c".
3096         (HFILES_NO_SRCDIR): Likewise, for "environ.h".
3097         * environ.c: Include "common-defs.h" instead of "defs.h.  Moved
3098         to...
3099         * common/environ.c: ... here.
3100         * environ.h: Moved to...
3101         * common/environ.h: ... here.
3102
3103 2017-03-07  Peter Bergner  <bergner@vnet.ibm.com>
3104
3105         * gdbarch.sh (pstring_ptr): New static function.
3106         (gdbarch_disassembler_options): Use it.
3107         (gdbarch_verify_disassembler_options): Print valid_disassembler_options,
3108         not valid_disassembler_option->name.
3109         * gdbarch.c: Regenerate.
3110
3111 2017-03-07  Peter Bergner  <bergner@vnet.ibm.com>
3112
3113         * config/powerpc/ppc64-linux.mh (MH_CFLAGS): Delete.
3114
3115 2017-03-07  Pedro Alves  <palves@redhat.com>
3116
3117         * tui/tui-regs.c (tui_restore_gdbout): Don't delete gdb_stdout.
3118
3119 2017-03-07  Walfred Tedeschi  <walfred.tedeschi@intel.com>
3120
3121         * i387-tdep.h (i387_reset_bnd_regs): Add function definition.
3122         * i387-tdep.c (i387_reset_bnd_regs): Add function implementation.
3123         * i386-tdep.c (i386_push_dummy_call): Call i387_reset_bnd_regs.
3124         * amd64-tdep.c (amd64_push_dummy_call): Call i387_reset_bnd_regs.
3125
3126 2017-03-06  Simon Marchi  <simon.marchi@ericsson.com>
3127
3128         * xtensa-linux-nat.c (fetch_gregs): Remove const.
3129
3130 2017-03-03  Simon Marchi  <simon.marchi@ericsson.com>
3131
3132         * remote.c (remote_add_target_side_commands): Use range-based
3133         for loop.
3134
3135 2017-03-03  Yao Qi  <yao.qi@linaro.org>
3136
3137         PR gdb/21165
3138         * ada-valprint.c (ada_val_print_ref): Call value_fetch_lazy if
3139         value is lazy.
3140         * valprint.c (common_val_print): Likewise.
3141
3142 2017-02-28  Peter Bergner  <bergner@vnet.ibm.com>
3143
3144         * NEWS: Mention new set/show disassembler-options commands.
3145         * doc/gdb.texinfo: Document new set/show disassembler-options commands.
3146         * disasm.c: Include "arch-utils.h", "gdbcmd.h" and "safe-ctype.h".
3147         (prospective_options): New static variable.
3148         (gdb_disassembler::gdb_disassembler): Initialize
3149         m_di.disassembler_options.
3150         (gdb_buffered_insn_length_init_dis): Initilize di->disassembler_options.
3151         (get_disassembler_options): New function.
3152         (set_disassembler_options): Likewise.
3153         (set_disassembler_options_sfunc): Likewise.
3154         (show_disassembler_options_sfunc): Likewise.
3155         (disassembler_options_completer): Likewise.
3156         (_initialize_disasm): Likewise.
3157         * disasm.h (get_disassembler_options): New prototype.
3158         (set_disassembler_options): Likewise.
3159         * gdbarch.sh (gdbarch_disassembler_options): New variable.
3160         (gdbarch_verify_disassembler_options): Likewise.
3161         * gdbarch.c: Regenerate.
3162         * gdbarch.h: Likewise.
3163         * arm-tdep.c (num_disassembly_options): Delete.
3164         (set_disassembly_style): Likewise.
3165         (arm_disassembler_options): New static variable.
3166         (set_disassembly_style_sfunc): Convert short style name into long
3167         option name.  Call set_disassembler_options.
3168         (show_disassembly_style_sfunc): New function.
3169         (arm_gdbarch_init): Call set_gdbarch_disassembler_options and
3170         set_gdbarch_verify_disassembler_options.
3171         (_initialize_arm_tdep): Delete regnames variable and update callers.
3172         (arm_disassembler_options): Initialize.
3173         (disasm_options): New variable.
3174         (num_disassembly_options): Rename from this...
3175         (num_disassembly_styles): ...to this.  Compute by scanning through
3176         disasm_options.
3177         (valid_disassembly_styles): Initialize using disasm_options.
3178         Remove calls to parse_arm_disassembler_option, get_arm_regnames and
3179         set_arm_regname_option.
3180         Pass show_disassembly_style_sfunc to the "disassembler" setshow command.
3181         * rs6000-tdep.c (powerpc_disassembler_options): New static variable.
3182         (rs6000_gdbarch_init): Call set_gdbarch_disassembler_options and
3183         set_gdbarch_verify_disassembler_options.
3184         * s390-tdep.c (s390_disassembler_options): New static variable.
3185         (s390_gdbarch_init):all set_gdbarch_disassembler_options and
3186         set_gdbarch_verify_disassembler_options.
3187
3188 2017-02-27  Simon Marchi  <simon.marchi@ericsson.com>
3189
3190         * remote.c (remote_add_target_side_condition): Remove "struct"
3191         keyword from range-based for loop.
3192
3193 2017-02-27  Simon Marchi  <simon.marchi@ericsson.com>
3194
3195         * remote.c (remote_add_target_side_condition): Use range-based
3196         for loop.  Update comment.
3197
3198 2017-02-27  Yao Qi  <yao.qi@linaro.org>
3199
3200         * f-typeprint.c (f_print_type): Check "varstring" is empty first.
3201
3202 2017-02-26  Alan Hayward  <alan.hayward@arm.com>
3203
3204         * regcache.c (regcache_raw_update): New function.
3205         (regcache_raw_read): Move code to regcache_raw_update.
3206         * regcache.h (regcache_raw_update): New declaration.
3207         * remote.c (remote_prepare_to_store): Call regcache_raw_update.
3208
3209 2017-02-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
3210
3211         * dwarf2read.c (create_debug_type_hash_table): Initialize
3212         header.signature and header.type_offset_in_tu.
3213
3214 2017-02-24  Pedro Alves  <palves@redhat.com>
3215
3216         * symtab.c (make_file_symbol_completion_list_1): Use
3217         add_symtab_completions.
3218
3219 2017-02-24  Alan Hayward  <alan.hayward@arm.com>
3220
3221         * stack.c (frame_info): Use frame_unwind_register_value to avoid buf.
3222
3223 2017-02-24  Alan Hayward  <alan.hayward@arm.com>
3224
3225         * i386-tdep.c (i386_pseudo_register_read_into_value): Use
3226         I386_MAX_REGISTER_SIZE.
3227         (i386_pseudo_register_write): Likewise.
3228         (i386_process_record): Likewise.
3229         * i387-tdep.c (i387_supply_xsave): Likewise.
3230         * m68k-linux-nat.c (fetch_register): Use M68K_MAX_REGISTER_SIZE.
3231         (store_register): Likewise.
3232
3233 2017-02-23  Pedro Alves  <palves@redhat.com>
3234
3235         * ada-lang.c: Include "common/function-view.h".
3236         (ada_iterate_over_symbols): Adjust to use function_view as
3237         callback type.
3238         (struct add_partial_datum, ada_complete_symbol_matcher): Delete.
3239         (ada_make_symbol_completion_list): Use a lambda.
3240         (ada_exc_search_name_matches): Delete.
3241         (name_matches_regex): New.
3242         (ada_add_global_exceptions): Use a lambda and name_matches_regex.
3243         * compile/compile-c-support.c: Include "common/function-view.h".
3244         (print_one_macro): Change prototype to accept a ui_file pointer.
3245         (write_macro_definitions): Use a lambda.
3246         * dwarf2read.c: Include "common/function-view.h".
3247         (dw2_map_expand_apply, dw2_map_symtabs_matching_filename)
3248         (dw2_expand_symtabs_matching): Adjust to use function_view as
3249         callback type.
3250         * language.h: Include "common/function-view.h".
3251         (struct language_defn) <la_iterate_over_symbols>: Adjust to use
3252         function_view as callback type.
3253         (LA_ITERATE_OVER_SYMBOLS): Remove DATA parameter.
3254         * linespec.c: Include "common/function-view.h".
3255         (collect_info::add_symbol): New method.
3256         (struct symbol_and_data_callback, iterate_inline_only, struct
3257         symbol_matcher_data, iterate_name_matcher): Delete.
3258         (iterate_over_all_matching_symtabs): Adjust to use function_view
3259         as callback type and lambdas.
3260         (iterate_over_file_blocks): Adjust to use function_view as
3261         callback type.
3262         (decode_compound_collector): Now a class with private fields.
3263         (decode_compound_collector::release_symbols): New method.
3264         (collect_one_symbol): Rename to...
3265         (decode_compound_collector::operator()): ... this and adjust.
3266         (lookup_prefix_sym): decode_compound_collector construction bits
3267         move to decode_compound_collector ctor.  Pass the
3268         decode_compound_collector object directly as callback.  Remove
3269         cleanups and use decode_compound_collector::release_symbols
3270         instead.
3271         (symtab_collector): Now a class with private fields.
3272         (symtab_collector::release_symtabs): New method.
3273         (add_symtabs_to_list): Rename to...
3274         (symtab_collector::operator()): ... this and adjust.
3275         (collect_symtabs_from_filename): symtab_collector construction
3276         bits move to symtab_collector ctor.  Pass the symtab_collector
3277         object directly as callback.  Remove cleanups and use
3278         symtab_collector::release_symtabs instead.
3279         (collect_symbols): Delete.
3280         (add_matching_symbols_to_info): Use lambdas.
3281         * macrocmd.c (print_macro_callback): Delete.
3282         (info_macro_command): Use a lambda.
3283         (info_macros_command): Pass print_macro_definition as callable
3284         directly.
3285         (print_one_macro): Remove 'ignore' parameter.
3286         (macro_list_command): Adjust.
3287         * macrotab.c (macro_for_each_data::fn): Now a function_view.
3288         (macro_for_each_data::user_data): Delete field.
3289         (foreach_macro): Adjust to call the function_view.
3290         (macro_for_each): Adjust to use function_view as callback type.
3291         (foreach_macro_in_scope): Adjust to call the function_view.
3292         (macro_for_each_in_scope): Adjust to use function_view as callback
3293         type.
3294         * macrotab.h: Include "common/function-view.h".
3295         (macro_callback_fn): Declare a prototype instead of a pointer.
3296         Remove "user_data" parameter.
3297         (macro_for_each, macro_for_each_in_scope): Adjust to use
3298         function_view as callback type.
3299         * psymtab.c (partial_map_expand_apply)
3300         (psym_map_symtabs_matching_filename, recursively_search_psymtabs):
3301         Adjust to use function_view as callback type and to return bool.
3302         (psym_expand_symtabs_matching): Adjust to use function_view as
3303         callback types.
3304         * symfile-debug.c (debug_qf_map_symtabs_matching_filename): Adjust
3305         to use function_view as callback type and to return bool.
3306         (debug_qf_expand_symtabs_matching): Adjust to use function_view as
3307         callback types.
3308         * symfile.c (expand_symtabs_matching): Adjust to use function_view
3309         as callback types.
3310         * symfile.h: Include "common/function-view.h".
3311         (expand_symtabs_file_matcher_ftype)
3312         (expand_symtabs_symbol_matcher_ftype)
3313         (expand_symtabs_exp_notify_ftype): Remove "data" parameter and
3314         return bool.
3315         (quick_symbol_functions::map_symtabs_matching_filename)
3316         (quick_symbol_functions::expand_symtabs_matching): Adjust to use
3317         function_view as callback type and return bool.
3318         (expand_symtabs_matching): Adjust to use function_view as callback
3319         type.
3320         (maintenance_expand_name_matcher)
3321         (maintenance_expand_file_matcher): Delete.
3322         (maintenance_expand_symtabs): Use lambdas.
3323         * symtab.c (iterate_over_some_symtabs): Adjust to use
3324         function_view as callback types and return bool.
3325         (iterate_over_symtabs): Likewise.  Use unique_xmalloc_ptr instead
3326         of a cleanup.
3327         (lookup_symtab_callback): Delete.
3328         (lookup_symtab): Use a lambda.
3329         (iterate_over_symbols): Adjust to use function_view as callback
3330         type.
3331         (struct search_symbols_data, search_symbols_file_matches)
3332         (search_symbols_name_matches): Delete.
3333         (search_symbols): Use a pair of lambdas.
3334         (struct add_name_data, add_macro_name, symbol_completion_matcher)
3335         (symtab_expansion_callback): Delete.
3336         (default_make_symbol_completion_list_break_on_1): Use lambdas.
3337         * symtab.h: Include "common/function-view.h".
3338         (iterate_over_some_symtabs): Adjust to use function_view as
3339         callback type and return bool.
3340         (iterate_over_symtabs): Adjust to use function_view as callback
3341         type.
3342         (symbol_found_callback_ftype): Remove 'data' parameter and return
3343         bool.
3344         (iterate_over_symbols): Adjust to use function_view as callback
3345         type.
3346
3347 2017-02-23  Pedro Alves  <palves@redhat.com>
3348
3349         * Makefile.in (SUBDIR_UNITTESTS_SRCS, SUBDIR_UNITTESTS_OBS): New.
3350         (%.o) <unittests/%.c>: New pattern.
3351         * configure.ac ($development): Add $(SUBDIR_UNITTESTS_OBS) to
3352         CONFIG_OBS, and $(SUBDIR_UNITTESTS_SRCS) to CONFIG_SRCS.
3353         * common/function-view.h: New file.
3354         * unittests/function-view-selftests.c: New file.
3355         * configure: Regenerate.
3356
3357 2017-02-23  Simon Marchi  <simon.marchi@ericsson.com>
3358
3359         * bsd-uthread.c (bsd_uthread_thread_alive): Use ptid instead of
3360         inferior_ptid.
3361         * go32-nat.c (go32_thread_alive): Likewise.
3362
3363 2017-02-23  Yao Qi  <yao.qi@linaro.org>
3364
3365         * varobj-iter.h (varobj_iter_delete): Call xfree instead of
3366         delete.
3367
3368 2017-02-23  Yao Qi  <yao.qi@linaro.org>
3369
3370         * varobj.c (varobj_clear_saved_item): Use delete instead of
3371         xfree.
3372         (update_dynamic_varobj_children): Likewise.
3373
3374 2017-02-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
3375
3376         * dwarf2read.c (dwarf2_record_block_ranges): Add forgotten BASEADDR.
3377
3378 2017-02-21  Simon Marchi  <simon.marchi@ericsson.com>
3379
3380         * common/enum-flags.h (enum_flags::enum_flags): Initialize
3381         m_enum_value to 0 in default constructor.
3382
3383 2017-02-21  Edjunior Barbosa Machado  <emachado@linux.vnet.ibm.com>
3384
3385         * rs6000-tdep.c (LOAD_AND_RESERVE_MASK): Rename from LWARX_MASK.
3386         (STORE_CONDITIONAL_MASK): Rename from STWCX_MASK.
3387         (LBARX_INSTRUCTION, LHARX_INSTRUCTION, LQARX_INSTRUCTION,
3388         STBCX_INSTRUCTION, STHCX_INSTRUCTION, STQCX_INSTRUCTION): New defines.
3389         (IS_LOAD_AND_RESERVE_INSN, IS_STORE_CONDITIONAL_INSN): New macros.
3390         (ppc_displaced_step_copy_insn): Use IS_LOAD_AND_RESERVE_INSN.
3391         (ppc_deal_with_atomic_sequence): Use IS_LOAD_AND_RESERVE_INSN and
3392         IS_STORE_CONDITIONAL_INSN.
3393
3394 2017-02-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
3395
3396         * dwarf2_rnglists_process: Initialize range_beginning and range_end.
3397
3398 2017-02-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
3399
3400         * NEWS (Changes since GDB 7.12): Add DWARF-5.
3401
3402 2017-02-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
3403
3404         * dwarf2read.c (skip_one_die, read_attribute_value)
3405         (dwarf2_const_value_attr, dump_die_shallow)
3406         (dwarf2_get_attr_constant_value, dwarf2_fetch_constant_bytes)
3407         (skip_form_bytes, attr_form_is_constant): Handle DW_FORM_data16.
3408
3409 2017-02-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
3410
3411         * dwarf2read.c (read_file_scope): Rename DW_MACRO_GNU_*.
3412         (dwarf_parse_macro_header): Accept DWARF version 5.
3413         (dwarf_decode_macro_bytes, dwarf_decode_macros): Rename DW_MACRO_GNU_*.
3414
3415 2017-02-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
3416
3417         * block.c (call_site_for_pc): Rename DW_OP_GNU_*, DW_TAG_GNU_* and
3418         DW_AT_GNU_*.
3419         * common/common-exceptions.h (enum errors): Likewise.
3420         * dwarf2-frame.c (class dwarf_expr_executor): Likewise.
3421         * dwarf2expr.c (dwarf_block_to_dwarf_reg)
3422         (dwarf_expr_context::execute_stack_op): Likewise.
3423         * dwarf2expr.h (struct dwarf_expr_context, struct dwarf_expr_piece):
3424         Likewise.
3425         * dwarf2loc.c (dwarf_evaluate_loc_desc::get_base_type)
3426         (dwarf_evaluate_loc_desc::push_dwarf_reg_entry_value)
3427         (show_entry_values_debug, call_site_to_target_addr)
3428         (func_addr_to_tail_call_list, func_verify_no_selftailcall)
3429         (dwarf_expr_reg_to_entry_parameter, dwarf_entry_parameter_to_value)
3430         (entry_data_value_free_closure, value_of_dwarf_reg_entry)
3431         (value_of_dwarf_block_entry, indirect_pieced_value)
3432         (symbol_needs_eval_context::push_dwarf_reg_entry_value):
3433         (disassemble_dwarf_expression): Likewise.
3434         * dwarf2read.c (process_die, inherit_abstract_dies)
3435         (read_call_site_scope): Likewise.
3436         * gdbtypes.h (struct func_type, struct call_site_parameter)
3437         (struct call_site): Likewise.
3438         * stack.c (read_frame_arg): Likewise.
3439         * std-operator.def (OP_VAR_ENTRY_VALUE): Likewise.
3440
3441 2017-02-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
3442
3443         * defs.h (read_unsigned_leb128): New declaration.
3444         * dwarf2loc.c (decode_debug_loclists_addresses): New function.
3445         (decode_debug_loc_dwo_addresses): Update DEBUG_LOC_* to DW_LLE_*.
3446         (dwarf2_find_location_expression): Call also
3447         decode_debug_loclists_addresses.  Handle DWARF-5 ULEB128 length.
3448         * dwarf2loc.h (dwarf2_version): New declaration.
3449         * dwarf2read.c (struct dwarf2_per_objfile): Add loclists, line_str,
3450         rnglists.
3451         (dwarf2_elf_names): Add .debug_loclists, .debug_line_str,
3452         .debug_rnglists.
3453         (struct dwop_section_names): Add loclists_dwo.
3454         (dwop_section_names): Add .debug_loclists.dwo.
3455         (struct comp_unit_head): Add unit_type, signature, type_offset_in_tu.
3456         (struct dwarf2_per_cu_data): Add dwarf_version.
3457         (struct dwo_sections): Add loclists.
3458         (struct attr_abbrev): Add implicit_const.
3459         (read_indirect_line_string): New declaration.
3460         (read_unsigned_leb128): Delete declaration.
3461         (rcuh_kind): New definition.
3462         (read_and_check_comp_unit_head): Change parameter
3463         is_debug_types_section to section_kind.
3464         (dwarf2_locate_sections): Handle loclists, line_str and rnglists.
3465         (read_comp_unit_head): Change parameter abfd to section, add parameter
3466         section_kind.  Handle DWARF-5.
3467         (error_check_comp_unit_head): Accept also DWARF version 5.
3468         (read_and_check_comp_unit_head): Change parameter
3469         is_debug_types_section to section_kind.
3470         (read_and_check_type_unit_head): Delete function.
3471         (read_abbrev_offset): Handle DWARF-5.
3472         (create_debug_type_hash_table): Add parameter section_kind.  Process
3473         only DW_UT_type.  Use signature and type_offset_in_tu from struct
3474         comp_unit_head.
3475         (create_debug_types_hash_table): Update create_debug_type_hash_table
3476         caller.
3477         (create_all_type_units): Call create_debug_type_hash_table.
3478         (read_cutu_die_from_dwo, init_cutu_and_read_dies): Change
3479         read_and_check_type_unit_head caller to read_and_check_comp_unit_head
3480         caller.
3481         (skip_one_die): Handle DW_FORM_implicit_const.
3482         (dwarf2_rnglists_process): New function.
3483         (dwarf2_ranges_process): Call dwarf2_rnglists_process for DWARF-5.
3484         (abbrev_table_read_table): Handle DW_FORM_implicit_const.
3485         (read_attribute_value): Handle DW_FORM_implicit_const,
3486         DW_FORM_line_strp.
3487         (read_attribute): Handle DW_FORM_implicit_const.
3488         (read_indirect_string_at_offset_from): New function from
3489         read_indirect_string_at_offset.
3490         (read_indirect_string_at_offset): Call
3491         read_indirect_string_at_offset_from.
3492         (read_indirect_line_string_at_offset): New function.
3493         (read_indirect_string): New function comment.
3494         (read_indirect_line_string): New function.
3495         (read_unsigned_leb128): Make it global.
3496         (dwarf2_string_attr): Handle DWARF-5.
3497         (add_include_dir_stub, read_formatted_entries): New functions.
3498         (dwarf_decode_line_header, dump_die_shallow, cu_debug_loc_section):
3499         Handle DWARF-5.
3500         (per_cu_header_read_in): Update read_comp_unit_head caller.
3501         (dwarf2_version): New function.
3502         * symfile.h (struct dwarf2_debug_sections): Add loclists, line_str and
3503         rnglists.
3504         * xcoffread.c (dwarf2_xcoff_names): Update struct dwarf2_debug_sections
3505         fields.
3506
3507 2017-02-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
3508
3509         * dwarf2read.c (abbrev_table_read_table): Read the data only once.
3510
3511 2017-02-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
3512
3513         * dwarf2read.c (dwarf2_ranges_process): New function from
3514         dwarf2_ranges_read.
3515         (dwarf2_ranges_read, dwarf2_record_block_ranges): Use
3516         dwarf2_ranges_process.
3517
3518 2017-02-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
3519
3520         * dwarf2read.c (create_debug_type_hash_table): New function from
3521         create_debug_types_hash_table.
3522         (create_debug_types_hash_table): Call create_debug_type_hash_table.
3523         (create_all_type_units, open_and_init_dwo_file): Update
3524         create_debug_types_hash_table callers.
3525
3526 2017-02-20  Sergio Durigan Junior  <sergiodj@redhat.com>
3527
3528         PR gdb/16188
3529         * fork-child.c (trace_start_error): Fix thinko.  va_end should
3530         refer to 'ap', not 'args'.
3531
3532 2017-02-20  Sergio Durigan Junior  <sergiodj@redhat.com>
3533             Pedro Alves  <palves@redhat.com>
3534
3535         PR gdb/16188
3536         * darwin-nat.c (darwin_ptrace_me): Check if calls to system
3537         calls succeeded.
3538         * fork-child.c (trace_start_error): New function.
3539         (trace_start_error_with_name): Likewise.
3540         * gnu-nat.c (gnu_ptrace_me): Check if call to PTRACE succeeded.
3541         * inf-ptrace.c (inf_ptrace_me): Likewise.
3542         * inferior.h (trace_start_error): New prototype.
3543         (trace_start_error_with_name): Likewise.
3544
3545 2017-02-15  Sergio Durigan Junior  <sergiodj@redhat.com>
3546
3547         PR gdb/21164
3548         * psymtab.c (maintenance_print_psymbols): Verify if 'argv' is not
3549         NULL before using it.
3550         * symmisc.c (maintenance_print_symbols): Likewise.
3551         (maintenance_print_msymbols): Likewise.
3552
3553 2017-02-14  Tim Wiederhake  <tim.wiederhake@intel.com>
3554
3555         * NEWS: Add record Python bindings entry.
3556
3557 2017-02-14  Tim Wiederhake  <tim.wiederhake@intel.com>
3558
3559         * Makefile.in (SUBDIR_PYTHON_OBS): Add py-record-btrace.o,
3560         py-record-full.o.
3561         (SUBDIR_PYTHON_SRCS): Add py-record-btrace.c, py-record-full.c.
3562         * python/py-record-btrace.c, python/py-record-btrace.h,
3563         python/py-record-full.c, python/py-record-full.h: New file.
3564         * python/py-record.c: Add include for py-record-btrace.h and
3565         py-record-full.h.
3566         (recpy_method, recpy_format, recpy_goto, recpy_replay_position,
3567         recpy_instruction_history, recpy_function_call_history, recpy_begin,
3568         recpy_end): Use functions from py-record-btrace.c and py-record-full.c.
3569         * python/python-internal.h (PyInt_FromSsize_t, PyInt_AsSsize_t):
3570         New definition.
3571         (gdbpy_initialize_btrace): New export.
3572         * python/python.c (_initialize_python): Add gdbpy_initialize_btrace.
3573
3574 2017-02-14  Tim Wiederhake  <tim.wiederhake@intel.com>
3575
3576         * Makefile.in (SUBDIR_PYTHON_OBS): Add python/py-record.o.
3577         (SUBDIR_PYTHON_SRCS): Add python/py-record.c.
3578         * python/py-record.c: New file.
3579         * python/python-internal.h (gdbpy_start_recording,
3580         gdbpy_current_recording, gdpy_stop_recording,
3581         gdbpy_initialize_record): New export.
3582         * python/python.c (_initialize_python): Add gdbpy_initialize_record.
3583         (python_GdbMethods): Add gdbpy_start_recording,
3584         gdbpy_current_recording and gdbpy_stop_recording.
3585
3586 2017-02-14  Tim Wiederhake  <tim.wiederhake@intel.com>
3587
3588         * record-btrace.c (record_btrace_record_method): New function.
3589         (init_record_btrace_ops): Initialize to_record_method.
3590         * record-full.c (record_full_record_method): New function.
3591         (init_record_full_ops, init_record_full_core_ops): Add
3592         record_full_record_method.
3593         * record.h (enum record_method): New enum.
3594         * target-debug.h (target_debug_print_enum_record_method: New define.
3595         * target-delegates.c: Regenerate.
3596         * target.c (target_record_method): New function.
3597         * target.h: Include record.h.
3598         (struct target_ops) <to_record_method>: New field.
3599         (target_record_method): New export.
3600
3601 2017-02-14  Tim Wiederhake  <tim.wiederhake@intel.com>
3602
3603         * record.h (record_start, record_stop): New export.
3604         * record.c (record_start, record_stop): New function.
3605
3606 2017-02-14  Tim Wiederhake  <tim.wiederhake@intel.com>
3607
3608         * btrace.c (btrace_fetch): Copy function call segments pointer
3609         into a vector.
3610         (btrace_clear): Clear the vector.
3611         (btrace_find_insn_by_number): Use binary search to find the correct
3612         function call segment.
3613         * btrace.h (brace_fun_p): New typedef.
3614         (struct btrace_thread_info) <functions>: New field.
3615
3616 2017-02-14  Tim Wiederhake  <tim.wiederhake@intel.com>
3617
3618         * record-btrace.c (btrace_ui_out_decode_error): Move most of it ...
3619         * btrace.c (btrace_decode_error): ... here.  New function.
3620         * btrace.h (btrace_decode_error): New export.
3621
3622 2017-02-14  Tim Wiederhake  <tim.wiederhake@intel.com>
3623
3624         * btrace.c (ftrace_call_num_insn, btrace_insn_get_error): New function.
3625         (ftrace_new_function, btrace_insn_number, btrace_insn_cmp,
3626         btrace_find_insn_by_number): Remove special case for gaps.
3627         * btrace.h (btrace_insn_get_error): New export.
3628         (btrace_insn_number, btrace_find_insn_by_number): Adjust comment.
3629         * record-btrace.c (btrace_insn_history): Print number for gaps.
3630         (record_btrace_info, record_btrace_goto): Handle gaps.
3631
3632 2017-02-14  Tom Tromey  <tom@tromey.com>
3633
3634         PR python/13598:
3635         * python/python.c (gdbpy_before_prompt_hook): Emit before_prompt
3636         event.
3637         * python/py-evts.c (gdbpy_initialize_py_events): Add
3638         before_prompt registry.
3639         * python/py-events.h (events_object) <before_prompt>: New field.
3640
3641 2017-02-14  Markus Metzger  <markus.t.metzger@intel.com>
3642
3643         * btrace.c (ftrace_new_switch): Preserve up link and flags.
3644
3645 2017-02-13  Luis Machado  <lgustavo@codesourcery.com>
3646
3647         * symfile (_initialize_symfile): Add usage text to the load command's
3648         help text.
3649
3650 2017-02-10  Simon Marchi  <simon.marchi@ericsson.com>
3651
3652         * utils.c (defaulted_query): Don't query on secondary UIs.
3653
3654 2017-02-10  Tom Tromey  <tom@tromey.com>
3655
3656         * rust-lang.c (rust_get_disr_info): Remove unused variable.
3657
3658 2017-02-10  Tom Tromey  <tom@tromey.com>
3659
3660         * python/py-value.c (valpy_richcompare_throw): Remove unnecessary
3661         "cleanup" local.
3662         * python/py-type.c (typy_legacy_template_argument): Remove
3663         unnecessary "cleanup" local.
3664
3665 2017-02-10  Tom Tromey  <tom@tromey.com>
3666
3667         * python/python.c (do_start_initialization): New function, from
3668         _initialize_python.
3669         (_initialize_python): Call do_start_initialization.
3670         * python/py-linetable.c (ltpy_iternext): Use explicit returns, not
3671         goto.
3672
3673 2017-02-10  Tom Tromey  <tom@tromey.com>
3674
3675         * python/py-prettyprint.c (pretty_print_one_value): Use
3676         gdbpy_ref.
3677
3678 2017-02-10  Tom Tromey  <tom@tromey.com>
3679
3680         * python/py-cmd.c (cmdpy_destroyer): Use gdbpy_ref.
3681         * python/py-breakpoint.c (gdbpy_breakpoint_deleted): Use
3682         gdbpy_ref.
3683         * python/py-type.c (field_new): Use gdbpy_ref.
3684         * python/py-symtab.c (symtab_and_line_to_sal_object): Use
3685         gdbpy_ref.
3686         * python/py-progspace.c (pspy_new): Use gdbpy_ref.
3687         (py_free_pspace): Likewise.
3688         (pspace_to_pspace_object): Likewise.
3689         * python/py-objfile.c (objfpy_new): Use gdbpy_ref.
3690         (py_free_objfile): Likewise.
3691         (objfile_to_objfile_object): Likewise.
3692         * python/py-inferior.c (delete_thread_object): Use
3693         gdbpy_ref.
3694         (infpy_read_memory): Likewise.
3695         (py_free_inferior): Likewise.
3696         * python/py-evtregistry.c (create_eventregistry_object): Use
3697         gdbpy_ref.
3698         * python/py-event.c (create_event_object): Use gdbpy_ref.
3699
3700 2017-02-10  Tom Tromey  <tom@tromey.com>
3701
3702         * python/py-ref.h (gdbpy_ref_policy): Now a template.
3703         (gdbpy_ref): Now a template; allow subclasses of PyObject to be
3704         used.
3705         * python/py-arch.c, python/py-bpevent.c, python/py-breakpoint.c,
3706         python/py-cmd.c, python/py-continueevent.c, python/py-event.c,
3707         python/py-exitedevent.c, python/py-finishbreakpoint.c,
3708         python/py-framefilter.c, python/py-function.c,
3709         python/py-inferior.c, python/py-infevents.c,
3710         python/py-linetable.c, python/py-newobjfileevent.c,
3711         python/py-param.c, python/py-prettyprint.c, python/py-ref.h,
3712         python/py-signalevent.c, python/py-stopevent.c,
3713         python/py-symbol.c, python/py-threadevent.c, python/py-type.c,
3714         python/py-unwind.c, python/py-utils.c, python/py-value.c,
3715         python/py-varobj.c, python/py-xmethods.c, python/python.c,
3716         varobj.c: Change gdbpy_ref to gdbpy_ref<>.
3717
3718 2017-02-10  Tom Tromey  <tom@tromey.com>
3719
3720         * ui-out.h (ui_out_emit_type): New class.
3721         (ui_out_emit_tuple, ui_out_emit_list): New typedefs.
3722         * python/py-framefilter.c (py_print_single_arg): Use gdb::optional
3723         and ui_out_emit_tuple.
3724         (enumerate_locals): Likewise.
3725         (py_mi_print_variables, py_print_locals, py_print_args): Use
3726         ui_out_emit_list.
3727         (py_print_frame): Use gdb::optional, ui_out_emit_tuple,
3728         ui_out_emit_list.
3729         * common/gdb_optional.h: New file.
3730
3731 2017-02-10  Martin Galvan  <martingalvan@sourceware.org>
3732
3733         * MAINTAINERS (Write After Approval): Update my e-mail address.
3734
3735 2017-02-10  Martin Galvan  <martingalvan@sourceware.org>
3736
3737         PR gdb/21122
3738         * breakpoint.c (_initialize_breakpoint): Update the help description
3739         of the 'commands' command to indicate that it takes a list argument.
3740
3741 2017-02-09  Simon Marchi  <simon.marchi@ericsson.com>
3742
3743         * interps.c (current_interp_set_logging): Remove "return".
3744
3745 2017-02-09  Gary Benson  <gbenson@redhat.com>
3746
3747         * symtab.c (add_symtab_completions): Prevent NULL pointer
3748         dereference.
3749
3750 2017-02-08  Pedro Alves  <palves@redhat.com>
3751
3752         * interps.c (interp::interp): Remove reference to quiet_p.
3753         (interp_set): Make static.  Remove dead "Switching to" output
3754         code.
3755         (interp_quiet_p, interp_set_quiet): Delete.
3756         (interpreter_exec_cmd): Don't set the interpreter quiet.
3757         * interps.h (interp_quiet_p): Make static.
3758         (class interp) <quiet_p>: Remove field
3759
3760 2017-02-08  Jerome Guitton  <guitton@adacore.com>
3761
3762         * cli/cli-decode.c (find_command_name_length): Make it extern.
3763         * cli/cli-decode.h (find_command_name_length): Declare.
3764         * cli/cli-script.c (command_name_equals, line_first_arg):
3765         New functions.
3766         (process_next_line): Use cli-decode to parse command names.
3767         (build_command_line): Make args a constant pointer.
3768
3769 2017-02-08  Jerome Guitton  <guitton@adacore.com>
3770
3771         * cli-decode.c (lookup_cmd_1, lookup_cmd_composition):
3772         Remove case-insensitive search.
3773
3774 2017-02-07  Jose E. Marchesi  <jose.marchesi@oracle.com>
3775
3776         * sparc-tdep.c (sparc32_gdbarch_init): Do not place a + operator
3777         at the end of the line.  Avoids an ARI warning.
3778
3779 2017-02-06  Luis Machado  <lgustavo@codesourcery.com>
3780
3781         * NEWS: Mention support for record/replay of Intel 64 rdrand and
3782         rdseed instructions.
3783         i386-tdep.c (i386_process_record): Handle Intel 64 rdrand and rseed.
3784
3785 2017-02-06  Ivo Raisr  <ivo.raisr@oracle.com>
3786
3787         PR tdep/20936
3788         Provide and use sparc32 and sparc64 target description XML files.
3789         * features/sparc/sparc32-cp0.xml, features/sparc/sparc32-cpu.xml,
3790         features/sparc/sparc32-fpu.xml: New files for sparc 32-bit.
3791         * features/sparc/sparc64-cp0.xml, features/sparc/sparc64-cpu.xml,
3792         features/sparc/sparc64-fpu.xml: New files for sparc 64-bit.
3793         * features/sparc/sparc32-solaris.xml: New file.
3794         * features/sparc/sparc64-solaris.xml: New file.
3795         * features/sparc/sparc32-solaris.c: Generated.
3796         * features/sparc/sparc64-solaris.c: Generated.
3797         * sparc-tdep.h: Account for differences in target descriptions.
3798         * sparc-tdep.c (sparc32_register_name): Use target provided registers.
3799         (sparc32_register_type): Use target provided registers.
3800         (validate_tdesc_registers): New function.
3801         (sparc32_gdbarch_init): Use tdesc_has_registers.
3802         Set pseudoregister functions.
3803         * sparc64-tdep.c (sparc64_register_name): Use target provided registers.
3804         (sparc64_register_type): Use target provided registers.
3805         (sparc64_init_abi): Set pseudoregister functions.
3806
3807 2017-02-03  Tom Tromey  <tom@tromey.com>
3808
3809         PR rust/21097:
3810         * rust-lang.c (rust_print_type) <TYPE_CODE_UNION>: Handle enums
3811         with a single member.
3812
3813 2017-02-03  Pedro Alves  <palves@redhat.com>
3814
3815         * cli/cli-interp.c (cli_interp_base::cli_interp_base)
3816         (cli_interp_base::~cli_interp_base): New.
3817         (cli_interp): New struct.
3818         (as_cli_interp): Cast the interp itself to cli_interp.
3819         (cli_interpreter_pre_command_loop): Rename to ...
3820         (cli_interp_base::pre_command_loop): ... this.  Remove 'self'
3821         parameter.
3822         (cli_interpreter_init): Rename to ...
3823         (cli_interp::init): ... this.  Remove 'self' parameter.  Use
3824         boolean.  Make extern.
3825         (cli_interpreter_resume): Rename to ...
3826         (cli_interp::resume): ... this.  Remove 'data' parameter.  Make
3827         extern.
3828         (cli_interpreter_suspend): Rename to ...
3829         (cli_interp::suspend): ... this.  Remove 'data' parameter.  Make
3830         extern.
3831         (cli_interpreter_exec): Rename to ...
3832         (cli_interp::exec): ... this.  Remove 'data' parameter.  Make
3833         extern.
3834         (cli_interpreter_supports_command_editing): Rename to ...
3835         (cli_interp_base::supports_command_editing): ... this.  Remove
3836         'interp' parameter.  Make extern.
3837         (cli_ui_out): Rename to ...
3838         (cli_interp::interp_ui_out): ... this.  Remove 'interp' parameter.
3839         Make extern.
3840         (cli_set_logging): Rename to ...
3841         (cli_interp_base::set_logging): ... this.  Remove 'interp'
3842         parameter.  Make extern.
3843         (cli_interp_procs): Delete.
3844         (cli_interp_factory): Adjust to use "new".
3845         * cli/cli-interp.h: Include "interps.h".
3846         (struct cli_interp_base): New struct.
3847         * interps.c (struct interp): Delete.  Fields moved to interps.h.
3848         (interp_new): Delete.
3849         (interp::interp, interp::~interp): New.
3850         (interp_set): Use bool, and return void.  Assume the interpreter
3851         has suspend, init and resume methods, and that the all return
3852         void.
3853         (set_top_level_interpreter): interp_set returns void.
3854         (interp_ui_out): Adapt.
3855         (current_interp_set_logging): Adapt.
3856         (interp_data): Delete.
3857         (interp_pre_command_loop, interp_supports_command_editing): Adapt.
3858         (interp_exec): Adapt.
3859         (top_level_interpreter_data): Delete.
3860         * interps.h (interp_init_ftype, interp_resume_ftype)
3861         (interp_suspend_ftype, interp_exec_ftype)
3862         (interp_pre_command_loop_ftype, interp_ui_out_ftype): Delete.
3863         (class interp): New.
3864         (interp_new): Delete.
3865         (interp_set): Now returns void.  Use bool.
3866         (interp_data, top_level_interpreter_data): Delete.
3867         * mi/mi-common.h: Include interps.h.
3868         (class mi_interp): Inherit from interp.  Define a ctor.  Declare
3869         init, resume, suspect, exec, interp_ui_out, set_logging and
3870         pre_command_loop methods.
3871         * mi/mi-interp.c (as_mi_interp): Cast the interp itself.
3872         (mi_interpreter_init): Rename to ...
3873         (mi_interp::init): ... this.  Remove the 'interp' parameter, use
3874         bool, return void and make extern.  Adjust.
3875         (mi_interpreter_resume): ... Rename to ...
3876         (mi_interp::resume): ... this.  Remove the 'data' parameter,
3877         return void and make extern.  Adjust.
3878         (mi_interpreter_suspend): ... Rename to ...
3879         (mi_interp::suspend): ... this.  Remove the 'data' parameter,
3880         return void and make extern.  Adjust.
3881         (mi_interpreter_exec): ... Rename to ...
3882         (mi_interp::exec): ... this.  Remove the 'data' parameter and make
3883         extern.  Adjust.
3884         (mi_interpreter_pre_command_loop): ... Rename to ...
3885         (mi_interp::pre_command_loop): ... this.  Remove the 'self'
3886         parameter and make extern.
3887         (mi_on_normal_stop_1): Adjust.
3888         (mi_ui_out): Rename to ...
3889         (mi_interp::interp_ui_out): ... this.  Remove the 'interp'
3890         parameter and make extern.  Adjust.
3891         (mi_set_logging): Rename to ...
3892         (mi_interp::set_logging): ... this.  Remove the 'interp'
3893         parameter and make extern.  Adjust.
3894         (mi_interp_procs): Delete.
3895         (mi_interp_factory): Adjust to use 'new'.
3896         * mi/mi-main.c (mi_cmd_gdb_exit, captured_mi_execute_command)
3897         (mi_print_exception, mi_execute_command, mi_load_progress):
3898         Adjust.
3899         * tui/tui-interp.c (tui_interp): New class.
3900         (as_tui_interp): Return a tui_interp pointer.
3901         (tui_on_normal_stop, tui_on_signal_received)
3902         (tui_on_end_stepping_range, tui_on_signal_exited, tui_on_exited)
3903         (tui_on_no_history, tui_on_user_selected_context_changed): Adjust
3904         to use interp::interp_ui_out.
3905         (tui_init): Rename to ...
3906         (tui_interp::init): ... this.  Remove the 'self' parameter, use
3907         bool, return void and make extern.  Adjust.
3908         (tui_resume): Rename to ...
3909         (tui_interp::resume): ... this.  Remove the 'data' parameter,
3910         return void and make extern.  Adjust.
3911         (tui_suspend): Rename to ...
3912         (tui_interp::suspend): ... this.  Remove the 'data' parameter,
3913         return void and make extern.  Adjust.
3914         (tui_ui_out): Rename to ...
3915         (tui_interp::interp_ui_out): ... this.  Remove the 'self'
3916         parameter, and make extern.  Adjust.
3917         (tui_exec): Rename to ...
3918         (tui_interp::exec): ... this.  Remove the 'data' parameter and
3919         make extern.
3920         (tui_interp_procs): Delete.
3921         (tui_interp_factory): Use "new".
3922
3923 2017-02-02  Tom Tromey  <tom@tromey.com>
3924
3925         * rust-exp.y (ends_raw_string, space_then_number)
3926         (rust_identifier_start_p): Return bool.
3927         * rust-lang.c (rust_tuple_type_p, rust_underscore_fields)
3928         (rust_tuple_struct_type_p, rust_tuple_variant_type_p)
3929         (rust_slice_type_p, rust_range_type_p, rust_u8_type_p)
3930         (rust_chartype_p): Return bool.
3931         (val_print_struct, rust_print_struct_def, rust_print_type):
3932         Update.
3933         * rust-lang.h (rust_tuple_type_p, rust_tuple_struct_type_p):
3934         Return bool.
3935
3936 2017-02-02  Tom Tromey  <tom@tromey.com>
3937
3938         * rust-lang.c: Reindent.
3939
3940 2017-02-02  Tom Tromey  <tom@tromey.com>
3941
3942         * rust-lang.h (rust_crate_for_block): Update.
3943         * rust-lang.c (rust_crate_for_block): Return std::string.
3944         (rust_get_disr_info): Use std:;string, not
3945         gdb::unique_xmalloc_ptr.
3946         * rust-exp.y (crate_name): Update.
3947
3948 2017-02-02  Pedro Alves  <palves@redhat.com>
3949
3950         * disasm-selftests.c (print_one_insn_test): Move the "verbose"
3951         field out of gdb_disassembler_test and make it static.
3952
3953 2017-02-02  Pedro Alves  <palves@redhat.com>
3954
3955         * mi/mi-common.h (struct mi_interp): Delete the mi2_interp,
3956         mi1_interp and mi_interp fields.
3957
3958 2017-02-02  Pedro Alves  <palves@redhat.com>
3959
3960         * cli/cli-interp.c (struct saved_output_files, saved_output):
3961         Moved from cli/cli-logging.c.
3962         (cli_set_logging): New function.
3963         (cli_interp_procs): Install cli_set_logging.
3964         * cli/cli-interp.h (make_logging_output, cli_set_logging):
3965         Declare.
3966         * cli/cli-logging.c (struct saved_output_files, saved_output):
3967         Moved to cli/cli-interp.c.
3968         (pop_output_files): Don't save outputs here.
3969         (make_logging_output): New function.
3970         (handle_redirections): Don't build tee nor save previous outputs
3971         here.
3972         * interps.c (current_interp_set_logging): Change prototype.
3973         Assume there's always a set_logging_proc method installed.
3974         * interps.h (interp_set_logging_ftype): Change prototype.
3975         (current_interp_set_logging): Change prototype and adjust comment.
3976         * mi/mi-interp.c (mi_set_logging): Change protototype.  Adjust to
3977         use make_logging_output.
3978         * tui/tui-interp.c (tui_interp_procs): Install cli_set_logging.
3979 2017-02-02  Pedro Alves  <palves@redhat.com>
3980
3981         * cli/cli-logging.c (maybe_warn_already_logging): New factored out
3982         from ...
3983         (set_logging_overwrite): ... here.
3984         (logging_no_redirect_file): Delete.
3985         (set_logging_redirect): Don't handle redirection on the fly.
3986         Instead warn that "logging off" / "logging on" is necessary.
3987         (pop_output_files): Delete references to logging_no_redirect_file.
3988         (show_logging_command): Always speak in terms of what will happen
3989         once logging is reenabled.
3990
3991 2017-02-02  Pedro Alves  <palves@redhat.com>
3992
3993         * disasm.h (gdb_pretty_print_disassembler): Tweak intro comment.
3994
3995 2017-02-02  Pedro Alves  <palves@redhat.com>
3996
3997         * disasm.c (gdb_pretty_print_insn): Rename to ...
3998         (gdb_pretty_print_disassembler::pretty_print_insn): ... this.
3999         Remove gdbarch parameter.  Adapt to clear the object's buffers
4000         instead of allocating new buffers, and to print using the object's
4001         gdb_disassembler instead of calling gdb_print_insn.
4002         (dump_insns): Use gdb_pretty_print_disassembler.
4003         * disasm.h (gdb_pretty_print_insn): Delete declaration.
4004         (gdb_pretty_print_disassembler): New class.
4005         * record-btrace.c (btrace_insn_history): Use
4006         gdb_pretty_print_disassembler.
4007
4008 2017-02-02  Pedro Alves  <palves@redhat.com>
4009
4010         * ada-lang.c (type_as_string): Use string_file.
4011         * ada-valprint.c (ada_print_floating): Use string_file.
4012         * ada-varobj.c (ada_varobj_scalar_image)
4013         (ada_varobj_get_value_image): Use string_file.
4014         * aix-thread.c (aix_thread_extra_thread_info): Use string_file.
4015         * arm-tdep.c (_initialize_arm_tdep): Use string_printf.
4016         * breakpoint.c (update_inserted_breakpoint_locations)
4017         (insert_breakpoint_locations, reattach_breakpoints)
4018         (print_breakpoint_location, print_one_detail_ranged_breakpoint)
4019         (print_it_watchpoint): Use string_file.
4020         (save_breakpoints): Use stdio_file.
4021         * c-exp.y (oper): Use string_file.
4022         * cli/cli-logging.c (set_logging_redirect): Use ui_file_up and
4023         tee_file.
4024         (pop_output_files): Use delete.
4025         (handle_redirections): Use stdio_file and tee_file.
4026         * cli/cli-setshow.c (do_show_command): Use string_file.
4027         * compile/compile-c-support.c (c_compute_program): Use
4028         string_file.
4029         * compile/compile-c-symbols.c (generate_vla_size): Take a
4030         'string_file &' instead of a 'ui_file *'.
4031         (generate_c_for_for_one_variable): Take a 'string_file &' instead
4032         of a 'ui_file *'.  Use string_file.
4033         (generate_c_for_variable_locations): Take a 'string_file &'
4034         instead of a 'ui_file *'.
4035         * compile/compile-internal.h (generate_c_for_for_one_variable):
4036         Take a 'string_file &' instead of a 'ui_file *'.
4037         * compile/compile-loc2c.c (push, pushf, unary, binary)
4038         (print_label, pushf_register_address, pushf_register)
4039         (do_compile_dwarf_expr_to_c): Take a 'string_file &' instead of a
4040         'ui_file *'.  Adjust.
4041         * compile/compile.c (compile_to_object): Use string_file.
4042         * compile/compile.h (compile_dwarf_expr_to_c)
4043         (compile_dwarf_bounds_to_c): Take a 'string_file &' instead of a
4044         'ui_file *'.
4045         * cp-support.c (inspect_type): Use string_file and obstack_copy0.
4046         (replace_typedefs_qualified_name): Use string_file and
4047         obstack_copy0.
4048         * disasm.c (gdb_pretty_print_insn): Use string_file.
4049         (gdb_disassembly): Adjust reference the null_stream global.
4050         (do_ui_file_delete): Delete.
4051         (gdb_insn_length): Use null_stream.
4052         * dummy-frame.c (maintenance_print_dummy_frames): Use stdio_file.
4053         * dwarf2loc.c (dwarf2_compile_property_to_c)
4054         (locexpr_generate_c_location, loclist_generate_c_location): Take a
4055         'string_file &' instead of a 'ui_file *'.
4056         * dwarf2loc.h (dwarf2_compile_property_to_c): Likewise.
4057         * dwarf2read.c (do_ui_file_peek_last): Delete.
4058         (dwarf2_compute_name): Use string_file.
4059         * event-top.c (gdb_setup_readline): Use stdio_file.
4060         * gdbarch.sh (verify_gdbarch): Use string_file.
4061         * gdbtypes.c (safe_parse_type): Use null_stream.
4062         * guile/scm-breakpoint.c (gdbscm_breakpoint_commands): Use
4063         string_file.
4064         * guile/scm-disasm.c (gdbscm_print_insn_from_port): Take a
4065         'string_file *' instead of a 'ui_file *'.
4066         (gdbscm_arch_disassemble): Use string_file.
4067         * guile/scm-frame.c (frscm_print_frame_smob): Use string_file.
4068         * guile/scm-ports.c (class ioscm_file_port): Now a class that
4069         inherits from ui_file.
4070         (ioscm_file_port_delete, ioscm_file_port_rewind)
4071         (ioscm_file_port_put): Delete.
4072         (ioscm_file_port_write): Rename to ...
4073         (ioscm_file_port::write): ... this.  Remove file_port_magic
4074         checks.
4075         (ioscm_file_port_new): Delete.
4076         (ioscm_with_output_to_port_worker): Use ioscm_file_port and
4077         ui_file_up.
4078         * guile/scm-type.c (tyscm_type_name): Use string_file.
4079         * guile/scm-value.c (vlscm_print_value_smob, gdbscm_value_print):
4080         Use string_file.
4081         * infcmd.c (print_return_value_1): Use string_file.
4082         * infrun.c (print_target_wait_results): Use string_file.
4083         * language.c (add_language): Use string_file.
4084         * location.c (explicit_to_string_internal): Use string_file.
4085         * main.c (captured_main_1): Use null_file.
4086         * maint.c (maintenance_print_architecture): Use stdio_file.
4087         * mi/mi-cmd-stack.c (list_arg_or_local): Use string_file.
4088         * mi/mi-common.h (struct mi_interp) <out, err, log, targ,
4089         event_channel>: Change type to mi_console_file pointer.
4090         * mi/mi-console.c (mi_console_file_fputs, mi_console_file_flush)
4091         (mi_console_file_delete): Delete.
4092         (struct mi_console_file): Delete.
4093         (mi_console_file_magic): Delete.
4094         (mi_console_file_new): Delete.
4095         (mi_console_file::mi_console_file): New.
4096         (mi_console_file_delete): Delete.
4097         (mi_console_file_fputs): Delete.
4098         (mi_console_file::write): New.
4099         (mi_console_raw_packet): Delete.
4100         (mi_console_file::flush): New.
4101         (mi_console_file_flush): Delete.
4102         (mi_console_set_raw): Rename to ...
4103         (mi_console_file::set_raw): ... this.
4104         * mi/mi-console.h (class mi_console_file): New class.
4105         (mi_console_file_new, mi_console_set_raw): Delete.
4106         * mi/mi-interp.c (mi_interpreter_init): Use mi_console_file.
4107         (mi_set_logging): Use delete and tee_file.  Adjust.
4108         * mi/mi-main.c (output_register): Use string_file.
4109         (mi_cmd_data_evaluate_expression): Use string_file.
4110         (mi_cmd_data_read_memory): Use string_file.
4111         (mi_cmd_execute, print_variable_or_computed): Use string_file.
4112         * mi/mi-out.c (mi_ui_out::main_stream): New.
4113         (mi_ui_out::rewind): Use main_stream and
4114         string_file.
4115         (mi_ui_out::put): Use main_stream and string_file.
4116         (mi_ui_out::mi_ui_out): Remove 'stream' parameter.
4117         Allocate a 'string_file' instead.
4118         (mi_out_new): Don't allocate a mem_fileopen stream here.
4119         * mi/mi-out.h (mi_ui_out::mi_ui_out): Remove 'stream' parameter.
4120         (mi_ui_out::main_stream): Declare method.
4121         * printcmd.c (eval_command): Use string_file.
4122         * psymtab.c (maintenance_print_psymbols): Use stdio_file.
4123         * python/py-arch.c (archpy_disassemble): Use string_file.
4124         * python/py-breakpoint.c (bppy_get_commands): Use string_file.
4125         * python/py-frame.c (frapy_str): Use string_file.
4126         * python/py-framefilter.c (py_print_type, py_print_single_arg):
4127         Use string_file.
4128         * python/py-type.c (typy_str): Use string_file.
4129         * python/py-unwind.c (unwind_infopy_str): Use string_file.
4130         * python/py-value.c (valpy_str): Use string_file.
4131         * record-btrace.c (btrace_insn_history): Use string_file.
4132         * regcache.c (regcache_print): Use stdio_file.
4133         * reggroups.c (maintenance_print_reggroups): Use stdio_file.
4134         * remote.c (escape_buffer): Use string_file.
4135         * rust-lang.c (rust_get_disr_info): Use string_file.
4136         * serial.c (serial_open_ops_1): Use stdio_file.
4137         (do_serial_close): Use delete.
4138         * stack.c (print_frame_arg): Use string_file.
4139         (print_frame_args): Remove local mem_fileopen stream, not used.
4140         (print_frame): Use string_file.
4141         * symmisc.c (maintenance_print_symbols): Use stdio_file.
4142         * symtab.h (struct symbol_computed_ops) <generate_c_location>:
4143         Take a 'string_file *' instead of a 'ui_file *'.
4144         * top.c (new_ui): Use stdio_file and stderr_file.
4145         (free_ui): Use delete.
4146         (execute_command_to_string): Use string_file.
4147         (quit_confirm): Use string_file.
4148         * tracepoint.c (collection_list::append_exp): Use string_file.
4149         * tui/tui-disasm.c (tui_disassemble): Use string_file.
4150         * tui/tui-file.c: Don't include "ui-file.h".
4151         (enum streamtype, struct tui_stream): Delete.
4152         (tui_file_new, tui_file_delete, tui_fileopen, tui_sfileopen)
4153         (tui_file_isatty, tui_file_rewind, tui_file_put): Delete.
4154         (tui_file::tui_file): New method.
4155         (tui_file_fputs): Delete.
4156         (tui_file_get_strbuf): Delete.
4157         (tui_file::puts): New method.
4158         (tui_file_adjust_strbuf): Delete.
4159         (tui_file_flush): Delete.
4160         (tui_file::flush): New method.
4161         * tui/tui-file.h: Tweak intro comment.
4162         Include ui-file.h.
4163         (tui_fileopen, tui_sfileopen, tui_file_get_strbuf)
4164         (tui_file_adjust_strbuf): Delete declarations.
4165         (class tui_file): New class.
4166         * tui/tui-io.c (tui_initialize_io): Use tui_file.
4167         * tui/tui-regs.c (tui_restore_gdbout): Use delete.
4168         (tui_register_format): Use string_stream.
4169         * tui/tui-stack.c (tui_make_status_line): Use string_file.
4170         (tui_get_function_from_frame): Use string_file.
4171         * typeprint.c (type_to_string): Use string_file.
4172         * ui-file.c (struct ui_file, ui_file_magic, ui_file_new): Delete.
4173         (null_stream): New global.
4174         (ui_file_delete): Delete.
4175         (ui_file::ui_file): New.
4176         (null_file_isatty): Delete.
4177         (ui_file::~ui_file): New.
4178         (null_file_rewind): Delete.
4179         (ui_file::printf): New.
4180         (null_file_put): Delete.
4181         (null_file_flush): Delete.
4182         (ui_file::putstr): New.
4183         (null_file_write): Delete.
4184         (ui_file::putstrn): New.
4185         (null_file_read): Delete.
4186         (ui_file::putc): New.
4187         (null_file_fputs): Delete.
4188         (null_file_write_async_safe): Delete.
4189         (ui_file::vprintf): New.
4190         (null_file_delete): Delete.
4191         (null_file::write): New.
4192         (null_file_fseek): Delete.
4193         (null_file::puts): New.
4194         (ui_file_data): Delete.
4195         (null_file::write_async_safe): New.
4196         (gdb_flush, ui_file_isatty): Adjust.
4197         (ui_file_put, ui_file_rewind): Delete.
4198         (ui_file_write): Adjust.
4199         (ui_file_write_for_put): Delete.
4200         (ui_file_write_async_safe, ui_file_read): Adjust.
4201         (ui_file_fseek): Delete.
4202         (fputs_unfiltered): Adjust.
4203         (set_ui_file_flush, set_ui_file_isatty, set_ui_file_rewind)
4204         (set_ui_file_put, set_ui_file_write, set_ui_file_write_async_safe)
4205         (set_ui_file_read, set_ui_file_fputs, set_ui_file_fseek)
4206         (set_ui_file_data): Delete.
4207         (string_file::~string_file, string_file::write)
4208         (struct accumulated_ui_file, do_ui_file_xstrdup, ui_file_xstrdup)
4209         (do_ui_file_as_string, ui_file_as_string): Delete.
4210         (do_ui_file_obsavestring, ui_file_obsavestring): Delete.
4211         (struct mem_file): Delete.
4212         (mem_file_new): Delete.
4213         (stdio_file::stdio_file): New.
4214         (mem_file_delete): Delete.
4215         (stdio_file::stdio_file): New.
4216         (mem_fileopen): Delete.
4217         (stdio_file::~stdio_file): New.
4218         (mem_file_rewind): Delete.
4219         (stdio_file::set_stream): New.
4220         (mem_file_put): Delete.
4221         (stdio_file::open): New.
4222         (mem_file_write): Delete.
4223         (stdio_file_magic, struct stdio_file): Delete.
4224         (stdio_file_new, stdio_file_delete, stdio_file_flush): Delete.
4225         (stdio_file::flush): New.
4226         (stdio_file_read): Rename to ...
4227         (stdio_file::read): ... this.  Adjust.
4228         (stdio_file_write): Rename to ...
4229         (stdio_file::write): ... this.  Adjust.
4230         (stdio_file_write_async_safe): Rename to ...
4231         (stdio_file::write_async_safe) ... this.  Adjust.
4232         (stdio_file_fputs): Rename to ...
4233         (stdio_file::puts) ... this.  Adjust.
4234         (stdio_file_isatty): Delete.
4235         (stdio_file_fseek): Delete.
4236         (stdio_file::isatty): New.
4237         (stderr_file_write): Rename to ...
4238         (stderr_file::write) ... this.  Adjust.
4239         (stderr_file_fputs): Rename to ...
4240         (stderr_file::puts) ... this.  Adjust.
4241         (stderr_fileopen, stdio_fileopen, gdb_fopen): Delete.
4242         (stderr_file::stderr_file): New.
4243         (tee_file_magic): Delete.
4244         (struct tee_file): Delete.
4245         (tee_file::tee_file): New.
4246         (tee_file_new): Delete.
4247         (tee_file::~tee_file): New.
4248         (tee_file_delete): Delete.
4249         (tee_file_flush): Rename to ...
4250         (tee_file::flush): ... this.  Adjust.
4251         (tee_file_write): Rename to ...
4252         (tee_file::write): ... this.  Adjust.
4253         (tee_file::write_async_safe): New.
4254         (tee_file_fputs): Rename to ...
4255         (tee_file::puts): ... this.  Adjust.
4256         (tee_file_isatty): Rename to ...
4257         (tee_file::isatty): ... this.  Adjust.
4258         * ui-file.h (struct obstack, struct ui_file): Don't
4259         forward-declare.
4260         (ui_file_new, ui_file_flush_ftype, set_ui_file_flush)
4261         (ui_file_write_ftype)
4262         (set_ui_file_write, ui_file_fputs_ftype, set_ui_file_fputs)
4263         (ui_file_write_async_safe_ftype, set_ui_file_write_async_safe)
4264         (ui_file_read_ftype, set_ui_file_read, ui_file_isatty_ftype)
4265         (set_ui_file_isatty, ui_file_rewind_ftype, set_ui_file_rewind)
4266         (ui_file_put_method_ftype, ui_file_put_ftype, set_ui_file_put)
4267         (ui_file_delete_ftype, set_ui_file_data, ui_file_fseek_ftype)
4268         (set_ui_file_fseek): Delete.
4269         (ui_file_data, ui_file_delete, ui_file_rewind)
4270         (struct ui_file): New.
4271         (ui_file_up): New.
4272         (class null_file): New.
4273         (null_stream): Declare.
4274         (ui_file_write_for_put, ui_file_put): Delete.
4275         (ui_file_xstrdup, ui_file_as_string, ui_file_obsavestring):
4276         Delete.
4277         (ui_file_fseek, mem_fileopen, stdio_fileopen, stderr_fileopen)
4278         (gdb_fopen, tee_file_new): Delete.
4279         (struct string_file): New.
4280         (struct stdio_file): New.
4281         (stdio_file_up): New.
4282         (struct stderr_file): New.
4283         (class tee_file): New.
4284         * ui-out.c (ui_out::field_stream): Take a 'string_file &' instead
4285         of a 'ui_file *'.  Adjust.
4286         * ui-out.h (class ui_out) <field_stream>: Likewise.
4287         * utils.c (do_ui_file_delete, make_cleanup_ui_file_delete)
4288         (null_stream): Delete.
4289         (error_stream): Take a 'string_file &' instead of a 'ui_file *'.
4290         Adjust.
4291         * utils.h (struct ui_file): Delete forward declaration..
4292         (make_cleanup_ui_file_delete, null_stream): Delete declarations.
4293         (error_stream): Take a 'string_file &' instead of a
4294         'ui_file *'.
4295         * varobj.c (varobj_value_get_print_value): Use string_file.
4296         * xtensa-tdep.c (xtensa_verify_config): Use string_file.
4297         * gdbarch.c: Regenerate.
4298
4299 2017-02-02  Pedro Alves  <palves@redhat.com>
4300
4301         * disasm.c (gdb_disassembler::pretty_print_insn): Rename to...
4302         (gdb_pretty_print_insn): ... this.  Now a free function.  Add back
4303         a 'gdbarch' parameter.  Allocate a mem_fileopen stream here.
4304         Adjust to call gdb_print_insn instead of
4305         gdb_disassembler::print_insn.
4306         (dump_insns, do_mixed_source_and_assembly_deprecated)
4307         (do_mixed_source_and_assembly, do_assembly_only): Add back a
4308         'gdbarch' parameter.  Remove gdb_disassembler parameter.
4309         (gdb_disassembly): Don't allocate a gdb_disassembler here.
4310         * disasm.h (gdb_disassembler::pretty_print_insn): Delete
4311         declaration.
4312         (gdb_pretty_print_insn): Re-add declaration.
4313         * record-btrace.c (btrace_insn_history): Don't allocate a
4314         gdb_disassembler here.  Adjust to call gdb_pretty_print_insn.
4315
4316 2017-02-01  Simon Marchi  <simon.marchi@polymtl.ca>
4317
4318         * disasm.h (gdb_disassembly): Remove file_string parameter.
4319         * disasm.c (gdb_disassembly): Likewise.
4320         * cli/cli-cmds.c (print_disassembly): Adapt.
4321         * mi/mi-cmd-disas.c (mi_cmd_disassemble): Likewise.
4322         * stack.c (do_gdb_disassembly): Likewise.
4323
4324 2017-02-01  Andreas Arnez  <arnez@linux.vnet.ibm.com>
4325
4326         * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): For
4327         DWARF_VALUE_LITERAL, no longer ignore the offset on big-endian
4328         targets.  And if the implicit value is longer than needed, extract
4329         the first bytes instead of the "least significant" ones.
4330
4331 2017-02-01  Markus Metzger  <markus.t.metzger@intel.com>
4332
4333         * btrace.c (btrace_enable): Do not call btrace_add_pc for
4334         BTRACE_FORMAT_PT or if can_access_registers_ptid returns false.
4335         (btrace_fetch): Assert can_access_registers_ptid.
4336         * record-btrace.c (require_btrace_thread, record_btrace_info): Call
4337         validate_registers_access.
4338
4339 2017-02-01  Markus Metzger  <markus.t.metzger@intel.com>
4340
4341         * gdbthread.h (can_access_registers_ptid): New.
4342         * thread.c (can_access_registers_ptid): New.
4343
4344 2017-02-01  Pedro Alves  <palves@redhat.com>
4345
4346         * i386-tdep.c (i386_fast_tracepoint_valid_at): Use gdb_insn_length.
4347
4348 2017-01-31  Pedro Alves  <palves@redhat.com>
4349
4350         * mi/mi-interp.c (mi_breakpoint_created, mi_breakpoint_modified):
4351         Fix typos.
4352
4353 2017-01-31  Pedro Alves  <palves@redhat.com>
4354
4355         * stack.c (print_frame_args): Remove local mem_fileopen stream,
4356         not used.
4357
4358 2017-01-31  Pedro Alves  <palves@redhat.com>
4359
4360         * varobj.c (varobj_value_get_print_value): Remove xstrdup call.
4361
4362 2017-01-31  Pedro Alves  <palves@redhat.com>
4363
4364         * common/scoped_restore.h
4365         (scoped_restore_tmpl::scoped_restore_tmpl): Template on T2, and
4366         change the value's parameter type to T2.
4367         (make_scoped_restore): Likewise.
4368
4369 2017-01-27  Walfred Tedeschi  <walfred.tedeschi@intel.com>
4370             Richard Henderson  <rth@redhat.com>
4371
4372         * amd64-linux-nat.c (PTRACE_ARCH_PRCTL): New define.
4373         (amd64_linux_fetch_inferior_registers): Add case to fetch FS_BASE
4374         GS_BASE for older kernels.
4375         (amd64_linux_store_inferior_registers): Add case to store FS_BASE
4376         GS_BASE for older kernels.
4377         * amd64-linux-tdep.c (amd64_linux_gregset_reg_offset): Add FS_BASE
4378         and GS_BASE to the offset table.
4379         (amd64_linux_register_reggroup_p): Add FS_BASE and GS_BASE to the
4380         system register group.
4381         * amd64-nat.c (amd64_native_gregset_reg_offset): Implements case
4382         for older kernels.
4383         * amd64-tdep.c (amd64_init_abi): Add segment registers for the
4384         amd64 ABI.
4385         * amd64-tdep.h (amd64_regnum): Add AMD64_FSBASE_REGNUM and
4386         AMD64_GSBASE_REGNUM.
4387         (AMD64_NUM_REGS): Set to AMD64_GSBASE_REGNUM + 1.
4388         * features/Makefile (amd64-linux.dat, amd64-avx-linux.dat)
4389         (amd64-mpx-linux.dat, amd64-avx512-linux.dat, x32-linux.dat)
4390         (x32-avx-linux.dat, x32-avx512-linux.dat): Add
4391         i386/64bit-segments.xml in those rules.
4392         * features/i386/64bit-segments.xml: New file.
4393         * features/i386/amd64-avx-mpx-linux.xml: Add 64bit-segments.xml.
4394         * features/i386/amd64-avx-linux.xml: Add 64bit-segments.xml.
4395         * features/i386/amd64-avx512-linux.xml: Add 64bit-segments.xml.
4396         * features/i386/amd64-mpx-linux.xml: Add 64bit-segments.xml.
4397         * features/i386/x32-avx512-linux.xml: Add 64bit-segments.xml.
4398         * features/i386/x32-avx-linux.xml: Add 64bit-segments.xml.
4399         * features/i386/amd64-linux.xml: Add 64bit-segments.xml.
4400         * features/i386/amd64-avx-linux.c: Regenerated.
4401         * features/i386/amd64-avx-mpx-linux.c: Regenerated.
4402         * features/i386/amd64-avx-mpx.c: Regenerated.
4403         * features/i386/amd64-avx512-linux.c: Regenerated.
4404         * features/i386/amd64-linux.c: Regenerated.
4405         * features/i386/amd64-mpx-linux.c: Regenerated.
4406         * features/i386/i386-avx-mpx-linux.c: Regenerated.
4407         * features/i386/i386-avx-mpx.c: Regenerated.
4408         * features/i386/x32-avx-linux.c: Regenerated.
4409         * features/i386/x32-avx512-linux.c: Regenerated.
4410         * regformats/i386/amd64-avx-linux.dat: Regenerated.
4411         * regformats/i386/amd64-avx-mpx-linux.dat: Regenerated.
4412         * regformats/i386/amd64-avx512-linux.dat: Regenerated.
4413         * regformats/i386/amd64-linux.dat: Regenerated.
4414         * regformats/i386/amd64-mpx-linux.dat: Regenerated.
4415         * regformats/i386/x32-avx-linux.dat: Regenerated.
4416         * regformats/i386/x32-avx512-linux.dat: Regenerated.
4417         * regformats/i386/x32-linux.dat: Regenerated.
4418
4419 2017-01-27  Walfred Tedeschi  <walfred.tedeschi@intel.com>
4420
4421         * amd64-linux-tdep.h (AMD64_LINUX_ORIG_RAX_REGNUM):
4422         Set to AMD64_NUM_REGS.
4423
4424 2017-01-27  Walfred Tedeschi  <walfred.tedeschi@intel.com>
4425
4426         * amd64-nat.c (amd64_native_gregset_reg_offset): Simplify logic
4427         that checks validity of a register number.
4428
4429 2017-01-27  Kees Cook  <keescook@google.com>
4430
4431         * gdb/arm-linux-nat.c (arm_linux_fetch_inferior_registers): Call
4432         fetch_fpregs if target has fpa registers.
4433         (arm_linux_store_inferior_registers): Call store_fpregs if target
4434         has fpa registers.
4435
4436 2017-01-26  Andreas Arnez  <arnez@linux.vnet.ibm.com>
4437
4438         * cris-tdep.c (cris_gdbarch_init): Remove check for
4439         info.byte_order and force it to BFD_ENDIAN_LITTLE.
4440
4441 2017-01-26  Antoine Tremblay  <antoine.tremblay@ericsson.com>
4442
4443         * corelow.c (get_core_register_section): Check for regset
4444         existence before checking for REGSET_VARIABLE_SIZE.
4445
4446 2017-01-26  Yao Qi  <yao.qi@linaro.org>
4447             Pedro Alves  <palves@redhat.com>
4448
4449         PR gdb/20939
4450         * disasm.c (gdb_disassembler::dis_asm_memory_error): Don't
4451         call memory_error, save memaddr instead.
4452         (gdb_disassembler::print_insn): If gdbarch_print_insn returns
4453         negative, cal memory_error.
4454         * disasm.h (gdb_disassembler) <m_err_memaddr>: New field.
4455
4456 2017-01-26  Yao Qi  <yao.qi@linaro.org>
4457
4458         * disasm-selftests.c (memory_error_test): New function.
4459         (_initialize_disasm_selftests): Register memory_error_test.
4460
4461 2017-01-26  Yao Qi  <yao.qi@linaro.org>
4462
4463         * Makefile.in (SFILES): Add disasm-selftests.c and
4464         selftest-arch.c.
4465         (COMMON_OBS): Add disasm-selftests.o and selftest-arch.o.
4466         * disasm-selftests.c: New file.
4467         * selftest-arch.c: New file.
4468         * selftest-arch.h: New file.
4469
4470 2017-01-26  Yao Qi  <yao.qi@linaro.org>
4471
4472         * mep-tdep.c (mep_gdb_print_insn): Set info->arch
4473         to bfd_arch_mep.  Don't return 0 if section is not
4474         found.  Call print_insn_mep.
4475
4476 2017-01-26  Pedro Alves  <palves@redhat.com>
4477             Yao Qi  <yao.qi@linaro.org>
4478
4479         * arm-tdep.c: Include "disasm.h".
4480         (gdb_print_insn_arm): Update code to get gdbarch.
4481         * disasm.c (dis_asm_read_memory): Change it to
4482         gdb_disassembler::dis_asm_read_memory.
4483         (dis_asm_memory_error): Likewise.
4484         (dis_asm_print_address): Likewise.
4485         (gdb_pretty_print_insn): Change it to
4486         gdb_disassembler::pretty_print_insn.
4487         (dump_insns): Add one argument gdb_disassemlber.  All
4488         callers updated.
4489         (do_mixed_source_and_assembly_deprecated): Likewise.
4490         (do_mixed_source_and_assembly): Likewise.
4491         (do_assembly_only): Likewise.
4492         (gdb_disassembler::gdb_disassembler): New.
4493         (gdb_disassembler::print_insn): New.
4494         * disasm.h (class gdb_disassembler): New.
4495         (gdb_pretty_print_insn): Remove declaration.
4496         (gdb_disassemble_info): Likewise.
4497         * guile/scm-disasm.c (class gdbscm_disassembler): New.
4498         (gdbscm_disasm_read_memory_worker): Update.
4499         (gdbscm_disasm_read_memory): Update.
4500         (gdbscm_disasm_memory_error): Remove.
4501         (gdbscm_disasm_print_address): Remove.
4502         (gdbscm_disassembler::gdbscm_disassembler): New.
4503         (gdbscm_print_insn_from_port): Update.
4504         * mips-tdep.c: Include disasm.h.
4505         (gdb_print_insn_mips): Update code to get gdbarch.
4506         * record-btrace.c (btrace_insn_history): Update.
4507         * spu-tdep.c: Include disasm.h.
4508         (struct spu_dis_asm_data): Remove.
4509         (struct spu_dis_asm_info): New.
4510         (spu_dis_asm_print_address): Use spu_dis_asm_info to get
4511         SPU id.
4512         (gdb_print_insn_spu): Cast disassemble_info to
4513         spu_dis_asm_info.
4514
4515 2017-01-26  Yao Qi  <yao.qi@linaro.org>
4516
4517         * disasm.c (do_ui_file_delete): Delete.
4518         (gdb_insn_length): Move code creating stream to ...
4519         * utils.c (null_stream): ... here.  New function.
4520         * utils.h (null_stream): Declare.
4521
4522 2017-01-23  Simon Marchi  <simon.marchi@polymtl.ca>
4523
4524         * python/py-inferior.c (find_thread_object): Return directly
4525         from the loop.  Remove "found" variable.
4526
4527 2017-01-21  Joel Brobecker  <brobecker@adacore.com>
4528
4529         GDB 7.12.1 released.
4530
4531 2017-01-20  Simon Marchi  <simon.marchi@ericsson.com>
4532
4533         * python/py-function.c (fnpy_call): Reorder declarations to have
4534         the gdbpy_enter object declared first.
4535         * python/py-xmethods.c (gdbpy_get_xmethod_arg_types): Likewise.
4536
4537 2017-01-20  Simon Marchi  <simon.marchi@ericsson.com>
4538
4539         PR python/21068
4540         * python/python-internal.h (PyMem_RawMalloc): Define for
4541         Python < 3.4.
4542         * python/py-gdb-readline.c (gdbpy_readline_wrapper): Use
4543         PyMem_RawMalloc instead of PyMem_Malloc.
4544
4545 2017-01-20  Mike Wrighton  <mike_wrighton@codesourcery.com>
4546             Luis Machado  <lgustavo@codesourcery.com>
4547
4548         * NEWS (New commands): Mention flash-erase.
4549         (New MI commands): Mention target-flash-erase.
4550         * mi/mi-cmds.c (mi_cmd_target_flash_erase): Add target-flash-erase MI
4551         command.
4552         * mi/mi-cmds.h (mi_cmd_target_flash_erase): New declaration.
4553         * mi/mi-main.c (mi_cmd_target_flash_erase): New function.
4554         * target.c (flash_erase_command): New function.
4555         (initialize_targets): Add new flash-erase command.
4556         * target.h (flash_erase_command): New declaration.
4557
4558 2017-01-20  Joel Brobecker  <brobecker@adacore.com>
4559
4560         * nat/linux-ptrace.c: Only include <sys/procfs.h> if
4561         HAVE_SYS_PROCFS_H is defined.
4562
4563 2017-01-18  Alan Hayward  <alan.hayward@arm.com>
4564
4565         * remote.c (struct cached_reg): Change data into a pointer.
4566         * (stop_reply_dtr): Free data pointers before deleting vector.
4567         (process_stop_reply): Likewise.
4568         (remote_parse_stop_reply): Allocate space for data
4569
4570 2017-01-18  Alan Hayward  <alan.hayward@arm.com>
4571
4572         * amd64-tdep.c (amd64_pseudo_register_read_value): remove
4573         MAX_REGISTER_SIZE.
4574         (amd64_pseudo_register_read_value): Likewise.
4575         * remote.c (fetch_register_using_p): Remove MAX_REGISTER_SIZE.
4576         (store_register_using_P): Likewise.
4577         * regcache.c (regcache_xfer_part): Likewise.
4578
4579 2017-01-16  Ivo Raisr  <ivo.raisr@oracle.com>
4580
4581         Split real and pseudo registers.
4582         * sparc-tdep.h (SPARC_CORE_REGISTERS): New macro.
4583         (sparc32_pseudo_regnum): New enum.
4584         * sparc64-tdep.h (sparc64_pseudo_regnum): New enum.
4585         * sparc-tdep.c (SPARC32_FPU_REGISTERS): New macro.
4586         (SPARC32_CP0_REGISTERS): New macro.
4587         (sparc32_pseudo_register_name): New function.
4588         (sparc32_register_name): Use sparc32_pseudo_register_name.
4589         (sparc32_pseudo_register_type): New function.
4590         (sparc32_register_type): Use sparc32_pseudo_register_type.
4591         (sparc32_pseudo_register_read, sparc32_pseudo_register_write): Handle
4592         pseudo register numbers.
4593         * sparc64-tdep.c SPARC64_FPU_REGISTERS): New macro.
4594         (SPARC64_CP0_REGISTERS): New macro.
4595         (sparc64_pseudo_register_name): New function.
4596         (sparc64_register_name): Use sparc64_pseudo_register_name.
4597         (sparc64_pseudo_register_type): New function.
4598         (sparc64_register_type): Use sparc64_pseudo_register_type.
4599         (sparc64_pseudo_register_read, sparc64_pseudo_register_write): Handle
4600         pseudo register numbers.
4601         (sparc64_store_floating_fields, sparc64_extract_floating_fields,
4602         sparc64_store_arguments): Handle pseudo register numbers.
4603
4604 2017-01-13  Yao Qi  <yao.qi@linaro.org>
4605
4606         * remote.c (REMOTE_DEBUG_MAX_CHAR): New macro.
4607         (putpkt_binary): Print only REMOTE_DEBUG_MAX_CHAR chars in debug
4608         output.
4609         (getpkt_or_notif_sane_1): Likewise.
4610
4611 2017-01-13  Yao Qi  <yao.qi@linaro.org>
4612
4613         * Makefile.in (checker-headers): Use CXX and CXX_DIALET instead
4614         of CC.  Pass "-x c++-header" instead of "-x c".
4615
4616 2017-01-12  Simon Marchi  <simon.marchi@ericsson.com>
4617
4618         * remote.c (remote_can_async_p): Update comment.
4619
4620 2017-01-12  Simon Marchi  <simon.marchi@ericsson.com>
4621
4622         * linux-nat.c (linux_nat_can_async_p): Update comment.
4623
4624 2017-01-12  Simon Marchi  <simon.marchi@ericsson.com>
4625
4626         * serial.c (serial_open): Forget about "pc" and "lpt" serial interface.
4627
4628 2017-01-11  Simon Marchi  <simon.marchi@ericsson.com>
4629
4630         * cli/cli-decode.c (lookup_cmd_1): Fix typo in comment.
4631
4632 2017-01-10  Tom Tromey  <tom@tromey.com>
4633
4634         * python/py-type.c (typy_legacy_template_argument): Update.
4635         * cp-support.h (struct demangle_parse_info) (demangle_parse_info,
4636         ~demangle_parse_info): Declare new members.
4637         (cp_demangled_name_to_comp): Return unique_ptr.
4638         (cp_demangled_name_parse_free)
4639         (make_cleanup_cp_demangled_name_parse_free)
4640         (cp_new_demangle_parse_info): Remove.
4641         * cp-support.c (do_demangled_name_parse_free_cleanup)
4642         (make_cleanup_cp_demangled_name_parse_free): Remove.
4643         (inspect_type, cp_canonicalize_string_full)
4644         (cp_canonicalize_string): Update.
4645         (mangled_name_to_comp): Change return type.
4646         (cp_class_name_from_physname, method_name_from_physname)
4647         (cp_func_name, cp_remove_params): Update.
4648         * cp-name-parser.y (demangle_parse_info): New constructor, from
4649         cp_new_demangle_parse_info.
4650         (~demangle_parse_info): New destructor, from
4651         cp_demangled_name_parse_free.
4652         (cp_merge_demangle_parse_infos): Update.
4653         (cp_demangled_name_to_comp): Change return type.
4654
4655 2017-01-10  Tom Tromey  <tom@tromey.com>
4656
4657         * top.c (prevent_dont_repeat): Change return type.
4658         * python/python.c (execute_gdb_command): Use std::string.
4659         Update.
4660         * guile/guile.c (gdbscm_execute_gdb_command): Update.
4661         * command.h (prevent_dont_repeat): Change return type.
4662         * breakpoint.c (bpstat_do_actions_1): Update.
4663
4664 2017-01-10  Tom Tromey  <tom@tromey.com>
4665
4666         * value.h (scoped_value_mark::~scoped_value_mark): Call
4667         free_to_mark.
4668         (scoped_value_mark::free_to_mark): New method.
4669         * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Use
4670         scoped_value_mark.
4671
4672 2017-01-10  Tom Tromey  <tom@tromey.com>
4673
4674         * python/py-value.c (valpy_dereference, valpy_referenced_value)
4675         (valpy_reference_value, valpy_const_value, valpy_get_address)
4676         (valpy_get_dynamic_type, valpy_lazy_string, valpy_do_cast)
4677         (valpy_getitem, valpy_call, valpy_binop_throw, valpy_negative)
4678         (valpy_absolute, valpy_richcompare_throw): Use scoped_value_mark.
4679         * dwarf2loc.c (dwarf2_loc_desc_get_symbol_read_needs): Use
4680         scoped_value_mark.
4681         * dwarf2-frame.c (execute_stack_op): Use scoped_value_mark.
4682         * value.h (scoped_value_mark): New class.
4683
4684 2017-01-10  Tom Tromey  <tom@tromey.com>
4685
4686         * dwarf2read.c (dwarf2_build_psymtabs): Use psymtab_discarder.
4687         * psympriv.h (make_cleanup_discard_psymtabs): Don't declare.
4688         * psymtab.c (discard_psymtabs_upto): Remove.
4689         (make_cleanup_discard_psymtabs): Remove.
4690         (struct psymtab_state): Remove.
4691
4692 2017-01-10  Tom Tromey  <tom@tromey.com>
4693
4694         * record-full.c (record_full_save_cleanups): Remove.
4695         (record_full_save): Use gdb::unlinker.
4696         * gcore.c (do_bfd_delete_cleanup): Remove.
4697         (gcore_command): Use gdb::unlinker, unique_xmalloc_ptr.  Remove
4698         cleanups.
4699         * dwarf2read.c (unlink_if_set): Remove.
4700         (write_psymtabs_to_index): Use gdb::unlinker.
4701         * common/gdb_unlinker.h: New file.
4702
4703 2017-01-10  Tom Tromey  <tom@tromey.com>
4704
4705         * windows-tdep.c (windows_xfer_shared_library): Update.
4706         * windows-nat.c (windows_make_so): Update.
4707         * utils.h (make_cleanup_bfd_unref): Remove.
4708         * utils.c (do_bfd_close_cleanup, make_cleanup_bfd_unref): Remove.
4709         * symfile.h (symfile_bfd_open)
4710         (find_separate_debug_file_in_section): Return gdb_bfd_ref_ptr.
4711         * symfile.c (read_symbols, symbol_file_add)
4712         (separate_debug_file_exists): Update.
4713         (symfile_bfd_open): Return gdb_bfd_ref_ptr.
4714         (generic_load, reread_symbols): Update.
4715         * symfile-mem.c (symbol_file_add_from_memory): Update.
4716         * spu-linux-nat.c (spu_bfd_open): Return gdb_bfd_ref_ptr.
4717         (spu_symbol_file_add_from_memory): Update.
4718         * solist.h (struct target_so_ops) <bfd_open>: Return
4719         gdb_bfd_ref_ptr.
4720         (solib_bfd_fopen, solib_bfd_open): Return gdb_bfd_ref_ptr.
4721         * solib.c (solib_bfd_fopen, solib_bfd_open): Return
4722         gdb_bfd_ref_ptr.
4723         (solib_map_sections, reload_shared_libraries_1): Update.
4724         * solib-svr4.c (enable_break): Update.
4725         * solib-spu.c (spu_bfd_fopen): Return gdb_bfd_ref_ptr.
4726         * solib-frv.c (enable_break2): Update.
4727         * solib-dsbt.c (enable_break): Update.
4728         * solib-darwin.c (gdb_bfd_mach_o_fat_extract): Return
4729         gdb_bfd_ref_ptr.
4730         (darwin_solib_get_all_image_info_addr_at_init): Update.
4731         (darwin_bfd_open): Return gdb_bfd_ref_ptr.
4732         * solib-aix.c (solib_aix_bfd_open): Return gdb_bfd_ref_ptr.
4733         * record-full.c (record_full_save): Update.
4734         * python/py-objfile.c (objfpy_add_separate_debug_file): Update.
4735         * procfs.c (insert_dbx_link_bpt_in_file): Update.
4736         * minidebug.c (find_separate_debug_file_in_section): Return
4737         gdb_bfd_ref_ptr.
4738         * machoread.c (macho_add_oso_symfile): Change abfd to
4739         gdb_bfd_ref_ptr.
4740         (macho_symfile_read_all_oso): Update.
4741         (macho_check_dsym): Return gdb_bfd_ref_ptr.
4742         (macho_symfile_read): Update.
4743         * jit.c (bfd_open_from_target_memory): Return gdb_bfd_ref_ptr.
4744         (jit_bfd_try_read_symtab): Update.
4745         * gdb_bfd.h (gdb_bfd_open, gdb_bfd_fopen, gdb_bfd_openr)
4746         (gdb_bfd_openw, gdb_bfd_openr_iovec)
4747         (gdb_bfd_openr_next_archived_file, gdb_bfd_fdopenr): Return
4748         gdb_bfd_ref_ptr.
4749         (gdb_bfd_ref_policy): New struct.
4750         (gdb_bfd_ref_ptr): New typedef.
4751         * gdb_bfd.c (gdb_bfd_open, gdb_bfd_fopen, gdb_bfd_openr)
4752         (gdb_bfd_openw, gdb_bfd_openr_iovec)
4753         (gdb_bfd_openr_next_archived_file, gdb_bfd_fdopenr): Return
4754         gdb_bfd_ref_ptr.
4755         * gcore.h (create_gcore_bfd): Return gdb_bfd_ref_ptr.
4756         * gcore.c (create_gcore_bfd): Return gdb_bfd_ref_ptr.
4757         (gcore_command): Update.
4758         * exec.c (exec_file_attach): Update.
4759         * elfread.c (elf_symfile_read): Update.
4760         * dwarf2read.c (dwarf2_get_dwz_file): Update.
4761         (try_open_dwop_file, open_dwo_file): Return gdb_bfd_ref_ptr.
4762         (open_and_init_dwo_file): Update.
4763         (open_dwp_file): Return gdb_bfd_ref_ptr.
4764         (open_and_init_dwp_file): Update.
4765         * corelow.c (core_open): Update.
4766         * compile/compile-object-load.c (compile_object_load): Update.
4767         * common/gdb_ref_ptr.h (ref_ptr::operator->): New operator.
4768         * coffread.c (coff_symfile_read): Update.
4769         * cli/cli-dump.c (bfd_openr_or_error, bfd_openw_or_error): Return
4770         gdb_bfd_ref_ptr.  Rename.
4771         (dump_bfd_file, restore_command): Update.
4772         * build-id.h (build_id_to_debug_bfd): Return gdb_bfd_ref_ptr.
4773         * build-id.c (build_id_to_debug_bfd): Return gdb_bfd_ref_ptr.
4774         (find_separate_debug_file_by_buildid): Update.
4775
4776 2017-01-10  Tom Tromey  <tom@tromey.com>
4777
4778         * common/gdb_ref_ptr.h: New file.
4779         * python/py-ref.h (struct gdbpy_ref_policy): New.
4780         (gdbpy_ref): Now a typedef.
4781
4782 2017-01-10  Tom Tromey  <tom@tromey.com>
4783
4784         * utils.h (make_cleanup_htab_delete): Don't declare.
4785         * utils.c (do_htab_delete_cleanup, make_cleanup_htab_delete):
4786         Remove.
4787         * linespec.c (decode_compound_collector): Add constructor,
4788         destructor.
4789         (lookup_prefix_sym): Remove cleanup.
4790         (symtab_collector): Add constructor, destructor.
4791         (collect_symtabs_from_filename): Remove cleanup.
4792         * disasm.c (do_mixed_source_and_assembly): Use htab_up.
4793         * compile/compile-c-symbols.c (generate_c_for_variable_locations):
4794         Use htab_up.
4795         * gnu-v3-abi.c (gnuv3_print_vtable): Use htab_up.
4796         * dwarf2read.c (dw2_expand_symtabs_matching)
4797         (dw2_map_symbol_filenames, dwarf_decode_macros)
4798         (write_psymtabs_to_index): Use htab_up.
4799         * dwarf2loc.c (func_verify_no_selftailcall)
4800         (call_site_find_chain_1, func_verify_no_selftailcall)
4801         (chain_candidate, call_site_find_chain_1): Use std::unordered_set,
4802         std::vector, gdb::unique_xmalloc_ptr.
4803         (call_sitep): Remove typedef.
4804         (dwarf2_locexpr_baton_eval): Remove unused variable.
4805
4806 2017-01-10  Tom Tromey  <tom@tromey.com>
4807
4808         * python/python-internal.h (make_cleanup_py_decref)
4809         (make_cleanup_py_xdecref): Don't declare.
4810         * python/py-utils.c (py_decref, make_cleanup_py_decref)
4811         (py_xdecref, make_cleanup_py_xdecref): Remove.
4812
4813 2017-01-10  Tom Tromey  <tom@tromey.com>
4814
4815         * python/py-framefilter.c (py_mi_print_variables): Use gdbpy_ref.
4816         (py_print_locals, enumerate_locals, py_print_args): Use gdbpy_ref.
4817
4818 2017-01-10  Tom Tromey  <tom@tromey.com>
4819
4820         * python/py-framefilter.c (enumerate_args): Use gdbpy_ref.
4821
4822 2017-01-10  Tom Tromey  <tom@tromey.com>
4823
4824         * python/py-utils.c (unicode_to_encoded_string)
4825         (python_string_to_target_string)
4826         (python_string_to_target_python_string)
4827         (python_string_to_host_string, gdbpy_obj_to_string)
4828         (get_addr_from_python): Use gdbpy_ref.
4829
4830 2017-01-10  Tom Tromey  <tom@tromey.com>
4831
4832         * python/py-unwind.c (pyuw_object_attribute_to_pointer): Use
4833         gdbpy_ref.
4834
4835 2017-01-10  Tom Tromey  <tom@tromey.com>
4836
4837         * python/python.c (eval_python_command, gdbpy_decode_line)
4838         (gdbpy_run_events, gdbpy_start_type_printers)
4839         (gdbpy_apply_type_printers): Use gdbpy_ref.
4840
4841 2017-01-10  Tom Tromey  <tom@tromey.com>
4842
4843         * python/py-param.c (get_doc_string, compute_enum_values): Use
4844         gdbpy_ref.
4845
4846 2017-01-10  Tom Tromey  <tom@tromey.com>
4847
4848         * python/py-inferior.c (find_thread_object, build_inferior_list):
4849         Use gdbpy_ref.
4850
4851 2017-01-10  Tom Tromey  <tom@tromey.com>
4852
4853         * python/py-framefilter.c (py_print_frame): Use gdbpy_ref.
4854
4855 2017-01-10  Tom Tromey  <tom@tromey.com>
4856
4857         * python/py-finishbreakpoint.c (bpfinishpy_out_of_scope): Use
4858         gdbpy_ref.
4859
4860 2017-01-10  Tom Tromey  <tom@tromey.com>
4861
4862         * python/py-cmd.c (cmdpy_completer_helper): Use gdbpy_ref.  Remove
4863         extra incref.
4864         (cmdpy_completer_handle_brkchars, cmdpy_completer, cmdpy_init):
4865         Use gdbpy_ref.
4866
4867 2017-01-10  Tom Tromey  <tom@tromey.com>
4868
4869         * python/py-breakpoint.c (gdbpy_breakpoint_cond_says_stop): Use
4870         gdbpy_ref.
4871
4872 2017-01-10  Tom Tromey  <tom@tromey.com>
4873
4874         * python/py-arch.c (archpy_disassemble): Use gdbpy_ref.  Don't
4875         decref results of PyArg_ParseTupleAndKeywords.
4876
4877 2017-01-10  Tom Tromey  <tom@tromey.com>
4878
4879         * python/python.c (python_run_simple_file): Use
4880         unique_xmalloc_ptr, gdbpy_ref.
4881
4882 2017-01-10  Tom Tromey  <tom@tromey.com>
4883
4884         * python/py-prettyprint.c (print_stack_unless_memory_error)
4885         (print_string_repr, print_children): Use gdbpy_ref.
4886         (dummy_python_frame): New class.
4887         (dummy_python_frame::dummy_python_frame): Rename from
4888         push_dummy_python_frame.
4889         (py_restore_tstate): Remove.
4890
4891 2017-01-10  Tom Tromey  <tom@tromey.com>
4892
4893         * python/py-framefilter.c (py_print_frame): Use gdbpy_ref.
4894
4895 2017-01-10  Tom Tromey  <tom@tromey.com>
4896
4897         * python/python.c (ensure_python_env, restore_python_env):
4898         Remove.
4899         * python/python-internal.h (ensure_python_env): Don't declare.
4900         * varobj.h (varobj_ensure_python_env): Don't declare.
4901         * varobj.c (varobj_ensure_python_env): Remove.
4902
4903 2017-01-10  Tom Tromey  <tom@tromey.com>
4904
4905         * varobj.c (varobj_value_get_print_value): Use
4906         gdbpy_enter_varobj.
4907
4908 2017-01-10  Tom Tromey  <tom@tromey.com>
4909
4910         * python/py-prettyprint.c (print_string_repr, print_children):
4911         Update.
4912         * python/py-lazy-string.c (gdbpy_extract_lazy_string): Change type
4913         of "encoding".
4914         * varobj.c (varobj_value_get_print_value): Update.
4915         * python/python-internal.h (gdbpy_extract_lazy_string): Update.
4916
4917 2017-01-10  Tom Tromey  <tom@tromey.com>
4918
4919         * varobj.c (varobj_get_display_hint)
4920         (dynamic_varobj_has_child_method, install_new_value_visualizer)
4921         (varobj_set_visualizer, free_variable): Use
4922         gdbpy_enter_varobj.
4923
4924 2017-01-10  Tom Tromey  <tom@tromey.com>
4925
4926         * python/python.c (python_command): Use gdbpy_enter, gdbpy_ref.
4927         (do_finish_initialization): New function.  Use gdbpy_ref.
4928         (gdbpy_finish_initialization): Use gdbpy_enter.  Call
4929         do_finish_initialization.
4930
4931 2017-01-10  Tom Tromey  <tom@tromey.com>
4932
4933         * python/py-param.c (get_set_value, get_show_value): Use
4934         gdbpy_enter, gdbpy_ref.
4935
4936 2017-01-10  Tom Tromey  <tom@tromey.com>
4937
4938         * python/py-function.c (fnpy_call): Use gdbpy_enter, gdbpy_ref.
4939
4940 2017-01-10  Tom Tromey  <tom@tromey.com>
4941
4942         * python/py-cmd.c (cmdpy_function): Use gdbpy_enter, gdbpy_ref.
4943
4944 2017-01-10  Tom Tromey  <tom@tromey.com>
4945
4946         * python/py-varobj.c (py_varobj_iter_dtor, py_varobj_iter_next):
4947         Use gdbpy_enter_varobj.
4948
4949 2017-01-10  Tom Tromey  <tom@tromey.com>
4950
4951         * varobj.c (gdbpy_enter_varobj): New constructor.
4952         * python/python-internal.h (gdbpy_enter_varobj): New class.
4953         * python/py-varobj.c (py_varobj_get_iterator): Use
4954         gdbpy_enter_varobj.
4955
4956 2017-01-10  Tom Tromey  <tom@tromey.com>
4957
4958         * python/py-xmethods.c (gdbpy_get_xmethod_result_type): Use
4959         gdbpy_enter, gdbpy_ref, unique_xmalloc_ptr.
4960         (gdbpy_invoke_xmethod): Use gdbpy_ref, gdbpy_enter.
4961         (gdbpy_get_xmethod_arg_types): Use gdbpy_ref,
4962         unique_xmalloc_ptr.
4963         (gdbpy_get_xmethod_arg_types): Use gdbpy_ref, gdbpy_enter.
4964
4965 2017-01-10  Tom Tromey  <tom@tromey.com>
4966
4967         * python/py-xmethods.c (invoke_match_method): Use
4968         gdbpy_ref.
4969
4970 2017-01-10  Tom Tromey  <tom@tromey.com>
4971
4972         * python/py-xmethods.c (gdbpy_get_matching_xmethod_workers): use
4973         gdbpy_enter, gdbpy_ref.
4974
4975 2017-01-10  Tom Tromey  <tom@tromey.com>
4976
4977         * python/python.c (python_interactive_command): Use gdbpy_enter.
4978
4979 2017-01-10  Tom Tromey  <tom@tromey.com>
4980
4981         * python/python.c (gdbpy_before_prompt_hook): Use gdbpy_enter,
4982         gdbpy_ref.
4983
4984 2017-01-10  Tom Tromey  <tom@tromey.com>
4985
4986         * python/py-prettyprint.c (gdbpy_apply_val_pretty_printer): Use
4987         gdbpy_enter, gdbpy_ref, unique_xmalloc_ptr.
4988
4989 2017-01-10  Tom Tromey  <tom@tromey.com>
4990
4991         * utils.h (htab_deleter): New struct.
4992         (htab_up): New typedef.
4993         * python/py-framefilter.c (gdbpy_apply_frame_filter): Use
4994         gdbpy_enter, gdbpy_ref, htab_up.
4995
4996 2017-01-10  Tom Tromey  <tom@tromey.com>
4997
4998         * python/py-unwind.c (pending_frame_invalidate): Remove.
4999         (pyuw_sniffer): Use gdbpy_enter and gdbpy_ref.
5000
5001 2017-01-10  Tom Tromey  <tom@tromey.com>
5002
5003         * python/py-xmethods.c (gdbpy_free_xmethod_worker_data)
5004         (gdbpy_clone_xmethod_worker_data): Use gdbpy_enter.
5005
5006 2017-01-10  Tom Tromey  <tom@tromey.com>
5007
5008         * python/py-type.c (save_objfile_types): Use gdbpy_enter.
5009
5010 2017-01-10  Tom Tromey  <tom@tromey.com>
5011
5012         * python/python.c (gdbpy_eval_from_control_command)
5013         (gdbpy_source_script, gdbpy_run_events)
5014         (gdbpy_source_objfile_script, gdbpy_execute_objfile_script)
5015         (gdbpy_free_type_printers, gdbpy_finish_initialization): Use
5016         gdbpy_enter.
5017
5018 2017-01-10  Tom Tromey  <tom@tromey.com>
5019
5020         * python/py-progspace.c (py_free_pspace): Use gdbpy_enter.
5021
5022 2017-01-10  Tom Tromey  <tom@tromey.com>
5023
5024         * python/py-objfile.c (py_free_objfile): Use gdbpy_enter.
5025
5026 2017-01-10  Tom Tromey  <tom@tromey.com>
5027
5028         * python/py-inferior.c (python_on_normal_stop, python_on_resume)
5029         (python_on_inferior_call_pre, python_on_inferior_call_post)
5030         (python_on_memory_change, python_on_register_change)
5031         (python_inferior_exit, python_new_objfile, add_thread_object)
5032         (delete_thread_object, py_free_inferior): Use gdbpy_enter.
5033
5034 2017-01-10  Tom Tromey  <tom@tromey.com>
5035
5036         * python/py-finishbreakpoint.c (bpfinishpy_handle_stop)
5037         (bpfinishpy_handle_exit): Use gdbpy_enter.
5038
5039 2017-01-10  Tom Tromey  <tom@tromey.com>
5040
5041         * python/py-cmd.c (cmdpy_destroyer)
5042         (cmdpy_completer_handle_brkchars, cmdpy_completer): Use
5043         gdbpy_enter.
5044
5045 2017-01-10  Tom Tromey  <tom@tromey.com>
5046
5047         * python/py-breakpoint.c (gdbpy_breakpoint_cond_says_stop): Use
5048         gdbpy_enter.
5049         (gdbpy_breakpoint_has_cond): Likewise.
5050
5051 2017-01-10  Tom Tromey  <tom@tromey.com>
5052
5053         * python/python.c (gdbpy_enter): New constructor.
5054         (~gdbpy_enter): New destructor.
5055         (restore_python_env, ensure_python_env): Rewrite.
5056         * python/python-internal.h (gdbpy_enter): New class.
5057
5058 2017-01-10  Tom Tromey  <tom@tromey.com>
5059
5060         * python/py-symbol.c (gdbpy_lookup_symbol): Use gdbpy_ref.
5061
5062 2017-01-10  Tom Tromey  <tom@tromey.com>
5063
5064         * python/py-value.c (value_has_field, get_field_flag)
5065         (get_field_type, valpy_getitem, convert_value_from_python): Use
5066         gdbpy_ref.
5067
5068 2017-01-10  Tom Tromey  <tom@tromey.com>
5069
5070         * python/python.c (gdbpy_progspaces, gdbpy_objfiles): Use
5071         gdbpy_ref.
5072
5073 2017-01-10  Tom Tromey  <tom@tromey.com>
5074
5075         * python/py-prettyprint.c (search_pp_list)
5076         (find_pretty_printer_from_objfiles)
5077         (find_pretty_printer_from_progspace)
5078         (find_pretty_printer_from_gdb, find_pretty_printer)
5079         (gdbpy_get_display_hint, gdbpy_get_varobj_pretty_printer): Use
5080         gdbpy_ref.
5081
5082 2017-01-10  Tom Tromey  <tom@tromey.com>
5083
5084         * python/py-param.c (call_doc_function): Use gdbpy_ref.
5085
5086 2017-01-10  Tom Tromey  <tom@tromey.com>
5087
5088         * python/py-linetable.c (build_line_table_tuple_from_pcs)
5089         (ltpy_get_all_source_lines): Use gdbpy_ref.
5090
5091 2017-01-10  Tom Tromey  <tom@tromey.com>
5092
5093         * python/py-framefilter.c (extract_sym, extract_value)
5094         (get_py_iter_from_func, bootstrap_python_frame_filters): Use
5095         gdbpy_ref.
5096
5097 2017-01-10  Tom Tromey  <tom@tromey.com>
5098
5099         * python/py-breakpoint.c (gdbpy_breakpoints): Use gdbpy_ref.
5100
5101 2017-01-10  Tom Tromey  <tom@tromey.com>
5102
5103         * python/py-inferior.c (gdbpy_inferiors): Use gdbpy_ref.
5104
5105 2017-01-10  Tom Tromey  <tom@tromey.com>
5106
5107         * python/py-function.c (convert_values_to_python, fnpy_init): Use
5108         gdbpy_ref.
5109
5110 2017-01-10  Tom Tromey  <tom@tromey.com>
5111
5112         * python/py-cmd.c (gdbpy_string_to_argv): Use gdbpy_ref.
5113
5114 2017-01-10  Tom Tromey  <tom@tromey.com>
5115
5116         * python/py-type.c (convert_field, make_fielditem, typy_fields)
5117         (typy_range): Use gdbpy_ref.
5118
5119 2017-01-10  Tom Tromey  <tom@tromey.com>
5120
5121         * python/py-threadevent.c (create_thread_event_object): Use
5122         gdbpy_ref.
5123         * python/py-stopevent.c (create_stop_event_object): Simplify.
5124         (emit_stop_event): Use gdbpy_ref.
5125         * python/py-signalevent.c (create_signal_event_object): Use
5126         gdbpy_ref.
5127         * python/py-newobjfileevent.c (create_new_objfile_event_object)
5128         (emit_new_objfile_event, create_clear_objfiles_event_object)
5129         (emit_clear_objfiles_event): Use gdbpy_ref.
5130         * python/py-infevents.c (create_inferior_call_event_object)
5131         (create_register_changed_event_object)
5132         (create_memory_changed_event_object, emit_inferior_call_event)
5133         (emit_memory_changed_event, emit_register_changed_event): Use
5134         gdbpy_ref.
5135         * python/py-exitedevent.c (create_exited_event_object)
5136         (emit_exited_event): Use gdbpy_ref.
5137         * python/py-event.h (evpy_emit_event): Remove
5138         CPYCHECKER_STEALS_REFERENCE_TO_ARG annotation.
5139         * python/py-event.c (evpy_emit_event): Use gdbpy_ref.
5140         * python/py-continueevent.c (emit_continue_event): Use
5141         gdbpy_ref.
5142         * python/py-breakpoint.c (gdbpy_breakpoint_created)
5143         (gdbpy_breakpoint_deleted, gdbpy_breakpoint_modified): Use
5144         gdbpy_ref.
5145         * python/py-bpevent.c (create_breakpoint_event_object): Use
5146         gdbpy_ref.
5147
5148 2017-01-10  Tom Tromey  <tom@tromey.com>
5149
5150         * python/py-ref.h: New file.
5151
5152 2017-01-10  Simon Marchi  <simon.marchi@ericsson.com>
5153
5154         * cli-out.c (cli_ui_out::do_redirect): Change return type to
5155         void.
5156         * cli-out.h (cli_ui_out::do_redirect): Likewise.
5157         * mi/mi-out.c (mi_ui_out::do_redirect): Likewise.
5158         * mi/mi-out.h (mi_ui_out::do_redirect): Likewise.
5159         * ui-out.c (ui_out::redirect): Likewise.
5160         * ui-out.h (ui_out::redirect, ui_out::do_redirect): Likewise.
5161         * cli/cli-logging.c (set_logging_redirect): Update call site of
5162         ui_out::redirect.
5163         (handle_redirections): Likewise.
5164         * scm-ports.c (ioscm_with_output_to_port_worker): Likewise.
5165         * top.c (execute_command_to_string): Likewise.
5166         * utils.c (do_ui_out_redirect_pop): Likewise.
5167
5168 2017-01-10  Simon Marchi  <simon.marchi@ericsson.com>
5169
5170         * stack.c (_initialize_stack): Update "frame" command help message.
5171
5172 2017-01-08  Iain Buclaw  <ibuclaw@gdcproject.org>
5173
5174         * d-exp.y (CastExpression): Emit UNOP_CAST_TYPE.
5175
5176 2017-01-06  Yao Qi  <yao.qi@linaro.org>
5177
5178         * x86-linux-nat.h: Include gdb_proc_service.h.
5179
5180 2017-01-06  Yao Qi  <yao.qi@linaro.org>
5181
5182         * ser-base.h: Include serial.h.
5183
5184 2017-01-06  Yao Qi  <yao.qi@linaro.org>
5185
5186         * ppc-linux-tdep.h: Include ppc-tdep.h.
5187
5188 2017-01-06  Yao Qi  <yao.qi@linaro.org>
5189
5190         * nat/amd64-linux-siginfo.h: Include signal.h.
5191
5192 2017-01-06  Yao Qi  <yao.qi@linaro.org>
5193
5194         * nat/aarch64-linux-hw-point.h: Include break-common.h.
5195
5196 2017-01-06  Yao Qi  <yao.qi@linaro.org>
5197
5198         * mi/mi-parse.h: Include mi-cmds.h.
5199
5200 2017-01-06  Yao Qi  <yao.qi@linaro.org>
5201
5202         * inf-loop.c: Don't include "target.h".
5203         * inf-loop.h: Include it here.
5204
5205 2017-01-06  Yao Qi  <yao.qi@linaro.org>
5206
5207         * dfp.h: Include "dboulest.h" and "expression.h".
5208
5209 2017-01-06  Yao Qi  <yao.qi@linaro.org>
5210
5211         * ax-gdb.h: Include "ax.h".
5212
5213 2017-01-06  Yao Qi  <yao.qi@linaro.org>
5214
5215         * Makefile.in (HFILES_NO_SRCDIR): Replace gdb_ptrace.h
5216         with nat/gdb_ptrace.h.
5217
5218 2017-01-05  Yao Qi  <yao.qi@linaro.org>
5219
5220         * mips-fbsd-tdep.c (mips_fbsd_sigframe_init): Move && to
5221         new line.
5222         (mips64_fbsd_sigframe_init): Likewise.
5223
5224 2017-01-04  John Baldwin  <jhb@FreeBSD.org>
5225
5226         * mips-fbsd-tdep.c (_initialize_mips_fbsd_tdep): Use
5227         GDB_OSABI_FREEBSD instead of GDB_OSABI_FREEBSD_ELF.
5228
5229 2017-01-04  John Baldwin  <jhb@FreeBSD.org>
5230
5231         * Makefile.in (ALLDEPFILES): Add mips-fbsd-nat.c.
5232         * NEWS: Mention new FreeBSD/mips native configuration.
5233         * config/mips/fbsd.mh: New file.
5234         * configure.host: Add mips*-*-freebsd*.
5235         * mips-fbsd-nat.c: New file.
5236
5237 2017-01-04  John Baldwin  <jhb@FreeBSD.org>
5238
5239         * Makefile.in (ALL_TARGET_OBS): Add mips-fbsd-tdep.o.
5240         (ALLDEPFILES): Add mips-fbsd-tdep.c.
5241         * NEWS: Mention new FreeBSD/mips target.
5242         * configure.tgt: Add mips*-*-freebsd*.
5243         * mips-fbsd-tdep.c: New file.
5244         * mips-fbsd-tdep.h: New file.
5245
5246 2017-01-04  Yao Qi  <yao.qi@linaro.org>
5247
5248         * dwarf2loc.c (write_pieced_value): Don't use VALUE_FRAME_ID (to),
5249         use c->frame_id when the piece location is DWARF_VALUE_REGISTER.
5250
5251 2017-01-01  Joel Brobecker  <brobecker@adacore.com>
5252
5253         Update copyright year range in all GDB files.
5254
5255 2017-01-01  Joel Brobecker  <brobecker@adacore.com>
5256
5257         * config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2016.
5258
5259 For older changes see ChangeLog-2016.
5260 \f
5261 Local Variables:
5262 mode: change-log
5263 left-margin: 8
5264 fill-column: 74
5265 version-control: never
5266 coding: utf-8
5267 End: