gdb/riscv: Remove whitespace before #include line
[external/binutils.git] / gdb / ChangeLog
1 2018-12-10  Andrew Burgess  <andrew.burgess@embecosm.com>
2
3         * riscv-tdep.c (riscv_register_name): Fix ARI warning by removing
4         leading whitespace before #include line.
5
6 2018-12-08  Simon Marchi  <simon.marchi@ericsson.com>
7             Дилян Палаузов  <dilyan.palauzov@aegee.org>
8
9         PR gdb/23950
10         * configure.ac: Search for tgetent in libtinfow.
11         * configure: Re-generate.
12
13 2018-12-08  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
14
15         * linux-thread-db.c (struct thread_db_info): Add td_ta_delete_p.
16         (thread_db_err_str): Forward declare.
17         (delete_thread_db_info): Call td_ta_delete_p if available.
18         (try_thread_db_load_1): Acquire td_ta_delete address.
19         * nat/gdb_thread_db.h (td_ta_delete_ftype): Declare.
20
21 2018-12-08  Pedro Alves  <palves@redhat.com>
22
23         * source.c (forward_search_command): Rename to ...
24         (search_command_helper): ... this.  Add 'forward' parameter.
25         Tweak to use a gdb::def_vector<char> instead of a xrealloc'ed
26         buffer.  Handle backward searches too.
27         (forward_search_command, reverse_search_command): Reimplement by
28         calling search_command_helper.
29
30 2018-12-07  Andrew Burgess  <andrew.burgess@embecosm.com>
31
32         * .dir-locals.el: Copy most of the settings from c-mode over to
33         c++-mode.
34
35 2018-12-08  Stafford Horne  <shorne@gmail.com>
36
37         * Makefile.in (ALL_TARGET_OBS): Add or1k-linux-tdep.o.
38         * configure.tgt: Add or1k*-*-linux*.
39         * or1k-linux-tdep.c: New file.
40         * or1k-tdep.c (or1k_gdbarch_init): Call gdbarch_init_osabi.
41
42 2018-12-07  Pedro Alves  <palves@redhat.com>
43
44         * dwarf2read.c (get_gdb_index_contents_from_section): Use
45         gdb::make_array_view.
46
47 2018-12-05  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
48
49         * language.c (_initialize_language): Fix leak by assigning
50         a static string to language.  Same for range and case_sensitive,
51         even if no leak is detected for these variables.
52
53 2018-12-05  John Baldwin  <jhb@FreeBSD.org>
54
55         * configure: Re-generate.
56         * configure.ac: Use separate sed expressions to escape variables
57         in auto-load directories.
58
59 2018-12-05  Andrew Burgess  <andrew.burgess@embecosm.com>
60
61         * riscv-tdep.c (riscv_features_from_gdbarch_info): New function.
62         (riscv_find_default_target_description): Use new function to
63         extract feature from gdbarch_info.
64         (riscv_gdbarch_init): Add error checks for xlen and flen between
65         target description and bfd headers.  Be smarter about when we
66         think the hardware floating point abi should be used.
67
68 2018-12-05  Alan Hayward  <alan.hayward@arm.com>
69
70         * nat/aarch64-linux-hw-point.c
71         (aarch64_linux_any_set_debug_regs_state): New function.
72         * nat/aarch64-linux-hw-point.h
73         (aarch64_linux_any_set_debug_regs_state): New declaration.
74         * nat/aarch64-linux.c (aarch64_linux_new_thread): Check if any
75         BPs or WPs are set.
76
77 2018-11-30  John Baldwin  <jhb@FreeBSD.org>
78
79         * common/filestuff.c [HAVE_KINFO_GETFILE]: Include headers.
80         (fdwalk) [HAVE_KINFO_GETFILE]: Use kinfo_getfile.
81
82 2018-11-30  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
83             Simon Marchi  <simon.marchi@ericsson.com>
84
85         * linespec.c (symtab_vector_up): Remove.
86         (symtabs_from_filename): Change return type to std::vector.
87         (collect_symtabs_from_filename): Likewise.
88         (create_sals_line_offset): Assign return value of
89         collect_symtabs_from_filename to *ls->file_symtabs.
90         (convert_explicit_location_to_linespec): Remove call to release.
91         (parse_linespec): Likewise.
92         (symtab_collector) <symtab_collector>: Remove initialization of
93         m_symtabs.
94         <release_symtabs>: Change return type to std::vector<symtab *>.
95         <operator ()>: Adjust.
96
97 2018-11-30  John Baldwin  <jhb@FreeBSD.org>
98
99         * fbsd-nat.c [__FreeBSD_version >= 700009] (USE_SIGINFO): Macro
100         defined.
101         (union sigval32, struct siginfo32, fbsd_siginfo_size)
102         (fbsd_convert_siginfo): Make conditional on USE_SIGINFO instead
103         of KERN_PROC_AUXV and PT_LWPINFO.
104         (fbsd_nat_target::xfer_partial): Define method unconditionally.
105         Make TARGET_OBJECT_SIGNAL_INFO conditional on USE_SIGINFO.
106         Make TARGET_OBJECT_AUXV conditional on KERN_PROC_AUXV.
107         Make TARGET_OBJECT_FREEBSD_VMMAP and
108         TARGET_OBJECT_FREEBSD_PS_STRINGS conditional on KERN_PROC_VMMAP
109         and KERN_PROC_PS_STRINGS.
110         * fbsd-nat.h: Include <sys/proc.h>.
111         (fbsd_nat_target::xfer_partial): Declare method unconditionally.
112
113 2018-11-30  Andrew Burgess  <andrew.burgess@embecosm.com>
114
115         * riscv-linux-nat.c: Add 'inferior.h' and 'target-descriptions.h'
116         header files.
117         (riscv_linux_nat_target::read_description): New method.
118
119 2018-11-30  Andrew Burgess  <andrew.burgess@embecosm.com>
120
121         * arch/riscv.h (riscv_gdbarch_features::hash): New method.
122         * arch/riscv.c (struct riscv_gdbarch_features_hasher): New.
123         (riscv_tdesc_cache): New global.
124         (riscv_create_target_description): Look in the cache before
125         creating a new target description.
126
127 2018-11-30  Andrew Burgess  <andrew.burgess@embecosm.com>
128
129         * arch/riscv.h (riscv_gdb_features::operator==): New.
130         (riscv_gdb_features::operator!=): New.
131         * riscv-tdep.c (riscv_gdbarch_init): Make use of the inequality
132         operator.
133
134 2018-11-30  Andrew Burgess  <andrew.burgess@embecosm.com>
135
136         * arch/riscv.h (riscv_create_target_description): Make return type
137         const.
138         * arch/riscv.c (riscv_create_target_description): Likewise.
139         * riscv-tdep.c (riscv_find_default_target_description): Likewise.
140
141 2018-11-30  Jan Kratochvil  <jan.kratochvil@redhat.com>
142             Keith Seitz  <keiths@redhat.com>
143             Tom Tromey  <tom@tromey.com>
144             Sergio Durigan Junior  <sergiodj@redhat.com>
145
146         https://bugzilla.redhat.com/show_bug.cgi?id=1613614
147         * dwarf2read.c (dwarf2_find_containing_comp_unit): Add
148         'mid_cu->length' to '*cu_off' when checking if 'sect_off' is
149         inside the CU.
150
151 2018-11-30  Pedro Alves  <palves@redhat.com>
152
153         * aix-thread.c (aix_thread_target) <aix_thread_target>: Delete.
154         <stratum>: New override.
155         * bfd-target.c (aix_thread_target) <aix_thread_target>: Delete.
156         <stratum>: New override.
157         * bsd-uthread.c (bsd_uthread_target) <bsd_uthread_target>: Delete.
158         <stratum>: New override.
159         * exec.c (exec_target) <exec_target>: Delete.
160         <stratum>: New override.
161         * gdbarch-selftests.c (register_to_value_test): Adjust to use the
162         stratum method instead of the to_stratum field.
163         * linux-thread-db.c (thread_db_target) <thread_db_target>: Delete.
164         <stratum>: New override.
165         (thread_db_target::thread_db_target): Delete.
166         * make-target-delegates (print_class): Don't print a ctor
167         declaration.  Print a stratum method override declaration.
168         * process-stratum-target.h (process_stratum_target)
169         <process_stratum_target>: Delete.
170         <stratum>: New override.
171         * ravenscar-thread.c (ravenscar_thread_target)
172         <ravenscar_thread_target>: Delete.
173         <stratum>: New override.
174         * record-btrace.c (record_btrace_target)
175         <record_btrace_target>: Delete.
176         <stratum>: New override.
177         * record-full.c (record_full_base_target)
178         <record_full_base_target>: Delete.
179         <stratum>: New override.
180         * record.c (record_disconnect, record_detach)
181         (record_mourn_inferior, record_kill): Adjust to use the stratum
182         method instead of the to_stratum field.
183         * regcache.c (cooked_read_test, cooked_write_test): Likewise.
184         * sol-thread.c (sol_thread_target)
185         <sol_thread_target>: Delete.
186         <stratum>: New override.
187         * spu-multiarch.c (spu_multiarch_target)
188         <spu_multiarch_target>: Delete.
189         <stratum>: New override.
190         * target-delegates.c: Regenerate.
191         * target.c (target_stack::push, target_stack::unpush)
192         (pop_all_targets_above, pop_all_targets_at_and_above)
193         (info_target_command, target_require_runnable)
194         (target_stack::find_beneath): Adjust to use the stratum method
195         instead of the to_stratum field.
196         (dummy_target::dummy_target): Delete.
197         (dummy_target::stratum): New.
198         (debug_target::debug_target): Delete.
199         (debug_target::stratum): New.
200         (maintenance_print_target_stack): Adjust to use the stratum method
201         instead of the to_stratum field.
202         * target.h (struct target_ops) <stratum>: New method.
203         <to_stratum>: Delete.
204         <is_pushed>: Adjust to use the stratum method
205         instead of the to_stratum field.
206
207 2018-11-30  Pedro Alves  <palves@redhat.com>
208
209         * corelow.c (core_target) <has_all_memory, has_execution>: New
210         overrides.
211         * inf-child.c (inf_child_target::has_all_memory)
212         (inf_child_target::has_memory, inf_child_target::has_stack)
213         (inf_child_target::has_registers)
214         (inf_child_target::has_execution): Delete.
215         * inf-child.h (inf_child_target) <has_all_memory, has_memory,
216         has_stack, has_registers, has_execution>: Delete.
217         * process-stratum-target.c
218         (process_stratum_target::has_all_memory)
219         (process_stratum_target::has_memory)
220         (process_stratum_target::has_stack)
221         (process_stratum_target::has_registers)
222         (process_stratum_target::has_execution): New.
223         * process-stratum-target.h (process_stratum_target)
224         <has_all_memory, has_memory, has_stack, has_registers,
225         has_execution>: New method overrides.
226         * ravenscar-thread.c (ravenscar_thread_target) <has_all_memory,
227         has_memory, has_stack, has_registers, has_execution>: Delete.
228         * remote-sim.c (gdbsim_target) <has_stack, has_registers,
229         has_execution>: Delete.
230         * remote.c (remote_target) <has_all_memory, has_memory, has_stack,
231         has_registers, has_execution>: Delete.
232         * target.c (default_child_has_all_memory)
233         (default_child_has_memory, default_child_has_stack)
234         (default_child_has_registers, default_child_has_execution):
235         Delete.
236         * target.h (default_child_has_all_memory)
237         (default_child_has_memory, default_child_has_stack)
238         (default_child_has_registers, default_child_has_execution):
239         Delete.
240         * tracefile.h (tracefile_target) <has_execution>: New override.
241
242 2018-11-30  Pedro Alves  <palves@redhat.com>
243
244         * Makefile.in (COMMON_SFILES): Add process-stratum-target.c.
245         * bsd-kvm.c: Include "process-stratum-target.h".
246         (bsd_kvm_target): Now inherits from process_stratum_target.
247         (bsd_kvm_target::bsd_kvm_target): Default it.
248         * corelow.c: Include "process-stratum-target.h".
249         (core_target): Now inherits from process_stratum_target.
250         (core_target::core_target): Don't set to_stratum here.
251         * inf-child.c (inf_child_target::inf_child_target): Delete.
252         * inf-child.h: Include "process-stratum-target.h".
253         (inf_child_target): Inherit from process_stratum_target.
254         (inf_child_target) <inf_child_target>: Default it.
255         <can_async_p, supports_non_stop, supports_disable_randomization>:
256         Delete overrides.
257         * process-stratum-target.c: New file.
258         * process-stratum-target.h: New file.
259         * remote-sim.c: Include "process-stratum-target.h".
260         (gdbsim_target): Inherit from process_stratum_target.
261         <gdbsim_target>: Default it.
262         * remote.c: Include "process-stratum-target.h".
263         (remote_target): Inherit from process_stratum_target.
264         <remote_target>: Default it.
265         * target.c (default_thread_address_space)
266         (default_thread_architecture): Delete.
267         * target.h (target_ops) <thread_architecture>: Now returns NULL by
268         default.
269         <thread_address_space>: Ditto.
270         * test-target.h: Include "process-stratum-target.h" instead of
271         "target.h".
272         (test_target_ops): Inherit from process_stratum_target.
273         <test_target_ops>: Default it.
274         * tracefile.c (tracefile_target::tracefile_target): Delete.
275         * tracefile.h: Include "process-stratum-target.h".
276         (tracefile_target): Inherit from process_stratum_target.
277         <tracefile_target>: Default it.
278         * target-delegates.c: Regenerate.
279
280 2018-11-30  Pedro Alves  <palves@redhat.com>
281
282         * Makefile.in (COMMON_SFILES): Add test-target.c.
283         * gdbarch-selftests.c: Include "test-target.h".
284         * regcache.c: Include "test-target.h".
285         * target.c (test_target_info, test_target_ops::info): Move to ...
286         * test-target.c: ... this new file.
287         * target.h (test_target_ops): Move to ...
288         * test-target.h: ... this new file.
289
290 2018-11-29  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
291
292         * source.c (forward_search_command): Fix leak by using
293         xrealloc even for the first allocation in the loop, as buf
294         is static.
295
296 2018-11-29  Rajendra SY  <rajendra.sy@gmail.com>
297
298         PR gdb/23093
299         * gdb/fbsd-tdep.c (fbsd_gdb_signal_from_target)
300         (fbsd_gdb_signal_to_target): New.
301         (fbsd_init_abi): Install gdbarch "signal_from_target" and
302         "signal_to_target" methods.
303
304 2018-11-29  Tom Tromey  <tom@tromey.com>
305
306         * valarith.c (value_x_unop): Don't set argvec[3].
307
308 2018-11-26  Simon Marchi  <simon.marchi@ericsson.com>
309
310         PR gdb/23917
311         * sparc-linux-nat.c (sparc_linux_nat_target): Remove extraneous
312         semicolon.
313
314 2018-11-26  Pedro Alves  <palves@redhat.com>
315
316         * procfs.c (procfs_notice_thread): Replace uses of
317         in_thread_list/is_exited with find_thread_ptid/THREAD_EXITED.
318         * sol-thread.c (sol_thread_target::wait)
319         (sol_update_thread_list_callback): Likewise.
320
321 2018-11-25  Tom Tromey  <tom@tromey.com>
322
323         * ui-out.c (ui_out::field_fmt): Remove comment.
324         * tui/tui-out.c (tui_ui_out::do_field_fmt): Remove comment.
325         * mi/mi-out.c (mi_ui_out::do_field_fmt): Remove comment.
326
327 2018-11-24  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
328
329         * source.c (open_source_file): Leak fixed in '8e6a5953e1d Fix 4K
330         leak in open_source_file' has been partially undone by '2179fbc36d23
331         Return scoped_fd from open_source_file'. Re-add the transfer of
332         current s->fullname to the unique_xmalloc_ptr fullname given
333         to find_and_open_source.
334
335 2018-11-23  Pedro Alves  <palves@redhat.com>
336
337         * gdbthread.h (enum thread_state): Move comments here.
338         (is_running, is_stopped, is_exited): Remove declarations.
339
340 2018-11-22  Pedro Alves  <palves@redhat.com>
341
342         * Makefile.in (COMMON_SFILES): Add thread-iter.c.
343         * breakpoint.c (breakpoints_should_be_inserted_now): Replace
344         ALL_NON_EXITED_THREADS with all_non_exited_threads.
345         (print_one_breakpoint_location): Replace ALL_INFERIORS with
346         all_inferiors.
347         * bsd-kvm.c: Include inferior.h.
348         * btrace.c (btrace_free_objfile): Replace ALL_NON_EXITED_THREADS
349         with all_non_exited_threads.
350         * common/filtered-iterator.h: New.
351         * common/safe-iterator.h: New.
352         * corelow.c (core_target_open): Don't call init_thread_list here.
353         * darwin-nat.c (thread_info_from_private_thread_info): Replace
354         ALL_THREADS with all_threads.
355         * fbsd-nat.c (fbsd_nat_target::resume): Replace
356         ALL_NON_EXITED_THREADS with inf->non_exited_threads.
357         * fbsd-tdep.c (fbsd_make_corefile_notes): Replace
358         ALL_NON_EXITED_THREADS with inf->non_exited_threads.
359         * fork-child.c (postfork_hook): Don't call init_thread_list here.
360         * gdbarch-selftests.c (register_to_value_test): Adjust.
361         * gdbthread.h: Don't include "inferior.h" here.
362         (struct inferior): Forward declare.
363         (enum step_over_calls_kind): Moved here from inferior.h.
364         (thread_info::deletable): Definition moved to thread.c.
365         (find_thread_ptid (inferior *, ptid_t)): Declare.
366         (ALL_THREADS, ALL_THREADS_BY_INFERIOR, ALL_THREADS_SAFE): Delete.
367         Include "thread-iter.h".
368         (all_threads, all_non_exited_threads, all_threads_safe): New.
369         (any_thread_p): Declare.
370         (thread_list): Delete.
371         * infcmd.c (signal_command): Replace ALL_NON_EXITED_THREADS with
372         all_non_exited_threads.
373         (proceed_after_attach_callback): Delete.
374         (proceed_after_attach): Take an inferior pointer instead of an
375         integer PID.  Adjust to use range-for.
376         (attach_post_wait): Pass down inferior pointer instead of pid.
377         Use range-for instead of ALL_NON_EXITED_THREADS.
378         (detach_command): Remove init_thread_list call.
379         * inferior-iter.h: New.
380         * inferior.c (struct delete_thread_of_inferior_arg): Delete.
381         (delete_thread_of_inferior): Delete.
382         (delete_inferior, exit_inferior_1): Use range-for with
383         inf->threads_safe() instead of iterate_over_threads.
384         (inferior_appeared): Call init_thread_list here.
385         (discard_all_inferiors): Use all_non_exited_inferiors.
386         (find_inferior_id, find_inferior_pid): Use all_inferiors.
387         (iterate_over_inferiors): Use all_inferiors_safe.
388         (have_inferiors, number_of_live_inferiors): Use
389         all_non_exited_inferiors.
390         (number_of_inferiors): Use all_inferiors and std::distance.
391         (print_inferior): Use all_inferiors.
392         * inferior.h: Include gdbthread.h.
393         (enum step_over_calls_kind): Moved to gdbthread.h.
394         (struct inferior) <thread_list>: New field.
395         <threads, non_exited_threads, threads_safe>: New methods.
396         (ALL_INFERIORS): Delete.
397         Include "inferior-iter.h".
398         (ALL_NON_EXITED_INFERIORS): Delete.
399         (all_inferiors_safe, all_inferiors, all_non_exited_inferiors): New
400         functions.
401         * inflow.c (child_interrupt, child_pass_ctrlc): Replace
402         ALL_NON_EXITED_THREADS with all_non_exited_threads.
403         * infrun.c (follow_exec): Use all_threads_safe.
404         (clear_proceed_status, proceed): Use all_non_exited_threads.
405         (init_wait_for_inferior): Don't clear inline frame state here.
406         (infrun_thread_stop_requested, for_each_just_stopped_thread): Use
407         all_threads instead of ALL_NON_EXITED_THREADS.
408         (random_pending_event_thread): Use all_non_exited_threads instead
409         of ALL_NON_EXITED_THREADS.  Use a lambda for repeated code.
410         (clean_up_just_stopped_threads_fsms): Use all_non_exited_threads
411         instead of ALL_NON_EXITED_THREADS.
412         (handle_no_resumed): Use all_non_exited_threads instead of
413         ALL_NON_EXITED_THREADS.  Use all_inferiors instead of
414         ALL_INFERIORS.
415         (restart_threads, switch_back_to_stepped_thread): Use
416         all_non_exited_threads instead of ALL_NON_EXITED_THREADS.
417         * linux-nat.c (check_zombie_leaders): Replace ALL_INFERIORS with
418         all_inferiors.
419         (kill_unfollowed_fork_children): Use inf->non_exited_threads
420         instead of ALL_NON_EXITED_THREADS.
421         * linux-tdep.c (linux_make_corefile_notes): Use
422         inf->non_exited_threads instead of ALL_NON_EXITED_THREADS.
423         * linux-thread-db.c (thread_db_target::update_thread_list):
424         Replace ALL_INFERIORS with all_inferiors.
425         (thread_db_target::thread_handle_to_thread_info): Use
426         inf->non_exited_threads instead of ALL_NON_EXITED_THREADS.
427         * mi/mi-interp.c (multiple_inferiors_p): New.
428         (mi_on_resume_1): Simplify using all_non_exited_threads and
429         multiple_inferiors_p.
430         * mi/mi-main.c (mi_cmd_thread_list_ids): Use all_non_exited_threads
431         instead of ALL_NON_EXITED_THREADS.
432         * nto-procfs.c (nto_procfs_target::open): Don't call
433         init_thread_list here.
434         * record-btrace.c (record_btrace_target_open)
435         (record_btrace_target::stop_recording)
436         (record_btrace_target::close)
437         (record_btrace_target::record_is_replaying)
438         (record_btrace_target::resume, record_btrace_target::wait)
439         (record_btrace_target::record_stop_replaying): Use
440         all_non_exited_threads instead of ALL_NON_EXITED_THREADS.
441         * record-full.c (record_full_wait_1): Use all_non_exited_threads
442         instead of ALL_NON_EXITED_THREADS.
443         * regcache.c (cooked_read_test): Remove reference to global
444         thread_list.
445         * remote-sim.c (gdbsim_target::create_inferior): Don't call
446         init_thread_list here.
447         * remote.c (remote_target::update_thread_list): Use
448         all_threads_safe instead of ALL_NON_EXITED_THREADS.
449         (remote_target::process_initial_stop_replies): Replace
450         ALL_INFERIORS with all_non_exited_inferiors and use
451         all_non_exited_threads instead of ALL_NON_EXITED_THREADS.
452         (remote_target::open_1): Don't call init_thread_list here.
453         (remote_target::append_pending_thread_resumptions)
454         (remote_target::remote_resume_with_hc): Use all_non_exited_threads
455         instead of ALL_NON_EXITED_THREADS.
456         (remote_target::commit_resume)
457         (remote_target::remove_new_fork_children): Replace ALL_INFERIORS
458         with all_non_exited_inferiors and use all_non_exited_threads
459         instead of ALL_NON_EXITED_THREADS.
460         (remote_target::kill_new_fork_children): Use
461         all_non_exited_threads instead of ALL_NON_EXITED_THREADS.  Remove
462         init_thread_list and init_wait_for_inferior calls.
463         (remote_target::remote_btrace_maybe_reopen)
464         (remote_target::thread_handle_to_thread_info): Use
465         all_non_exited_threads instead of ALL_NON_EXITED_THREADS.
466         * target.c (target_terminal::restore_inferior)
467         (target_terminal_is_ours_kind): Replace ALL_INFERIORS with
468         all_non_exited_inferiors.
469         * thread-iter.c: New file.
470         * thread-iter.h: New file.
471         * thread.c: Include "inline-frame.h".
472         (thread_list): Delete.
473         (clear_thread_inferior_resources): Call clear_inline_frame_state.
474         (init_thread_list): Use all_threads_safe instead of
475         ALL_THREADS_SAFE.  Adjust to per-inferior thread lists.
476         (new_thread): Adjust to per-inferior thread lists.
477         (add_thread_silent): Pass inferior to find_thread_ptid.
478         (thread_info::deletable): New, moved from the header.
479         (delete_thread_1): Adjust to per-inferior thread lists.
480         (find_thread_global_id): Use inf->threads().
481         (find_thread_ptid): Use find_inferior_ptid and pass inferior to
482         find_thread_ptid.
483         (find_thread_ptid(inferior*, ptid_t)): New overload.
484         (iterate_over_threads): Use all_threads_safe.
485         (any_thread_p): New.
486         (thread_count): Use all_threads and std::distance.
487         (live_threads_count): Use all_non_exited_threads and
488         std::distance.
489         (valid_global_thread_id): Use all_threads.
490         (in_thread_list): Use find_thread_ptid.
491         (first_thread_of_inferior): Adjust to per-inferior thread lists.
492         (any_thread_of_inferior, any_live_thread_of_inferior): Use
493         inf->non_exited_threads().
494         (prune_threads, delete_exited_threads): Use all_threads_safe.
495         (thread_change_ptid): Pass inferior pointer to find_thread_ptid.
496         (set_resumed, set_running): Use all_non_exited_threads.
497         (is_thread_state, is_stopped, is_exited, is_running)
498         (is_executing): Delete.
499         (set_executing, set_stop_requested, finish_thread_state): Use
500         all_non_exited_threads.
501         (print_thread_info_1): Use all_inferiors and all_threads.
502         (thread_apply_all_command): Use all_non_exited_threads.
503         (thread_find_command): Use all_threads.
504         (update_threads_executing): Use all_non_exited_threads.
505         * tid-parse.c (parse_thread_id): Use inf->threads.
506         * x86-bsd-nat.c (x86bsd_dr_set): Use inf->non_exited_threads ().
507
508 2018-11-22  Pedro Alves  <palves@redhat.com>
509
510         * infrun.c (follow_exec) <set follow-exec new>: Add thread and
511         switch to it before calling into try_open_exec_file.
512
513 2018-11-22  Pedro Alves  <palves@redhat.com>
514
515         * cli/cli-interp.c (cli_on_user_selected_context_changed): Use
516         inferior_thread instead of find_thread_ptid, and only when
517         inferior_ptid is not null_ptid.
518         * inferior.c (add_inferior): Don't include target_pid_to_str
519         output when the inferior is not started.
520         * python/py-inferior.c (python_on_normal_stop): Don't use
521         find_thread_ptid.
522         (tui_on_user_selected_context_changed): Use inferior_thread
523         instead of find_thread_ptid, and only when inferior_ptid is not
524         null_ptid.
525
526 2018-11-21  Benno Fünfstück  <benno.fuenfstueck@gmail.com>
527
528         PR python/23714
529         * gdb/python/python.c (execute_gdb_command): Call
530         prevent_dont_repeat earlier to avoid affecting dont_repeat.
531
532 2018-11-21  Andrew Burgess  <andrew.burgess@embecosm.com>
533
534         * Makefile.in (ALL_TARGET_OBS): Add arch/riscv.o.
535         (HFILES_NO_SRCDIR): Add arch/riscv.h.
536         * arch/riscv.c: New file.
537         * arch/riscv.h: New file.
538         * configure.tgt: Add cpu_obs list of riscv, move riscv-tdep.o into
539         this list, and add arch/riscv.o.
540         * features/Makefile: Add riscv features.
541         * features/riscv/32bit-cpu.c: New file.
542         * features/riscv/32bit-cpu.xml: New file.
543         * features/riscv/32bit-csr.c: New file.
544         * features/riscv/32bit-csr.xml: New file.
545         * features/riscv/32bit-fpu.c: New file.
546         * features/riscv/32bit-fpu.xml: New file.
547         * features/riscv/64bit-cpu.c: New file.
548         * features/riscv/64bit-cpu.xml: New file.
549         * features/riscv/64bit-csr.c: New file.
550         * features/riscv/64bit-csr.xml: New file.
551         * features/riscv/64bit-fpu.c: New file.
552         * features/riscv/64bit-fpu.xml: New file.
553         * features/riscv/rebuild-csr-xml.sh: New file.
554         * riscv-tdep.c: Add 'arch/riscv.h' include.
555         (riscv_gdb_reg_names): Delete.
556         (csr_reggroup): New global.
557         (struct riscv_register_alias): Delete.
558         (struct riscv_register_feature): New structure.
559         (riscv_register_aliases): Delete.
560         (riscv_xreg_feature): New global.
561         (riscv_freg_feature): New global.
562         (riscv_virtual_feature): New global.
563         (riscv_csr_feature): New global.
564         (riscv_create_csr_aliases): New function.
565         (riscv_read_misa_reg): Delete.
566         (riscv_has_feature): Delete.
567         (riscv_isa_xlen): Simplify, just return cached xlen.
568         (riscv_isa_flen): Simplify, just return cached flen.
569         (riscv_has_fp_abi): Update for changes in struct gdbarch_tdep.
570         (riscv_register_name): Update to make use of tdesc_register_name.
571         Look up xreg and freg names in the new globals riscv_xreg_feature
572         and riscv_freg_feature.  Don't supply csr aliases here.
573         (riscv_fpreg_q_type): Delete.
574         (riscv_register_type): Use tdesc_register_type in almost all
575         cases, override the returned type in a few specific cases only.
576         (riscv_print_one_register_info): Handle errors reading registers.
577         (riscv_register_reggroup_p): Use tdesc_register_in_reggroup_p for
578         registers that are otherwise unknown to GDB.  Also check the
579         csr_reggroup.
580         (riscv_print_registers_info): Remove assert about upper register
581         number, and use gdbarch_register_reggroup_p instead of
582         short-cutting.
583         (riscv_find_default_target_description): New function.
584         (riscv_check_tdesc_feature): New function.
585         (riscv_add_reggroups): New function.
586         (riscv_setup_register_aliases): New function.
587         (riscv_init_reggroups): New function.
588         (_initialize_riscv_tdep): Add calls to setup CSR aliases, and
589         setup register groups.  Register new riscv debug variable.
590         * riscv-tdep.h: Add 'arch/riscv.h' include.
591         (struct gdbarch_tdep): Remove abi union, and add
592         riscv_gdbarch_features field.  Remove cached quad floating point
593         type, and provide initialisation for double type field.
594         * target-descriptions.c (maint_print_c_tdesc_cmd): Add riscv to
595         the list of targets using the feature based target descriptions.
596         * NEWS: Mention target description support.
597
598 2018-11-21  Pedro Alves  <palves@redhat.com>
599
600         * valops.c (find_method_list, value_find_oload_method_list)
601         (find_overload_match, find_oload_champ): Rename parameters and
602         locals.
603
604 2018-11-21  Pedro Alves  <palves@redhat.com>
605
606         * valops.c (find_method_list): Replace pointer and length
607         parameters with an gdb::array_view.  Adjust.
608         (value_find_oload_method_list): Likewise.
609         (find_overload_match): Use gdb::array_view for methods list.
610         Adjust to find_oload_champ interface change.
611         (find_oload_champ): 'xm_worker_vec' parameter now a pointer/array.
612         'num_fns' parameter now a size_t.  Eliminate 'fn_count' local.
613
614 2018-11-21  Pedro Alves  <palves@redhat.com>
615
616         * gdbtypes.c (compare_badness): Change type of parameters to const
617         reference.  Adjust to badness_vector being a std::vector now.
618         (rank_function): Adjust to badness_vector being a std::vector now.
619         * gdbtypes.h (badness_vector): Now a typedef to std::vector.
620         (LENGTH_MATCH): Delete.
621         (compare_badness): Change type of parameters to const reference.
622         (rank_function): Return a badness_vector by value now.
623         (find_overload_match): Adjust to badness_vector being a
624         std::vector now.  Remove cleanups.
625         (find_oload_champ_namespace): 'oload_champ_bv' parameter now a
626         badness_vector pointer.
627         (find_oload_champ_namespace_loop): 'oload_champ_bv' parameter now
628         a badness_vector pointer.  Adjust to badness_vector being a
629         std::vector now.  Remove cleanups.
630         (find_oload_champ): 'oload_champ_bv' parameter now
631         a badness_vector pointer.  Adjust to badness_vector being a
632         std::vector now.  Remove cleanups.
633
634 2018-11-21  Pedro Alves  <palves@redhat.com>
635
636         * cp-support.c (sym_return_val_size, sym_return_val_index)
637         (sym_return_val): Delete.
638         (overload_list_add_symbol): Add std::vector parameter.  Adjust to
639         add to the vector.
640         (make_symbol_overload_list): Adjust to return a std::vector
641         instead of maintaining a global open coded vector.
642         (make_symbol_overload_list_block): Add std::vector parameter.
643         (make_symbol_overload_list_block): Rename to ...
644         (add_symbol_overload_list_block): ... this and add std::vector
645         parameter.
646         (make_symbol_overload_list_namespace): Rename to ...
647         (add_symbol_overload_list_namespace): ... this and add std::vector
648         parameter.
649         (make_symbol_overload_list_adl_namespace): Rename to ...
650         (add_symbol_overload_list_adl_namespace): ... this and add
651         std::vector parameter.
652         (make_symbol_overload_list_adl): Delete.
653         (add_symbol_overload_list_adl): New.
654         (make_symbol_overload_list_using): Rename to ...
655         (add_symbol_overload_list_using): ... this and add std::vector
656         parameter.
657         (make_symbol_overload_list_qualified): Rename to ...
658         (add_symbol_overload_list_qualified): ... this and add std::vector
659         parameter.
660         * cp-support.h: Include "common/array-view.h" and <vector>.
661         (make_symbol_overload_list): Change return type to std::vector.
662         (make_symbol_overload_list_adl): Delete declaration.
663         (add_symbol_overload_list_adl): New declaration.
664         * valops.c (find_overload_match): Local 'oload_syms' now a
665         std::vector.
666         (find_oload_champ_namespace): 'oload_syms' parameter now a
667         std::vector pointer.
668         (find_oload_champ_namespace_loop): 'oload_syms' parameter now a
669         std::vector pointer.  Adjust to new make_symbol_overload_list
670         interface.
671
672 2018-11-21  Pedro Alves  <palves@redhat.com>
673
674         * common/array-view.h (array_view::splice(size_type, size_t)): New.
675         (array_view::splice(size_type)): New.
676         * eval.c (eval_call, evaluate_funcall): Adjust to use array_view.
677         * extension.c (xmethod_worker::get_arg_types): Adjust to return an
678         std::vector.
679         (xmethod_worker::get_result_type): Adjust to use gdb::array_view.
680         * extension.h: Include "common/array-view.h".
681         (xmethod_worker::invoke): Adjust to use gdb::array_view.
682         (xmethod_worker::get_arg_types): Adjust to return an std::vector.
683         (xmethod_worker::get_result_type): Adjust to use gdb::array_view.
684         (xmethod_worker::do_get_arg_types): Adjust to use std::vector.
685         (xmethod_worker::do_get_result_type): Adjust to use
686         gdb::array_view.
687         * gdbtypes.c (rank_function): Adjust to use gdb::array_view.
688         * gdbtypes.h: Include "common/array-view.h".
689         (rank_function): Adjust to use gdb::array_view.
690         * python/py-xmethods.c (python_xmethod_worker::invoke)
691         (python_xmethod_worker::do_get_arg_types)
692         (python_xmethod_worker::do_get_result_type)
693         (python_xmethod_worker::invoke): Adjust to new interfaces.
694         * valarith.c (value_user_defined_cpp_op, value_user_defined_op)
695         (value_x_binop, value_x_unop): Adjust to use gdb::array_view.
696         * valops.c (find_overload_match, find_oload_champ_namespace)
697         (find_oload_champ_namespace_loop, find_oload_champ): Adjust to use
698         gdb:array_view and the new xmethod_worker interfaces.
699         * value.c (result_type_of_xmethod, call_xmethod): Adjust to use
700         gdb::array_view.
701         * value.h (find_overload_match, result_type_of_xmethod)
702         (call_xmethod): Adjust to use gdb::array_view.
703         * unittests/array-view-selftests.c: Add slicing tests.
704
705 2018-11-21  Pedro Alves  <palves@redhat.com>
706
707         * ada-lang.c (ada_evaluate_subexp): Adjust to pass an array_view.
708         * common/array-view.h (make_array_view): New.
709         * compile/compile-object-run.c (compile_object_run): Adjust to
710         pass an array_view.
711         * elfread.c (elf_gnu_ifunc_resolve_addr): Adjust.
712         * eval.c (eval_call): Adjust to pass an array_view.
713         (evaluate_subexp_standard): Adjust to pass an array_view.
714         * gcore.c (call_target_sbrk): Adjust to pass an array_view.
715         * guile/scm-value.c (gdbscm_value_call): Likewise.
716         * infcall.c (push_dummy_code): Replace pointer + size parameters
717         with an array_view parameter.
718         (call_function_by_hand, call_function_by_hand_dummy): Likewise and
719         adjust.
720         * infcall.h: Include "common/array-view.h".
721         (call_function_by_hand, call_function_by_hand_dummy): Replace
722         pointer + size parameters with an array_view parameter.
723         * linux-fork.c (inferior_call_waitpid): Adjust to use array_view.
724         * linux-tdep.c (linux_infcall_mmap): Likewise.
725         * objc-lang.c (lookup_objc_class, lookup_child_selector)
726         (value_nsstring, print_object_command): Likewise.
727         * python/py-value.c (valpy_call): Likewise.
728         * rust-lang.c (rust_evaluate_funcall): Likewise.
729         * spu-tdep.c (flush_ea_cache): Likewise.
730         * valarith.c (value_x_binop, value_x_unop): Likewise.
731         * valops.c (value_allocate_space_in_inferior): Likewise.
732         * unittests/array-view-selftests.c (run_tests): Add
733         gdb::make_array_view test.
734
735 2018-11-20  Andrew Burgess  <andrew.burgess@embecosm.com>
736
737         * cli-out.c (cli_ui_out::do_field_int): Use string_printf rather
738         than a fixed size buffer.
739
740 2018-11-20  Andrew Burgess  <andrew.burgess@embecosm.com>
741
742         * breakpoint.c (print_one_breakpoint_location): Reduce whitespace,
743         and remove insertion of extra spaces in GDB's output.
744         * cli-out.c (cli_ui_out::do_field_fmt): Update header comment.
745         Layout field into a temporary buffer, and then output it as a
746         string field.
747
748 2018-11-20  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
749
750         * NEWS: Document the language choice done by
751         'info [types|functions|variables]|rbreak'.
752
753 2018-11-20  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
754
755         * symtab.c (treg_matches_sym_type_name): Use
756         scoped_switch_to_sym_language_if_auto instead of local logic.
757         (print_symbol_info): Use scoped_switch_to_sym_language_if_auto
758         to switch to SYM language when language mode is auto.
759
760 2018-11-20  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
761
762         * language.h (scoped_switch_to_sym_language_if_auto): New class.
763
764 2018-11-20  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
765
766         * symtab.c (search_symbols): Properly check absence of type regexp
767         before entering the loop scanning the minimal symbols.
768
769 2018-11-20  John Darrington  <john@darrington.wattle.id.au>
770
771         * s12z-tdep.c (s12z_extract_return_value): New function.
772         (inv_reg_perm) New array.
773         (s12z_return_value): Populate readbuf if non-null.
774
775 2018-11-20  Eli Zaretskii  <eliz@gnu.org>
776
777         * common/filestuff.c (gdb_fopen_cloexec): Disable use of "e" mode
778         with 'fopen' also if O_CLOEXEC is equal to O_NOINHERIT, to cater
779         to MinGW fixed by Gnulib.
780         (O_NOINHERIT): Define if not defined.
781
782 2018-11-19  John Darrington  <john@darrington.wattle.id.au>
783
784         * s12z-tdep.c (s12z_frame_cache): Add an assertion.
785
786 2018-11-19  Simon Marchi  <simon.marchi@polymtl.ca>
787
788         * infrun.c (displaced_step_inferior_state) <next>: Remove.
789
790 2018-11-19  Tom Tromey  <tom@tromey.com>
791
792         * source.c (get_filename_and_charpos): Return void.
793
794 2018-11-19  Simon Marchi  <simon.marchi@polymtl.ca>
795
796         * skip.c (_initialize_step_skip): Fix "info skip" help.
797
798 2018-11-16  Tom Tromey  <tom@tromey.com>
799
800         PR rust/23625:
801         * rust-lang.c (rust_internal_print_type): Handle TYPE_CODE_PTR.
802
803 2018-11-19  Simon Marchi  <simon.marchi@ericsson.com>
804
805         * infrun.c (displaced_step_inferior_states): Change type to
806         std::forward_list.
807         (get_displaced_stepping_state): Adjust.
808         (displaced_step_in_progress_any_inferior): Adjust.
809         (add_displaced_stepping_state): Adjust.
810         (remove_displaced_stepping_state): Adjust.
811
812 2018-11-18  Tom Tromey  <tom@tromey.com>
813
814         PR build/23814:
815         * target-delegates.c: Rebuild.
816         * ia64-linux-nat.c (class ia64_linux_nat_target)
817         <have_steppable_watchpoint>: Use override.  Return true, not 1.
818         (ia64_linux_nat_target::can_use_hw_breakpoint): Rename.  Remove
819         "self" argument.
820         (ia64_linux_nat_target::low_new_thread): Rename.
821         (class ia64_linux_nat_target) <read_description>: Don't declare.
822         * target.h (struct target_ops) <have_steppable_watchpoint>: Return
823         bool.
824
825 2018-11-16  Alan Hayward  <alan.hayward@arm.com>
826
827         PR gdb/22736:
828         * aarch64-tdep.c (aarch64_push_dummy_call): Remove
829         lang_struct_return code.
830
831 2018-11-16  Alan Hayward  <alan.hayward@arm.com>
832
833         * aarch64-tdep.c (aarch64_push_dummy_call): Replace arg with
834         return_method.
835         * alpha-tdep.c (alpha_push_dummy_call): Likewise.
836         * amd64-tdep.c (amd64_push_arguments): Likewise.
837         (amd64_push_dummy_call): Likewise.
838         * amd64-windows-tdep.c (amd64_windows_push_arguments): Likewise.
839         * arc-tdep.c (arc_push_dummy_call): Likewise.
840         * arm-tdep.c (arm_push_dummy_call): Likewise.
841         * avr-tdep.c (avr_push_dummy_call): Likewise.
842         * bfin-tdep.c (bfin_push_dummy_call): Likewise.
843         * cris-tdep.c (cris_push_dummy_call): Likewise.
844         * csky-tdep.c (csky_push_dummy_call): Likewise.
845         * frv-tdep.c (frv_push_dummy_call): Likewise.
846         * gdbarch.c: Regenerate.
847         * gdbarch.h: Regenerate.
848         * gdbarch.sh (gdbarch_push_dummy_call): Replace arg with
849         return_method.
850         * h8300-tdep.c (h8300_push_dummy_call): Likewise.
851         * hppa-tdep.c (hppa32_push_dummy_call): Likewise.
852         (hppa64_push_dummy_call): Likewise.
853         * i386-darwin-tdep.c (i386_darwin_push_dummy_call): Likewise.
854         * i386-tdep.c (i386_push_dummy_call): Likewise.
855         * ia64-tdep.c (ia64_push_dummy_call): Likewise.
856         * infcall.c (call_function_by_hand_dummy): Likewise.
857         * iq2000-tdep.c (iq2000_push_dummy_call): Likewise.
858         * lm32-tdep.c (lm32_push_dummy_call): Likewise.
859         * m32c-tdep.c (m32c_push_dummy_call): Likewise.
860         * m32r-tdep.c (m32r_push_dummy_call): Likewise.
861         * m68hc11-tdep.c (m68hc11_push_dummy_call): Likewise.
862         * m68k-tdep.c (m68k_push_dummy_call): Likewise.
863         * mep-tdep.c (mep_push_dummy_call): Likewise.
864         * mips-tdep.c (mips_eabi_push_dummy_call): Likewise.
865         (mips_n32n64_push_dummy_call): Likewise.
866         (mips_o32_push_dummy_call): Likewise.
867         (mips_o64_push_dummy_call): Likewise.
868         * mn10300-tdep.c (mn10300_push_dummy_call): Likewise.
869         * msp430-tdep.c (msp430_push_dummy_call): Likewise.
870         * nds32-tdep.c (nds32_push_dummy_call): Likewise.
871         * nios2-tdep.c (nios2_push_dummy_call): Likewise.
872         * or1k-tdep.c (or1k_push_dummy_call): Likewise.
873         * ppc-sysv-tdep.c (ppc_sysv_abi_push_dummy_call): Likewise.
874         (ppc64_sysv_abi_push_dummy_call): Likewise.
875         * ppc-tdep.h (ppc_sysv_abi_push_dummy_call): Likewise.
876         (ppc64_sysv_abi_push_dummy_call): Likewise.
877         * riscv-tdep.c (riscv_push_dummy_call): Likewise.
878         * rl78-tdep.c (rl78_push_dummy_call): Likewise.
879         * rs6000-aix-tdep.c (rs6000_push_dummy_call): Likewise.
880         * rs6000-lynx178-tdep.c (rs6000_lynx178_push_dummy_call): Likewise.
881         * rx-tdep.c (rx_push_dummy_call): Likewise.
882         * s390-tdep.c (s390_push_dummy_call): Likewise.
883         * score-tdep.c (score_push_dummy_call): Likewise.
884         * sh-tdep.c (sh_push_dummy_call_fpu): Likewise.
885         (sh_push_dummy_call_nofpu): Likewise.
886         * sparc-tdep.c (sparc32_store_arguments): Likewise.
887         (sparc32_push_dummy_call): Likewise.
888         * sparc64-tdep.c (sparc64_store_arguments): Likewise.
889         (sparc64_push_dummy_call): Likewise.
890         * spu-tdep.c (spu_push_dummy_call): Likewise.
891         * tic6x-tdep.c (tic6x_push_dummy_call): Likewise.
892         * tilegx-tdep.c (tilegx_push_dummy_call): Likewise.
893         * v850-tdep.c (v850_push_dummy_call): Likewise.
894         * vax-tdep.c (vax_push_dummy_call): Likewise.
895         * xstormy16-tdep.c (xstormy16_push_dummy_call): Likewise.
896         * xtensa-tdep.c (xtensa_push_dummy_call): Likewise.
897
898 2018-11-16  Alan Hayward  <alan.hayward@arm.com>
899
900         * gdbarch.sh (enum function_call_return_method): Add enum.
901         * gdbarch.h: Regenerate.
902         * infcall.c (call_function_by_hand_dummy): Replace vars with enum.
903
904 2018-11-15  Joel Brobecker  <brobecker@adacore.com>
905
906         * unittests/copy_bitwise-selftests.c: New file.
907         * utils.c (selftests::bits_to_str, selftests::check_copy_bitwise)
908         (selftests::copy_bitwise_tests): Delete, moving this code to
909         unittests/copy_bitwise-selftests.c instead.
910         (_initialize_utils): Do not register copy_bitwise tests.
911         * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
912         unittests/copy_bitwise-selftests.c.
913
914 2018-11-14  Joel Brobecker  <brobecker@adacore.com>
915
916         * ada-lang.c (move_bits): Delete. Update all callers to use
917         copy_bitwise instead.
918         * dwarf2loc.c (copy_bitwise, bits_to_str::bits_to_str)
919         (selftests::check_copy_bitwise, selftests::copy_bitwise_tests):
920         Move from here to utils.c.
921         (_initialize_dwarf2loc): Remove call to register copy_bitwise
922         selftests.
923         * utils.h (copy_bitwise): Add declaration.
924         * utils.c (copy_bitwise, bits_to_str::bits_to_str)
925         (selftests::check_copy_bitwise, selftests::copy_bitwise_tests):
926         Moved here from dwarf2loc.c.
927         (_initialize_utils): Register copy_bitwise selftests.
928
929 2018-11-14  Jim Wilson  <jimw@sifive.com>
930
931         * riscv-tdep.c (struct riscv_arg_info): New field is_unnamed.
932         (riscv_call_arg_scalar_int): If unnamed arg with twice xlen alignment,
933         then increment next_regnum if odd.
934         (riscv_arg_location): New arg is_unnamed.  Set ainfo->is_unnamed.
935         (riscv_push_dummy_call): New local ftype.  Call check_typedef to set
936         function type.  Pass new arg to riscv_arg_location based on function
937         type.
938         (riscv_return_value): Pass new arg to riscv_arg_location.
939
940         * riscv-tdep.c (BIGGEST_ALIGNMENT): New.
941         (riscv_type_alignment) <TYPE_CODE_ARRAY>: If TYPE_VECTOR, return min
942         of TYPE_LENGTH and BIGGEST_ALIGNMENT.
943
944         * riscv-tdep.c (riscv_call_arg_scalar_int): Use std::min when
945         setting len.  New local align, set to max of arg align and xlen,
946         and pass to first riscv_assign_stack_location call.
947
948 2018-11-12  Simon Marchi  <simon.marchi@polymtl.ca>
949
950         * skip.c (complete_skip_number): New function.
951         (_initialize_step_skip): Add completers to some skip commands.
952
953 2018-11-09  Tom Tromey  <tom@tromey.com>
954
955         * remote.c (remote_g_packet_guess_s): Remove typedef and DEF_VEC.
956         (struct remote_g_packet_data): Derive from allocate_on_obstack.
957         <guesses>: Now a std::vector.
958         (remote_g_packet_data_init, register_remote_g_packet_guess):
959         Update.
960         (remote_read_description_p): Update.  Return bool.
961         (remote_target::read_description): Update.
962         (struct remote_g_packet_guess): Add constructor.
963
964 2018-11-09  Tom Tromey  <tom@tromey.com>
965
966         * common/scoped_fd.h (class scoped_fd): Add move constructor and
967         move assignment operator.
968         * psymtab.c (psymtab_to_fullname): Update.
969         * source.h (open_source_file): Return scoped_fd.
970         (find_and_open_source): Likewise.
971         * source.c (open_source_file): Return scoped_fd.
972         (get_filename_and_charpos): Update.
973         (print_source_lines_base): Update.  Use scoped_fd::to_file.
974         (forward_search_command): Likewise.
975         (reverse_search_command): Likewise.
976         (find_and_open_source): Return scoped_fd.
977         * tui/tui-source.c (tui_set_source_content): Update.  Use
978         gdb_file_up.
979
980 2018-11-09  John Baldwin  <jhb@FreeBSD.org>
981
982         * minsyms.c (minimal_symbol_reader::install): Fix unsigned
983         overflow.
984
985 2018-11-09  Hafiz Abid Qadeer  <abidh@codesourcery.com>
986
987         * configure: Regenerate.
988
989 2018-11-09  Tom de Vries  <tdevries@suse.de>
990
991         * symtab.c (symbol_set_names): Call symbol_find_demangled_name
992         unconditionally, to set the language of the symbol.  Manage freeing
993         returned pointer using gdb::unique_xmalloc_ptr.
994
995 2018-11-08  Tom Tromey  <tom@tromey.com>
996
997         * record.c (require_record_target): Upper-case "<TAB>".
998
999 2018-11-08  Tom Tromey  <tom@tromey.com>
1000
1001         * python/lib/gdb/command/pretty_printers.py
1002         (InfoPrettyPrinter.invoke): Don't indent "objfile" heading.
1003
1004 2018-11-08  Tom Tromey  <tom@tromey.com>
1005
1006         PR gdb/23555:
1007         PR gdb/23838:
1008         * target.h (target_supports_terminal_ours): Return bool.
1009         * target.c (target_supports_terminal_ours): Handle case where
1010         current_top_target returns nullptr.  Return bool.
1011
1012 2018-11-08  Joel Brobecker  <brobecker@adacore.com>
1013
1014         * aarch64-tdep.c (aapcs_is_vfp_call_or_return_candidate_1):
1015         return the correct count for potential HFAs.
1016
1017 2018-11-08  Jan Beulich  <jbeulich@suse.com>
1018
1019         * i387-tdep.c (i387_supply_xsave): Split handling of
1020         X86_XSTATE_ZMM_H and X86_XSTATE_ZMM.
1021         (i387_collect_xsave): Likewise.
1022
1023 2018-11-08  Andrew Burgess  <andrew.burgess@embecosm.com>
1024
1025         * riscv-tdep.c (riscv_insn::decode): Update header comment.
1026         (riscv_frame_this_id): Catch errors thrown while building the
1027         frame cache, leave the frame id as the default, which is the outer
1028         frame id.
1029
1030 2018-11-07  Joel Brobecker  <brobecker@adacore.com>
1031
1032         * ada-lang.c (read_atcb): Only set task_info->called_task if
1033         task_info->state == Entry_Caller_Sleep.
1034         (print_ada_task_info): Do not check task_info->state before
1035         checking task_info->called_task.
1036         (info_task): Likewise.
1037
1038 2018-11-07  Joel Brobecker  <brobecker@adacore.com>
1039
1040         * ada-tasks.c (read_atcb): Clear task_info before computing
1041         the value of each of its fields.
1042
1043 2018-11-07  Andrew Burgess  <andrew.burgess@embecosm.com>
1044
1045         * dwarf2read.c (dwarf2_init_integer_type): Check for name being
1046         NULL before dereferencing it.
1047
1048 2018-11-06  Tom de Vries  <tdevries@suse.de>
1049
1050         * linux-tdep.c (linux_vsyscall_range_raw): Use xmalloc to allocate
1051         program headers.
1052
1053 2018-11-06  Max Filippov  <jcmvbkbc@gmail.com>
1054
1055         * configure.tgt (xtensa*-*-linux*): Change to xtensa*-*-*linux*
1056         so that it applies to uclinux as well.
1057
1058 2018-11-06  Marius Muench  <marius.muench@eurecom.fr>
1059
1060         * arm-tdep.c (arm_scan_prologue): Don't dereference FP reg
1061         when on AAPCS.
1062
1063 2018-11-06  John Baldwin  <jhb@FreeBSD.org>
1064
1065         * riscv-fbsd-nat.c (getregs_supplies): Return true for
1066         RISCV_CSR_SSTATUS_REGNUM.
1067
1068 2018-11-04  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
1069
1070         * source.c (open_source_file): Fix leak by transferring the
1071         current s->fullname to the unique_xmalloc_ptr fullname given
1072         to find_and_open_source.
1073
1074 2018-11-04  Tom Tromey  <tom@tromey.com>
1075
1076         * varobj.c (install_default_visualizer): Update.
1077         * python/python-internal.h (gdbpy_get_varobj_pretty_printer):
1078         Return gdbpy_ref.
1079         * python/py-prettyprint.c (search_pp_list): Return gdbpy_ref.
1080         (find_pretty_printer_from_progspace)
1081         (find_pretty_printer_from_gdb, find_pretty_printer)
1082         (gdbpy_get_varobj_pretty_printer): Return gdbpy_ref.
1083         (gdbpy_get_varobj_pretty_printer, gdbpy_default_visualizer):
1084         Update.
1085
1086 2018-11-04  Tom Tromey  <tom@tromey.com>
1087
1088         * python/python.c (gdbpy_parameter_value): Update.
1089         * python/python-internal.h (python_string_to_unicode)
1090         (python_string_to_target_python_string)
1091         (host_string_to_python_string): Return gdbpy_ref.
1092         * python/py-utils.c (python_string_to_unicode)
1093         (unicode_to_encoded_python_string)
1094         (unicode_to_target_python_string)
1095         (python_string_to_target_string)
1096         (python_string_to_target_python_string): Return gdbpy_ref.
1097         (python_string_to_host_string): Update.
1098         (host_string_to_python_string): Return gdbpy_ref.
1099         * python/py-symtab.c (stpy_get_filename, stpy_get_producer)
1100         (stpy_fullname): Update.
1101         * python/py-progspace.c (pspy_get_filename, pspy_solib_name):
1102         Update.
1103         * python/py-prettyprint.c (print_string_repr): Update.
1104         * python/py-objfile.c (objfpy_get_filename, objfpy_get_username)
1105         (objfpy_get_build_id): Update.
1106         * python/py-breakpoint.c (bppy_get_location)
1107         (bppy_get_expression, bppy_get_condition, bppy_get_commands):
1108         Update.
1109
1110 2018-11-04  Tom Tromey  <tom@tromey.com>
1111
1112         * python/python-internal.h (gdb_py_object_from_longest)
1113         (gdb_py_object_from_ulongest): Return gdbpy_ref.
1114         * python/py-value.c (valpy_int): Update.
1115         * python/py-utils.c (gdb_py_object_from_longest): Return
1116         gdbpy_ref.
1117         (gdb_py_object_from_ulongest): Likewise.
1118         * python/py-type.c (typy_get_alignof): Update.
1119         * python/py-linetable.c (ltpy_get_all_source_lines)
1120         (ltpy_entry_get_line, ltpy_entry_get_pc): Update.
1121         * python/py-block.c (blpy_get_start, blpy_get_end): Update.
1122
1123 2018-11-03  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
1124
1125         * ada-lang.c (_initialize_ada_language): Fix typo.
1126
1127 2018-11-03  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
1128
1129         * language.c (type): Remove.
1130         (_initialize_language): Remove assignment to type.
1131
1132 2018-11-02  Joel Brobecker  <brobecker@adacore.com>
1133
1134         * aarch64-ravenscar-thread.h, aarch64-ravenscar-thread.c: New files.
1135         * aarch64-tdep.c: #include "aarch64-ravenscar-thread.h".
1136         (aarch64_gdbarch_init): Add call to register_aarch64_ravenscar_ops.
1137         * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-ravenscar-thread.o.
1138         (HFILES_NO_SRCDIR): Add aarch64-ravenscar-thread.h.
1139         (ALLDEPFILES): Add aarch64-ravenscar-thread.c.
1140         * configure.tgt (cpu_obs) [aarch64*-*-*]: Add ravenscar-thread.o
1141         and aarch64-ravenscar-thread.o.
1142         * NEWS: Add entry documenting Ravenscar tasking support
1143         on AArch64 ELF.
1144
1145 2018-11-02  Matthew Malcomson  <matthew.malcomson@arm.com>
1146
1147         * symtab.c (info_functions_command): Initialize quiet flag.
1148         * stack.c (info_args_command): Likewise.
1149
1150 2018-11-01  Jim Wilson  <jimw@sifive.com>
1151
1152         * riscv-tdep.c (riscv_breakpoint_kind_from_pc): New local unaligned_p.
1153         Set if pcptr if unaligned.  Return 2 if unaligned_p true.  Update
1154         debugging messages.
1155
1156 2018-11-01  Joel Brobecker  <brobecker@adacore.com>
1157
1158         * ada-lang.c (ada_watch_location_expression): New function.
1159         (ada_language_defn): Set la_watch_location_expression to
1160         ada_watch_location_expression.
1161
1162 2018-11-01  Joel Brobecker  <brobecker@adacore.com>
1163
1164         * print-utils.c (int_string): Remove unnecessary trailing spaces.
1165
1166 2018-11-01  Joel Brobecker  <brobecker@adacore.com>
1167
1168         * rs6000-tdep.c (skip_prologue): Fix potential negative left
1169         shifting.
1170
1171 2018-11-01  Jerome Guitton  <guitton@adacore.com>
1172             Joel Brobecker  <brobecker@adacore.com>
1173
1174         * defs.h (enum gdb_osabi): Add GDB_OSABI_PIKEOS.
1175         * osabi.c (gdb_osabi_names): Add name for GDB_OSABI_PIKEOS.
1176         * arm-pikeos-tdep.c: New file.
1177         * configure.tgt: Add arm-pikeos-tdep.o to the case of ARM
1178         embedded system.
1179         * Makefile.in (ALL_TARGET_OBS): Add arm-pikeos-tdep.o.
1180
1181 2018-11-01  Simon Marchi  <simon.marchi@ericsson.com>
1182
1183         * common/pathstuff.c (get_standard_temp_dir): New.
1184         * common/pathstuff.h (get_standard_temp_dir): New.
1185         * config.in: Re-generate.
1186         * configure: Re-generate.
1187         * configure.ac: Don't check for mkdtemp.
1188         * gnulib/aclocal-m4-deps.mk: Re-generate.
1189         * gnulib/aclocal.m4: Re-generate.
1190         * gnulib/config.in: Re-generate.
1191         * gnulib/configure: Re-generate.
1192         * gnulib/import/Makefile.am: Re-generate.
1193         * gnulib/import/Makefile.in: Re-generate.
1194         * gnulib/import/m4/gnulib-cache.m4: Re-generate.
1195         * gnulib/import/m4/gnulib-comp.m4: Re-generate.
1196         * gnulib/import/m4/mkdtemp.m4: New file.
1197         * gnulib/import/mkdtemp.c: New file.
1198         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES):
1199         Add mkdtemp module.
1200         * unittests/mkdir-recursive-selftests.c (test): Use
1201         get_standard_temp_dir.
1202         (_initialize_mkdir_recursive_selftests): Remove HAVE_MKDTEMP
1203         ifdef.
1204         * compile/compile.c (get_compile_file_tempdir): Likewise.
1205
1206 2018-11-01  Sangamesh Mallayya <sangamesh.swamy@in.ibm.com>
1207
1208         * rs6000-aix-tdep.c: Include "trad-frame.h" and "frame-unwind.h".
1209         (SIG_FRAME_LR_OFFSET64): New define.
1210         (SIG_FRAME_FP_OFFSET64): New define.
1211         (aix_sighandle_frame_cache): New Function.
1212         (aix_sighandle_frame_this_id): New Function.
1213         (aix_sighandle_frame_prev_register): New Function.
1214         (aix_sighandle_frame_sniffer): New Function.
1215         (aix_sighandle_frame_unwind): New global variable.
1216         (rs6000_aix_init_osabi): Install new frame unwinder.
1217
1218 2018-10-31  Sergio Durigan Junior  <sergiodj@redhat.com>
1219
1220         PR gdb/23835
1221         * common/common-defs.h: Don't redefine _FORTIFY_SOURCE if it's
1222         already defined.
1223
1224 2018-10-31  Pedro Franco de Carvalho  <pedromfc@linux.ibm.com>
1225
1226         * ppc-linux-nat.c: Include nat/linux-ptrace.h.
1227
1228 2018-10-31  Andrew Burgess  <andrew.burgess@embecosm.com>
1229
1230         * dwarf2read.c (struct dwarf2_cu): Add producer_is_icc field.
1231         (producer_is_icc): New function.
1232         (check_producer): Set producer_is_icc field on dwarf2_cu.
1233         (dwarf2_init_integer_type): New function.
1234         (read_base_type): Call dwarf2_init_integer_type instead of
1235         init_integer_type in all cases.
1236         (dwarf2_cu::dwarf2_cu): Initialise producer_is_icc field.
1237         * valprint.c (maybe_negate_by_bytes): Add an assertion that the
1238         LEN is greater than 0.
1239
1240 2018-10-30  Tom Tromey  <tom@tromey.com>
1241
1242         * main.c (captured_main_1): Check return value of bfd_init.
1243
1244 2018-10-29  Sergio Durigan Junior  <sergiodj@redhat.com>
1245
1246         * common/offset-type.h (DEFINE_OFFSET_REL_OP): Delete.
1247         Adjust comments.
1248
1249 2018-10-29  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
1250
1251         * procfs.c: Include common/pathstuff.h.
1252
1253 2018-10-28  Andrew Burgess  <andrew.burgess@embecosm.com>
1254
1255         * riscv-linux-nat.c (riscv_linux_nat_target::fetch_registers):
1256         Add missing braces.  No functional change.
1257
1258 2018-10-27  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
1259
1260         * macrocmd.c (info_macro_command): Use report_unrecognized_option_error
1261         to report a bad option and fix indentation.
1262         * demangle.c (demangle_command): Use report_unrecognized_option_error
1263         to report a bad option and correctly report the bad option.
1264
1265 2018-10-27  Tom Tromey  <tom@tromey.com>
1266
1267         PR cli/23364:
1268         * darwin-nat.c (copied_shell): New global.
1269         (may_have_sip): Rename from should_disable_startup_with_shell.
1270         (copy_shell_to_cache, maybe_cache_shell): New functions.
1271         (darwin_nat_target::create_inferior): Update.  Use
1272         copied_shell.
1273
1274 2018-10-27  Tom Tromey  <tom@tromey.com>
1275
1276         * unittests/scoped_fd-selftests.c (test_to_file): New function.
1277         (run_tests): Call test_to_file.
1278         * dwarf-index-write.c (write_psymtabs_to_index): Do not reopen
1279         temporary files.
1280         * common/scoped_fd.h (scoped_fd::to_file): New method.
1281
1282 2018-10-27  Tom Tromey  <tom@tromey.com>
1283
1284         * unittests/scoped_mmap-selftests.c (test_normal): Use
1285         gdb_mkostemp_cloexec.
1286         * unittests/scoped_fd-selftests.c (test_destroy, test_release):
1287         Use gdb_mkostemp_cloexec.
1288         * gnulib/aclocal-m4-deps.mk, gnulib/aclocal.m4,
1289         gnulib/config.in, gnulib/configure,
1290         gnulib/import/Makefile.am, gnulib/import/Makefile.in,
1291         gnulib/import/m4/gnulib-cache.m4,
1292         gnulib/import/m4/gnulib-comp.m4: Update.
1293         * gnulib/import/m4/mkostemp.m4: New file.
1294         * gnulib/import/m4/mkstemp.m4: Remove.
1295         * gnulib/import/mkostemp.c: New file.
1296         * gnulib/import/mkstemp.m4: Remove.
1297         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Remove
1298         mkstemp, add mkostemp.  Apply new patch.
1299         * gnulib/import/stdlib.in.h: Apply patch.
1300         * gnulib/patches/0002-mkostemp-mkostemps-Fix-compilation-error-in-C-mode-o.patch:
1301         New file.
1302         * dwarf-index-write.c (write_psymtabs_to_index): Use
1303         gdb_mkostemp_cloexec.
1304         * common/filestuff.h (gdb_mkostemp_cloexec): New function.
1305
1306 2018-10-27  Tom Tromey  <tom@tromey.com>
1307
1308         * unittests/mkdir-recursive-selftests.c: New file.
1309         * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
1310         unittests/mkdir-recursive-selftests.c.
1311         * dwarf-index-cache.c (mkdir_recursive): Move to
1312         common/filestuff.c.
1313         (index_cache::store): Check return value of mkdir_recursive.
1314         (create_dir_and_check, test_mkdir_recursive): Move to new file.
1315         (_initialize_index_cache): Don't register test.
1316         * common/filestuff.h (mkdir_recursive): Declare.
1317         * common/filestuff.c (mkdir_recursive): Move from
1318         dwarf-index-cache.c.  Return bool.
1319
1320 2018-10-27  Tom Tromey  <tom@tromey.com>
1321
1322         * dwarf-index-write.c (write_psymtabs_to_index): Move
1323         make_temp_filename to common/pathstuff.c.
1324         * common/pathstuff.h (make_temp_filename): Declare.
1325         * common/pathstuff.c (make_temp_filename): New function, moved
1326         from dwarf-index-write.c.
1327
1328 2018-10-27  Tom Tromey  <tom@tromey.com>
1329
1330         * procfs.c (procfs_target::create_inferior): Use get_shell.
1331         * cli/cli-cmds.c (shell_escape): Use get_shell.
1332         * windows-nat.c (windows_nat_target::create_inferior): Use
1333         get_shell.
1334         * common/pathstuff.c (get_shell): New function.
1335         * nat/fork-inferior.c (SHELL_FILE, get_startup_shell): Remove.
1336         (fork_inferior): Use get_shell.
1337         * common/pathstuff.h (get_shell): Declare.
1338
1339 2018-10-27  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
1340
1341         * NEWS: Mention changes to 'info [args|functions|locals|variables]'
1342
1343 2018-10-27  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
1344
1345         * stack.c (print_variable_and_value_data): Add preg and treg.
1346         (print_frame_local_vars): Add quiet, regexp and t_regexp arguments,
1347         and update callers.
1348         (print_frame_arg_vars): Likewise.
1349         (prepare_reg): New function.
1350         (info_locals_command): Extract info print args and use them.
1351         (info_args_command): Likewise.
1352         (_initialize_stack): Modify on-line help.
1353         * symtab.c (treg_matches_sym_type_name): New function.
1354         (search_symbols): New arg t_regexp.
1355         (symtab_symbol_info): New args quiet, regexp, t_regexp.
1356         (info_variables_command): Extract info print args and use them.
1357         (info_functions_command): Likewise.
1358         (info_types_command): Update call to symtab_symbol_info.
1359         (_initialize_symtab): Modify on-line help.
1360         * symtab.h (treg_matches_sym_type_name): New function.
1361         (search_symbols): New t_regexp arg.
1362
1363 2018-10-27  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
1364
1365         * cli-utils.c (extract_arg_maybe_quoted): New function.
1366         (extract_info_print_args): New function.
1367         (info_print_args_help): New function.
1368         (report_unrecognized_option_error): New function.
1369         * cli-utils.h (extract_arg_maybe_quoted): New function.
1370         (extract_info_print_args): New function.
1371         (info_print_args_help): New function.
1372         (report_unrecognized_option_error): New function.
1373
1374 2018-10-26  Tom Tromey  <tom@tromey.com>
1375
1376         * dwarf2read.c (recursively_compute_inclusions): Use std::vector.
1377         (compute_compunit_symtab_includes): Update.
1378         * symtab.h: (symtab_ptr): Remove typedef.  Don't define a VEC.
1379         (compunit_symtab_ptr): Likewise.
1380
1381 2018-10-26  John Baldwin  <jhb@FreeBSD.org>
1382
1383         * fbsd-tdep.c (fbsd_print_auxv_entry): Only use
1384         default_print_auxv_entry for specific tag values.
1385
1386 2018-10-26  John Baldwin  <jhb@FreeBSD.org>
1387
1388         * fbsd-tdep.c (fbsd_print_auxv_entry): Handle AT_FREEBSD_HWCAP2.
1389
1390 2018-10-26  Jim Wilson  <jimw@sifive.com>
1391
1392         * riscv-linux-tdep.c: Include tramp-frame.h and trad-frame.h.
1393         (riscv_linux_sigframe_init): Declare.
1394         (RISCV_INST_LI_A7_SIGRETURN, RISCV_INT_ECALL): New.
1395         (riscv_linux_sigframe): New.
1396         (SIGFRAME_SIGINFO_SIZE, UCONTEXT_MCONTEXT_OFFSET): New.
1397         (riscv_linux_sigframe_init): Define.
1398         (riscv_linux_init_abi): Call tramp_frame_prepend_unwinder.
1399
1400         * riscv-tdep.c (riscv_isa_xlen): Refer to riscv-tdep.h comment.
1401         (riscv_isa_flen): Likewise.  Drop static.
1402         * riscv-tdep.h (riscv_isa_xlen): Move riscv-tdep.c comment to here.
1403         (riscv_isa_flen): Likewise.  Declare.
1404
1405 2018-10-26  Edjunior Barbosa Machado  <emachado@linux.vnet.ibm.com>
1406             Pedro Franco de Carvalho  <pedromfc@linux.ibm.com>
1407
1408         * arch/ppc-linux-tdesc.h (tdesc_powerpc_isa207_htm_vsx32l)
1409         (tdesc_powerpc_isa207_htm_vsx64l): Declare.
1410         * arch/ppc-linux-common.h (PPC_LINUX_SIZEOF_TM_SPRREGSET)
1411         (PPC32_LINUX_SIZEOF_CGPRREGSET, PPC64_LINUX_SIZEOF_CGPRREGSET)
1412         (PPC_LINUX_SIZEOF_CFPRREGSET, PPC_LINUX_SIZEOF_CVMXREGSET)
1413         (PPC_LINUX_SIZEOF_CVSXREGSET, PPC_LINUX_SIZEOF_CPPRREGSET)
1414         (PPC_LINUX_SIZEOF_CDSCRREGSET, PPC_LINUX_SIZEOF_CTARREGSET):
1415         Define.
1416         (struct ppc_linux_features) <htm>: New field.
1417         (ppc_linux_no_features): Add initializer for htm field.
1418         * arch/ppc-linux-common.c (ppc_linux_match_description): Return
1419         new tdescs.
1420         * nat/ppc-linux.h (PPC_FEATURE2_HTM, NT_PPC_TM_CGPR)
1421         (NT_PPC_TM_CFPR, NT_PPC_TM_CVMX, NT_PPC_TM_CVSX)
1422         (NT_PPC_TM_SPR, NT_PPC_TM_CTAR, NT_PPC_TM_CPPR, NT_PPC_TM_CDSCR):
1423         Define if not already defined.
1424         * features/Makefile (WHICH): Add rs6000/powerpc-isa207-htm-vsx32l
1425         and rs6000/powerpc-isa207-htm-vsx64l.
1426         (XMLTOC): Add rs6000/powerpc-isa207-htm-vsx32l.xml and
1427         rs6000/powerpc-isa207-htm-vsx64l.xml.
1428         * features/rs6000/power-htm-spr.xml: New file.
1429         * features/rs6000/power-htm-core.xml: New file.
1430         * features/rs6000/power64-htm-core.xml: New file.
1431         * features/rs6000/power-htm-fpu.xml: New file.
1432         * features/rs6000/power-htm-altivec.xml: New file.
1433         * features/rs6000/power-htm-vsx.xml: New file.
1434         * features/rs6000/power-htm-ppr.xml: New file.
1435         * features/rs6000/power-htm-dscr.xml: New file.
1436         * features/rs6000/power-htm-tar.xml: New file.
1437         * features/rs6000/powerpc-isa207-htm-vsx32l.xml: New file.
1438         * features/rs6000/powerpc-isa207-htm-vsx64l.xml: New file.
1439         * features/rs6000/powerpc-isa207-htm-vsx32l.c: Generate.
1440         * features/rs6000/powerpc-isa207-htm-vsx64l.c: Generate.
1441         * regformats/rs6000/powerpc-isa207-htm-vsx32l.dat: Generate.
1442         * regformats/rs6000/powerpc-isa207-htm-vsx64l.dat: Generate.
1443         * ppc-linux-nat.c (fetch_register, fetch_ppc_registers): Call
1444         fetch_regset with HTM regsets.
1445         (store_register, store_ppc_registers): Call store_regset with HTM
1446         regsets.
1447         (ppc_linux_nat_target::read_description): Set htm field in the
1448         features struct if needed.
1449         * ppc-linux-tdep.c: Include
1450         features/rs6000/powerpc-isa207-htm-vsx32l.c and
1451         features/rs6000/powerpc-isa207-htm-vsx64l.c.
1452         (ppc32_regmap_tm_spr, ppc32_regmap_cgpr, ppc64_le_regmap_cgpr)
1453         (ppc64_be_regmap_cgpr, ppc32_regmap_cfpr, ppc32_le_regmap_cvmx)
1454         (ppc32_be_regmap_cvmx, ppc32_regmap_cvsx, ppc32_regmap_cppr)
1455         (ppc32_regmap_cdscr, ppc32_regmap_ctar): New globals.
1456         (ppc32_linux_tm_sprregset, ppc32_linux_cgprregset)
1457         (ppc64_be_linux_cgprregset, ppc64_le_linux_cgprregset)
1458         (ppc32_linux_cfprregset, ppc32_le_linux_cvmxregset)
1459         (ppc32_be_linux_cvmxregset, ppc32_linux_cvsxregset)
1460         (ppc32_linux_cpprregset, ppc32_linux_cdscrregset)
1461         (ppc32_linux_ctarregset): New globals.
1462         (ppc_linux_cgprregset, ppc_linux_cvmxregset): New functions.
1463         (ppc_linux_collect_core_cpgrregset): New function.
1464         (ppc_linux_iterate_over_regset_sections): Call back with the htm
1465         regsets.
1466         (ppc_linux_core_read_description): Check if the tm spr section is
1467         present and set htm in the features struct.
1468         (_initialize_ppc_linux_tdep): Call
1469         initialize_tdesc_powerpc_isa207_htm_vsx32l and
1470         initialize_tdesc_powerpc_isa207_htm_vsx64l.
1471         * ppc-linux-tdep.h (ppc_linux_cgprregset, ppc_linux_cvmxregset):
1472         Declare.
1473         (ppc32_linux_tm_sprregset, ppc32_linux_cfprregset)
1474         (ppc32_linux_cvsxregset, ppc32_linux_cpprregset)
1475         (ppc32_linux_cdscrregset, ppc32_linux_ctarregset): Declare.
1476         * ppc-tdep.h (struct gdbarch_tdep) <have_htm_spr, have_htm_core>:
1477         New fields.
1478         <have_htm_fpu, have_htm_altivec, have_htm_vsx>:
1479         Likewise.
1480         <ppc_cppr_regnum, ppc_cdscr_regnum, ppc_ctar_regnum>: Likewise.
1481         <ppc_cdl0_regnum, ppc_cvsr0_regnum, ppc_cefpr0_regnum>: Likewise.
1482         (enum) <PPC_TFHAR_REGNUM, PPC_TEXASR_REGNUM, PPC_TFIAR_REGNUM>:
1483         New enum fields.
1484         <PPC_CR0_REGNUM, PPC_CCR_REGNUM, PPC_CXER_REGNUM>: Likewise.
1485         <PPC_CLR_REGNUM, PPC_CCTR_REGNUM, PPC_CF0_REGNUM>: Likewise.
1486         <PPC_CFPSCR_REGNUM, PPC_CVR0_REGNUM, PPC_CVSCR_REGNUM>: Likewise.
1487         <PPC_CVRSAVE_REGNUM, PPC_CVSR0_UPPER_REGNUM>: Likewise.
1488         <PPC_CPPR_REGNUM, PPC_CDSCR_REGNUM>: Likewise.
1489         <PPC_CTAR_REGNUM>: Likewise.
1490         (PPC_IS_TMSPR_REGNUM, PPC_IS_CKPTGP_REGNUM, PPC_IS_CKPTFP_REGNUM)
1491         (PPC_IS_CKPTVMX_REGNUM, PPC_IS_CKPTVSX_REGNUM): Define.
1492         * rs6000-tdep.c (IS_CDFP_PSEUDOREG, IS_CVSX_PSEUDOREG)
1493         (IS_CEFP_PSEUDOREG): Define.
1494         (rs6000_register_name): Hide the upper halves of checkpointed VSX
1495         registers.  Return names for the checkpointed DFP, VSX, and EFP
1496         pseudo registers.
1497         (rs6000_pseudo_register_type): Remove initial assert and raise an
1498         internal error in the else clause instead.  Return types for the
1499         checkpointed DFP, VSX, and EFP pseudo registers.
1500         (dfp_pseudo_register_read, dfp_pseudo_register_write): Handle
1501         checkpointed DFP pseudo registers.
1502         (vsx_pseudo_register_read, vsx_pseudo_register_write): Handle
1503         checkpointed VSX pseudo registers.
1504         (efp_pseudo_register_read, efp_pseudo_register_write): Rename
1505         from efpr_pseudo_register_read and
1506         efpr_pseudo_register_write.  Handle checkpointed EFP pseudo
1507         registers.
1508         (rs6000_pseudo_register_read, rs6000_pseudo_register_write):
1509         Handle checkpointed DFP, VSX, and EFP registers.
1510         (dfp_ax_pseudo_register_collect, vsx_ax_pseudo_register_collect)
1511         (efp_ax_pseudo_register_collect): New functions.
1512         (rs6000_ax_pseudo_register_collect): Move DFP, VSX and EFP pseudo
1513         register logic to new functions.  Handle checkpointed DFP, VSX,
1514         and EFP pseudo registers.
1515         (rs6000_gdbarch_init): Look for and validate the htm features.
1516         Include checkpointed DFP, VSX and EFP pseudo-registers.
1517         * NEWS: Mention access to PPR, DSCR, TAR, EBB/PMU registers and
1518         HTM registers.
1519
1520 2018-10-26  Pedro Franco de Carvalho  <pedromfc@linux.ibm.com>
1521
1522         * rs6000-tdep.c (rs6000_gdbarch_init): Reject tdescs with vsx but
1523         without altivec or fpu.
1524
1525 2018-10-26  Edjunior Barbosa Machado  <emachado@linux.vnet.ibm.com>
1526             Pedro Franco de Carvalho  <pedromfc@linux.ibm.com>
1527
1528         * arch/ppc-linux-common.h (PPC_LINUX_SIZEOF_EBBREGSET)
1529         (PPC_LINUX_SIZEOF_PMUREGSET): Declare.
1530         * nat/ppc-linux.h (PPC_FEATURE2_EBB, NT_PPC_EBB, NT_PPC_PMU):
1531         Define if not already defined.
1532         * features/rs6000/power-ebb.xml: New file.
1533         * features/rs6000/power-linux-pmu.xml: New file.
1534         * features/rs6000/powerpc-isa207-vsx32l.xml: Include ebb and pmu
1535         features.
1536         * features/rs6000/powerpc-isa207-vsx64l.xml: Likewise.
1537         * features/rs6000/powerpc-isa207-vsx32l.c: Re-generate.
1538         * features/rs6000/powerpc-isa207-vsx64l.c: Re-generate.
1539         * regformats/rs6000/powerpc-isa207-vsx32l.dat: Re-generate.
1540         * regformats/rs6000/powerpc-isa207-vsx64l.dat: Re-generate.
1541         * ppc-linux-nat.c (fetch_register, fetch_ppc_registers): Call
1542         fetch_regset with ebb and pmu regsets.
1543         (store_register, store_ppc_registers): Call store_regset with ebb
1544         and pmu regsets.
1545         (ppc_linux_nat_target::read_description): Set isa207 field in the
1546         features struct if ebb and pmu are avaiable.
1547         * ppc-linux-tdep.c (ppc32_regmap_ebb, ppc32_regmap_pmu)
1548         (ppc32_linux_ebbregset, ppc32_linux_pmuregset): New globals.
1549         (ppc_linux_iterate_over_regset_sections): Call back with the ebb
1550         and pmu regsets.
1551         (ppc_linux_core_read_description): Check if the pmu section is
1552         present and set isa207 in the features struct.
1553         * ppc-linux-tdep.h (ppc32_linux_ebbregset)
1554         (ppc32_linux_pmuregset): Declare.
1555         * ppc-tdep.h (struct gdbarch_tdep) <ppc_mmcr0_regnum>: New field.
1556         <ppc_mmcr2_regnum, ppc_siar_regnum, ppc_sdar_regnum>: New fields.
1557         <ppc_sier_regnum>: New field.
1558         (enum): <PPC_BESCR_REGNUM, PPC_EBBHR_REGNUM, PPC_EBBRR_REGNUM>:
1559         New enum values.
1560         <PPC_MMCR0_REGNUM, PPC_MMCR2_REGNUM, PPC_SIAR_REGNUM>: New enum
1561         values.
1562         <PPC_SDAR_REGNUM, PPC_SIER_REGNUM>: New enum values.
1563         (PPC_IS_EBB_REGNUM, PPC_IS_PMU_REGNUM): Define.
1564         * rs6000-tdep.c (rs6000_gdbarch_init): Look for and validate the
1565         ebb and pmu features.
1566
1567 2018-10-26  Edjunior Barbosa Machado  <emachado@linux.vnet.ibm.com>
1568             Pedro Franco de Carvalho  <pedromfc@linux.ibm.com>
1569
1570         * arch/ppc-linux-tdesc.h (tdesc_powerpc_isa207_vsx32l)
1571         (tdesc_powerpc_isa207_vsx64l): Declare.
1572         * arch/ppc-linux-common.h (PPC_LINUX_SIZEOF_TARREGSET): Define.
1573         (struct ppc_linux_features) <isa207>: New field.
1574         (ppc_linux_no_features): Add initializer for isa207 field.
1575         * arch/ppc-linux-common.c (ppc_linux_match_description): Return
1576         new tdescs.
1577         * nat/ppc-linux.h (PPC_FEATURE2_ARCH_2_07, PPC_FEATURE2_TAR)
1578         (NT_PPC_TAR): Define if not already defined.
1579         * features/Makefile (WHICH): Add rs6000/powerpc-isa207-vsx32l and
1580         rs6000/powerpc-isa207-vsx64l.
1581         (XMLTOC): Add rs6000/powerpc-isa207-vsx32l.xml and
1582         rs6000/powerpc-isa207-vsx64l.xml.
1583         * features/rs6000/power-tar.xml: New file.
1584         * features/rs6000/powerpc-isa207-vsx32l.xml: New file.
1585         * features/rs6000/powerpc-isa207-vsx64l.xml: New file.
1586         * features/rs6000/powerpc-isa207-vsx32l.c: Generate.
1587         * features/rs6000/powerpc-isa207-vsx64l.c: Generate.
1588         * regformats/rs6000/powerpc-isa207-vsx32l.dat: Generate.
1589         * regformats/rs6000/powerpc-isa207-vsx64l.dat: Generate.
1590         * ppc-linux-nat.c (fetch_register, fetch_ppc_registers): Call
1591         fetch_regset with the TAR regset.
1592         (store_register, store_ppc_registers): Call store_regset with the
1593         TAR regset.
1594         (ppc_linux_nat_target::read_description): Set isa207 field in the
1595         features struct if needed.
1596         * ppc-linux-tdep.c: Include
1597         features/rs6000/powerpc-isa207-vsx32l.c and
1598         features/rs6000/powerpc-isa207-vsx64l.c.
1599         (ppc32_regmap_tar, ppc32_linux_tarregset): New globals.
1600         (ppc_linux_iterate_over_regset_sections): Call back with the tar
1601         regset.
1602         (ppc_linux_core_read_description): Check if the tar section is
1603         present and set isa207 in the features struct.
1604         (_initialize_ppc_linux_tdep): Call
1605         initialize_tdesc_powerpc_isa207_vsx32l and
1606         initialize_tdesc_powerpc_isa207_vsx64l.
1607         * ppc-linux-tdep.h (ppc32_linux_tarregset): Declare.
1608         * ppc-tdep.h (gdbarch_tdep) <ppc_tar_regnum>: New field.
1609         (enum) <PPC_TAR_REGNUM>: New enum value.
1610         * rs6000-tdep.c (rs6000_gdbarch_init): Look for and validate tar
1611         feature.
1612         (ppc_process_record_op31): Record changes to TAR.
1613
1614 2018-10-26  Edjunior Barbosa Machado  <emachado@linux.vnet.ibm.com>
1615             Pedro Franco de Carvalho  <pedromfc@linux.ibm.com>
1616
1617         * arch/ppc-linux-tdesc.h (tdesc_powerpc_isa205_ppr_dscr_vsx32l)
1618         (tdesc_powerpc_isa205_ppr_dscr_vsx64l): Declare.
1619         * arch/ppc-linux-common.h (PPC_LINUX_SIZEOF_PPRREGSET)
1620         (PPC_LINUX_SIZEOF_DSCRREGSET): Define.
1621         (struct ppc_linux_features) <ppr_dscr>: New field.
1622         (ppc_linux_no_features): Add initializer for ppr_dscr field.
1623         * arch/ppc-linux-common.c (ppc_linux_match_description): Return
1624         new tdescs.
1625         * nat/ppc-linux.h (PPC_FEATURE2_DSCR, NT_PPC_PPR, NT_PPC_DSCR):
1626         Define if not already defined.
1627         * features/Makefile (WHICH): Add
1628         rs6000/powerpc-isa205-ppr-dscr-vsx32l and
1629         rs6000/powerpc-isa205-ppr-dscr-vsx64l.
1630         (XMLTOC): Add rs6000/powerpc-isa205-ppr-dscr-vsx32l.xml and
1631         rs6000/powerpc-isa205-ppr-dscr-vsx64l.xml.
1632         * features/rs6000/power-dscr.xml: New file.
1633         * features/rs6000/power-ppr.xml: New file.
1634         * features/rs6000/powerpc-isa205-ppr-dscr-vsx32l.xml: New file.
1635         * features/rs6000/powerpc-isa205-ppr-dscr-vsx64l.xml: New file.
1636         * features/rs6000/powerpc-isa205-ppr-dscr-vsx32l.c: Generate.
1637         * features/rs6000/powerpc-isa205-ppr-dscr-vsx64l.c: Generate.
1638         * regformats/rs6000/powerpc-isa205-ppr-dscr-vsx32l.dat: Generate.
1639         * regformats/rs6000/powerpc-isa205-ppr-dscr-vsx64l.dat: Generate.
1640         * ppc-linux-nat.c: Include <sys/uio.h>.
1641         (fetch_regset, store_regset, check_regset): New functions.
1642         (fetch_register, fetch_ppc_registers): Call fetch_regset with
1643         DSCR and PPR regsets.
1644         (store_register, store_ppc_registers): Call store_regset with
1645         DSCR and PPR regsets.
1646         (ppc_linux_get_hwcap2): New function.
1647         (ppc_linux_nat_target::read_description): Call
1648         ppc_linux_get_hwcap2 and check_regset, set ppr_dscr field in the
1649         features struct if needed.
1650         * ppc-linux-tdep.c: Include
1651         features/rs6000/powerpc-isa205-ppr-dscr-vsx32l.c and
1652         features/rs6000/powerpc-isa205-ppr-dscr-vsx64l.c.
1653         (ppc32_regmap_ppr, ppc32_regmap_dscr, ppc32_linux_pprregset)
1654         (ppc32_linux_dscrregset): New globals.
1655         (ppc_linux_iterate_over_regset_sections): Call back with the ppr
1656         and dscr regsets.
1657         (ppc_linux_core_read_description): Check if the ppr and dscr
1658         sections are present and set ppr_dscr in the features struct.
1659         (_initialize_ppc_linux_tdep): Call
1660         initialize_tdesc_powerpc_isa205_ppr_dscr_vsx32l and
1661         initialize_tdesc_powerpc_isa205_ppr_dscr_vsx64l.
1662         * ppc-linux-tdep.h (ppc32_linux_pprregset)
1663         (ppc32_linux_dscrregset): Declare.
1664         * ppc-tdep.h (struct gdbarch_tdep) <ppc_ppr_regnum>: New field.
1665         <ppc_dscr_regnum>: New field.
1666         (enum) <PPC_PPR_REGNUM, PPC_DSCR_REGNUM>: New enum values.
1667         * rs6000-tdep.c (rs6000_gdbarch_init): Look for and validate ppr
1668         and dscr features.
1669         (ppc_process_record_op31): Record changes to PPR and DSCR.
1670
1671 2018-10-26  Pedro Franco de Carvalho  <pedromfc@linux.ibm.com>
1672
1673         * rs6000-tdep.c (rs6000_gdbarch_init): Replace line wrapping by a
1674         second initializer line for the have_* variables.  Initialize
1675         have_fpu to 0 instead of 1.
1676
1677 2018-10-26  Pedro Franco de Carvalho  <pedromfc@linux.ibm.com>
1678
1679         * arch/ppc-linux-common.c (ppc_linux_match_description):
1680         Parenthesize tdesc assignements and indent them properly.
1681
1682 2018-10-26  Pedro Franco de Carvalho  <pedromfc@linux.ibm.com>
1683
1684         * ppc-linux-nat.c (fetch_register): Change if statement to else
1685         if.
1686         (store_register): Likewise.
1687
1688 2018-10-26  Pedro Franco de Carvalho  <pedromfc@linux.ibm.com>
1689
1690         * rs6000-tdep.c: Remove reggroups.h include.
1691         (rs6000_pseudo_register_reggroup_p): Remove.
1692         (rs6000_gdbarch_init): Remove call to
1693         set_tdesc_pseudo_register_reggroup_p.
1694
1695 2018-10-26  Pedro Franco de Carvalho  <pedromfc@linux.ibm.com>
1696
1697         * reggroups.c (default_register_reggroup_p): Return true for
1698         decfloat registers and float_reggroup.
1699
1700 2018-10-26  Pedro Franco de Carvalho  <pedromfc@linux.ibm.com>
1701
1702         * ppc-linux-tdep.c (ppc_linux_collect_vrregset): Remove.
1703         (ppc32_le_linux_vrregset, ppc32_be_linux_vrregset): Replace
1704         ppc_linux_collect_vrregset by regcache_collect_regset.
1705
1706 2018-10-26  Pedro Franco de Carvalho  <pedromfc@linux.ibm.com>
1707
1708         * linux-tdep.c (linux_collect_regset_section_cb): Use
1709         std::vector<gdb_byte> instead of char * and malloc for buf.
1710         Remove xfree.
1711
1712 2018-10-26  Sangamesh Mallayya <sangamesh.swamy@in.ibm.com>
1713
1714         * xcoffread.c (read_xcoff_symtab): Pass deduced language to
1715         symtab_start instead of always using language_unknown.
1716
1717 2018-10-26  Andrew Burgess  <andrew.burgess@embecosm.com>
1718
1719         * riscv-tdep.c (riscv_read_misa_reg): Update comment, remove
1720         READ_P parameter, catch and ignore register access errors from
1721         either the old or new MISA location.
1722         (riscv_has_feature): Update call to riscv_read_misa_reg.
1723
1724 2018-10-25  Andrew Burgess  <andrew.burgess@embecosm.com>
1725
1726         * python/py-function.c (convert_values_to_python): Return
1727         gdbpy_ref<>.  Add header comment.
1728         (fnpy_call): Adjust.
1729
1730 2018-10-25  Andrew Burgess  <andrew.burgess@embecosm.com>
1731
1732         * python/py-cmd.c (cmdpy_completer_helper): Return gdbpy_ref<>.
1733         (cmdpy_completer_handle_brkchars): Adjust.
1734         (cmdpy_completer): Adjust.
1735
1736 2018-10-25  Andrew Burgess  <andrew.burgess@embecosm.com>
1737
1738         * riscv-linux-nat.c (riscv_linux_nat_target::fetch_registers):
1739         Pass correct regnum to raw_supply_zeroed.
1740
1741 2018-10-23  Hafiz Abid Qadeer  <abidh@codesourcery.com>
1742
1743         * regcache.c (cooked_read_test): Add CSKY to the list of
1744         architectures with a save_reggroup
1745
1746 2018-10-23  Simon Marchi  <simon.marchi@polymtl.ca>
1747
1748         PR gdb/23368
1749         * infrun.c (follow_exec): In the follow_exec_mode_new case,
1750         transfer terminal state from old new new inferior.
1751         * terminal.h (swap_terminal_info): New function.
1752         * inflow.c (swap_terminal_info): New function.
1753
1754 2018-10-23  Tom Tromey  <tom@tromey.com>
1755
1756         * record-btrace.c (get_thread_current_frame_id): Rename from
1757         get_thread_current_frame.  Return a frame_id.
1758         (record_btrace_start_replaying): Update.
1759
1760 2018-10-23  Andrew Burgess  <andrew.burgess@embecosm.com>
1761
1762         * riscv-tdep.c (riscv_register_name): Use the user-friendly names
1763         for CSRs.
1764
1765 2018-10-23  Joel Brobecker  <brobecker@adacore.com>
1766
1767         * riscv-tdep.c (riscv_gdbarch_init): Set the gdbarch's
1768         have_nonsteppable_watchpoint attribute to 1.
1769
1770 2018-10-23  Andrew Burgess  <andrew.burgess@embecosm.com>
1771
1772         * riscv-tdep.c (riscv_gdb_reg_names): Update comment, and all
1773         register names.
1774         (struct register_alias): Rename to...
1775         (struct riscv_register_alias): ...this, and update comment.
1776         (riscv_register_aliases): Update type, and alias names.  Remove
1777         CSR names from this list.
1778         (riscv_register_name): Use riscv_gdb_reg_names for int and float
1779         register names.  Add an extra assertion.
1780         (riscv_is_regnum_a_named_csr): New function.
1781         (riscv_register_reggroup_p): Use riscv_is_regnum_a_named_csr.
1782
1783 2018-10-23  John Darrington  <john@darrington.wattle.id.au>
1784
1785         * configure.tgt: Add configuration for s12z.
1786         * s12z-tdep.c:  New file.
1787         * NEWS: Mention new target.
1788
1789 2018-10-22  Jim Wilson  <jimw@sifive.com>
1790
1791         * riscv-tdep.c (riscv_push_dummy_call) <in_reg>: Check for value in
1792         FP reg smaller than FP reg size, and fill with -1 instead of 0.
1793
1794         * riscv-tdep.c (riscv_fpreg_d_type, riscv_fpreg_q_type): New.
1795         (riscv_register_type): Use them.
1796         (riscv_print_one_register_info): Handle union of floats same as float.
1797         * riscv-tdep.h (struct gdbarch_tdep): Add riscv_fpreg_d_type and
1798         riscv_fpreg_q_type fields.
1799
1800 2018-10-21  Simon Marchi  <simon.marchi@ericsson.com>
1801
1802         * gdbarch.sh (gdbarch_num_cooked_regs): New.
1803         * gdbarch.h: Re-generate.
1804         * ax-gdb.c (gen_expr): Use gdbarch_num_cooked_regs.
1805         * dwarf2-frame.c (dwarf2_frame_cache): Likewise.
1806         * eval.c (evaluate_subexp_standard): Likewise.
1807         * findvar.c (value_of_register): Likewise.
1808         (value_of_register_lazy): Likewise.
1809         (address_from_register): Likewise.
1810         * frame.c (get_frame_register_bytes): Likewise.
1811         * gdbarch-selftests.c (register_to_value_test): Likewise.
1812         * h8300-tdep.c (h8300_register_type): Likewise.
1813         * i386-tdep.c (i386_dbx_reg_to_regnum): Likewise.
1814         (i386_svr4_reg_to_regnum): Likewise.
1815         * infcmd.c (default_print_registers_info): Likewise.
1816         (registers_info): Likewise.
1817         (print_vector_info): Likewise.
1818         (default_print_float_info): Likewise.
1819         * m68hc11-tdep.c (m68hc11_frame_unwind_cache): Likewise.
1820         * mdebugread.c (mdebug_reg_to_regnum): Likewise.
1821         * mi/mi-main.c (mi_cmd_data_list_register_names): Likewise.
1822         (mi_cmd_data_list_changed_registers): Likewise.
1823         (mi_cmd_data_list_register_values): Likewise.
1824         (mi_cmd_data_write_register_values): Likewise.
1825         (mi_cmd_trace_frame_collected): Likewise.
1826         * mips-tdep.c (print_gp_register_row): Likewise.
1827         (mips_print_registers_info): Likewise.
1828         * nds32-tdep.c (nds32_gdbarch_init): Likewise.
1829         * regcache.c (init_regcache_descr): Likewise.
1830         (register_size): Likewise.
1831         (register_dump::dump): Likewise.
1832         (cooked_read_test): Likewise.
1833         (cooked_write_test): Likewise.
1834         * rs6000-tdep.c (rs6000_register_sim_regno): Likewise.
1835         (rs6000_gdbarch_init): Likewise.
1836         * stabsread.c (stab_reg_to_regnum): Likewise.
1837         * stack.c (info_frame_command): Likewise.
1838         * target-descriptions.c (tdesc_register_name): Likewise.
1839         * trad-frame.c (trad_frame_alloc_saved_regs): Likewise.
1840         * tui/tui-regs.c (tui_show_register_group): Likewise.
1841         * user-regs.c (user_reg_map_name_to_regnum): Likewise.
1842         (user_reg_map_regnum_to_name): Likewise.
1843         (value_of_user_reg): Likewise.
1844         (maintenance_print_user_registers): Likewise.
1845         * xtensa-tdep.c (xtensa_find_register_by_name): Likewise.
1846         (xtensa_register_name): Likewise.
1847         (xtensa_register_type): Likewise.
1848         (xtensa_reg_to_regnum): Likewise.
1849         (xtensa_pseudo_register_read): Likewise.
1850         (xtensa_pseudo_register_write): Likewise.
1851
1852 2018-10-21  Simon Marchi  <simon.marchi@polymtl.ca>
1853
1854         * amd64-tdep.c (amd64_pseudo_register_read_value): Use
1855         correctly-sized buffer with raw_read.
1856         (amd64_pseudo_register_write): Use correctly-sized buffer for
1857         raw_read/raw_write.
1858
1859 2018-10-19  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
1860
1861         * typeprint.c (_initialize_typeprint): Fix wrong prefixname arg
1862         in add_prefix_cmd of set print type.
1863
1864 2018-10-19  Tom Tromey  <tom@tromey.com>
1865
1866         PR tui/18388:
1867         * NEWS: Mention tabset deprecation.
1868         * tui/tui-win.c (tui_tab_width, internal_tab_width): New globals.
1869         (update_tab_width): New function.
1870         (tui_set_tab_width, tui_show_tab_width): New functions.
1871         (tui_set_tab_width_command): Use update_tab_width.
1872         (_initialize_tui_win): Move to end of file.  Deprecate "tabset".
1873         Add new "set tui tab-width" command.
1874         * tui/tui-source.c (tui_set_source_content): Update.
1875         * tui/tui-disasm.c (tui_set_disassem_content): Update.
1876         * tui/tui-data.h (tui_default_tab_len, tui_set_default_tab_len):
1877         Don't declare.
1878         (tui_tab_width): Declare.
1879         * tui/tui-data.c (default_tab_len, tui_default_tab_len)
1880         (tui_set_default_tab_len): Remove.
1881
1882 2018-10-19  Tom Tromey  <tom@tromey.com>
1883
1884         * tui/tui-io.h (key_is_start_sequence, key_is_end_sequence)
1885         (key_is_backspace, tui_getc): Don't declare.
1886         * tui/tui-io.c (key_is_start_sequence): Now static.
1887         (key_is_end_sequence, key_is_backspace): Remove.
1888         (tui_getc): Now static.
1889
1890 2018-10-19  Tom Tromey  <tom@tromey.com>
1891
1892         * symfile.c (reread_symbols): Clear "static_links".
1893
1894 2018-10-19  Alan Hayward  <alan.hayward@arm.com>
1895
1896         * aarch64-linux-tdep.c (AARCH64_SIGCONTEXT_RESERVED_SIZE): New
1897         define.
1898         (aarch64_linux_sigframe_init): Extra boundary checks.
1899
1900 2018-10-19  Andreas Arnez  <arnez@linux.ibm.com>
1901
1902         * s390-tdep.c (s390_pseudo_register_type): For v0-v15 don't yield
1903         the possibly non-existent tdesc type 'vec128', but the type of raw
1904         register v16 instead.
1905
1906 2018-10-19  Gary Benson <gbenson@redhat.com>
1907
1908         * cli/cli-interp.c (cli_interp::~cli_interp): New function.
1909
1910 2018-10-18  Sergio Durigan Junior  <sergiodj@redhat.com>
1911
1912         PR cli/23785
1913         * cli/cli-dump.c (restore_binary_file): Check if "file" is
1914         NULL.
1915
1916 2018-10-17  Paul Koning  <paul_koning@dell.com>
1917
1918         * charset.c (convert_between_encodings): Fix unsigned overflow.
1919
1920 2018-10-17  John Baldwin  <jhb@FreeBSD.org>
1921
1922         * fbsd-nat.c (fbsd_nat_target::info_proc) Use
1923         fbsd_info_proc_mappings_header and fbsd_info_proc_mappings_entry.
1924         * fbsd-tdep.c (fbsd_vm_map_entry_flags): Mark static.
1925         (fbsd_info_proc_mappings_header, fbsd_info_proc_mappings_entry):
1926         New functions.
1927         (fbsd_core_info_proc_mappings): Use fbsd_info_proc_mappings_header
1928         and fbsd_info_proc_mappings_header.
1929         * fbsd-tdep.h (fbsd_vm_map_entry_flags): Remove.
1930         (fbsd_info_proc_mappings_header, fbsd_info_proc_mappings_entry):
1931         New.
1932
1933 2018-10-17  Joel Brobecker  <brobecker@adacore.com>
1934
1935         * MAINTAINERS (Responsible Maintainers): Add Rainer Orth as
1936         Solaris Maintainer.
1937
1938 2018-10-15  Tom Tromey  <tom@tromey.com>
1939
1940         * tui/tui.c (strcat_to_buf): Remove casts.
1941         * tui/tui-winsource.c (tui_show_source_line)
1942         (tui_set_is_exec_point_at, tui_line_is_displayed): Remove casts.
1943         * tui/tui-wingeneral.c (tui_refresh_win, box_win): Remove casts.
1944         * tui/tui-windata.c (tui_first_data_item_displayed)
1945         (tui_delete_data_content_windows, tui_erase_data_content)
1946         (tui_display_all_data, tui_display_data_from)
1947         (tui_refresh_data_win, tui_vertical_data_scroll): Remove casts.
1948         * tui/tui-win.c (tui_set_win_height)
1949         (make_invisible_and_set_new_height, parse_scrolling_args): Remove
1950         casts.
1951         * tui/tui-win.c (tui_resize_all): Remove casts.
1952         (tui_scroll_backward_command, tui_set_focus)
1953         (tui_set_tab_width_command): Likewise.
1954         * tui/tui-source.c (tui_vertical_source_scroll): Remove cast.
1955         * tui/tui-regs.c (tui_show_register_group): Remove cast.
1956         * tui/tui-layout.c (tui_set_layout_by_name): Remove cast.
1957         * tui/tui-disasm.c (tui_vertical_disassem_scroll): Remove cast.
1958         * tui/tui-data.c (tui_partial_win_by_name, tui_free_win_content):
1959         Remove casts.
1960
1961 2018-10-15  Simon Marchi  <simon.marchi@ericsson.com>
1962
1963         * MAINTAINERS (Responsible Maintainers): Add Alan Hayward as
1964         AArch64/ARM maintainer.
1965
1966 2018-10-11  Gary Benson <gbenson@redhat.com>
1967
1968         * interps.h (interp::m_name): Make private and mutable.
1969         * interps.c (interp::~interp): Free m_name.
1970
1971 2018-10-10  Sergio Durigan Junior  <sergiodj@redhat.com>
1972             Simon Marchi <simark@simark.ca>
1973
1974         * README (`configure' options): Add documentation for new
1975         "--enable-unit-tests" option.
1976         * acinclude.m4: Include "selftest.m4".
1977         * configure: Regenerate.
1978         * configure.ac: Use "GDB_AC_SELFTEST".
1979         * maint.c (maintenance_selftest): Update message informing
1980         that selftests have been disabled.
1981         (maintenance_info_selftests): Likewise.
1982         * selftest.m4: New file.
1983
1984 2018-10-10  Gary Benson <gbenson@redhat.com>
1985
1986         * remote.c (remote_target::remote_send_printf): Add
1987         missing va_end found by Coverity.
1988
1989 2018-10-10  Markus Metzger  <markus.t.metzger@intel.com>
1990
1991         * btrace.c (ftrace_update_function): Add indirect jump heuristic.
1992
1993 2018-10-09  Tom Tromey  <tom@tromey.com>
1994
1995         * configure: Rebuild.
1996         * sanitize.m4 (AM_GDB_UBSAN): Default to no.
1997         * NEWS: Update --enable-ubsan documentation.
1998
1999 2018-10-09  Gary Benson <gbenson@redhat.com>
2000
2001         * dwarf2read.c (create_dwp_hash_table): Fix buffer overrun
2002         found by Coverity.
2003
2004 2018-10-08  Tom Tromey  <tom@tromey.com>
2005
2006         * riscv-fbsd-tdep.c (riscv_fbsd_sigframe_init): Remove unused
2007         variable.
2008         (riscv_fbsd_init_abi): Likewise.
2009
2010 2018-10-08  Weimin Pan  <weimin.pan@oracle.com>
2011         * valops.c (value_struct_elt_for_reference): Rename local variable
2012         to work around the shadowing a previous local warning.
2013
2014 2018-10-08  John Baldwin  <jhb@FreeBSD.org>
2015
2016         * Makefile.in (ALLDEPFILES): Add riscv-fbsd-nat.c.
2017         * NEWS: Mention new FreeBSD/riscv native configuration.
2018         * configure.host: Add riscv*-*-freebsd*.
2019         * configure.nat: Likewise.
2020         * riscv-fbsd-nat.c: New file.
2021
2022 2018-10-08  John Baldwin  <jhb@FreeBSD.org>
2023
2024         * Makefile.in (ALL_TARGET_OBS): Add riscv-fbsd-tdep.o.
2025         (HFILES_NO_SRCDIR): Add riscv-fbsd-tdep.h.
2026         (ALLDEPFILES): Add riscv-fbsd-tdep.c.
2027         * NEWS: Mention new FreeBSD/riscv target.
2028         * configure.tgt: Add riscv*-*-freebsd*.
2029         * riscv-fbsd-tdep.c: New file.
2030         * riscv-fbsd-tdep.h: New file.
2031
2032 2018-10-08  John Baldwin  <jhb@FreeBSD.org>
2033
2034         * regcache.h (struct regcache_map_entry): Note that this type can
2035         be used with traditional frame caches.
2036         * trad-frame.c (trad_frame_set_reg_regmap): New.
2037         * trad-frame.h (trad_frame_set_reg_regmap): New.
2038
2039 2018-10-08  Weimin Pan  <weimin.pan@oracle.com>
2040
2041         PR c++/16841
2042         * valops.c (get_virtual_base_offset): New function.
2043         (value_struct_elt_for_reference): Use it to get virtual base offset
2044         and add it in calculating class member address.
2045
2046 2018-10-08  John Darrington  <john@darrington.wattle.id.au>
2047
2048         * dwarf2read.c (dwarf2_cu) <producer_is_codewarrior>: New field.
2049         (check_producer): Check if the producer is codewarrior.
2050         (producer_is_codewarrior): New function.
2051         (lnp_state_machine::record_line): Ignore is_stmt flag for records
2052         produced by codewarrior.
2053         (dwarf2_cu::dwarf2_cu): Initialize producer_is_codewarrior.
2054
2055 2018-10-06  Tom Tromey  <tom@tromey.com>
2056
2057         PR python/19399:
2058         * python/py-inferior.c: Add "architecture" entry.
2059         (infpy_architecture): New function.
2060
2061 2018-10-06  Tom Tromey  <tom@tromey.com>
2062
2063         PR python/21765:
2064         * python/py-symbol.c (gdbpy_initialize_symbols): Redefine
2065         SYMBOL_VARIABLES_DOMAIN, SYMBOL_FUNCTIONS_DOMAIN,
2066         SYMBOL_TYPES_DOMAIN.  Define SYMBOL_MODULE_DOMAIN,
2067         SYMBOL_COMMON_BLOCK_DOMAIN, SYMBOL_LOC_COMMON_BLOCK.
2068
2069 2018-10-06  Tom Tromey  <tom@tromey.com>
2070
2071         PR build/17077:
2072         * Makefile.in (OPCODES_CFLAGS): Remove "-I$(OPCODES_SRC)/..".
2073         * arc-tdep.c, frv-tdep.c, lm32-tdep.c, mep-tdep.c,
2074         microblaze-tdep.c, or1k-tdep.h: Use ../opcodes, not opcodes, in
2075         #include.
2076
2077 2018-10-06  Tom Tromey  <tom@tromey.com>
2078
2079         * python/py-breakpoint.c (bppy_get_location): Handle a
2080         bp_breakpoint without a location.
2081
2082 2018-10-06  Tom Tromey  <tom@tromey.com>
2083
2084         * python/lib/gdb/function/strfns.py (_MemEq, _StrLen, _StrEq)
2085         (_RegEx): Reformat help text.
2086         * python/lib/gdb/function/caller_is.py (CallerIs, CallerMatches)
2087         (AnyCallerIs, AnyCallerMatches): Reformat help text.
2088         * python/lib/gdb/function/as_string.py (_AsString): Reformat help
2089         text.
2090         * python/lib/gdb/command/xmethods.py (InfoXMethod)
2091         (EnableXMethod, DisableXMethod): Remove help indentation.
2092         Capitalize meta-syntactic variables.
2093         * python/lib/gdb/command/unwinders.py (InfoUnwinder)
2094         (EnableUnwinder, DisableUnwinder): Remove help indentation.
2095         Capitalize meta-syntactic variables.
2096         * python/lib/gdb/command/explore.py (ExploreCommand)
2097         (ExploreValueCommand, ExploreTypeCommand): Reformat help text.
2098         * python/lib/gdb/command/type_printers.py (InfoTypePrinter)
2099         (EnableTypePrinter, DisableTypePrinter): Remove help indentation.
2100         * python/lib/gdb/command/pretty_printers.py (InfoPrettyPrinter):
2101         Remove help indentation.
2102         (EnablePrettyPrinter, DisablePrettyPrinter): Likewise.
2103         * python/lib/gdb/command/frame_filters.py (EnableFrameFilter)
2104         (DisableFrameFilter, SetFrameFilterPriority)
2105         (ShowFrameFilterPriority, InfoFrameFilter): Reword help text.
2106
2107 2018-10-06  Tom Tromey  <tom@tromey.com>
2108
2109         PR tui/28819:
2110         * tui/tui-io.c (gdb_wgetch): New function.
2111         (tui_mld_getc, tui_getc): Use it.
2112
2113 2018-10-05  Tom Tromey  <tom@tromey.com>
2114
2115         * sol-thread.c (sol_thread_target::wait): Rename inner
2116         "save_ptid".
2117
2118 2018-10-04  Tom Tromey  <tom@tromey.com>
2119
2120         * configure: Rebuild.
2121         * warning.m4 (AM_GDB_WARNINGS): Add -Wshadow=local.
2122
2123 2018-10-04  Tom Tromey  <tom@tromey.com>
2124
2125         * guile/scm-frame.c (gdbscm_frame_read_var): Remove inner
2126         declaration of "block".
2127
2128 2018-10-04  Tom Tromey  <tom@tromey.com>
2129
2130         * common/filestuff.c (fdwalk): Remove inner declaration of
2131         "result".
2132
2133 2018-10-04  Tom Tromey  <tom@tromey.com>
2134
2135         * msp430-tdep.c (msp430_push_dummy_call): Rename inner
2136         "structs_addr" and hoist declaration.
2137
2138 2018-10-04  Tom Tromey  <tom@tromey.com>
2139
2140         * linux-tdep.c (linux_make_mappings_corefile_notes): Introduce new
2141         variable "size".
2142
2143 2018-10-04  Tom Tromey  <tom@tromey.com>
2144
2145         * mdebugread.c (parse_partial_symbols): Use std::string.
2146
2147 2018-10-04  Tom Tromey  <tom@tromey.com>
2148
2149         * ctf.c (SET_ARRAY_FIELD): Rename "u32".
2150         * p-valprint.c (pascal_val_print): Split inner "i" variable.
2151         * xtensa-tdep.c (xtensa_push_dummy_call): Declare "i" in loop
2152         header.
2153         * xstormy16-tdep.c (xstormy16_push_dummy_call): Declare "val" in
2154         more inner scope.
2155         * xcoffread.c (read_xcoff_symtab): Rename inner "symbol".
2156         * varobj.c (varobj_update): Rename inner "newobj",
2157         "type_changed".
2158         * valprint.c (generic_emit_char): Rename inner "buf".
2159         * valops.c (find_overload_match): Rename inner "temp".
2160         (value_struct_elt_for_reference): Declare "v" in more inner
2161         scope.
2162         * v850-tdep.c (v850_push_dummy_call): Rename "len".
2163         * unittests/array-view-selftests.c (run_tests): Rename inner
2164         "vec".
2165         * tui/tui-stack.c (tui_show_frame_info): Declare "i" in loop
2166         header.
2167         * tracepoint.c (merge_uploaded_trace_state_variables): Declare
2168         "tsv" in more inner scope.
2169         (print_one_static_tracepoint_marker): Rename inner
2170         "tuple_emitter".
2171         * tic6x-tdep.c (tic6x_analyze_prologue): Declare "inst" lower.
2172         (tic6x_push_dummy_call): Don't redeclare "addr".
2173         * target-float.c: Declare "dto" lower.
2174         * symtab.c (lookup_local_symbol): Rename inner "sym".
2175         (find_pc_sect_line): Rename inner "pc".
2176         * stack.c (print_frame): Don't redeclare "gdbarch".
2177         (return_command): Rename inner "gdbarch".
2178         * s390-tdep.c (s390_prologue_frame_unwind_cache): Renam inner
2179         "sp".
2180         * rust-lang.c (rust_internal_print_type): Declare "i" in loop
2181         header.
2182         * rs6000-tdep.c (ppc_process_record): Rename inner "addr".
2183         * riscv-tdep.c (riscv_push_dummy_call): Declare "info" in inner
2184         scope.
2185         * remote.c (remote_target::update_thread_list): Don't redeclare
2186         "tp".
2187         (remote_target::process_initial_stop_replies): Rename inner
2188         "thread".
2189         (remote_target::remote_parse_stop_reply): Don't redeclare "p".
2190         (remote_target::wait_as): Don't redeclare "stop_reply".
2191         (remote_target::get_thread_local_address): Rename inner
2192         "result".
2193         (remote_target::get_tib_address): Likewise.
2194
2195         * regcache.c (cooked_read_test): Rename "regnum".
2196         * record-btrace.c (cmd_record_btrace_start): Rename inner
2197         "exception".
2198         * ppc-sysv-tdep.c (ppc64_sysv_abi_return_value): Declare "i" in
2199         loop header.
2200         * ppc-linux-tdep.c (ppc_linux_syscall_record): Declare "i" in loop
2201         header.
2202         (ppu2spu_sniffer): Rename inner "buf".
2203         * parse.c (operator_check_standard): Rename inner "type",
2204         "objfile".
2205         * p-valprint.c (pascal_val_print): Introduce new scope for
2206         "low_bound", "high_bound".
2207         * p-exp.y (yylex): Declare "i" in loop header.
2208         * objfiles.c (objfile_relocate1): Declare "i" in loop header.
2209         Lower declaration of "s".
2210         * nios2-tdep.c (nios2_analyze_prologue): Declare "i" in loop
2211         header.
2212         (nios2_push_dummy_call): Rename "len".
2213         * nat/linux-osdata.c (linux_xfer_osdata_cpus): Rename static
2214         "buf".
2215         (linux_xfer_osdata_fds, linux_xfer_osdata_shm)
2216         (linux_xfer_osdata_sem, linux_xfer_osdata_msg)
2217         (linux_xfer_osdata_modules): Likewise.
2218         * mips-tdep.c (mips_eabi_push_dummy_call): Rename outer "len".
2219         (mips_n32n64_push_dummy_call, mips_o32_push_dummy_call)
2220         (mips_o64_push_dummy_call): Likewise.
2221         * microblaze-tdep.c (microblaze_analyze_prologue): Rename inner
2222         "op".
2223         * mi/mi-main.c (list_available_thread_groups): Rename inner
2224         "tuple_emitter".
2225         (mi_cmd_data_read_memory): Rename inner "opts".
2226         * mi/mi-cmd-var.c (varobj_update_one): Rename inner
2227         "tuple_emitter".
2228         * mep-tdep.c (mep_analyze_prologue): Declare "rn" in loop header.
2229         * mdebugread.c (parse_symbol): Rename inner "b".  Declare "f" in
2230         more inner scope.
2231         (parse_partial_symbols): Rename inner "pst", "p", "name"
2232         * main.c (captured_main_1): Rename inner "i"s.
2233         * machoread.c (macho_symfile_read_all_oso): Don't redeclare
2234         "oso2".
2235         * linux-tdep.c (linux_info_proc): Rename inner "filename".
2236         * linespec.c (linespec_lexer_lex_string): Rename inner "p".
2237         * infrun.c (handle_no_resumed): Don't redeclare "thread".
2238         (handle_signal_stop): Rename inner "gdbarch".
2239         (handle_command): Declare "signum" in loop header.
2240         * ia64-tdep.c (ia64_pseudo_register_read): Don't redeclare
2241         "status".
2242         (examine_prologue): Rename inner "sol" and "sof".
2243         (ia64_extract_return_value): Rename inner "val".  Declare another
2244         "val" in a more inner scope.
2245         * hppa-bsd-tdep.c (hppabsd_find_global_pointer): Declare "buf" in
2246         inner scope.
2247         * guile/scm-symbol.c (gdbscm_lookup_symbol): Rename inner
2248         "except".
2249         * findvar.c (default_read_var_value): Don't redeclare "addr".
2250         * f-exp.y (yylex): Declare "i" in loop header.
2251         * eval.c (evaluate_subexp_standard): Don't redeclare "type".
2252         Rename inner "type", "expect_type".
2253         (evaluate_subexp_for_sizeof): Rename inner "pc".
2254         * elfread.c (elf_symfile_read): Rename inner "abfd".
2255         * dwarf2read.c (read_debug_names_from_section): Don't redeclare
2256         "bytes_read".
2257         (process_psymtab_comp_unit_reader): Don't redeclare "gdbarch".
2258         (add_partial_subprogram): Rename inner "lowpc" and "highpc".
2259         (dwarf_decode_line_header): Rename inner "lh".
2260         * dwarf2loc.c (dwarf2_compile_expr_to_ax): Don't redeclare
2261         "offset".  Declare "i" in loop header.
2262         (disassemble_dwarf_expression): Rename inner "addr_size".
2263         * dwarf2expr.c (dwarf_expr_context::execute_stack_op): Rename
2264         inner "result".
2265         (dwarf_expr_context::execute_stack_op): Rename inner "offset".
2266         * dwarf2-frame.c (decode_frame_entry_1): Rename inner "length"s.
2267         * disasm.c (do_mixed_source_and_assembly_deprecated): Rename inner
2268         "inner_list_emitter".
2269         (do_mixed_source_and_assembly): Rename inner "tuple_emitter".
2270         * disasm-selftests.c (print_one_insn_test): Wrap "bplen"
2271         declaration in a block.
2272         * csky-tdep.c (csky_analyze_prologue): Declare "offset" lower.
2273         * cp-valprint.c (cp_print_value_fields): Don't redeclare
2274         "obstack_final_size".
2275         * cp-support.c (inspect_type): Declare "i" in loop header.
2276         * compile/compile.c (compile_instance::insert_symbol_error):
2277         Rename inner "e".
2278         * common/agent.c (agent_run_command): Remove inner "ret"
2279         declaration.
2280         * coffread.c (coff_symfile_read): Rename inner "name".
2281         (coff_symfile_read): Rename inner "abfd".
2282         * cli/cli-utils.c (get_number_trailer): Rename inner "val".
2283         * cli/cli-cmds.c (print_disassembly): Rename inner "low" and
2284         "high".
2285         * c-exp.y (lex_one_token): Move "len" declaration lower.
2286         * breakpoint.c (create_longjmp_master_breakpoint): Don't redeclare
2287         "gdbarch".
2288         (create_exception_master_breakpoint): Likewise.  Don't redeclare
2289         "b".
2290         (watch_command_1): Declare "mark" later.
2291         (clear_command): Don't shadow "a" or "b".
2292         (delete_command): Rename inner "b".
2293         (delete_trace_command): Likewise.
2294         * arm-tdep.c (thumb_process_displaced_32bit_insn): Rename inner
2295         "op".
2296         (arm_gdbarch_init): Remove inner "e_flags".
2297         * arch/arm-get-next-pcs.c (thumb_get_next_pcs_raw): Declare
2298         "offset" in inner blocks.
2299
2300 2018-10-04  Simon Marchi  <simon.marchi@ericsson.com>
2301
2302         * dwarf-index-write.c (file_write): Don't write if the vector is
2303         empty.
2304
2305 2018-10-05  Tom de Vries  <tdevries@suse.de>
2306
2307         * python/py-progspace.c (pspy_solib_name): Fix type mismatch in
2308         PyArg_ParseTuple call.
2309
2310 2018-10-05  Tom de Vries  <tdevries@suse.de>
2311
2312         * python/py-record-btrace.c (recpy_bt_goto): Fix type mismatch in
2313         PyArg_ParseTuple call.
2314
2315 2018-10-04  Joel Brobecker  <brobecker@adacore.com>
2316
2317         * psymtab.c (recursively_search_psymtabs): Reformat parameters
2318         to avoid exceeding 80 characters per line limit.
2319
2320 2018-10-04  Tom Tromey  <tom@tromey.com>
2321
2322         * symfile.c (syms_from_objfile_1, finish_new_objfile)
2323         (reread_symbols): Update.
2324         * complaints.h (clear_complaints): Remove argument.
2325         * complaints.c (enum complaint_series): Remove.
2326         (series): Remove global.
2327         (complaint_internal): Update.
2328         (clear_complaints): Remove argument.
2329
2330 2018-10-04  Tom Tromey  <tom@tromey.com>
2331
2332         * symfile.c (symbol_file_add_with_addrs): Do not print "no
2333         debugging symbols" message if there is a separate debug objfile.
2334
2335 2018-10-04  Tom Tromey  <tom@tromey.com>
2336
2337         PR cli/19551:
2338         * symfile.c (symbol_file_add_with_addrs): Update output.
2339         * psymtab.c (require_partial_symbols): Update output.
2340
2341 2018-10-04  Tom Tromey  <tom@tromey.com>
2342
2343         PR cli/22234:
2344         * complaints.c: Emit \n.
2345
2346 2018-10-04  Tom Tromey  <tom@tromey.com>
2347
2348         * symfile.c (symbol_file_add_with_addrs, symbol_file_clear)
2349         (separate_debug_file_exists, find_separate_debug_file)
2350         (add_symbol_file_command, reread_symbols, allocate_symtab)
2351         (allocate_compunit_symtab): Use filtered printing, not
2352         unfiltered.
2353         * psymtab.c (require_partial_symbols, dump_psymtab)
2354         (allocate_psymtab): Use filtered printing, not unfiltered.
2355
2356 2018-10-04  Tom Tromey  <tom@tromey.com>
2357
2358         * complaints.c (complaint_internal): Correctly check complaint
2359         count.
2360
2361 2018-10-04  Tom Tromey  <tom@tromey.com>
2362
2363         * complaints.h (struct complaints): Remove declaration.
2364         * complaints.c (clear_complaints): Remove an unused variable.
2365
2366 2018-10-04  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
2367
2368         * MAINTAINERS (Write After Approval): Add self.
2369
2370 2018-10-03  Tom Tromey  <tom@tromey.com>
2371
2372         * guile/scm-value.c (gdbscm_value_to_string): Initialize
2373         "buffer_contents".
2374         * coffread.c (coff_symtab_read): Initialize "newobj".
2375
2376 2018-10-03  Simon Marchi  <simon.marchi@polymtl.ca>
2377
2378         * dwarf2read.c (read_func_scope): Remove struct keyword in
2379         range-based for.
2380
2381 2018-10-03  Tom Tromey  <tom@tromey.com>
2382
2383         * README: Mention --enable-ubsan.
2384         * NEWS: Mention --enable-ubsan.
2385         * acinclude.m4: Include sanitize.m4.
2386         * configure: Rebuild.
2387         * configure.ac: Call AM_GDB_UBSAN.
2388         * sanitize.m4: New file.
2389
2390 2018-10-03  Tom Tromey  <tom@tromey.com>
2391
2392         * expression.h (enum exp_opcode): Use uint8_t as base type.
2393         * expprint.c (op_name): Handle invalid opcodes.
2394
2395 2018-10-03  Tom Tromey  <tom@tromey.com>
2396
2397         * parse.c (prefixify_expression): Add assert.
2398         (parse_exp_in_context_1): Throw exception if the expression is
2399         empty.
2400
2401 2018-10-03  Tom Tromey  <tom@tromey.com>
2402
2403         * dwarf2read.c (read_signed_leb128): Work in ULONGEST.
2404
2405 2018-10-03  Tom Tromey  <tom@tromey.com>
2406
2407         * c-exp.y (parse_number): Work in unsigned.  Remove casts.
2408
2409 2018-10-03  Tom Tromey  <tom@tromey.com>
2410
2411         * dwarf2read.c (read_subrange_type): Make "negative_mask"
2412         unsigned.
2413
2414 2018-10-03  Tom Tromey  <tom@tromey.com>
2415
2416         * findvar.c (extract_integer): Do work in an unsigned type.
2417
2418 2018-10-03  Tom Tromey  <tom@tromey.com>
2419
2420         * common/enum-flags.h (enum_flags::operator~): Add static assert.
2421         * symfile-add-flags.h (enum symfile_add_flag): Use unsigned as
2422         base type.
2423         * objfile-flags.h (enum objfile_flag): Use unsigned as base type.
2424         * gdbtypes.h (enum type_instance_flag_value): Use unsigned as base
2425         type.
2426         * c-lang.h (enum c_string_type_values): Use unsigned as base
2427         type.
2428         * btrace.h (enum btrace_thread_flag): Use unsigned as base type.
2429
2430 2018-10-03  Tom Tromey  <tom@tromey.com>
2431
2432         * dwarf2-frame.h (dwarf2_frame_state_reg_info)
2433         <~dwarf2_frame_state_reg_info>: Update.
2434         <dwarf2_frame_state_reg_info>: Update.
2435         <alloc_regs>: Add assertion.  Update.
2436         <reg>: Now a std::vector.
2437         <num_regs>: Remove.
2438         <swap>: Update.
2439         * dwarf2-frame.c (dwarf2_restore_rule, execute_cfa_program)
2440         (execute_cfa_program_test, dwarf2_frame_cache): Update.
2441
2442 2018-10-03  Tom Tromey  <tom@tromey.com>
2443
2444         * namespace.c (add_using_directive): Don't pass NULL to memcpy.
2445
2446 2018-10-03  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
2447
2448         * tid-parse.c (tid_is_in_list): Fix wrong 'See' comment.
2449
2450 2018-10-02  Tom Tromey  <tom@tromey.com>
2451
2452         * aarch64-linux-tdep.c (aarch64_linux_sigframe_init): Use pulongest.
2453
2454 2018-10-02  John Darrington  <john@darrington.wattle.id.au>
2455
2456         * NEWS: Mention changed commands.
2457         * ser-uds.c: New file.
2458         * configure.ac (SER_HARDWIRE): Add ser-uds.o.
2459         * configure: Regenerate.
2460         * Makefile.in: Add new file.
2461         * serial.c (serial_open): Check if filename is a socket
2462         and lookup the appropriate interface accordingly.
2463
2464 2018-10-01  Alan Hayward  <alan.hayward@arm.com>
2465
2466         * aarch64-linux-tdep.c (AARCH64_SIGCONTEXT_RESERVED_OFFSET): Add
2467         define.
2468         (AARCH64_EXTRA_MAGIC): Likewise.
2469         (AARCH64_FPSIMD_MAGIC): Likewise.
2470         (AARCH64_SVE_MAGIC): Likewise.
2471         (AARCH64_EXTRA_DATAP_OFFSET): Likewise.
2472         (AARCH64_FPSIMD_FPSR_OFFSET): Likewise.
2473         (AARCH64_FPSIMD_FPCR_OFFSET): Likewise.
2474         (AARCH64_FPSIMD_V0_OFFSET): Likewise.
2475         (AARCH64_FPSIMD_VREG_SIZE): Likewise.
2476         (AARCH64_SVE_CONTEXT_VL_OFFSET): Likewise.
2477         (AARCH64_SVE_CONTEXT_REGS_OFFSET): Likewise.
2478         (AARCH64_SVE_CONTEXT_P_REGS_OFFSET): Likewise.
2479         (AARCH64_SVE_CONTEXT_FFR_OFFSET): Likewise.
2480         (AARCH64_SVE_CONTEXT_SIZE): Likewise.
2481         (read_aarch64_ctx): Add function.
2482         (aarch64_linux_sigframe_init): Detect FP registers.
2483
2484 2018-10-01  Alan Hayward  <alan.hayward@arm.com>
2485
2486         * aarch64-tdep.c (AARCH64_Q0_REGNUM): Move to here.
2487         (AARCH64_D0_REGNUM): Likewise.
2488         (AARCH64_S0_REGNUM): Likewise.
2489         (AARCH64_H0_REGNUM): Likewise.
2490         (AARCH64_B0_REGNUM): Likewise.
2491         (AARCH64_SVE_V0_REGNUM): Likewise.
2492         * arch/aarch64.h (AARCH64_Q0_REGNUM): Move from here.
2493         (AARCH64_D0_REGNUM): Likewise.
2494         (AARCH64_S0_REGNUM): Likewise.
2495         (AARCH64_H0_REGNUM): Likewise.
2496         (AARCH64_B0_REGNUM): Likewise.
2497         (AARCH64_SVE_V0_REGNUM): Likewise.
2498
2499 2018-10-01  Gary Benson <gbenson@redhat.com>
2500
2501         * gdb_proc_service.h (gdb_prfpregset_t): Remove typedef.
2502         * proc-service.c (ps_lgetfpregs, ps_lsetfpregs): Use
2503         prfpregset_t instead of gdb_prfpregset_t.
2504         * configure.ac (PRFPREGSET_T_BROKEN): Remove check.
2505         * configure, config.in: Rebuild.
2506
2507 2018-10-01  Gary Benson <gbenson@redhat.com>
2508
2509         * common/gdb_proc_service.h: New file, factored out from...
2510         * gdb_proc_service.h: Moved common code to the above file.
2511         * Makefile.in (HFILES_NO_SRCDIR): Add the above new file.
2512
2513 2018-10-01  Gary Benson <gbenson@redhat.com>
2514
2515         * gdb_proc_service.h: Use elf_gregset_t if prgregset_t is
2516         undefined.  Use elf_fpregset_t if prfpregset_t is undefined.
2517
2518 2018-10-01  Gary Benson <gbenson@redhat.com>
2519
2520         * configure.ac: Check if sys/procfs.h defines elf_fpregset_t.
2521         (AC_CHECK_HEADERS): Check for linux/elf.h.
2522         * configure, config.in: Rebuild.
2523         * gdb_proc_service.h: Include linux/elf.h if sys/procfs.h
2524         doesn't define elf_fpregset_t.
2525
2526 2018-10-01  Gary Benson <gbenson@redhat.com>
2527
2528         * gdb_proc_service.h: Whitespace change.
2529
2530 2018-10-01  Tom Tromey  <tom@tromey.com>
2531
2532         * unittests/scoped_mmap-selftests.c: Don't check HAVE_UNISTD_H.
2533         * unittests/scoped_fd-selftests.c: Don't check HAVE_UNISTD_H.
2534         * common/scoped_fd.h: Don't check HAVE_UNISTD_H.
2535
2536 2018-10-01  Tom Tromey  <tom@tromey.com>
2537
2538         * README: Minor change.
2539
2540 2018-09-30  Pedro Alves  <palves@redhat.com>
2541
2542         * darwin-nat-info.c (darwin_debug_regions_recurse)
2543         (info_mach_exceptions_command): Remove unused local variables.
2544         * darwin-nat.c (darwin_decode_notify_message)
2545         (darwin_nat_target::resume, darwin_nat_target::mourn_inferior)
2546         (darwin_stop_inferior, darwin_setup_exceptions)
2547         (darwin_nat_target::kill, darwin_attach_pid, darwin_ptrace_him)
2548         (darwin_nat_target::attach, darwin_nat_target::detach)
2549         (darwin_read_write_inferior, darwin_read_dyld_info): Remove unused
2550         local variables.
2551         * i386-darwin-nat.c (i386_darwin_dr_set): Remove unused local
2552         variables.
2553
2554 2018-09-29  Tom Tromey  <tom@tromey.com>
2555
2556         * README: Remove some leftover text.
2557
2558 2018-09-29  Tom Tromey  <tom@tromey.com>
2559
2560         * PROBLEMS: Rewrite.
2561         * README: Update.
2562
2563 2018-09-28  John Baldwin  <jhb@FreeBSD.org>
2564
2565         * disasm-selftests.c (print_one_insn_test): Add bfd_arch_riscv to
2566         case with explicit breakpoint kind.
2567         * riscv-tdep.c (show_use_compressed_breakpoints): Remove
2568         'additional_info' and related logic.
2569         (riscv_debug_breakpoints): New variable.
2570         (riscv_breakpoint_kind_from_pc): Use the length of the existing
2571         instruction to determine the breakpoint kind.
2572         (_initialize_riscv_tdep): Add 'set/show debug riscv breakpoints'
2573         flag.  Update description of 'set/show riscv
2574         use-compressed-breakpoints' flag.
2575
2576 2018-09-28  Andrew Burgess  <andrew.burgess@embecosm.com>
2577
2578         (NEWS): Mention changes to frame related commands.
2579         * cli/cli-decode.c (add_cmd_suppress_notification): New function.
2580         (add_prefix_cmd_suppress_notification): New function.
2581         (add_com_suppress_notification): Call
2582         add_cmd_suppress_notification.
2583         * command.h (add_cmd_suppress_notification): Declare.
2584         (add_prefix_cmd_suppress_notification): Declare.
2585         * mi/mi-cmd-stack.c: Add 'safe-ctype.h' include.
2586         (parse_frame_specification): Moved from stack.c, with
2587         simplification to handle a single argument.
2588         (mi_cmd_stack_select_frame): Use parse_frame_specification, the
2589         switch to the selected frame.  Add a header comment.
2590         * stack.c: Remove 'safe-ctype.h' include.
2591         (find_frame_for_function): Add declaration.
2592         (find_frame_for_address): New function.
2593         (parse_frame_specification): Moved into mi/mi-cmd-stack.c.
2594         (frame_selection_by_function_completer): New function.
2595         (info_frame_command): Rename to...
2596         (info_frame_command_core): ...this, and update parameter types.
2597         (select_frame_command): Rename to...
2598         (select_frame_command_core): ...this, and update parameter types.
2599         (frame_command): Rename to...
2600         (frame_command_core): ...this, and update parameter types.
2601         (class frame_command_helper): New class to wrap implementations of
2602         frame related sub-commands.
2603         (frame_apply_cmd_list): New static global.
2604         (frame_cmd_list): Make static.
2605         (select_frame_cmd_list): New global for sub-commands.
2606         (info_frame_cmd_list): New global for sub-commands.
2607         (_initialize_stack): Register sub-commands for 'frame',
2608         'select-frame', and 'info frame'.  Update 'frame apply' commands
2609         to use frame_apply_cmd_list.  Move function local static
2610         frame_apply_list to file static frame_apply_cmd_list for
2611         consistency.
2612         * stack.h (select_frame_command): Delete declarationn.
2613         (select_frame_for_mi): Declare new function.
2614
2615 2018-09-26  Andrew Burgess  <andrew.burgess@embecosm.com>
2616
2617         * riscv-tdep.c (riscv_insn::decode): Decode c.lui.
2618         (riscv_scan_prologue): Split handling of AUIPC, LUI, ADD, ADDI,
2619         and NOP.
2620
2621 2018-09-26  Simon Marchi  <simon.marchi@ericsson.com>
2622
2623         * elf32-nds32.c (elf32_nds32_allocate_dynrelocs): Remove.
2624
2625 2018-09-26  Tom Tromey  <tom@tromey.com>
2626
2627         * valops.c (auto_abandon): Remove dead code.
2628
2629 2018-09-26  Tom Tromey  <tom@tromey.com>
2630
2631         * tui/tui-win.c (WIN_HEIGHT_USAGE): Remove extra ">"s.
2632
2633 2018-09-24  Tom Tromey  <tom@tromey.com>
2634
2635         * common/pathstuff.c (get_standard_cache_dir): Make
2636         "xdg_cache_home" and "home" const.
2637         * top.c (init_history): Make "tmpenv" const.
2638         * main.c (get_init_files): Make "homedir" const.
2639
2640 2018-09-23  Tom Tromey  <tom@tromey.com>
2641
2642         PR python/18852:
2643         * python/py-param.c (get_set_value): Use gdbpy_handle_exception.
2644
2645 2018-09-23  Tom Tromey  <tom@tromey.com>
2646
2647         * python/py-function.c (fnpy_call): Use gdbpy_handle_exception.
2648         * python/py-cmd.c (cmdpy_function): Use gdbpy_handle_exception.
2649         * python/python-internal.h (gdbpy_handle_exception): Declare.
2650         * python/py-utils.c (gdbpy_handle_exception): New function.
2651
2652 2018-09-23  Tom Tromey  <tom@tromey.com>
2653
2654         PR python/17284:
2655         * python/py-type.c (typy_template_argument): Check for negative
2656         argument number.
2657
2658 2018-09-23  Tom Tromey  <tom@tromey.com>
2659
2660         PR python/14062:
2661         * python/python.c (gdbpy_run_events): Do not ignore exceptions.
2662
2663 2018-09-23  Tom Tromey  <tom@tromey.com>
2664
2665         PR python/18170:
2666         * python/py-value.c (valpy_int): Allow conversion from pointer
2667         type.
2668
2669 2018-09-23  Tom Tromey  <tom@tromey.com>
2670
2671         PR python/20126:
2672         * python/py-value.c (valpy_int): Respect type sign.
2673
2674 2018-09-23  Tom Tromey  <tom@tromey.com>
2675
2676         PR python/18352;
2677         * python/py-value.c (valpy_float): Allow conversions from int or
2678         char.
2679         (valpy_int, valpy_long): Allow conversions from float.
2680
2681 2018-09-23  Tom Tromey  <tom@tromey.com>
2682
2683         * ctf.c (ctf_start): Use gdb_fopen_cloexec.
2684         * common/scoped_mmap.c (mmap_file): Use gdb_open_cloexec.
2685
2686 2018-09-23  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
2687
2688         * amd64-sol2-tdep.c (amd64_sol2_sigtramp_p): Also recognize
2689         __sighndlr.
2690         * i386-sol2-tdep.c (i386_sol2_sigtramp_p): Likewise.
2691
2692 2018-08-02  Jon Turney  <jon.turney@dronecode.org.uk>
2693
2694         * windows-nat.c (windows_nat_target::wait): Remove a spurious
2695         target_terminal::ours().
2696
2697 2018-09-23  Simon Marchi  <simon.marchi@ericsson.com>
2698
2699         * aarch64-linux-tdep.c (aarch64_linux_supply_sve_regset): Change type
2700         of vl to ULONGEST.
2701
2702 2018-09-21  Yacov Simhony  <ysimhony@gmail.com>
2703
2704         * breakpoint.c (update_inserted_breakpoint_locations): Remove
2705         redundant condition.
2706
2707 2018-09-20  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
2708
2709         * proc-utils.h (PROC_CTL_WORD_TYPE): Remove.
2710
2711         * procfs.c: Don't check for PR_MODEL_NATIVE definition.
2712         * sparc-sol2-nat.c: Likewise.  Remove Linux, __arch64__ references.
2713         * sol-thread.c (ps_pdmodel): Don't guard definition.
2714
2715         * procfs.c: Fix formatting.
2716
2717         * procfs.c (sysset_t_alloc): Remove.
2718         (create_procinfo): Use XNEW instead of sysset_t_alloc.
2719         (procfs_debug_inferior): Likewise.
2720         (procfs_set_exec_trap): Likewise.
2721         (proc_set_traced_sysentry): Don't allocate argp dynamically.
2722         (proc_set_traced_sysexit): Likewise.
2723
2724         * procfs.c (create_procinfo): Use xsnprintf to fix ARI warning.
2725         (dead_procinfo): Likewise.
2726         (proc_warn): Likewise.
2727         (proc_error): Likewise.
2728         (proc_get_LDT_entry): Likewise.
2729         (do_attach): Likewise.
2730         (procfs_target::pid_to_str): Likewise.
2731         (iterate_over_mappings): Likewise.
2732
2733         * procfs.c (create_procinfo): Fix ARI warning.
2734         (proc_get_status): Likewise.
2735         (proc_stop_process): Likewise.
2736         (proc_run_process): Likewise.
2737         (proc_kill): Likewise.
2738         (proc_get_LDT_entry): Likewise.
2739         (procfs_find_LDT_entry): Likewise.
2740         (proc_update_threads): Likewise.
2741         (proc_iterate_over_threads): Likewise.
2742         (do_attach): Likewise.
2743         (procfs_xfer_memory): Likewise.
2744         (invalidate_cache): Likewise.
2745         (procfs_target::resume): Likewise.
2746         (procfs_init_inferior): Likewise.
2747         (procfs_set_exec_trap): Likewise.
2748         (procfs_target::thread_alive): Likewise.
2749         (procfs_target::pid_to_exec_file): Likewise.
2750         (iterate_over_mappings): Likewise.
2751         (procfs_target::make_corefile_notes): Likewise.
2752         * sol-thread.c (sol_thread_target::thread_alive): Likewise.
2753
2754         * procfs.c (procfs_find_LDT_entry): Silence ARI warning.
2755         (procfs_find_LDT_entry): Likewise.
2756         * sol-thread.c (ps_lgetLDT): Likewise.
2757
2758 2018-09-20  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
2759
2760         PR tdep/17903
2761         * procfs.c (procfs_target): Declare pid_to_exec_file.
2762         (procfs_target::pid_to_exec_file): New.
2763
2764 2018-09-20  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
2765
2766         * auxv.c (default_print_auxv_entry): Reflect AT_SUN_CAP_HW1
2767         renaming.
2768         Handle AT_SUN_EMULATOR, AT_SUN_BRANDNAME, AT_SUN_BRAND_AUX1,
2769         AT_SUN_BRAND_AUX2, AT_SUN_BRAND_AUX3, AT_SUN_CAP_HW2.
2770
2771 2018-09-20  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
2772
2773         * i386-v4-nat.c (regmap, supply_gregset, fill_gregset)
2774         (supply_fpregset, fill_fpregset): Move ...
2775         * i386-sol2-nat.c [PR_MODEL_NATIVE != PR_MODEL_LP64]: ... here.
2776         Remove HAVE_GREGSET_T, HAVE_FPREGET_T guards.
2777         Remove references to ioctl-based procfs.
2778         Include <sys/reg.h>.
2779         Remove PR_MODEL_NATIVE guards.
2780         * configure.nat <sol2, i386> (NATDEPFILES): Remove i386-v4-nat.o.
2781         * Makefile.in (ALLDEPFILES): Remove i386-v4-nat.c.
2782
2783 2018-09-19  Xavier Roirand  <roirand@adacore.com>
2784
2785         PR gdb/20981:
2786         * solib-darwin.c (darwin_get_dyld_bfd): New function.
2787         (darwin_solib_get_all_image_info_addr_at_init): Update call.
2788         (darwin_solib_create_inferior_hook): Handle unrelocated dyld.
2789
2790 2018-09-19  John Baldwin  <jhb@FreeBSD.org>
2791
2792         * fbsd-tdep.c (fbsd_print_sockaddr_in): Style fix.
2793         (fbsd_print_sockaddr_in6): Likewise.
2794
2795 2018-09-19  Richard Bunt  <richard.bunt@arm.com>
2796             Chris January  <chris.january@arm.com>
2797
2798         * eval.c (skip_undetermined_arglist): Skip argument list helper.
2799         (evaluate_subexp_standard): Return a dummy type when
2800         honoring EVAL_SKIP in OP_VAR_VALUE and handle skipping in the
2801         OP_F77_UNDETERMINED_ARGLIST case.
2802         * expression.h (enum noside): Update comment.
2803
2804 2018-09-19  George Vasick <george.vasick@oracle.com>
2805
2806         * solib-svr4.c (svr4_same_1): Also handle amd64 ld.so.1.
2807
2808 2018-09-19  Stefan Teleman <stefan.teleman@oracle.com>
2809             April Chin <april.chin@oracle.com>
2810             Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
2811
2812         * procfs.c (MAX_PROC_NAME_SIZE): Allow for 6-digit PID_MAX and
2813         uint_t lwpid_t.
2814         (create_procinfo): Print pids in /proc without leading zeros.
2815
2816 2018-09-18  Sandra Loosemore  <sandra@codesourcery.com>
2817
2818         * nios2-tdep.c (nios2_gcc_target_options): New.
2819         (nios2_gdb_arch_init): Install new hook.
2820
2821 2018-09-18  Simon Marchi  <simon.marchi@ericsson.com>
2822
2823         * patches/0001-Fix-PR-gdb-23558-Use-system-s-getcwd-when-cross-comp.patch:
2824         New file.
2825         * update-gnulib.sh: Apply patch.
2826         * configure: Re-generate.
2827
2828 2018-09-18  John Baldwin  <jhb@FreeBSD.org>
2829
2830         * infcmd.c (_initialize_infcmd): Remove "running" from "info proc"
2831         description.  Make "info proc" command descriptions more
2832         consistent.
2833
2834 2018-09-18  John Baldwin  <jhb@FreeBSD.org>
2835
2836         * NEWS: Mention 'info proc files' command.
2837
2838 2018-09-18  John Baldwin  <jhb@FreeBSD.org>
2839
2840         * fbsd-nat.c (fbsd_nat_target::info_proc): List open file
2841         descriptors for IP_FILES and IP_ALL.
2842
2843 2018-09-18  John Baldwin  <jhb@FreeBSD.org>
2844
2845         * fbsd-tdep.c (KF_FLAGS, KF_OFFSET, KF_VNODE_TYPE, KF_SOCK_DOMAIN)
2846         (KF_SOCK_TYPE, KF_SOCK_PROTOCOL, KF_SA_LOCAL, KF_SA_PEER)
2847         (KINFO_FILE_TYPE_SOCKET, KINFO_FILE_TYPE_PIPE)
2848         (KINFO_FILE_TYPE_FIFO, KINFO_FILE_TYPE_KQUEUE)
2849         (KINFO_FILE_TYPE_CRYPTO, KINFO_FILE_TYPE_MQUEUE)
2850         (KINFO_FILE_TYPE_SHM, KINFO_FILE_TYPE_SEM, KINFO_FILE_TYPE_PTS)
2851         (KINFO_FILE_TYPE_PROCDESC, KINFO_FILE_FD_TYPE_ROOT)
2852         (KINFO_FILE_FD_TYPE_JAIL, KINFO_FILE_FD_TYPE_TRACE)
2853         (KINFO_FILE_FD_TYPE_CTTY, KINFO_FILE_FLAG_READ)
2854         (KINFO_FILE_FLAG_WRITE, KINFO_FILE_FLAG_APPEND)
2855         (KINFO_FILE_FLAG_ASYNC, KINFO_FILE_FLAG_FSYNC)
2856         (KINFO_FILE_FLAG_NONBLOCK, KINFO_FILE_FLAG_DIRECT)
2857         (KINFO_FILE_FLAG_HASLOCK, KINFO_FILE_FLAG_EXEC)
2858         (KINFO_FILE_VTYPE_VREG, KINFO_FILE_VTYPE_VDIR)
2859         (KINFO_FILE_VTYPE_VCHR, KINFO_FILE_VTYPE_VLNK)
2860         (KINFO_FILE_VTYPE_VSOCK, KINFO_FILE_VTYPE_VFIFO, FBSD_AF_UNIX)
2861         (FBSD_AF_INET, FBSD_AF_INET6, FBSD_SOCK_STREAM, FBSD_SOCK_DGRAM)
2862         (FBSD_SOCK_SEQPACKET, FBSD_IPPROTO_ICMP, FBSD_IPPROTO_TCP)
2863         (FBSD_IPPROTO_UDP, FBSD_IPPROTO_SCTP): New defines.
2864         (struct fbsd_sockaddr_in, struct fbsd_sockaddr_in6)
2865         (struct fbsd_sockaddr_un): New types.
2866         (fbsd_file_fd, fbsd_file_type, fbsd_file_flags, fbsd_ipproto)
2867         (fbsd_print_sockaddr_in, fbsd_print_sockaddr_in6)
2868         (fbsd_info_proc_files_header, fbsd_info_proc_files_entry)
2869         (fbsd_core_info_proc_files): New functions.
2870         (fbsd_core_info_proc): List open file descriptors for IP_FILES and
2871         IP_ALL.
2872         * fbsd-tdep.h (fbsd_info_proc_files_header)
2873         (fbsd_info_proc_files_entry): New.
2874
2875 2018-09-18  John Baldwin  <jhb@FreeBSD.org>
2876
2877         * defs.h (enum info_proc_what) [IP_FILES]: New value.
2878         * infcmd.c (info_proc_cmd_files): New function.
2879         (_initialize_infcmd): Register 'info proc files' command.
2880
2881 2018-09-18  John Baldwin  <jhb@FreeBSD.org>
2882
2883         * gnulib/aclocal-m4-deps.mk: Re-generate.
2884         * gnulib/aclocal.m4: Re-generate.
2885         * gnulib/config.in: Re-generate.
2886         * gnulib/configure: Re-generate.
2887         * gnulib/import/Makefile.am: Re-generate.
2888         * gnulib/import/Makefile.in: Re-generate.
2889         * gnulib/import/m4/gnulib-cache.m4: Re-generate.
2890         * gnulib/import/m4/gnulib-comp.m4: Re-generate.
2891         * gnulib/import/arpa_inet.in.h: New file.
2892         * gnulib/import/inet_ntop.c: New file.
2893         * gnulib/import/m4/arpa_inet_h.m4: New file.
2894         * gnulib/import/m4/inet_ntop.m4: New file.
2895         * gnulib/import/m4/netinet_in_h.m4: New file.
2896         * gnulib/import/m4/socklen.m4: New file.
2897         * gnulib/import/m4/sockpfaf.m4: New file.
2898         * gnulib/import/m4/stdalign.m4: New file.
2899         * gnulib/import/m4/sys_uio_h.m4: New file.
2900         * gnulib/import/netinet_in.in.h: New file.
2901         * gnulib/import/stdalign.in.h: New file.
2902         * gnulib/import/sys_socket.c: New file.
2903         * gnulib/import/sys_socket.in.h: New file.
2904         * gnulib/import/sys_uio.in.h: New file.
2905         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add inet_ntop
2906         module.
2907
2908 2018-09-18  John Baldwin  <jhb@FreeBSD.org>
2909
2910         * gnulib/aclocal-m4-deps.mk: New file.
2911         * gnulib/update-gnulib.sh: Generate "aclocal-m4-deps.mk"
2912         deterministically.
2913
2914 2018-09-18  John Baldwin  <jhb@FreeBSD.org>
2915
2916         * fbsd-tdep.c (fbsd_core_vnode_path): Use KF_PATH instead of
2917         KVE_PATH.
2918
2919 2018-09-18  Tom Tromey  <tom@tromey.com>
2920
2921         * compile/compile-object-load.c (struct
2922         link_hash_table_cleanup_data): Add constructor and destructor.
2923         Use DISABLE_COPY_AND_ASSIGN.
2924         (~link_hash_table_cleanup_data): Rename from
2925         link_hash_table_free.  Now a destructor.
2926         (copy_sections): Use gdb::unique_xmalloc_ptr.  Remove cleanups.
2927
2928 2018-09-18  Tom Tromey  <tom@tromey.com>
2929
2930         * compile/compile-object-run.c (do_module_cleanup): Use delete.
2931         * compile/compile-object-load.c (struct munmap_list): Move to
2932         header file.
2933         (munmap_list::add): Rename from munmap_list_add; rewrite.
2934         (munmap_list::~munmap_list): Rename from munmap_list_free.
2935         (munmap_listp_free_cleanup): Remove.
2936         (compile_object_load): Update.
2937         * compile/compile-object-load.h (struct munmap_list): Move from
2938         compile-object-load.c.  Rewrite.
2939
2940 2018-09-18  Alan Hayward  <alan.hayward@arm.com>
2941
2942         * aarch64-tdep.c (pass_in_v): Use register size.
2943         (aarch64_extract_return_value): Likewise.
2944         (aarch64_store_return_value): Likewise.
2945
2946 2018-09-18  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
2947
2948         * utils.c (dump_core) [HAVE_SETRLIMIT]: Cast RLIM_INFINITY to
2949         rlim_t.
2950
2951 2018-09-17  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
2952
2953         * python/lib/gdb/command/frame_filters.py (EnableFrameFilter):
2954         Fix short help line.
2955
2956 2018-09-17  Tom Tromey  <tom@tromey.com>
2957
2958         PR python/20445:
2959         * configure: Rebuild.
2960         * configure.ac: Conditionally use -DNDEBUG for Python.
2961
2962 2018-09-17  Tom Tromey  <tom@tromey.com>
2963
2964         * configure: Rebuild.
2965         * configure.ac: Use gmp as a library dependency when checking for
2966         mpfr.
2967
2968 2018-09-17  Pedro Alves  <palves@redhat.com>
2969
2970         * python/py-inferior.c (find_inferior_object): Delete.
2971
2972 2018-09-17  Simon Marchi  <simon.marchi@ericsson.com>
2973
2974         * compile/compile-cplus-types.c
2975         (compile_cplus_instance::enter_scope): Don't use new_scope after
2976         std::move.
2977
2978 2018-09-17  Tom Tromey  <tom@tromey.com>
2979
2980         * common/pathstuff.c (get_standard_cache_dir): Use
2981         ~/Library/Caches on macOS.
2982         * common/pathstuff.h (get_standard_cache_dir): Update comment.
2983
2984 2018-09-17  Simon Marchi  <simon.marchi@polymtl.ca>
2985
2986         PR python/23669
2987         * breakpoint.c (commands_cmd_element): New.
2988         (_initialize_breakpoint): Assign commands_cmd_element.
2989         * breakpoint.h (commands_cmd_element): New.
2990         * cli/cli-script.c (while_cmd_element, if_command,
2991         define_cmd_element): New.
2992         (command_name_equals): Remove.
2993         (process_next_line): Compare commands by pointer, not by name.
2994         (_initialize_cli_script): Assign the various cmd_list_element
2995         variables.
2996         * compile/compile.c (compile_cmd_element): New.
2997         (_initialize_compile): Assign compile_cmd_element.
2998         * compile/compile.h (compile_cmd_element): New.
2999         * guile/guile.c (guile_cmd_element): New.
3000         (install_gdb_commands): Assign guile_cmd_element.
3001         * guile/guile.h (guile_cmd_element): New.
3002         * python/python.c (python_cmd_element): New.
3003         (_initialize_python): Assign python_cmd_element.
3004         * python/python.h (python_cmd_element): New.
3005         * tracepoint.c (while_stepping_cmd_element): New.
3006         (_initialize_tracepoint): Assign while_stepping_cmd_element.
3007         * tracepoint.h (while_stepping_cmd_element): New.
3008
3009 2018-09-17  Tom Tromey  <tom@tromey.com>
3010
3011         * infrun.c (save_infcall_suspend_state): Return
3012         infcall_suspend_state_up.
3013         (save_infcall_control_state): Return infcall_control_state_up.
3014         * inferior.h (save_infcall_suspend_state)
3015         (save_infcall_control_state): Declare later.  Return unique
3016         pointers.
3017
3018 2018-09-17  Tom Tromey  <tom@tromey.com>
3019
3020         * infrun.c (struct stop_context): Declare constructor,
3021         destructor, "changed" method.
3022         (stop_context::stop_context): Rename from save_stop_context.
3023         (stop_context::~stop_context): Rename from
3024         release_stop_context_cleanup.
3025         (normal_stop): Update.
3026         (stop_context::changed): Rename from stop_context_changed.  Return
3027         bool.
3028
3029 2018-09-17  Tom Tromey  <tom@tromey.com>
3030
3031         * inferior.h (struct infcall_suspend_state_deleter): New.
3032         (infcall_suspend_state_up): New typedef.
3033         (struct infcall_control_state_deleter): New.
3034         (infcall_control_state_up): New typedef.
3035         (make_cleanup_restore_infcall_suspend_state)
3036         (make_cleanup_restore_infcall_control_state): Don't declare.
3037         * infcall.c (call_function_by_hand_dummy): Update.
3038         * infrun.c (do_restore_infcall_suspend_state_cleanup)
3039         (make_cleanup_restore_infcall_suspend_state): Remove.
3040         (do_restore_infcall_control_state_cleanup)
3041         (make_cleanup_restore_infcall_control_state): Remove.
3042
3043 2018-09-17  Tom Tromey  <tom@tromey.com>
3044
3045         * gdbthread.h (struct thread_control_state): Add initializer.
3046         (class thread_info) <control>: Remove initializer.
3047         * inferior.h (struct inferior_control_state): Add initializer.
3048         (class inferior) <control>: Remove initializer.
3049         (exit_inferior_1): Update.
3050         * infrun.c (struct infcall_control_state): Add constructors.
3051         (save_infcall_control_state): Use new.
3052         (restore_infcall_control_state, discard_infcall_control_state):
3053         Use delete.
3054
3055 2018-09-17  Tom Tromey  <tom@tromey.com>
3056
3057         * infrun.c (struct infcall_suspend_state) <registers>: Now a
3058         unique_ptr.
3059         <siginfo_data>: Now a unique_xmalloc_ptr.
3060         (save_infcall_suspend_state, restore_infcall_suspend_state)
3061         (discard_infcall_suspend_state)
3062         (get_infcall_suspend_state_regcache): Update.
3063
3064 2018-09-17  Tom Tromey  <tom@tromey.com>
3065
3066         * gdbthread.h (struct thread_suspend_state): Add initializers.
3067         (class thread_info) <suspend>: Remove initializer.
3068         * infrun.c (struct infcall_suspend_state): Add initializers.
3069         (save_infcall_suspend_state): Use new.
3070         (discard_infcall_suspend_state): Use delete.
3071
3072 2018-09-16  Tom Tromey  <tom@tromey.com>
3073
3074         * python/python-internal.h (CPYCHECKER_STEALS_REFERENCE_TO_ARG):
3075         Remove.
3076         * python/py-varobj.c (py_varobj_iter_ctor): Change pyiter to
3077         rvalue reference.  Remove CPYCHECKER_STEALS_REFERENCE_TO_ARG.
3078         (py_varobj_iter_new): Likewise.
3079         (py_varobj_get_iterator): Use gdbpy_ref.
3080
3081 2018-09-16  Tom Tromey  <tom@tromey.com>
3082
3083         * python/py-threadevent.c (py_get_event_thread): Simplify.
3084         * python/py-inferior.c (infpy_thread_from_thread_handle):
3085         Return immediately after calling thread_to_thread_object.  Use
3086         Py_RETURN_NONE.
3087         (thread_to_thread_object): Set the exception on a NULL return.
3088
3089 2018-09-16  Simon Marchi  <simon.marchi@polymtl.ca>
3090
3091         * Makefile.in (LIBGDB_OBS): Sort COMMON_OBS.
3092
3093 2018-09-16  Tom Tromey  <tom@tromey.com>
3094
3095         * python/python-internal.h (CPYCHECKER_RETURNS_BORROWED_REF):
3096         Remove.
3097
3098 2018-09-16  Tom Tromey  <tom@tromey.com>
3099
3100         * python/python-internal.h (thread_to_thread_object): Change
3101         return type.
3102         * python/py-inferior.c (thread_to_thread_object): Return a new
3103         reference.
3104         (infpy_thread_from_thread_handle): Update.
3105         * python/py-infthread.c (gdbpy_selected_thread): Update.
3106         * python/py-stopevent.c (create_stop_event_object): Update.
3107         * python/py-threadevent.c (py_get_event_thread): Return a new
3108         reference.
3109         (py_get_event_thread): Update.
3110         * python/py-event.h (py_get_event_thread): Change return type.
3111         * python/py-continueevent.c (create_continue_event_object):
3112         Update.
3113
3114 2018-09-16  Tom Tromey  <tom@tromey.com>
3115
3116         * python/py-progspace.c (pspy_get_objfiles): Update.
3117         * python/python-internal.h (objfile_to_objfile_object): Change
3118         return type.
3119         * python/py-newobjfileevent.c (create_new_objfile_event_object):
3120         Update.
3121         * python/py-xmethods.c (gdbpy_get_matching_xmethod_workers):
3122         Update.
3123         * python/python.c (gdbpy_get_current_objfile): Update.
3124         (gdbpy_objfiles): Update.
3125         * python/py-objfile.c (objfpy_get_owner, gdbpy_lookup_objfile):
3126         Update.
3127         (objfile_to_objfile_object): Return a new reference.
3128         * python/py-symtab.c (stpy_get_objfile): Update.
3129         * python/py-prettyprint.c (find_pretty_printer_from_objfiles):
3130         Update.
3131
3132 2018-09-16  Tom Tromey  <tom@tromey.com>
3133
3134         * python/py-inferior.c (infpy_get_progspace): Update.
3135         * python/python-internal.h (pspace_to_pspace_object): Change
3136         return type.
3137         * python/py-newobjfileevent.c
3138         (create_clear_objfiles_event_object): Update.
3139         * python/py-xmethods.c (gdbpy_get_matching_xmethod_workers):
3140         Update.
3141         * python/python.c (gdbpy_get_current_progspace): Update.
3142         (gdbpy_progspaces): Update.
3143         * python/py-progspace.c (pspace_to_pspace_object): Return a new
3144         reference.
3145         * python/py-objfile.c (objfpy_get_progspace): Update.
3146         * python/py-prettyprint.c (find_pretty_printer_from_progspace):
3147         Update.
3148
3149 2018-09-16  Tom Tromey  <tom@tromey.com>
3150
3151         * python/lib/gdb/__init__.py (current_progspace, objfiles)
3152         (solib_name, block_for_pc, find_pc_line): New functions.
3153         (execute_unwinders): Update.
3154         * python/py-block.c (gdbpy_block_for_pc): Remove.
3155         * python/py-inferior.c (infpy_get_progspace): New function.
3156         (inferior_object_getset) <progspace>: Add.
3157         * python/py-progspace.c (pspy_objfiles): Rewrite.
3158         (pspy_solib_name, pspy_block_for_pc)
3159         (pspy_find_pc_line, pspy_is_valid): New functions.
3160         (progspace_object_methods): Add entries for solib_name,
3161         block_for_pc, find_pc_line, is_valid.
3162         * python/python-internal.h (gdbpy_block_for_pc)
3163         (build_objfiles_list): Don't declare.
3164         * python/python.c: Don't include solib.h.
3165         (gdbpy_solib_name, gdbpy_find_pc_line)
3166         (gdbpy_get_current_progspace, build_objfiles_list)
3167         (gdbpy_objfiles): Remove.
3168         (GdbMethods) <current_progspace, objfiles, block_for_pc,
3169         solib_name, find_pc_line>: Remove entries.
3170
3171 2018-09-16  Tom Tromey  <tom@tromey.com>
3172
3173         * top.c (new_ui_command): Use GNU style for metasyntactic
3174         variables.
3175         * breakpoint.c (stopat_command): Use GNU style for metasyntactic
3176         variables.
3177         * maint.c (maintenance_translate_address): Remove "<>" around
3178         text.
3179         * interps.c (interpreter_exec_cmd): Use GNU style for
3180         metasyntactic variables.
3181         * nto-procfs.c (nto_procfs_target_info): Use GNU style for
3182         metasyntactic variables.
3183         * tracepoint.c (tfind_range_command): Use GNU style for
3184         metasyntactic variables.
3185         (tfind_outside_command): Likewise.
3186         (_initialize_tracepoint): Likewise.
3187         * remote.c (extended_remote_target::create_inferior): Use GNU
3188         style for metasyntactic variables.
3189         * sparc64-tdep.c (adi_examine_command): Use GNU style for
3190         metasyntactic variables.
3191         (adi_assign_command): Likewise.
3192
3193 2018-09-16  Tom Tromey  <tom@tromey.com>
3194
3195         * disasm.c (show_disassembler_options_sfunc): Use GNU style for
3196         metasyntactic variables.  Print message if no disassembler options
3197         are available.
3198
3199 2018-09-15  Tom Tromey  <tom@tromey.com>
3200
3201         * infcmd.c (get_inferior_args): Return const char *.
3202         * inferior.h (get_inferior_args): Return type now const.
3203         * linux-tdep.c (linux_fill_prpsinfo): Update.
3204         * procfs.c (procfs_target::make_corefile_notes): Update.
3205
3206 2018-09-07  Tom Tromey  <tom@tromey.com>
3207
3208         * python/python.c (execute_gdb_command): Call bpstat_do_actions
3209         inside the TRY.
3210
3211 2018-09-14  Sandra Loosemore  <sandra@codesourcery.com>
3212
3213         * nios2-tdep.c (nios2_type_align): New.
3214         (nios2_gdb_arch_init): Install type_align hook.
3215
3216 2018-09-10  Andrew Burgess  <andrew.burgess@embecosm.com>
3217
3218         * eval.c (fake_method::fake_method): Call xzalloc directly for a
3219         type that is neither object file owned, nor gdbarch owned.
3220         * gdbtypes.c (get_type_gdbarch): Add an assert that returned
3221         gdbarch is non-NULL.
3222         (alloc_type_instance): Allocate non-objfile owned types on the
3223         gdbarch obstack.
3224         (copy_type_recursive): Allocate TYPE_FIELDS and TYPE_RANGE_DATA
3225         using TYPE_ALLOC to ensure memory is allocated on the correct
3226         obstack.
3227         * gdbtypes.h (TYPE_ALLOC): Allocate space on either the objfile
3228         obstack, or the gdbarch obstack.
3229         (TYPE_ZALLOC): Rewrite using TYPE_ALLOC.
3230
3231 2018-09-14  Tom Tromey  <tom@tromey.com>
3232
3233         * infcall.c (call_function_by_hand_dummy): Remove unnecessary
3234         block.
3235
3236 2018-09-14  Tom Tromey  <tom@tromey.com>
3237
3238         * nat/fork-inferior.c (get_startup_shell): Remove "static".
3239
3240 2018-09-13  Tom Tromey  <tom@tromey.com>
3241
3242         * python/py-inferior.c (infpy_thread_from_thread_handle): Now
3243         static.
3244
3245 2018-09-13  Tom Tromey  <tom@tromey.com>
3246
3247         * exec.c (try_open_exec_file): Use std::string.
3248
3249 2018-09-13  Tom Tromey  <tom@tromey.com>
3250
3251         * utils.h (gdb_bfd_errmsg): Return std::string.
3252         * exec.c (exec_file_attach): Update.
3253         * compile/compile-object-load.c (compile_object_load): Update.
3254         * utils.c (gdb_bfd_errmsg): Return std::string.
3255
3256 2018-09-13  Tom Tromey  <tom@tromey.com>
3257
3258         * procfs.c (struct procinfo_deleter): New.
3259         (procinfo_up): New typedef.
3260         (do_destroy_procinfo_cleanup): Remove.
3261         (procfs_target::info_proc): Use procinfo_up.  Remove cleanups.
3262
3263 2018-09-13  Tom Tromey  <tom@tromey.com>
3264
3265         * source.c (add_path): Use gdb::unique_xmalloc_ptr.
3266
3267 2018-09-13  Simon Marchi  <simon.marchi@ericsson.com>
3268 2018-09-13  Tom Tromey  <tom@tromey.com>
3269
3270         * python/py-progspace.c (PSPY_REQUIRE_VALID): New macro.
3271         (pspy_get_objfiles): New function.
3272         (progspace_object_methods): New.
3273         (pspace_object_type): Add tp_methods callback.
3274         * python/python-internal.h (build_objfiles_list): New
3275         declaration.
3276         * python/python.c (build_objfiles_list): New function.
3277         (gdbpy_objfiles): Implement using build_objfiles_list.
3278         * NEWS: Mention the Progspace.objfiles method.
3279
3280 2018-09-13  Simon Marchi  <simon.marchi@ericsson.com>
3281
3282         * python/py-inferior.c (infpy_get_progspace): New function.
3283         (inferior_object_getset): Add progspace property.
3284         * NEWS: Mention the new property.
3285
3286 2018-09-13  Tom Tromey  <tom@tromey.com>
3287
3288         PR rust/23650:
3289         * rust-lang.c (rust_evaluate_subexp): Use field name, not "foo".
3290
3291 2018-09-13  Tom Tromey  <tom@tromey.com>
3292
3293         PR rust/23626:
3294         * rust-lang.c (rust_enum_variant): Now static.
3295         (rust_empty_enum_p): New function.
3296         (rust_print_enum, rust_evaluate_subexp, rust_print_struct_def):
3297         Handle empty enum.
3298
3299 2018-09-13  Simon Marchi  <simon.marchi@ericsson.com>
3300
3301         * python/py-inferior.c (infpy_repr): New.
3302         (inferior_object_type): Register infpy_repr.
3303         * python/py-objfile.c (objfpy_repr): New.
3304         (objfile_object_type): Register objfpy_repr.
3305
3306 2018-09-12  John Baldwin  <jhb@FreeBSD.org>
3307
3308         * fbsd-nat.c (fbsd_nat_target::info_proc): Remove unused variable.
3309
3310 2018-09-12  John Baldwin  <jhb@FreeBSD.org>
3311
3312         * aarch64-fbsd-tdep.h (AARCH64_FBSD_SIZEOF_GREGSET): Fix comment
3313         typo.
3314
3315 2018-09-12  Sergio Durigan Junior  <sergiodj@redhat.com>
3316
3317         * common/common-utils.c: Don't include '<sys/stat.h>'.
3318         (is_regular_file): Move to...
3319         * common/filestuff.c (is_regular_file): ... here.
3320         * common/common-utils.h (is_regular_file): Move to...
3321         * common/filestuff.h (is_regular_file): ... here.
3322
3323 2018-09-12  Simon Marchi  <simon.marchi@ericsson.com>
3324
3325         * skip.c (debug_skip): New variable.
3326         (skiplist_entry::do_skip_file_p): Add debug output.
3327         (skiplist_entry::do_skip_gfile_p): Likewise.
3328         (skiplist_entry::skip_function_p): Likewise.
3329         (_initialize_step_skip): Create debug command.
3330         * NEWS: Mention set/show debug skip.
3331
3332 2018-09-11  Xavier Roirand  <roirand@adacore.com>
3333
3334         * darwin-nat.c (should_disable_startup_with_shell):
3335         New function.
3336         (darwin_nat_target::create_inferior): Add call.
3337
3338 2018-09-11  Xavier Roirand  <roirand@adacore.com>
3339
3340         * darwin-nat.h (struct darwin_thread_info) <gdb_port,
3341         inf_port, msg_state>: Initialize.
3342         (struct darwin_thread_info) <signaled, single_step>: Change
3343         type and initialize.
3344         (struct darwin_thread_info) <event>: Initialize.
3345
3346 2018-09-10  Sergio Durigan Junior  <sergiodj@redhat.com>
3347
3348         PR gdb/23555
3349         PR gdb/23558
3350         * gnulib/import/m4/getcwd-path-max.m4: Add cross-compilation
3351         guesses.
3352
3353 2018-09-10  Sergio Durigan Junior  <sergiodj@redhat.com>
3354
3355         Revert:
3356         2018-08-29  Sergio Durigan Junior  <sergiodj@redhat.com>
3357
3358         PR gdb/23555
3359         PR gdb/23558
3360         * gnulib/aclocal.m4: Regenerate.
3361         * gnulib/config.in: Regenerate.
3362         * gnulib/configure: Regenerate.
3363         * gnulib/import/Makefile.am: Update.
3364         * gnulib/import/Makefile.in: Update.
3365         * gnulib/import/extra/snippet/_Noreturn.h: Rename to...
3366         * gnulib/import/_Noreturn.h: ... this.
3367         * gnulib/import/alloca.in.h: Update.
3368         * gnulib/import/extra/snippet/arg-nonnull.h: Rename to...
3369         * gnulib/import/arg-nonnull.h: ... this.
3370         * gnulib/import/assure.h: Update.
3371         * gnulib/import/at-func.c: Update.
3372         * gnulib/import/basename-lgpl.c: Update.
3373         * gnulib/import/extra/snippet/c++defs.h: Rename to...
3374         * gnulib/import/c++defs.h: ... this.
3375         * gnulib/import/canonicalize-lgpl.c: Update.
3376         * gnulib/import/cdefs.h: Update.
3377         * gnulib/import/chdir-long.c: Update.
3378         * gnulib/import/chdir-long.h: Update.
3379         * gnulib/import/cloexec.c: Update.
3380         * gnulib/import/cloexec.h: Update.
3381         * gnulib/import/close.c: Update.
3382         * gnulib/import/closedir.c: Update.
3383         * gnulib/import/config.charset: Update.
3384         * gnulib/import/dirent-private.h: Update.
3385         * gnulib/import/dirent.in.h: Update.
3386         * gnulib/import/dirfd.c: Update.
3387         * gnulib/import/dirname-lgpl.c: Update.
3388         * gnulib/import/dirname.h: Update.
3389         * gnulib/import/dosname.h: Update.
3390         * gnulib/import/dup-safer-flag.c: Update.
3391         * gnulib/import/dup-safer.c: Update.
3392         * gnulib/import/dup.c: Update.
3393         * gnulib/import/dup2.c: Update.
3394         * gnulib/import/errno.in.h: Update.
3395         * gnulib/import/error.c: Update.
3396         * gnulib/import/error.h: Update.
3397         * gnulib/import/exitfail.c: Update.
3398         * gnulib/import/exitfail.h: Update.
3399         * gnulib/import/extra/update-copyright: Update.
3400         * gnulib/import/fchdir.c: Update.
3401         * gnulib/import/fcntl.c: Update.
3402         * gnulib/import/fcntl.in.h: Update.
3403         * gnulib/import/fd-hook.c: Update.
3404         * gnulib/import/fd-hook.h: Update.
3405         * gnulib/import/fd-safer-flag.c: Update.
3406         * gnulib/import/fd-safer.c: Update.
3407         * gnulib/import/fdopendir.c: Update.
3408         * gnulib/import/filename.h: Update.
3409         * gnulib/import/filenamecat-lgpl.c: Update.
3410         * gnulib/import/filenamecat.h: Update.
3411         * gnulib/import/flexmember.h: Update.
3412         * gnulib/import/float+.h: Update.
3413         * gnulib/import/float.c: Update.
3414         * gnulib/import/float.in.h: Update.
3415         * gnulib/import/fnmatch.c: Update.
3416         * gnulib/import/fnmatch.in.h: Update.
3417         * gnulib/import/fnmatch_loop.c: Update.
3418         * gnulib/import/fpucw.h: Update.
3419         * gnulib/import/frexp.c: Update.
3420         * gnulib/import/frexpl.c: Update.
3421         * gnulib/import/fstat.c: Update.
3422         * gnulib/import/fstatat.c: Update.
3423         * gnulib/import/getcwd-lgpl.c: Update.
3424         * gnulib/import/getcwd.c: Update.
3425         * gnulib/import/getdtablesize.c: Update.
3426         * gnulib/import/getlogin_r.c: Update.
3427         * gnulib/import/getprogname.c: Update.
3428         * gnulib/import/getprogname.h: Update.
3429         * gnulib/import/gettext.h: Update.
3430         * gnulib/import/gettimeofday.c: Update.
3431         * gnulib/import/glob-libc.h: Update.
3432         * gnulib/import/glob.c: Update.
3433         * gnulib/import/glob.in.h: Update.
3434         * gnulib/import/glob_internal.h: Update.
3435         * gnulib/import/glob_pattern_p.c: Update.
3436         * gnulib/import/globfree.c: Update.
3437         * gnulib/import/hard-locale.c: Update.
3438         * gnulib/import/hard-locale.h: Update.
3439         * gnulib/import/intprops.h: Update.
3440         * gnulib/import/inttypes.in.h: Update.
3441         * gnulib/import/isnan.c: Update.
3442         * gnulib/import/isnand-nolibm.h: Update.
3443         * gnulib/import/isnand.c: Update.
3444         * gnulib/import/isnanl-nolibm.h: Update.
3445         * gnulib/import/isnanl.c: Update.
3446         * gnulib/import/itold.c: Update.
3447         * gnulib/import/libc-config.h: Update.
3448         * gnulib/import/limits.in.h: Update.
3449         * gnulib/import/localcharset.c: Update.
3450         * gnulib/import/localcharset.h: Update.
3451         * gnulib/import/localtime-buffer.c: Update.
3452         * gnulib/import/localtime-buffer.h: Update.
3453         * gnulib/import/lstat.c: Update.
3454         * gnulib/import/m4/00gnulib.m4: Update.
3455         * gnulib/import/m4/__inline.m4: Update.
3456         * gnulib/import/m4/absolute-header.m4: Update.
3457         * gnulib/import/m4/alloca.m4: Update.
3458         * gnulib/import/m4/builtin-expect.m4: Update.
3459         * gnulib/import/m4/canonicalize.m4: Update.
3460         * gnulib/import/m4/chdir-long.m4: Update.
3461         * gnulib/import/m4/close.m4: Update.
3462         * gnulib/import/m4/closedir.m4: Update.
3463         * gnulib/import/m4/configmake.m4: Update.
3464         * gnulib/import/m4/d-ino.m4: Update.
3465         * gnulib/import/m4/d-type.m4: Update.
3466         * gnulib/import/m4/dirent_h.m4: Update.
3467         * gnulib/import/m4/dirfd.m4: Update.
3468         * gnulib/import/m4/dirname.m4: Update.
3469         * gnulib/import/m4/double-slash-root.m4: Update.
3470         * gnulib/import/m4/dup.m4: Update.
3471         * gnulib/import/m4/dup2.m4: Update.
3472         * gnulib/import/m4/eealloc.m4: Update.
3473         * gnulib/import/m4/environ.m4: Update.
3474         * gnulib/import/m4/errno_h.m4: Update.
3475         * gnulib/import/m4/error.m4: Update.
3476         * gnulib/import/m4/exponentd.m4: Update.
3477         * gnulib/import/m4/exponentl.m4: Update.
3478         * gnulib/import/m4/extensions.m4: Update.
3479         * gnulib/import/m4/extern-inline.m4: Update.
3480         * gnulib/import/m4/fchdir.m4: Update.
3481         * gnulib/import/m4/fcntl-o.m4: Update.
3482         * gnulib/import/m4/fcntl.m4: Update.
3483         * gnulib/import/m4/fcntl_h.m4: Update.
3484         * gnulib/import/m4/fdopendir.m4: Update.
3485         * gnulib/import/m4/filenamecat.m4: Update.
3486         * gnulib/import/m4/flexmember.m4: Update.
3487         * gnulib/import/m4/float_h.m4: Update.
3488         * gnulib/import/m4/fnmatch.m4: Update.
3489         * gnulib/import/m4/fnmatch_h.m4: Update.
3490         * gnulib/import/m4/fpieee.m4: Update.
3491         * gnulib/import/m4/frexp.m4: Update.
3492         * gnulib/import/m4/frexpl.m4: Update.
3493         * gnulib/import/m4/fstat.m4: Update.
3494         * gnulib/import/m4/fstatat.m4: Update.
3495         * gnulib/import/m4/getcwd-abort-bug.m4: Update.
3496         * gnulib/import/m4/getcwd-path-max.m4: Update.
3497         * gnulib/import/m4/getcwd.m4: Update.
3498         * gnulib/import/m4/getdtablesize.m4: Update.
3499         * gnulib/import/m4/getlogin.m4: Update.
3500         * gnulib/import/m4/getlogin_r.m4: Update.
3501         * gnulib/import/m4/getpagesize.m4: Update.
3502         * gnulib/import/m4/getprogname.m4: Update.
3503         * gnulib/import/m4/gettimeofday.m4: Update.
3504         * gnulib/import/m4/glibc21.m4: Update.
3505         * gnulib/import/m4/glob.m4: Update.
3506         * gnulib/import/m4/glob_h.m4: Update.
3507         * gnulib/import/m4/gnulib-cache.m4: Update.
3508         * gnulib/import/m4/gnulib-common.m4: Update.
3509         * gnulib/import/m4/gnulib-comp.m4: Update.
3510         * gnulib/import/m4/gnulib-tool.m4: Update.
3511         * gnulib/import/m4/hard-locale.m4: Update.
3512         * gnulib/import/m4/include_next.m4: Update.
3513         * gnulib/import/m4/inttypes-pri.m4: Update.
3514         * gnulib/import/m4/inttypes.m4: Update.
3515         * gnulib/import/m4/isnand.m4: Update.
3516         * gnulib/import/m4/isnanl.m4: Update.
3517         * gnulib/import/m4/largefile.m4: Update.
3518         * gnulib/import/m4/limits-h.m4: Update.
3519         * gnulib/import/m4/localcharset.m4: Update.
3520         * gnulib/import/m4/locale-fr.m4: Update.
3521         * gnulib/import/m4/locale-ja.m4: Update.
3522         * gnulib/import/m4/locale-zh.m4: Update.
3523         * gnulib/import/m4/localtime-buffer.m4: Update.
3524         * gnulib/import/m4/longlong.m4: Update.
3525         * gnulib/import/m4/lstat.m4: Update.
3526         * gnulib/import/m4/malloc.m4: Update.
3527         * gnulib/import/m4/malloca.m4: Update.
3528         * gnulib/import/m4/math_h.m4: Update.
3529         * gnulib/import/m4/mbrtowc.m4: Update.
3530         * gnulib/import/m4/mbsinit.m4: Update.
3531         * gnulib/import/m4/mbsrtowcs.m4: Update.
3532         * gnulib/import/m4/mbstate_t.m4: Update.
3533         * gnulib/import/m4/memchr.m4: Update.
3534         * gnulib/import/m4/memmem.m4: Update.
3535         * gnulib/import/m4/mempcpy.m4: Update.
3536         * gnulib/import/m4/memrchr.m4: Update.
3537         * gnulib/import/m4/mkdir.m4: Update.
3538         * gnulib/import/m4/mkstemp.m4: Update.
3539         * gnulib/import/m4/mmap-anon.m4: Update.
3540         * gnulib/import/m4/mode_t.m4: Update.
3541         * gnulib/import/m4/msvc-inval.m4: Update.
3542         * gnulib/import/m4/msvc-nothrow.m4: Update.
3543         * gnulib/import/m4/multiarch.m4: Update.
3544         * gnulib/import/m4/nocrash.m4: Update.
3545         * gnulib/import/m4/off_t.m4: Update.
3546         * gnulib/import/m4/onceonly.m4: Update.
3547         * gnulib/import/m4/open-cloexec.m4: Update.
3548         * gnulib/import/m4/open.m4: Update.
3549         * gnulib/import/m4/openat.m4: Update.
3550         * gnulib/import/m4/opendir.m4: Update.
3551         * gnulib/import/m4/pathmax.m4: Update.
3552         * gnulib/import/m4/rawmemchr.m4: Update.
3553         * gnulib/import/m4/readdir.m4: Update.
3554         * gnulib/import/m4/readlink.m4: Update.
3555         * gnulib/import/m4/realloc.m4: Update.
3556         * gnulib/import/m4/rename.m4: Update.
3557         * gnulib/import/m4/rewinddir.m4: Update.
3558         * gnulib/import/m4/rmdir.m4: Update.
3559         * gnulib/import/m4/save-cwd.m4: Update.
3560         * gnulib/import/m4/secure_getenv.m4: Update.
3561         * gnulib/import/m4/setenv.m4: Update.
3562         * gnulib/import/m4/signal_h.m4: Update.
3563         * gnulib/import/m4/ssize_t.m4: Update.
3564         * gnulib/import/m4/stat-time.m4: Update.
3565         * gnulib/import/m4/stat.m4: Update.
3566         * gnulib/import/m4/std-gnu11.m4: Update.
3567         * gnulib/import/m4/stdbool.m4: Update.
3568         * gnulib/import/m4/stddef_h.m4: Update.
3569         * gnulib/import/m4/stdint.m4: Update.
3570         * gnulib/import/m4/stdio_h.m4: Update.
3571         * gnulib/import/m4/stdlib_h.m4: Update.
3572         * gnulib/import/m4/strchrnul.m4: Update.
3573         * gnulib/import/m4/strdup.m4: Update.
3574         * gnulib/import/m4/strerror.m4: Update.
3575         * gnulib/import/m4/string_h.m4: Update.
3576         * gnulib/import/m4/strstr.m4: Update.
3577         * gnulib/import/m4/strtok_r.m4: Update.
3578         * gnulib/import/m4/sys_socket_h.m4: Update.
3579         * gnulib/import/m4/sys_stat_h.m4: Update.
3580         * gnulib/import/m4/sys_time_h.m4: Update.
3581         * gnulib/import/m4/sys_types_h.m4: Update.
3582         * gnulib/import/m4/tempname.m4: Update.
3583         * gnulib/import/m4/time_h.m4: Update.
3584         * gnulib/import/m4/unistd-safer.m4: Update.
3585         * gnulib/import/m4/unistd_h.m4: Update.
3586         * gnulib/import/m4/warn-on-use.m4: Update.
3587         * gnulib/import/m4/wchar_h.m4: Update.
3588         * gnulib/import/m4/wchar_t.m4: Update.
3589         * gnulib/import/m4/wctype_h.m4: Update.
3590         * gnulib/import/m4/wint_t.m4: Update.
3591         * gnulib/import/malloc.c: Update.
3592         * gnulib/import/malloc/scratch_buffer.h: Update.
3593         * gnulib/import/malloc/scratch_buffer_grow.c: Update.
3594         * gnulib/import/malloc/scratch_buffer_grow_preserve.c: Update.
3595         * gnulib/import/malloc/scratch_buffer_set_array_size.c: Update.
3596         * gnulib/import/malloca.c: Update.
3597         * gnulib/import/malloca.h: Update.
3598         * gnulib/import/malloca.valgrind: Update.
3599         * gnulib/import/math.in.h: Update.
3600         * gnulib/import/mbrtowc.c: Update.
3601         * gnulib/import/mbsinit.c: Update.
3602         * gnulib/import/mbsrtowcs-impl.h: Update.
3603         * gnulib/import/mbsrtowcs-state.c: Update.
3604         * gnulib/import/mbsrtowcs.c: Update.
3605         * gnulib/import/memchr.c: Update.
3606         * gnulib/import/memmem.c: Update.
3607         * gnulib/import/mempcpy.c: Update.
3608         * gnulib/import/memrchr.c: Update.
3609         * gnulib/import/mkdir.c: Update.
3610         * gnulib/import/mkstemp.c: Update.
3611         * gnulib/import/msvc-inval.c: Update.
3612         * gnulib/import/msvc-inval.h: Update.
3613         * gnulib/import/msvc-nothrow.c: Update.
3614         * gnulib/import/msvc-nothrow.h: Update.
3615         * gnulib/import/open.c: Update.
3616         * gnulib/import/openat-die.c: Update.
3617         * gnulib/import/openat-priv.h: Update.
3618         * gnulib/import/openat-proc.c: Update.
3619         * gnulib/import/openat.c: Update.
3620         * gnulib/import/openat.h: Update.
3621         * gnulib/import/opendir.c: Update.
3622         * gnulib/import/pathmax.h: Update.
3623         * gnulib/import/pipe-safer.c: Update.
3624         * gnulib/import/rawmemchr.c: Update.
3625         * gnulib/import/readdir.c: Update.
3626         * gnulib/import/readlink.c: Update.
3627         * gnulib/import/realloc.c: Update.
3628         * gnulib/import/ref-add.sin: Update.
3629         * gnulib/import/ref-del.sin: Update.
3630         * gnulib/import/rename.c: Update.
3631         * gnulib/import/rewinddir.c: Update.
3632         * gnulib/import/rmdir.c: Update.
3633         * gnulib/import/same-inode.h: Update.
3634         * gnulib/import/save-cwd.c: Update.
3635         * gnulib/import/save-cwd.h: Update.
3636         * gnulib/import/scratch_buffer.h: Update.
3637         * gnulib/import/secure_getenv.c: Update.
3638         * gnulib/import/setenv.c: Update.
3639         * gnulib/import/signal.in.h: Update.
3640         * gnulib/import/stat-time.c: Update.
3641         * gnulib/import/stat-time.h: Update.
3642         * gnulib/import/stat-w32.c: Update.
3643         * gnulib/import/stat-w32.h: Update.
3644         * gnulib/import/stat.c: Update.
3645         * gnulib/import/stdbool.in.h: Update.
3646         * gnulib/import/stddef.in.h: Update.
3647         * gnulib/import/stdint.in.h: Update.
3648         * gnulib/import/stdio.in.h: Update.
3649         * gnulib/import/stdlib.in.h: Update.
3650         * gnulib/import/str-two-way.h: Update.
3651         * gnulib/import/strchrnul.c: Update.
3652         * gnulib/import/strdup.c: Update.
3653         * gnulib/import/streq.h: Update.
3654         * gnulib/import/strerror-override.c: Update.
3655         * gnulib/import/strerror-override.h: Update.
3656         * gnulib/import/strerror.c: Update.
3657         * gnulib/import/string.in.h: Update.
3658         * gnulib/import/stripslash.c: Update.
3659         * gnulib/import/strnlen1.c: Update.
3660         * gnulib/import/strnlen1.h: Update.
3661         * gnulib/import/strstr.c: Update.
3662         * gnulib/import/strtok_r.c: Update.
3663         * gnulib/import/sys_stat.in.h: Update.
3664         * gnulib/import/sys_time.in.h: Update.
3665         * gnulib/import/sys_types.in.h: Update.
3666         * gnulib/import/tempname.c: Update.
3667         * gnulib/import/tempname.h: Update.
3668         * gnulib/import/time.in.h: Update.
3669         * gnulib/import/unistd--.h: Update.
3670         * gnulib/import/unistd-safer.h: Update.
3671         * gnulib/import/unistd.in.h: Update.
3672         * gnulib/import/unsetenv.c: Update.
3673         * gnulib/import/verify.h: Update.
3674         * gnulib/import/extra/snippet/warn-on-use.h: Update.
3675         * gnulib/import/wchar.in.h: Update.
3676         * gnulib/import/wctype.in.h: Update.
3677         * gnulib/import/xalloc-oversized.h: Update.
3678         * gnulib/update-gnulib.sh (GNULIB_COMMIT_SHA1): Set to
3679         "53e2c179f26a890fa6685af4b6c1397ee370433b".
3680
3681 2018-09-10  Simon Marchi  <simon.marchi@ericsson.com>
3682
3683         * record-btrace.c (get_thread_current_frame): Remove
3684         old_inferior_ptid.
3685
3686 2018-09-10  Jerome Guitton  <guitton@adacore.com>
3687
3688         * ada-lang.c (ada_value_struct_elt): Call ada_to_fixed_type
3689         with check_tag to 1 if and only if the type is tagged and the
3690         component being searched cannot been found in the current
3691         view. Otherwise, always call ada_to_fixed_type with
3692         check_tag to 0.
3693
3694 2018-09-10  Xavier Roirand  <roirand@adacore.com>
3695
3696         * ada-lang.c (ada_is_access_to_unconstrained_array): Remove static
3697         declaration.
3698         * ada-lang.h: add ada_is_access_to_unconstrained_array prototype.
3699         * ada-varobj.c (ada_varobj_get_number_of_children,
3700         ada_varobj_describe_child, ada_value_is_changeable_p): Cleanup code.
3701
3702 2018-09-10  Xavier Roirand  <roirand@adacore.com>
3703
3704         * ada-valprint.c (ada_value_print): Use type instead of
3705         enclosing type.
3706
3707 2018-09-10  Xavier Roirand  <roirand@adacore.com>
3708
3709         * ada-lang.c (ada_value_subscript): Handle case when parameter is
3710         an array of access to unconstrained array.
3711
3712 2018-09-10  Xavier Roirand  <roirand@adacore.com>
3713
3714         * ada-lang.c (ada_is_access_to_unconstrained_array): New function.
3715         (ada_check_typedef): Use it.
3716
3717 2018-09-10  Xavier Roirand  <roirand@adacore.com>
3718
3719         * ada-varobj.c (ada_varobj_describe_struct_child)
3720         (ada_varobj_describe_child): Handle union case like struct one.
3721
3722 2018-09-10  Tom Tromey  <tom@tromey.com>
3723
3724         PR python/18380:
3725         * python/python.c (_initialize_python): Make example in "python"
3726         help work in Python 3.
3727
3728 2018-09-10  Eli Zaretskii  <eliz@gnu.org>
3729
3730         * Makefile.in (transformed_name): Use INSTALL_SCRIPT instead of
3731         INSTALL_PROGRAM to install gdb-add-index.sh.  Don't append
3732         $(EXEEXT) to the script, as it is not a program.
3733
3734 2018-09-09  Simon Marchi  <simon.marchi@ericsson.com>
3735
3736         * python/py-prettyprint.c (pretty_print_one_value): Return
3737         gdbpy_ref<>.
3738         (print_string_repr): Adjust.
3739         (apply_varobj_pretty_printer): Return gdbpy_ref<>.
3740         * python/python-internal.h (apply_varobj_pretty_printer): Return
3741         gdbpy_ref<>.
3742         * varobj.c (varobj_value_get_print_value): Adjust.
3743
3744 2018-09-08  Tom Tromey  <tom@tromey.com>
3745
3746         PR python/16047:
3747         * python/py-prettyprint.c (pretty_print_one_value): Check for
3748         to_string method.
3749
3750 2018-09-08  Joel Brobecker  <brobecker@adacore.com>
3751
3752         * ada-lang.c (resolve_subexp): Pass correct OPLEN in call to
3753         replace_operator_with_call.
3754
3755 2018-09-08  Joel Brobecker  <brobecker@adacore.com>
3756
3757         * ada-lang.c (ada_value_cast): Remove unnecessary parentheses.
3758
3759 2018-09-08  Joel Brobecker  <brobecker@adacore.com>
3760
3761         * ada-typeprint.c (print_range): Print the bounds using TYPE
3762         rather than its TYPE_TARGET_TYPE.
3763
3764 2018-09-08  Joel Brobecker  <brobecker@adacore.com>
3765
3766         * ada-lang.c (ada_to_fixed_value): Minor reformatting in
3767         call to ada_to_fixed_value_create.
3768
3769 2018-09-08  Jerome Guitton  <guitton@adacore.com>
3770
3771         * ada-lang.c (ada_decode): strip dot prefix in symbol name.
3772
3773 2018-09-08  Joel Brobecker  <brobecker@adacore.com>
3774
3775         * ada-lang.c (ada_exception_sal): Replace gdb_assert calls
3776         by calls to error.
3777
3778 2018-09-08  Joel Brobecker  <brobecker@adacore.com>
3779
3780         * ada-lang.c (ada_unhandled_exception_name_addr_from_raise):
3781         Move update of loop variable "fi".
3782
3783 2018-09-08  Joel Brobecker  <brobecker@adacore.com>
3784
3785         * ada-lang.c (value_assign_to_component): In the case of
3786         big-endian targets, extract the bits of the given VAL
3787         using an src_offset of zero if container is not a scalar.
3788
3789 2018-09-06  Simon Ser  <contact@emersion.fr>
3790
3791         PR gdb/23105
3792         * fbsd-nat.c (fbsd_nat_target::xfer_partial): Add support for
3793         TARGET_OBJECT_FREEBSD_VMMAP and TARGET_OBJECT_FREEBSD_PS_STRINGS.
3794         * fbsd-tdep.c (fbsd_make_note_desc): New.
3795         (fbsd_make_corefile_notes): Write NT_PROCSTAT_AUXV,
3796         NT_PROCSTAT_VMMAP and NT_PROCSTAT_PS_STRINGS notes.
3797         * target.h (enum target_object) Add FreeBSD-specific
3798         TARGET_OBJECT_FREEBSD_VMMAP and TARGET_OBJECT_FREEBSD_PS_STRINGS.
3799
3800 2018-09-06  Simon Marchi  <simon.marchi@ericsson.com>
3801
3802         * compile/compile-c.h (generate_c_for_variable_locations):
3803         Change reference to pointer.
3804         * compile/compile-c-support.c (compile_program) <compute>:
3805         Likewise.
3806         * compile/compile-c-symbols.c (generate_vla_size): Likewise.
3807         (generate_c_for_for_one_variable): Likewise
3808         (generate_c_for_variable_locations): Likewise
3809         * compile/compile-c-types.c (compile_c_instance::convert_type):
3810         Likewise
3811         * compile/compile-cplus-symbols.c (convert_one_symbol):
3812         std::move the scope passed to enter_scope.
3813         * compile/compile-cplus-types.c
3814         (compile_cplus_instance::enter_scope): Make parameter
3815         rvalue-reference.
3816         (compile_cplus_instance::new_scope): Change reference to
3817         pointer.
3818         (compile_cplus_instance::convert_type): Likewise
3819         (compile_cplus_convert_typedef): std::move the scope passed to
3820         enter_scope.
3821         (compile_cplus_convert_struct_or_union): Likewise.
3822         (compile_cplus_convert_enum): Likewise.
3823         (compile_cplus_convert_namespace): Likewise.
3824         * compile/compile-cplus.h (compile_cplus_instance)
3825         <enter_scope>: Make parameter rvalue-reference.
3826         * compile/compile-internal.h (compile_instance)
3827         <get_cached_type>: Likewise
3828         * compile/compile-loc2c.c (push): Likewise
3829         (pushf): Likewise
3830         (unary): Likewise
3831         (binary): Likewise
3832         (print_label): Likewise
3833         (pushf_register_address): Likewise
3834         (pushf_register): Likewise
3835         (do_compile_dwarf_expr_to_c): Likewise
3836         (compile_dwarf_expr_to_c): Likewise
3837         (compile_dwarf_bounds_to_c): Likewise
3838         * compile/compile.c (compile_instance::get_cached_type):
3839         Likewise
3840         * compile/compile.h (compile_dwarf_expr_to_c): Likewise.
3841         (compile_dwarf_bounds_to_c): Likewise
3842         * dwarf2loc.c (locexpr_generate_c_location): Likewise.
3843         (dwarf2_compile_property_to_c): Likewise
3844         * dwarf2loc.h (dwarf2_compile_property_to_c): Likewise
3845         * symtab.h (struct symbol_computed_ops) <generate_c_location>:
3846         Likewise
3847
3848 2018-09-06  Simon Marchi  <simon.marchi@ericsson.com>
3849
3850         * tui/tui-data.h (struct tui_win_element) <highlight>: Remove.
3851         * tui/tui-data.c (init_content_element): Don't initialize it.
3852
3853 2018-09-06  Simon Marchi  <simon.marchi@ericsson.com>
3854
3855         * tui/tui-data.h (struct tui_win_info)
3856         <detail::opaque>: Remove.
3857         * tui/tui-data.c (init_win_info): Remove assignment.
3858
3859 2018-09-05  Tom Tromey  <tom@tromey.com>
3860
3861         * warning.m4 (AM_GDB_WARNINGS): Add -Wformat when testing
3862         -Wformat-nonliteral.
3863         * target-float.c (host_float_ops<T>::to_string)
3864         (host_float_ops<T>::from_string): Use
3865         DIAGNOSTIC_IGNORE_FORMAT_NONLITERAL.
3866         * configure: Rebuild.
3867
3868 2018-09-05  Simon Marchi  <simon.marchi@ericsson.com>
3869
3870         * printcmd.c (printf_c_string): Use
3871         DIAGNOSTIC_IGNORE_FORMAT_NONLITERAL.
3872         (printf_wide_c_string, printf_pointer, ui_printf): Likewise.
3873
3874 2018-09-05  Tom Tromey  <tom@tromey.com>
3875
3876         * cli/cli-cmds.c (shell_escape, edit_command): Remove cast.
3877
3878 2018-09-05  Tom de Vries  <tdevries@suse.de>
3879
3880         * dwarf2loc.c (sect_variable_value): Call indirect_synthetic_pointer
3881         with resolve_abstract_p == true.
3882         (indirect_synthetic_pointer): Add resolve_abstract_p parameter,
3883         defaulting to false. Propagate resolve_abstract_p to
3884         dwarf2_fetch_die_loc_sect_off.
3885         * dwarf2loc.h (dwarf2_fetch_die_loc_sect_off): Add resolve_abstract_p
3886         parameter, defaulting to false.
3887         * dwarf2read.c (read_variable): Add variable to abstract_to_concrete.
3888         (dwarf2_fetch_die_loc_sect_off): Add and handle resolve_abstract_p
3889         parameter.
3890         * dwarf2read.h (struct die_info): Forward-declare.
3891         (die_info_ptr): New typedef.
3892         (struct dwarf2_per_objfile): Add abstract_to_concrete field.
3893
3894 2018-09-05  Joel Brobecker  <brobecker@adacore.com>
3895
3896         GDB 8.2 released.
3897
3898 2018-09-04  Sergio Durigan Junior  <sergiodj@redhat.com>
3899             Pedro Alves  <palves@redhat.com>
3900
3901         * gnulib/Makefile.in (aclocal_m4_deps): Move to
3902         "aclocal-m4-deps.mk".  Include file here.
3903         $(srcdir)/aclocal.m4: Add "configure.ac".
3904         * gnulib/aclocal-m4-deps.mk: New file.
3905         * gnulib/update-gnulib.sh: Automatically update
3906         "aclocal-m4-deps.mk".
3907
3908 2018-09-04  Tom Tromey  <tom@tromey.com>
3909
3910         * configure: Rebuild.
3911         * configure.ac: Remove multi-ice code.
3912
3913 2018-09-04  Tom Tromey  <tom@tromey.com>
3914
3915         * Makefile.in (GDB_WARN_CFLAGS_NO_DEFS): Remove.
3916         (ada-exp.o): Update.
3917
3918 2018-09-04  Tom Tromey  <tom@tromey.com>
3919
3920         * Makefile.in (printcmd.o, target-float.o): Remove.
3921         (GDB_WARN_CFLAGS_NO_FORMAT): Remove.
3922
3923 2018-09-04  Tom Tromey  <tom@tromey.com>
3924
3925         * gnulib/Makefile.in: Remove obsolete comment.
3926         * Makefile.in: Remove obsolete comment.
3927
3928 2018-09-04  Andrew Burgess  <andrew.burgess@embecosm.com>
3929
3930         * riscv-tdep.c (riscv_frame_cache): Fix ARI warning, don't end a
3931         line with '+'.
3932
3933 2018-09-03  Andrew Burgess  <andrew.burgess@embecosm.com>
3934
3935         * riscv-tdep.c: Add 'prologue-value.h' include.
3936         (struct riscv_unwind_cache): New struct.
3937         (riscv_debug_unwinder): New global.
3938         (riscv_scan_prologue): Update arguments, capture register details
3939         from prologue scan.
3940         (riscv_skip_prologue): Reformat arguments line, move end of
3941         prologue calculation into riscv_scan_prologue.
3942         (riscv_frame_cache): Update return type, create
3943         riscv_unwind_cache, scan the prologue, and fill in remaining cache
3944         details.
3945         (riscv_frame_this_id): Use frame id computed in riscv_frame_cache.
3946         (riscv_frame_prev_register): Use the trad_frame within the
3947         riscv_unwind_cache.
3948         (_initialize_riscv_tdep): Add 'set/show debug riscv unwinder'
3949         flag.
3950
3951 2018-09-03  Andrew Burgess  <andrew.burgess@embecosm.com>
3952
3953         * trad-frame.h (trad_frame_set_realreg): Declare.
3954         (trad_frame_set_addr): Declare.
3955         * trad-frame.c (trad_frame_set_realreg): Define new function.
3956         (trad_frame_set_addr): Define new function.
3957         (trad_frame_set_reg_realreg): Use new function.
3958         (trad_frame_set_reg_addr): Use new function.
3959
3960 2018-09-01  Keith Seitz  <keiths@redhat.com>
3961
3962         * compile/compile-cplus-types.c (compile_cplus_debug_output_1): Use
3963         pulongest instead of "%lld".
3964         * compile/compile-cplus-symbols.c (gcc_cplus_convert_symbol): Remove
3965         ATTRIBUTE_UNUSED.
3966
3967 2018-08-31  Tom Tromey  <tom@tromey.com>
3968
3969         * dwarf2read.c (dwarf2_add_field): Set the TYPE_LENGTH of the
3970         variant part type.
3971
3972 2018-08-31  Pedro Alves  <palves@redhat.com>
3973
3974         * gdbarch.h: Regenerate.
3975
3976 2018-08-31  Pedro Alves  <palves@redhat.com>
3977
3978         * gdbarch.sh (have_nonsteppable_watchpoint): Add comment.
3979         * target.h (Hardware watchpoint interfaces): Describe
3980         continuable/steppable/non-steppable watchpoints.
3981         * gdbarch.h, gdbarch.c: Regenerate.
3982
3983 2018-08-31  Pedro Alves  <palves@redhat.com>
3984
3985         * nto-procfs.c (nto_procfs_target::have_continuable_watchpoint):
3986         Delete.
3987         * s390-linux-nat.c
3988         (s390_linux_nat_target::have_continuable_watchpoint): Delete.
3989         * target.h (target_ops::have_continuable_watchpoint): Delete.
3990         (target_have_continuable_watchpoint): Delete.
3991         * x86-nat.h (x86_nat_target::have_continuable_watchpoint): Delete.
3992         * target-delegates.c: Regenerate.
3993
3994 2018-08-31  Sergio Durigan Junior  <sergiodj@redhat.com>
3995
3996         * gnulib/Makefile.in (aclocal_m4_deps): Update according to
3997         the files present in "gnulib/import/m4/".
3998
3999 2018-08-30  Andrew Burgess  <andrew.burgess@embecosm.com>
4000
4001         * riscv-tdep.c (riscv_insn::decode): Decode c.addi4spn, c.sd,
4002         c.sw, c.swsp, and c.sdsp.
4003
4004 2018-08-30  Andrew Burgess  <andrew.burgess@embecosm.com>
4005
4006         * riscv-tdep.c (struct riscv_inferior_data): Delete.
4007         (riscv_read_misa_reg): Don't cache value read into inferior data.
4008         (riscv_new_inferior_data): Delete.
4009         (riscv_inferior_data_cleanup): Delete.
4010         (riscv_inferior_data): Delete.
4011         (riscv_invalidate_inferior_data): Delete.
4012         (_initialize_riscv_tdep): Remove initialisation of inferior data.
4013
4014 2018-08-30  Simon Marchi  <simon.marchi@ericsson.com>
4015
4016         * compile/compile-cplus-types.c
4017         (compile_cplus_instance::leave_scope): Take the address of scope
4018         object.
4019         (compile_cplus_instance::convert_qualified_base): Compare quals
4020         to 0.
4021
4022 2018-08-30  Keith Seitz  <keiths@redhat.com>
4023
4024         * compile/compile-cplus-types.c (compile_cplus_instance::enter_scope):
4025         Use "%s" and host_address_to_string instead of "%p" in printf.
4026
4027 2018-08-29  Keith Seitz  <keiths@redhat.com>
4028
4029         * Makefile.in (SUBDIR_GCC_COMPILE_SRCS): Add compile-cplus-symbols.c
4030         and compile-cplus-types.c.
4031         (HFILES_NO_SRCDIR): Add gcc-cp-plugin.h.
4032         * c-lang.c (cplus_language_defn): Set C++ compile functions.
4033         * c-lang.h (cplus_get_compile_context, cplus_compute_program):
4034         Declare.
4035         * compile/compile-c-support.c: Include compile-cplus.h.
4036         (load_libcompile): Templatize.
4037         (get_compile_context): "New" function.
4038         (c_get_compile_context): Use get_compile_context.
4039         (cplus_get_compile_context): New function.
4040         (cplus_push_user_expression, cplus_pop_user_expression)
4041         (cplus_add_code_header, cplus_add_input, cplus_compile_program)
4042         (cplus_compute_program): Define new structs/functions.
4043         * compile/compile-cplus-symmbols.c: New file.
4044         * compile/compile-cplus-types.c: New file.
4045         * compile/compile-cplus.h: New file.
4046         * compile/compile-internal.h (debug_compile_oracle, GCC_TYPE_NONE):
4047         Declare.
4048         * compile/compile-object-load.c (get_out_value_type): Use
4049         strncmp_iw when comparing symbol names.
4050         (compile_object_load): Add mst_bss and mst_data.
4051         * compile/compile.c (_initialize_compile): Remove
4052         -Wno-implicit-function-declaration from `compile_args'.
4053         * compile/gcc-cp-plugin.h: New file.
4054         * NEWS: Mention C++ compile support and new debug options.
4055
4056 2018-08-29  Keith Seitz  <keiths@redhat.com>
4057
4058         * linespec.c (collect_info::add_symbol): Make virtual.
4059         (struct symbol_searcher_collect_info): New struct.
4060         (symbol_searcher::find_all_symbols): New method.
4061         * symtab.h (class symbol_searcher): New class.
4062
4063 2018-08-29  Keith Seitz  <keiths@redhat.com>
4064
4065         * linespec.c (struct linespec) <function_symbols, label_symbols>:
4066         Change to vector of block_symbol.  Update all users.
4067         (struct collect_info) <symbols>: Likewise.
4068         (collect_info::add_symbol): Take block_symbol as argument.
4069         Update all callers.
4070         (decode_compound_collector) <m_symbols>: Change type to vector
4071         of block_symbol.  Update all users.
4072         (decode_compound_collector::operator ()): Change parameter type
4073         to block_symbol.
4074         (find_method, find_function_symbols, find_linespec_symbols)
4075         (find_label_symbols_in_block, find_label_symbols): Change symbol
4076         vectors to block_symbol vectors.
4077         * symtab.h (symbol_found_callback_ftype): Change parameter type to
4078         block_symbol.
4079
4080 2018-08-29  Keith Seitz  <keiths@redhat.com>
4081
4082         * linespec.c (symbolp): Remove typedef and VEC definitions.
4083         (bound_minimal_symbol_d): Likewise.
4084
4085 2018-08-29  Keith Seitz  <keiths@redhat.com>
4086
4087         * linespec.c (decode_compound_collector::decode_compound_collector):
4088         Remove initialization for `m_symtabs'.
4089         (decode_compound_collector::release_symbols): Change return type
4090         to std::vector.  Update all callers.
4091         (class decode_compound_collector) <m_symbols>: Change type to
4092         std::vector.
4093         (lookup_prefix_sym): Change return type to std::vector.  Update all
4094         callers.
4095         (compare_symbols): Remove.
4096         (std_compare_symbols): Rename to `compare_symbols'.
4097         (find_method): Change `sym_classes' parameter to std::vector.
4098         Update all callers.  Use std::sort to sort sym_classes.
4099         (find_linespec_symbols): Remove cleanup.
4100
4101 2018-08-29  Keith Seitz  <keiths@redhat.com>
4102
4103         * linespec.c (struct linespec) <minimal_symbols>: Change type to
4104         std::vector.  Update all users.
4105         (convert_linespec_to_sals): Use std::sort to sort minimal symbols.
4106         (struct collect_info) <minimal_symbols>: Likewise.
4107         (compare_msymbols): Return bool.  Change parameters to const
4108         bound_minimal_symbol references.
4109         (find_method, find_function_symbols, find_linespec_symbols): Change
4110         `minsyms' parameter to std::vector.  Update all callers.
4111
4112 2018-08-29  Keith Seitz  <keiths@redhat.com>
4113
4114         * linespec.c (struct linespec) <label_symbols>: Change type to
4115         std::vector.  Update all users.
4116         (find_label_symbols_in_block): Change `result' parameter to
4117         std::vector.  Update all callers.
4118         (find_label_symbols): Return std::vector.  Update all callers.
4119
4120 2018-08-29  Keith Seitz  <keiths@redhat.com>
4121
4122         * linespec.c (struct linespec) <function_symbols>: Change type to
4123         std::vector.  Update all users.
4124         (struct collect_info) <function_symbols>: Likewise.
4125         (convert_linespec_to_sals): Use std::sort to sort function_symbols.
4126         (std_compare_symbols): New function.
4127         (find_method, find_function_symbols, find_linespec_symbols)
4128         (find_label_symbols_in_block): Change `symbols' parameter to
4129         std::vector.  Update all callers.
4130         (find_label_symbols): Likewise for `function_symbols' and
4131         `label_funcs_ret'.
4132
4133 2018-08-29  Keith Seitz  <keiths@redhat.com>
4134
4135         * linespec.c (symtab_vector_up): Define.
4136         (struct linespec) <file_symtabs>: Change type to std::vector *.
4137         Update all uses.
4138         (struct collect_info) <file_symtabs>: Likewise.
4139         (collect_symtabs_from_filename): Return symtab_vector_up.
4140         Update all callers.
4141         (decode_objc): Remove cleanup.
4142         (symtab_collector::symtab_collector): Initialize `m_symtabs'.
4143         (symtab_collector::release_symtabs): Return symtab_vector_up.
4144         Update all callers.
4145         (class symtab_collector) <m_symtabs>: Change type to symtab_vector_up.
4146         Update all users.
4147         (collect_symtabs_from_filename, symtabs_from_filename): Return
4148         symtab_vector_up.  Update all callers.
4149
4150 2018-08-29  Tom Tromey  <tom@tromey.com>
4151
4152         * csky-tdep.c (csky_analyze_prologue): Use
4153         core_addr_to_string_nz.
4154
4155 2018-08-29  Tom Tromey  <tom@tromey.com>
4156
4157         * windows-nat.c (struct xlate_exception) <them>: Change type to
4158         DWORD.
4159         (xlate): Fix formatting.  Remove last entry.
4160         (struct xlate_exception, xlate): Comment out.
4161         (windows_nat_target::resume): Use ranged for.
4162
4163 2018-08-29  Jim Wilson  <jimw@sifive.com>
4164
4165         * riscv-linux-nat.c: Include elf/common.h instead of elf.h.
4166         (riscv_linux_nat_target::fetch_registers): Use NT_FPREGSET instead
4167         of NT_PRFPREG.
4168         (riscv_linux_nat_target::store_registers): Likewise.
4169
4170 2018-08-29  Sergio Durigan Junior  <sergiodj@redhat.com>
4171
4172         PR gdb/23555
4173         PR gdb/23558
4174         * gnulib/aclocal.m4: Regenerate.
4175         * gnulib/config.in: Regenerate.
4176         * gnulib/configure: Regenerate.
4177         * gnulib/import/Makefile.am: Update.
4178         * gnulib/import/Makefile.in: Update.
4179         * gnulib/import/extra/snippet/_Noreturn.h: Rename to...
4180         * gnulib/import/_Noreturn.h: ... this.
4181         * gnulib/import/alloca.in.h: Update.
4182         * gnulib/import/extra/snippet/arg-nonnull.h: Rename to...
4183         * gnulib/import/arg-nonnull.h: ... this.
4184         * gnulib/import/assure.h: Update.
4185         * gnulib/import/at-func.c: Update.
4186         * gnulib/import/basename-lgpl.c: Update.
4187         * gnulib/import/extra/snippet/c++defs.h: Rename to...
4188         * gnulib/import/c++defs.h: ... this.
4189         * gnulib/import/canonicalize-lgpl.c: Update.
4190         * gnulib/import/cdefs.h: Update.
4191         * gnulib/import/chdir-long.c: Update.
4192         * gnulib/import/chdir-long.h: Update.
4193         * gnulib/import/cloexec.c: Update.
4194         * gnulib/import/cloexec.h: Update.
4195         * gnulib/import/close.c: Update.
4196         * gnulib/import/closedir.c: Update.
4197         * gnulib/import/config.charset: Update.
4198         * gnulib/import/dirent-private.h: Update.
4199         * gnulib/import/dirent.in.h: Update.
4200         * gnulib/import/dirfd.c: Update.
4201         * gnulib/import/dirname-lgpl.c: Update.
4202         * gnulib/import/dirname.h: Update.
4203         * gnulib/import/dosname.h: Update.
4204         * gnulib/import/dup-safer-flag.c: Update.
4205         * gnulib/import/dup-safer.c: Update.
4206         * gnulib/import/dup.c: Update.
4207         * gnulib/import/dup2.c: Update.
4208         * gnulib/import/errno.in.h: Update.
4209         * gnulib/import/error.c: Update.
4210         * gnulib/import/error.h: Update.
4211         * gnulib/import/exitfail.c: Update.
4212         * gnulib/import/exitfail.h: Update.
4213         * gnulib/import/extra/update-copyright: Update.
4214         * gnulib/import/fchdir.c: Update.
4215         * gnulib/import/fcntl.c: Update.
4216         * gnulib/import/fcntl.in.h: Update.
4217         * gnulib/import/fd-hook.c: Update.
4218         * gnulib/import/fd-hook.h: Update.
4219         * gnulib/import/fd-safer-flag.c: Update.
4220         * gnulib/import/fd-safer.c: Update.
4221         * gnulib/import/fdopendir.c: Update.
4222         * gnulib/import/filename.h: Update.
4223         * gnulib/import/filenamecat-lgpl.c: Update.
4224         * gnulib/import/filenamecat.h: Update.
4225         * gnulib/import/flexmember.h: Update.
4226         * gnulib/import/float+.h: Update.
4227         * gnulib/import/float.c: Update.
4228         * gnulib/import/float.in.h: Update.
4229         * gnulib/import/fnmatch.c: Update.
4230         * gnulib/import/fnmatch.in.h: Update.
4231         * gnulib/import/fnmatch_loop.c: Update.
4232         * gnulib/import/fpucw.h: Update.
4233         * gnulib/import/frexp.c: Update.
4234         * gnulib/import/frexpl.c: Update.
4235         * gnulib/import/fstat.c: Update.
4236         * gnulib/import/fstatat.c: Update.
4237         * gnulib/import/getcwd-lgpl.c: Update.
4238         * gnulib/import/getcwd.c: Update.
4239         * gnulib/import/getdtablesize.c: Update.
4240         * gnulib/import/getlogin_r.c: Update.
4241         * gnulib/import/getprogname.c: Update.
4242         * gnulib/import/getprogname.h: Update.
4243         * gnulib/import/gettext.h: Update.
4244         * gnulib/import/gettimeofday.c: Update.
4245         * gnulib/import/glob-libc.h: Update.
4246         * gnulib/import/glob.c: Update.
4247         * gnulib/import/glob.in.h: Update.
4248         * gnulib/import/glob_internal.h: Update.
4249         * gnulib/import/glob_pattern_p.c: Update.
4250         * gnulib/import/globfree.c: Update.
4251         * gnulib/import/hard-locale.c: Update.
4252         * gnulib/import/hard-locale.h: Update.
4253         * gnulib/import/intprops.h: Update.
4254         * gnulib/import/inttypes.in.h: Update.
4255         * gnulib/import/isnan.c: Update.
4256         * gnulib/import/isnand-nolibm.h: Update.
4257         * gnulib/import/isnand.c: Update.
4258         * gnulib/import/isnanl-nolibm.h: Update.
4259         * gnulib/import/isnanl.c: Update.
4260         * gnulib/import/itold.c: Update.
4261         * gnulib/import/libc-config.h: Update.
4262         * gnulib/import/limits.in.h: Update.
4263         * gnulib/import/localcharset.c: Update.
4264         * gnulib/import/localcharset.h: Update.
4265         * gnulib/import/localtime-buffer.c: Update.
4266         * gnulib/import/localtime-buffer.h: Update.
4267         * gnulib/import/lstat.c: Update.
4268         * gnulib/import/m4/00gnulib.m4: Update.
4269         * gnulib/import/m4/__inline.m4: Update.
4270         * gnulib/import/m4/absolute-header.m4: Update.
4271         * gnulib/import/m4/alloca.m4: Update.
4272         * gnulib/import/m4/builtin-expect.m4: Update.
4273         * gnulib/import/m4/canonicalize.m4: Update.
4274         * gnulib/import/m4/chdir-long.m4: Update.
4275         * gnulib/import/m4/close.m4: Update.
4276         * gnulib/import/m4/closedir.m4: Update.
4277         * gnulib/import/m4/configmake.m4: Update.
4278         * gnulib/import/m4/d-ino.m4: Update.
4279         * gnulib/import/m4/d-type.m4: Update.
4280         * gnulib/import/m4/dirent_h.m4: Update.
4281         * gnulib/import/m4/dirfd.m4: Update.
4282         * gnulib/import/m4/dirname.m4: Update.
4283         * gnulib/import/m4/double-slash-root.m4: Update.
4284         * gnulib/import/m4/dup.m4: Update.
4285         * gnulib/import/m4/dup2.m4: Update.
4286         * gnulib/import/m4/eealloc.m4: Update.
4287         * gnulib/import/m4/environ.m4: Update.
4288         * gnulib/import/m4/errno_h.m4: Update.
4289         * gnulib/import/m4/error.m4: Update.
4290         * gnulib/import/m4/exponentd.m4: Update.
4291         * gnulib/import/m4/exponentl.m4: Update.
4292         * gnulib/import/m4/extensions.m4: Update.
4293         * gnulib/import/m4/extern-inline.m4: Update.
4294         * gnulib/import/m4/fchdir.m4: Update.
4295         * gnulib/import/m4/fcntl-o.m4: Update.
4296         * gnulib/import/m4/fcntl.m4: Update.
4297         * gnulib/import/m4/fcntl_h.m4: Update.
4298         * gnulib/import/m4/fdopendir.m4: Update.
4299         * gnulib/import/m4/filenamecat.m4: Update.
4300         * gnulib/import/m4/flexmember.m4: Update.
4301         * gnulib/import/m4/float_h.m4: Update.
4302         * gnulib/import/m4/fnmatch.m4: Update.
4303         * gnulib/import/m4/fnmatch_h.m4: Update.
4304         * gnulib/import/m4/fpieee.m4: Update.
4305         * gnulib/import/m4/frexp.m4: Update.
4306         * gnulib/import/m4/frexpl.m4: Update.
4307         * gnulib/import/m4/fstat.m4: Update.
4308         * gnulib/import/m4/fstatat.m4: Update.
4309         * gnulib/import/m4/getcwd-abort-bug.m4: Update.
4310         * gnulib/import/m4/getcwd-path-max.m4: Update.
4311         * gnulib/import/m4/getcwd.m4: Update.
4312         * gnulib/import/m4/getdtablesize.m4: Update.
4313         * gnulib/import/m4/getlogin.m4: Update.
4314         * gnulib/import/m4/getlogin_r.m4: Update.
4315         * gnulib/import/m4/getpagesize.m4: Update.
4316         * gnulib/import/m4/getprogname.m4: Update.
4317         * gnulib/import/m4/gettimeofday.m4: Update.
4318         * gnulib/import/m4/glibc21.m4: Update.
4319         * gnulib/import/m4/glob.m4: Update.
4320         * gnulib/import/m4/glob_h.m4: Update.
4321         * gnulib/import/m4/gnulib-cache.m4: Update.
4322         * gnulib/import/m4/gnulib-common.m4: Update.
4323         * gnulib/import/m4/gnulib-comp.m4: Update.
4324         * gnulib/import/m4/gnulib-tool.m4: Update.
4325         * gnulib/import/m4/hard-locale.m4: Update.
4326         * gnulib/import/m4/include_next.m4: Update.
4327         * gnulib/import/m4/inttypes-pri.m4: Update.
4328         * gnulib/import/m4/inttypes.m4: Update.
4329         * gnulib/import/m4/isnand.m4: Update.
4330         * gnulib/import/m4/isnanl.m4: Update.
4331         * gnulib/import/m4/largefile.m4: Update.
4332         * gnulib/import/m4/limits-h.m4: Update.
4333         * gnulib/import/m4/localcharset.m4: Update.
4334         * gnulib/import/m4/locale-fr.m4: Update.
4335         * gnulib/import/m4/locale-ja.m4: Update.
4336         * gnulib/import/m4/locale-zh.m4: Update.
4337         * gnulib/import/m4/localtime-buffer.m4: Update.
4338         * gnulib/import/m4/longlong.m4: Update.
4339         * gnulib/import/m4/lstat.m4: Update.
4340         * gnulib/import/m4/malloc.m4: Update.
4341         * gnulib/import/m4/malloca.m4: Update.
4342         * gnulib/import/m4/math_h.m4: Update.
4343         * gnulib/import/m4/mbrtowc.m4: Update.
4344         * gnulib/import/m4/mbsinit.m4: Update.
4345         * gnulib/import/m4/mbsrtowcs.m4: Update.
4346         * gnulib/import/m4/mbstate_t.m4: Update.
4347         * gnulib/import/m4/memchr.m4: Update.
4348         * gnulib/import/m4/memmem.m4: Update.
4349         * gnulib/import/m4/mempcpy.m4: Update.
4350         * gnulib/import/m4/memrchr.m4: Update.
4351         * gnulib/import/m4/mkdir.m4: Update.
4352         * gnulib/import/m4/mkstemp.m4: Update.
4353         * gnulib/import/m4/mmap-anon.m4: Update.
4354         * gnulib/import/m4/mode_t.m4: Update.
4355         * gnulib/import/m4/msvc-inval.m4: Update.
4356         * gnulib/import/m4/msvc-nothrow.m4: Update.
4357         * gnulib/import/m4/multiarch.m4: Update.
4358         * gnulib/import/m4/nocrash.m4: Update.
4359         * gnulib/import/m4/off_t.m4: Update.
4360         * gnulib/import/m4/onceonly.m4: Update.
4361         * gnulib/import/m4/open-cloexec.m4: Update.
4362         * gnulib/import/m4/open.m4: Update.
4363         * gnulib/import/m4/openat.m4: Update.
4364         * gnulib/import/m4/opendir.m4: Update.
4365         * gnulib/import/m4/pathmax.m4: Update.
4366         * gnulib/import/m4/rawmemchr.m4: Update.
4367         * gnulib/import/m4/readdir.m4: Update.
4368         * gnulib/import/m4/readlink.m4: Update.
4369         * gnulib/import/m4/realloc.m4: Update.
4370         * gnulib/import/m4/rename.m4: Update.
4371         * gnulib/import/m4/rewinddir.m4: Update.
4372         * gnulib/import/m4/rmdir.m4: Update.
4373         * gnulib/import/m4/save-cwd.m4: Update.
4374         * gnulib/import/m4/secure_getenv.m4: Update.
4375         * gnulib/import/m4/setenv.m4: Update.
4376         * gnulib/import/m4/signal_h.m4: Update.
4377         * gnulib/import/m4/ssize_t.m4: Update.
4378         * gnulib/import/m4/stat-time.m4: Update.
4379         * gnulib/import/m4/stat.m4: Update.
4380         * gnulib/import/m4/std-gnu11.m4: Update.
4381         * gnulib/import/m4/stdbool.m4: Update.
4382         * gnulib/import/m4/stddef_h.m4: Update.
4383         * gnulib/import/m4/stdint.m4: Update.
4384         * gnulib/import/m4/stdio_h.m4: Update.
4385         * gnulib/import/m4/stdlib_h.m4: Update.
4386         * gnulib/import/m4/strchrnul.m4: Update.
4387         * gnulib/import/m4/strdup.m4: Update.
4388         * gnulib/import/m4/strerror.m4: Update.
4389         * gnulib/import/m4/string_h.m4: Update.
4390         * gnulib/import/m4/strstr.m4: Update.
4391         * gnulib/import/m4/strtok_r.m4: Update.
4392         * gnulib/import/m4/sys_socket_h.m4: Update.
4393         * gnulib/import/m4/sys_stat_h.m4: Update.
4394         * gnulib/import/m4/sys_time_h.m4: Update.
4395         * gnulib/import/m4/sys_types_h.m4: Update.
4396         * gnulib/import/m4/tempname.m4: Update.
4397         * gnulib/import/m4/time_h.m4: Update.
4398         * gnulib/import/m4/unistd-safer.m4: Update.
4399         * gnulib/import/m4/unistd_h.m4: Update.
4400         * gnulib/import/m4/warn-on-use.m4: Update.
4401         * gnulib/import/m4/wchar_h.m4: Update.
4402         * gnulib/import/m4/wchar_t.m4: Update.
4403         * gnulib/import/m4/wctype_h.m4: Update.
4404         * gnulib/import/m4/wint_t.m4: Update.
4405         * gnulib/import/malloc.c: Update.
4406         * gnulib/import/malloc/scratch_buffer.h: Update.
4407         * gnulib/import/malloc/scratch_buffer_grow.c: Update.
4408         * gnulib/import/malloc/scratch_buffer_grow_preserve.c: Update.
4409         * gnulib/import/malloc/scratch_buffer_set_array_size.c: Update.
4410         * gnulib/import/malloca.c: Update.
4411         * gnulib/import/malloca.h: Update.
4412         * gnulib/import/malloca.valgrind: Update.
4413         * gnulib/import/math.in.h: Update.
4414         * gnulib/import/mbrtowc.c: Update.
4415         * gnulib/import/mbsinit.c: Update.
4416         * gnulib/import/mbsrtowcs-impl.h: Update.
4417         * gnulib/import/mbsrtowcs-state.c: Update.
4418         * gnulib/import/mbsrtowcs.c: Update.
4419         * gnulib/import/memchr.c: Update.
4420         * gnulib/import/memmem.c: Update.
4421         * gnulib/import/mempcpy.c: Update.
4422         * gnulib/import/memrchr.c: Update.
4423         * gnulib/import/mkdir.c: Update.
4424         * gnulib/import/mkstemp.c: Update.
4425         * gnulib/import/msvc-inval.c: Update.
4426         * gnulib/import/msvc-inval.h: Update.
4427         * gnulib/import/msvc-nothrow.c: Update.
4428         * gnulib/import/msvc-nothrow.h: Update.
4429         * gnulib/import/open.c: Update.
4430         * gnulib/import/openat-die.c: Update.
4431         * gnulib/import/openat-priv.h: Update.
4432         * gnulib/import/openat-proc.c: Update.
4433         * gnulib/import/openat.c: Update.
4434         * gnulib/import/openat.h: Update.
4435         * gnulib/import/opendir.c: Update.
4436         * gnulib/import/pathmax.h: Update.
4437         * gnulib/import/pipe-safer.c: Update.
4438         * gnulib/import/rawmemchr.c: Update.
4439         * gnulib/import/readdir.c: Update.
4440         * gnulib/import/readlink.c: Update.
4441         * gnulib/import/realloc.c: Update.
4442         * gnulib/import/ref-add.sin: Update.
4443         * gnulib/import/ref-del.sin: Update.
4444         * gnulib/import/rename.c: Update.
4445         * gnulib/import/rewinddir.c: Update.
4446         * gnulib/import/rmdir.c: Update.
4447         * gnulib/import/same-inode.h: Update.
4448         * gnulib/import/save-cwd.c: Update.
4449         * gnulib/import/save-cwd.h: Update.
4450         * gnulib/import/scratch_buffer.h: Update.
4451         * gnulib/import/secure_getenv.c: Update.
4452         * gnulib/import/setenv.c: Update.
4453         * gnulib/import/signal.in.h: Update.
4454         * gnulib/import/stat-time.c: Update.
4455         * gnulib/import/stat-time.h: Update.
4456         * gnulib/import/stat-w32.c: Update.
4457         * gnulib/import/stat-w32.h: Update.
4458         * gnulib/import/stat.c: Update.
4459         * gnulib/import/stdbool.in.h: Update.
4460         * gnulib/import/stddef.in.h: Update.
4461         * gnulib/import/stdint.in.h: Update.
4462         * gnulib/import/stdio.in.h: Update.
4463         * gnulib/import/stdlib.in.h: Update.
4464         * gnulib/import/str-two-way.h: Update.
4465         * gnulib/import/strchrnul.c: Update.
4466         * gnulib/import/strdup.c: Update.
4467         * gnulib/import/streq.h: Update.
4468         * gnulib/import/strerror-override.c: Update.
4469         * gnulib/import/strerror-override.h: Update.
4470         * gnulib/import/strerror.c: Update.
4471         * gnulib/import/string.in.h: Update.
4472         * gnulib/import/stripslash.c: Update.
4473         * gnulib/import/strnlen1.c: Update.
4474         * gnulib/import/strnlen1.h: Update.
4475         * gnulib/import/strstr.c: Update.
4476         * gnulib/import/strtok_r.c: Update.
4477         * gnulib/import/sys_stat.in.h: Update.
4478         * gnulib/import/sys_time.in.h: Update.
4479         * gnulib/import/sys_types.in.h: Update.
4480         * gnulib/import/tempname.c: Update.
4481         * gnulib/import/tempname.h: Update.
4482         * gnulib/import/time.in.h: Update.
4483         * gnulib/import/unistd--.h: Update.
4484         * gnulib/import/unistd-safer.h: Update.
4485         * gnulib/import/unistd.in.h: Update.
4486         * gnulib/import/unsetenv.c: Update.
4487         * gnulib/import/verify.h: Update.
4488         * gnulib/import/extra/snippet/warn-on-use.h: Update.
4489         * gnulib/import/wchar.in.h: Update.
4490         * gnulib/import/wctype.in.h: Update.
4491         * gnulib/import/xalloc-oversized.h: Update.
4492         * gnulib/update-gnulib.sh (GNULIB_COMMIT_SHA1): Set to
4493         "53e2c179f26a890fa6685af4b6c1397ee370433b".
4494
4495 2018-08-16  Gary Benson <gbenson@redhat.com>
4496
4497         PR gdb/13000:
4498         * gdb/main.c (captured_main_1): Exit with nonzero status
4499         in batch mode if the last command to be executed failed.
4500         * NEWS: Mention the above.
4501
4502 2018-08-29  Simon Marchi  <simon.marchi@ericsson.com>
4503
4504         * csky-tdep.c (csky_memory_insert_breakpoint): Remove newline at
4505         end of warning message.
4506
4507 2018-08-29  Alan Hayward  <alan.hayward@arm.com>
4508
4509         PR gdb/22943:
4510         * aarch64-tdep.c (is_hfa_or_hva): Remove function.
4511         (aarch64_extract_return_value): Use
4512         aapcs_is_vfp_call_or_return_candidate.
4513         (aarch64_return_in_memory): Likewise.
4514         (aarch64_store_return_value): Likewise.
4515
4516 2018-08-29  Alan Hayward  <alan.hayward@arm.com>
4517
4518         * aarch64-tdep.c
4519         (aapcs_is_vfp_call_or_return_candidate): Make static
4520         (pass_in_v_or_stack): Remove function.
4521         (pass_in_v_vfp_candidate): New function.
4522         (aarch64_push_dummy_call): Check for float register candidates.
4523
4524 2018-08-29  Alan Hayward  <alan.hayward@arm.com>
4525
4526         * aarch64-tdep.c (HA_MAX_NUM_FLDS): New macro.
4527         (aapcs_is_vfp_call_or_return_candidate_1): New function.
4528         (aapcs_is_vfp_call_or_return_candidate): Likewise.
4529
4530 2018-08-28  Simon Marchi  <simon.marchi@polymtl.ca>
4531
4532         PR build/23399
4533         * common/agent.c (IPA_SYM_STRUCT_NAME): Define.
4534         (struct ipa_sym_addresses): Rename to...
4535         (struct ipa_sym_addresses_common): ... this.
4536         * common/agent.h (IPA_SYM): Use IPA_SYM_STRUCT_NAME.
4537
4538 2018-08-28  Tom Tromey  <tom@tromey.com>
4539
4540         * c-exp.y (struct token_and_value): Remove typedef and DEF_VEC.
4541         (token_fifo): Now a std::vector.
4542         (yylex, c_parse): Update.
4543         * d-exp.y (struct token_and_value): Remove typedef and DEF_VEC.
4544         (token_fifo): Now a std::vector.
4545         (yylex, d_parse): Update.
4546         * go-exp.y (struct token_and_value): Remove typedef and DEF_VEC.
4547         (token_fifo): Now a std::vector.
4548         (yylex, go_parse): Update.
4549
4550 2018-08-28  Simon Marchi  <simon.marchi@ericsson.com>
4551
4552         * parser-defs.h (struct type_stack) <elements>: Change type to
4553         std::vector<union type_stack_elt>.
4554         <depth, size>: Remove.
4555         * parse.c (parse_exp_in_context_1): Adjust.
4556         (type_stack_reserve): Remove.
4557         (check_type_stack_depth): Remove.
4558         (insert_into_type_stack): Adjust to std::vector.
4559         (insert_type): Likewise.
4560         (push_type): Likewise.
4561         (push_type_int): Likewise.
4562         (insert_type_address_space): Likewise.
4563         (pop_type): Likewise.
4564         (pop_type_int): Likewise.
4565         (pop_typelist): Likewise.
4566         (pop_type_stack): Likewise.
4567         (append_type_stack): Likewise.
4568         (push_type_stack): Likewise.
4569         (get_type_stack): Likewise.
4570         (type_stack_cleanup): Likewise.
4571         (push_typelist): Likewise.
4572         (follow_types): Likewise.
4573         (_initialize_parse): Likewise.
4574
4575 2018-08-28  Hafiz Abid Qadeer  <abidh@codesourcery.com>
4576
4577         * NEWS: Mention csky target.
4578
4579 2018-08-28  Jiangshuai Li  <jiangshuai_li@c-sky.com>
4580             Hafiz Abid Qadeer  <abidh@codesourcery.com>
4581             Don Breazeal  <donb@codesourcery.com>
4582
4583         * csky-linux-tdep.c: New file.
4584         * csky-tdep.c: Likewise.
4585         * csky-tdep.h: Likewise.
4586         * Makefile.in (ALL_TARGET_OBS): Add csky-linux-tdep.o and
4587         csky-tdep.o.
4588         (HFILES_NO_SRCDIR): Add csky-tdep.h.
4589         (ALLDEPFILES): Add csky-linux-tdep.c and csky-tdep.c
4590         * configure.tgt: Add csky support.
4591
4592 2018-08-27  Jan Vrany  <jan.vrany@fit.cvut.cz>
4593
4594         * python/py-framefilter.c (py_print_frame): Print frame architecture
4595         when printing on an MI output.
4596
4597 2018-08-27  Tom Tromey  <tom@tromey.com>
4598
4599         PR build/23087:
4600         * configure: Rebuild.
4601         * warning.m4 (AM_GDB_WARNINGS): Remove -Wno-narrowing.
4602
4603 2018-08-27  Tom Tromey  <tom@tromey.com>
4604
4605         * aarch64-linux-tdep.c
4606         (aarch64_linux_iterate_over_regset_sections) <sve_regmap>: Add
4607         casts to int.
4608
4609 2018-08-27  Tom Tromey  <tom@tromey.com>
4610
4611         * ppc64-tdep.c (insn_d, insn_ds, insn_xfx): Add casts to
4612         unsigned.
4613         (ppc64_standard_linkage1, ppc64_standard_linkage2)
4614         (ppc64_standard_linkage3, ppc64_standard_linkage4)
4615         (ppc64_standard_linkage5, ppc64_standard_linkage6)
4616         (ppc64_standard_linkage7, ppc64_standard_linkage8): Add casts to
4617         unsigned.
4618
4619 2018-08-27  Tom Tromey  <tom@tromey.com>
4620
4621         * xtensa-tdep.h (XTREG_END): Add cast to unsigned.
4622         (XTENSA_GDBARCH_TDEP_INSTANTIATE): Likewise.
4623
4624 2018-08-27  Tom Tromey  <tom@tromey.com>
4625
4626         * tramp-frame.h (TRAMP_SENTINEL_INSN): Redefine.
4627         * tilegx-linux-tdep.c (tilegx_linux_rt_sigframe): Use
4628         ULONGEST_MAX.
4629         * tic6x-linux-tdep.c (tic6x_linux_rt_sigreturn_tramp_frame): Use
4630         ULONGEST_MAX.
4631         * sparc64-linux-tdep.c (sparc64_linux_rt_sigframe): Use
4632         ULONGEST_MAX.
4633         * sparc-linux-tdep.c (sparc32_linux_sigframe)
4634         (sparc32_linux_rt_sigframe): Use ULONGEST_MAX.
4635         * ppc-nbsd-tdep.c (ppcnbsd_sigtramp, ppcnbsd2_sigtramp): Use
4636         ULONGEST_MAX.
4637         * ppc-linux-tdep.c (ppc32_linux_sigaction_tramp_frame)
4638         (ppc64_linux_sigaction_tramp_frame)
4639         (ppc32_linux_sighandler_tramp_frame)
4640         (ppc64_linux_sighandler_tramp_frame): Use ULONGEST_MAX.
4641         * nios2-linux-tdep.c (nios2_r1_linux_rt_sigreturn_tramp_frame)
4642         (nios2_r2_linux_rt_sigreturn_tramp_frame): Use ULONGEST_MAX.
4643         * mn10300-linux-tdep.c (am33_linux_sigframe)
4644         (am33_linux_rt_sigframe): Use ULONGEST_MAX.
4645         * mips64-obsd-tdep.c (mips64obsd_sigframe): Use ULONGEST_MAX.
4646         * mips-linux-tdep.c (mips_linux_o32_sigframe)
4647         (mips_linux_o32_rt_sigframe, mips_linux_n32_rt_sigframe)
4648         (mips_linux_n64_rt_sigframe, micromips_linux_o32_sigframe)
4649         (micromips_linux_o32_rt_sigframe, micromips_linux_n32_rt_sigframe)
4650         (micromips_linux_n64_rt_sigframe): Use ULONGEST_MAX.
4651         * mips-fbsd-tdep.c (mips_fbsd_sigframe, mipsn32_fbsd_sigframe)
4652         (mips64_fbsd_sigframe): Use ULONGEST_MAX.
4653         * microblaze-linux-tdep.c
4654         (microblaze_linux_sighandler_tramp_frame): Use ULONGEST_MAX.
4655         * i386-nbsd-tdep.c (i386nbsd_sigtramp_sc16, i386nbsd_sigtramp_sc2)
4656         (i386nbsd_sigtramp_si2, i386nbsd_sigtramp_si31)
4657         (i386nbsd_sigtramp_si4): Use ULONGEST_MAX.
4658         * hppa-nbsd-tdep.c (hppanbsd_sigtramp_si4): Use ULONGEST_MAX.
4659         * common/common-types.h (ULONGEST_MAX): New define.
4660         (CORE_ADDR_MAX): Fix formatting.
4661         * bfin-linux-tdep.c (bfin_linux_sigframe): Use ULONGEST_MAX.
4662         * arm-obsd-tdep.c (armobsd_sigframe): Use ULONGEST_MAX.
4663         * arm-linux-tdep.c (arm_linux_sigreturn_tramp_frame)
4664         (arm_linux_rt_sigreturn_tramp_frame)
4665         (arm_eabi_linux_sigreturn_tramp_frame)
4666         (arm_eabi_linux_rt_sigreturn_tramp_frame)
4667         (thumb2_eabi_linux_sigreturn_tramp_frame)
4668         (thumb2_eabi_linux_rt_sigreturn_tramp_frame)
4669         (arm_linux_restart_syscall_tramp_frame)
4670         (arm_kernel_linux_restart_syscall_tramp_frame): Use ULONGEST_MAX.
4671         * arm-fbsd-tdep.c (arm_fbsd_sigframe): Use ULONGEST_MAX.
4672         * aarch64-linux-tdep.c (aarch64_linux_rt_sigframe): Use
4673         ULONGEST_MAX.
4674         * aarch64-fbsd-tdep.c (aarch64_fbsd_sigframe): Use ULONGEST_MAX.
4675
4676 2018-08-27  Tom Tromey  <tom@tromey.com>
4677
4678         * rs6000-tdep.c (ppc_deal_with_atomic_sequence): Use
4679         CORE_ADDR_MAX.
4680         * mips-tdep.c (mips_deal_with_atomic_sequence)
4681         (micromips_deal_with_atomic_sequence): Use CORE_ADDR_MAX.
4682         * arch/arm-get-next-pcs.c (thumb_deal_with_atomic_sequence_raw)
4683         (arm_deal_with_atomic_sequence_raw): Use CORE_ADDR_MAX.
4684         * alpha-tdep.c (alpha_deal_with_atomic_sequence): Use
4685         CORE_ADDR_MAX.
4686         * aarch64-tdep.c (aarch64_software_single_step): Use
4687         CORE_ADDR_MAX.
4688
4689 2018-08-27  Tom Tromey  <tom@tromey.com>
4690
4691         * linespec.c (complete_linespec_component): Add cast to "char".
4692         * completer.c (completion_tracker::build_completion_result): Add
4693         cast to "char".
4694
4695 2018-08-26  Simon Marchi  <simon.marchi@polymtl.ca>
4696
4697         * solist.h (struct solist, struct target_so_ops): Fix
4698         indentation.
4699
4700 2018-08-26  Simon Marchi  <simon.marchi@polymtl.ca>
4701
4702         * ada-tasks.c (ada_task_info_s): Remove typedef.
4703         (DEF_VEC_O(ada_task_info_s)): Remove.
4704         (struct ada_tasks_inferior_data): Initialize fields.
4705         <task_list>: Make an std::vector.
4706         (get_ada_tasks_inferior_data): Allocate with new.
4707         (ada_get_task_number): Adjust.
4708         (get_task_number_from_id): Likewise.
4709         (valid_task_id): Likewise.
4710         (ada_get_task_info_from_ptid): Likewise.
4711         (iterate_over_live_ada_tasks): Likewise.
4712         (add_ada_task): Likewise.
4713         (read_known_tasks): Likewise.
4714         (ada_build_task_list): Likewise.
4715         (print_ada_task_info): Likewise.
4716         (info_task): Likewise.
4717         (task_command_1): Likewise.
4718
4719 2018-08-26  Simon Marchi  <simon.marchi@polymtl.ca>
4720
4721         * ada-lang.c (add_angle_brackets): Return std::string.
4722
4723 2018-08-25  Simon Marchi  <simon.marchi@polymtl.ca>
4724
4725         * python/py-threadevent.c (py_get_event_thread): Initialize
4726         pythread.
4727
4728 2018-08-24  Pedro Alves  <palves@redhat.com>
4729
4730         * python/py-bpevent.c (create_breakpoint_event_object): Use
4731         copy-initialization.
4732         * python/py-continueevent.c (emit_continue_event): Use
4733         copy-initialization.
4734         * python/py-exitedevent.c (create_exited_event_object): Return a
4735         gdbpy_ref<>.
4736         (emit_exited_event): Use copy-initialization.
4737         * python/py-inferior.c (python_new_inferior)
4738         (python_inferior_deleted, add_thread_object): Use
4739         copy-initialization.
4740         * python/py-infevents.c (create_inferior_call_event_object)
4741         (create_register_changed_event_object)
4742         (create_memory_changed_event_object): Return a gdbpy_ref<>.
4743         (emit_inferior_call_event, emit_memory_changed_event)
4744         (emit_register_changed_event): Use copy-initialization.
4745         * python/py-newobjfileevent.c (create_new_objfile_event_object):
4746         Return a gdbpy_ref<>.
4747         (emit_new_objfile_event): Use copy-initialization.
4748         (create_clear_objfiles_event_object): Return a gdbpy_ref<>.
4749         (emit_clear_objfiles_event): Use copy-initialization.
4750         * python/py-signalevent.c (create_signal_event_object): Use
4751         copy-initialization.
4752         * python/py-threadevent.c (create_thread_event_object): Use
4753         copy-initialization.
4754
4755 2018-08-24  Pedro Alves  <palves@redhat.com>
4756             Simon Marchi  <simon.marchi@ericsson.com>
4757
4758         PR gdb/23379
4759         * python/py-continueevent.c: Include "gdbthread.h".
4760         (create_continue_event_object): Add intro comment.  Add 'ptid'
4761         parameter.  Use it to find thread to pass to
4762         create_thread_event_object.
4763         (emit_continue_event): Pass PTID down to
4764         create_continue_event_object.
4765         * python/py-event.h (py_get_event_thread): Declare.
4766         (create_thread_event_object): Remove default from 'thread'
4767         parameter.
4768         * python/py-stopevent.c (create_stop_event_object): Use
4769         py_get_event_thread.
4770         * python/py-threadevent.c (get_event_thread): Rename to ...
4771         (py_get_event_thread): ... this, make extern, add 'ptid' parameter
4772         and use it to find the thread.
4773         (create_thread_event_object): Assert that THREAD isn't null.
4774         Don't find the event thread here.
4775
4776 2018-08-23  Kevin Buettner  <kevinb@redhat.com>
4777
4778         * block.h (blockrange, blockranges): New struct declarations.
4779         (struct block): Add new field named `ranges'.
4780         (BLOCK_RANGES, BLOCK_NRANGES, BLOCK_RANGE, BLOCK_CONTIGUOUS_P)
4781         (BLOCK_RANGE_START, BLOCK_RANGE_END, BLOCK_ENTRY_PC): New
4782         macros for accessing ranges in struct block.
4783         (make_blockranges): New declaration.
4784         block.c (make_blockranges): New function.
4785         * dwarf2read.c (dwarf2_record_block_ranges): Fill in BLOCK_RANGES
4786         for block.
4787         * symtab.h (find_pc_partial_function): Add new parameter `block'.
4788         * blockframe.c (cache_pc_function_block): New static global.
4789         (clear_pc_function_cache): Clear cache_pc_function_block.
4790         (find_pc_partial_function): Move comment to symtab.h.  Add
4791         support for non-contiguous blocks.
4792         * cli/cli-cmds.c (block.h): Include.
4793         (print_disassembly): Handle printing of non-contiguous blocks.
4794         (disassemble_current_function): Likewise.
4795         (disassemble_command): Likewise.
4796
4797         * ax-gdb.c (gen_var_ref): Use BLOCK_ENTRY_PC in place of
4798         BLOCK_START.
4799         * blockframe.c (get_pc_function_start): Likewise.
4800         * compile/compile-c-symbols.c (convert_one_symbol): Likewise.
4801         (gcc_symbol_address): Likewise.
4802         * compile/compile-object-run.c (compile_object_run): Likewise.
4803         * compile/compile.c (get_expr_block_and_pc): Likewise.
4804         * dwarf2loc.c (dwarf2_find_location_expression): Likewise.
4805         (func_addr_to_tail_call_list): Likewise.
4806         * findvar.c (default_read_var_value): Likewise.
4807         * inline-frame.c (inline_frame_this_id): Likewise.
4808         (skip-inline_frames): Likewise.
4809         * infcmd.c (until_next_command): Likewise.
4810         * linespec.c (convert_linespec_to_sals): Likewise.
4811         * parse.c (parse_exp_in_context_1): Likewise.
4812         * printcmd.c (build_address_symbolic): likewise.
4813         (info_address_command): Likewise.
4814         symtab.c (find_function_start_sal): Likewise.
4815         (skip_prologue_sal): Likewise.
4816         (find_function_alias_target): Likewise.
4817         (find_gnu_ifunc): Likewise.
4818         * stack.c (find_frame_funname): Likewise.
4819         * symtab.c (fixup_symbol_section): Likewise.
4820         (find_function_start_sal): Likewise.
4821         (skip_prologue_sal): Likewsie.
4822         (find_function_alias_target): Likewise.
4823         (find_gnu_ifunc): Likewise.
4824         * tracepoint.c (info_scope_command): Likewise.
4825         * value.c (value_fn_field): Likewise.
4826
4827         * infrun.c (fill_in_stop_func): Use find_function_entry_range_from_pc
4828         in place of find_pc_partial_function.
4829         * blockframe.c (find_function_entry_range_from_pc): New function.
4830         * symtab.h (find_function_entry_range_from_pc): Declare and document.
4831         * objfiles.c (objfile_relocate1): Relocate start and end addresses
4832         for each range in a block.
4833
4834
4835 2018-08-23  Xavier Roirand  <roirand@adacore.com>
4836
4837         * machoread.c (macho_symfile_read_all_oso): Remove uneeded
4838         incrementation.
4839
4840 2018-08-22  Simon Marchi  <simon.marchi@polymtl.ca>
4841
4842         * solib-svr4.c (read_program_headers_from_bfd): Return
4843         gdb::optional<gdb::byte_vector>.
4844         (svr4_exec_displacement): Adjust.
4845
4846 2018-08-22  Simon Marchi  <simon.marchi@polymtl.ca>
4847
4848         * solib-svr4.c (read_program_header): Return
4849         gdb::optional<gdb::byte_vector>, remove p_sect_size param.
4850         (find_program_interpreter): Return
4851         gdb::optional<gdb::byte_vector>.
4852         (scan_dyntag_auxv): Adjust.
4853         (enable_break): Adjust.
4854         (svr4_exec_displacement): Adjust.
4855
4856 2018-08-22  Simon Marchi  <simon.marchi@polymtl.ca>
4857
4858         * inf-child.h (inf_child_target) <terminal_save_inferior>: New.
4859         * inf-child.c (inf_child_target::terminal_save_inferior): New.
4860
4861 2018-08-22  Simon Marchi  <simon.marchi@polymtl.ca>
4862
4863         * guile/scm-string.c (gdbscm_scm_from_printf): Use
4864         string_vprintf.
4865         * guile/scm-utils.c (gdbscm_printf): Likewise.
4866         * serial.c (serial_printf): Likewise.
4867         * xml-support.c (gdb_xml_parser::vdebug): Likewise.
4868
4869 2018-08-22  Jan Vrany  <jan.vrany@fit.cvut.cz>
4870
4871         * stack.c (print_frame): Print frame architecture when printing on
4872         an MI output.
4873         * NEWS: Mention new "arch" attribute in frame output.
4874
4875 2018-08-21  Alan Hayward  <alan.hayward@arm.com>
4876
4877         * arch/aarch64.h (aarch64_regnum): Update comment.
4878
4879 2018-08-21  Alan Hayward  <alan.hayward@arm.com>
4880
4881         * NEWS: Add SVE to 8.2 section.
4882
4883 2018-08-21  Pedro Alves  <palves@redhat.com>
4884
4885         * guile/scm-utils.c (gdbscm_parse_function_args_1): New, factored
4886         out from gdbscm_parse_function_args.
4887         (gdbscm_parse_function_args): Rework to use gdbscm_wrap and
4888         gdbscm_parse_function_args_1.
4889
4890 2018-08-21  Simon Marchi  <simon.marchi@ericsson.com>
4891
4892         PR gdb/17816
4893         * m32c-tdep.c (m32c_decode_srcdest4): Remove unnecessary ternary
4894         operator.
4895
4896 2018-08-19  Simon Marchi  <simon.marchi@polymtl.ca>
4897
4898         * solib-svr4.c (svr4_exec_displacement): Fix formatting.
4899
4900 2018-08-19  Michael Spang  <spang@google.com>
4901
4902         PR gdb/11786
4903         * solib-svr4.c (svr4_exec_displacement): Ignore memsz fields
4904         for PT_TLS segments.
4905
4906 2018-08-18  Kevin Buettner  <kevinb@redhat.com>
4907
4908         * dwarf2expr.h (struct dwarf_expr_context): Add virtual method
4909         dwarf_variable_value.
4910         * dwarf2-frame.c (class dwarf_expr_executor):
4911         Add override for dwarf_variable_value.
4912         * dwarf2loc.c (class dwarf_evaluate_loc_desc): Likewise.
4913         (class symbol_needs_eval_context): Likewise.
4914         (indirect_synthetic_pointer): Add forward declaration.
4915         (sect_variable_value): New function.
4916         (dwarf2_compile_expr_to_ax): Add case for DW_OP_GNU_variable_value.
4917         * dwarf2expr.c (dwarf_expr_context::execute_stack_op): Add case
4918         for DW_OP_GNU_variable_value.
4919
4920 2018-08-16  Tom Tromey  <tom@tromey.com>
4921
4922         * top.c (read_command_file): Update.
4923         (command_line_input): Remove "repeat" argument.
4924         * ada-lang.c (get_selections): Update.
4925         * linespec.c (decode_line_2): Update.
4926         * defs.h (command_line_input): Remove argument.
4927         * cli/cli-script.c (read_next_line): Update.
4928         * python/py-gdb-readline.c: Update.
4929
4930 2018-08-17  Tom Tromey  <tom@tromey.com>
4931
4932         * cli/cli-script.c (read_next_line): Pass 0 as repeat argument to
4933         command_line_input.
4934
4935 2018-08-15  Tom Tromey  <tom@tromey.com>
4936
4937         * aarch64-linux-tdep.c (aarch64_linux_core_read_vq): Use pulongest.
4938
4939 2018-08-14  Jan Vrany  <jan.vrany@fit.cvut.cz>
4940
4941         * mi/mi-cmd-disas.c (mi_cmd_disassemble): Add -a option.
4942         If used, use find_pc_partial_function to find address range
4943         to disassemble.
4944         * mi/mi-main.c (mi_cmd_list_features): Report
4945         "data-disassemble-a-option" feature.
4946         * NEWS: Mention new -data-disassemble option -a.
4947
4948 2018-08-13  Tom Tromey  <tom@tromey.com>
4949
4950         * common/common-defs.h (_FORTIFY_SOURCE): Define.
4951
4952 2018-08-13  Alan Hayward  <alan.hayward@arm.com>
4953
4954         * aarch64-linux-tdep.c (aarch64_linux_supply_sve_regset): New function.
4955         (aarch64_linux_collect_sve_regset): Likewise.
4956         (aarch64_linux_iterate_over_regset_sections): Check for SVE.
4957         * regcache.h (regcache_map_entry_size): New function.
4958
4959 2018-08-13  Alan Hayward  <alan.hayward@arm.com>
4960
4961         * aarch64-linux-tdep.c (SVE_HEADER_SIZE_LENGTH): Add define.
4962         (SVE_HEADER_MAX_SIZE_LENGTH): Likewise.
4963         (SVE_HEADER_VL_LENGTH): Likewise.
4964         (SVE_HEADER_MAX_VL_LENGTH): Likewise.
4965         (SVE_HEADER_FLAGS_LENGTH): Likewise.
4966         (SVE_HEADER_RESERVED_LENGTH): Likewise.
4967         (SVE_HEADER_SIZE_OFFSET): Likewise.
4968         (SVE_HEADER_MAX_SIZE_OFFSET): Likewise.
4969         (SVE_HEADER_VL_OFFSET): Likewise.
4970         (SVE_HEADER_MAX_VL_OFFSET): Likewise.
4971         (SVE_HEADER_FLAGS_OFFSET): Likewise.
4972         (SVE_HEADER_RESERVED_OFFSET): Likewise.
4973         (SVE_HEADER_SIZE): Likewise.
4974         (aarch64_linux_core_read_vq): Add function.
4975         (aarch64_linux_core_read_description): Check for SVE section.
4976
4977 2018-08-13  Alan Hayward  <alan.hayward@arm.com>
4978
4979         * aarch64-fbsd-tdep.c
4980         (aarch64_fbsd_iterate_over_regset_sections): Add supply_size and
4981         collect_size.
4982         * aarch64-linux-tdep.c
4983         (aarch64_linux_iterate_over_regset_sections): Likewise.
4984         * alpha-linux-tdep.c
4985         (alpha_linux_iterate_over_regset_sections):
4986         * alpha-nbsd-tdep.c
4987         (alphanbsd_iterate_over_regset_sections): Likewise.
4988         * amd64-fbsd-tdep.c
4989         (amd64fbsd_iterate_over_regset_sections): Likewise.
4990         * amd64-linux-tdep.c
4991         (amd64_linux_iterate_over_regset_sections): Likewise.
4992         * arm-bsd-tdep.c
4993         (armbsd_iterate_over_regset_sections): Likewise.
4994         * arm-fbsd-tdep.c
4995         (arm_fbsd_iterate_over_regset_sections): Likewise.
4996         * arm-linux-tdep.c
4997         (arm_linux_iterate_over_regset_sections): Likewise.
4998         * corelow.c (get_core_registers_cb): Likewise.
4999         (core_target::fetch_registers): Likewise.
5000         * fbsd-tdep.c (fbsd_collect_regset_section_cb): Likewise.
5001         * frv-linux-tdep.c (frv_linux_iterate_over_regset_sections): Likewise.
5002         * gdbarch.h (void): Regenerate.
5003         * gdbarch.sh: Add supply_size and collect_size.
5004         * hppa-linux-tdep.c (hppa_linux_iterate_over_regset_sections): Likewise.
5005         * hppa-nbsd-tdep.c (hppanbsd_iterate_over_regset_sections): Likewise.
5006         * hppa-obsd-tdep.c (hppaobsd_iterate_over_regset_sections): Likewise.
5007         * i386-fbsd-tdep.c (i386fbsd_iterate_over_regset_sections): Likewise.
5008         * i386-linux-tdep.c (i386_linux_iterate_over_regset_sections): Likewise.
5009         * i386-tdep.c (i386_iterate_over_regset_sections): Likewise.
5010         * ia64-linux-tdep.c (ia64_linux_iterate_over_regset_sections): Likewise.
5011         * linux-tdep.c (linux_collect_regset_section_cb): Likewise.
5012         * m32r-linux-tdep.c (m32r_linux_iterate_over_regset_sections): Likewise.
5013         * m68k-bsd-tdep.c (m68kbsd_iterate_over_regset_sections): Likewise.
5014         * m68k-linux-tdep.c (m68k_linux_iterate_over_regset_sections): Likewise.
5015         * mips-fbsd-tdep.c (mips_fbsd_iterate_over_regset_sections): Likewise.
5016         * mips-linux-tdep.c (mips_linux_iterate_over_regset_sections): Likewise.
5017         * mips-nbsd-tdep.c (mipsnbsd_iterate_over_regset_sections): Likewise.
5018         * mips64-obsd-tdep.c (mips64obsd_iterate_over_regset_sections):
5019         Likewise.
5020         * mn10300-linux-tdep.c (am33_iterate_over_regset_sections): Likewise.
5021         * nios2-linux-tdep.c (nios2_iterate_over_regset_sections): Likewise.
5022         * ppc-fbsd-tdep.c (ppcfbsd_iterate_over_regset_sections): Likewise.
5023         * ppc-linux-tdep.c (ppc_linux_iterate_over_regset_sections): Likewise.
5024         * ppc-nbsd-tdep.c (ppcnbsd_iterate_over_regset_sections): Likewise.
5025         * ppc-obsd-tdep.c (ppcobsd_iterate_over_regset_sections): Likewise.
5026         * riscv-linux-tdep.c (riscv_linux_iterate_over_regset_sections):
5027         Likewise.
5028         * rs6000-aix-tdep.c (rs6000_aix_iterate_over_regset_sections): Likewise.
5029         * s390-linux-tdep.c (s390_iterate_over_regset_sections): Likewise.
5030         * score-tdep.c (score7_linux_iterate_over_regset_sections): Likewise.
5031         * sh-tdep.c (sh_iterate_over_regset_sections): Likewise.
5032         * sparc-tdep.c (sparc_iterate_over_regset_sections): Likewise.
5033         * tilegx-linux-tdep.c (tilegx_iterate_over_regset_sections): Likewise.
5034         * vax-tdep.c (vax_iterate_over_regset_sections): Likewise.
5035         * xtensa-tdep.c (xtensa_iterate_over_regset_sections): Likewise.
5036
5037 2018-08-10  Simon Marchi  <simon.marchi@ericsson.com>
5038
5039         * nat/linux-osdata.c (commandline_from_pid): Replace xstrprintf
5040         with string_printf.
5041
5042 2018-08-10  Keith Seitz  <keiths@redhat.com>
5043
5044         * compile/compile-c-support.c (add_code_header, add_code_footer):
5045         Move into policy class.
5046         (c_push_user_expression, pop_user_expression_nop)
5047         (c_add_code_header, c_add_code_footer, c_add_input): New policy class.
5048         (compile_program): New host class.
5049         (c_compile_program): New typedef.
5050         (c_compute_porgram): Use c_compile_program.
5051
5052 2018-08-10  Keith Seitz  <keiths@redhat.com>
5053
5054         * compile/compile-internal.h (compile_instance::~compile_instance):
5055         Remove calls to htab_delete.
5056         <m_type_map, m_symbol_err_map>: Switch type to htab_up.
5057         * compile.c (compile_instance::compile_instance): Initialize
5058         htab unique pointers.
5059         (compile_instance::get_cached_type, compile_instance::insert_type)
5060         (compile_instance::error_symbol_once): Update for unique_ptr.
5061
5062 2018-08-10  Keith Seitz  <keiths@redhat.com>
5063
5064         * compile/compile-c-symbols.c (struct symbol_error)
5065         (hash_symbol_error, eq_symbol_error, del_symbol_error)
5066         (compile_instance::insert_symbol_error)
5067         (compile_instance::error_symbol_once): Move to ...
5068         * compile/compile.c: ... here.
5069
5070 2018-08-10  Keith Seitz  <keiths@redhat.com>
5071
5072         * compile/compile-c-support.c (c_get_compile_context): Use `new'
5073         instead of `new_compile_instance'.
5074         * compile/compile-c-symbols.c (compile_instance::insert_symbol_error):
5075         Update description.
5076         If the symbol error map is not initialized, create it.
5077         (generate_c_for_for_one_symbol): Do not check/initialize
5078         the symbol error map.
5079         * compile/compile-c-types.c (compile_c_instance): Make a class.
5080         Update all callers.
5081         (compile_instance::compile_instance): Initialize the type cache.
5082         (get_cached_type): New function.
5083         (insert_type): Update description.
5084         (compile_c_instance::m_default_cflags): Define.
5085         (convert_type): Update description.  Use get_cached_type.
5086         (delete_instance): Moved to destructor.
5087         (new_compile_instance): Moved to constructor.
5088         * compile/compile-c.h (compile_c_instance): Make class inheriting
5089         from compile_instance.
5090         <base>: Remove field.
5091         <type_map, symbol_err_map>: Move to base class.
5092         <c_plugin>: Rename to `m_plugin' and remove pointer type.
5093         * compile/compile-internal.h (compile_instance): Make class.
5094         <type_map_t, symbol_err_map_t>: Define.
5095         <fe>: Rename to `m_gcc_fe'.
5096         <scope, block, gcc_target_options>: Add `m_' prefix.
5097         <m_type_map, m_symbol_err_map>: New fields, moved from
5098         compile_c_instance.
5099         <destroy>: Remove.
5100         (convert_type, new_compile_instance): Remove.
5101         * compile/compile.c (cleanup_compile_instance): Remove.
5102         (compile_to_object): Use unique_ptr to eliminate cleanups.
5103         (compile_instance::set_print_callback, compile_instance::version)
5104         (compile_instance::set_verbose)
5105         (compile_instance::set_driver_filename)
5106         (compile_instance::set_triplet_regexp)
5107         (compile_instance::set_arguments)
5108         (compile_instance::set_source_file)
5109         (compile_instance::compile): Define.
5110
5111 2018-08-10  Keith Seitz  <keiths@redhat.com>
5112
5113         * Makefile.in (HFILES_NO_SRCDIR): Add compile/gcc-c-plugin.h.
5114         * compile/compile-c-types.c: Define GCC_METHODN macros and include
5115         gcc-c-fe.def to define C plugin.
5116         (delete_instance): Delete `c_plugin'.
5117         (new_compile_instance): Initialize `c_plugin'.
5118         * compile/compile-c.h: Include gcc_c_plugin.h.
5119         (struct compile_c_instance) <c_plugin>: New member.
5120         * gcc-c-plugin.h: New file.
5121         Update all callers with API change.
5122
5123 2018-08-10  Keith Seitz  <keiths@redhat.com>
5124
5125         * Makefile.in (SUBDIR_GCC_COMPILE_SRCS): Move header files ...
5126         (HFILES_NO_SRCDIR): ... to here.
5127         Add compile-internal.h and compile-c.h.
5128         * compile/compile-c-support.c: Include compile-c.h.
5129         * compile/compile-c-symbols.c: Include compile-c.h.
5130         (generate_c_for_variable_locations): Update comment.
5131         * compile/compile-c-types.c: Include compile-c.h.
5132         * compile/compile-c.h: New file -- moved C language declarations
5133         from other files here.
5134         * compile/compile-internal.h: Do not include hashtab.h or
5135         common/enum-flags.h.
5136         (gcc_qualifiers_flags, struct compile_c_instance, C_CTX)
5137         (gcc_convert_symbol, gcc_symbol_address)
5138         (generate_c_for_variable_locations, c_get_mode_for_size)
5139         (c_get_range_decl_name): Definitions moved to compile-c.h.
5140         * compile/compile-loc2c.c: Include compile-c.h.
5141
5142 2018-08-10  Keith Seitz  <keiths@redhat.com>
5143
5144         * compile/compile-c-symbols.c (symbol_substitution_name): Rename to ...
5145         (c_symbol_substitution_name): ... this.
5146         Update all callers.
5147
5148 2018-08-10  Keith Seitz  <keiths@redhat.com>
5149
5150         * compile/compile-c-support.c (c_compute_program): Use
5151         unique_xmalloc_ptr to eliminate cleanup.
5152         * compile/compile-c-symbols.c (generate_c_for_variable_locations):
5153         Return a unique_xmalloc_ptr and eliminate cleanup.
5154         * compile/compile-internal.h (generate_c_for_variable_locations):
5155         Return unique_xmalloc_ptr and update description.
5156
5157 2018-08-10  Alan Hayward  <alan.hayward@arm.com>
5158
5159         * corelow.c (core_target::get_core_register_section): Rename
5160         min_size to section_min_size.
5161
5162 2018-08-09  Jim Wilson  <jimw@sifive.com>
5163
5164         * Makefile.in (ALL_TARGET_OBS): Add riscv-linux-tdep.c.
5165         (ALLDEPFILES): Add riscv-linux-nat.c, and riscv-linux-tdep.c.
5166         * NEWS: Mention new GNU/Linux RISC-V target.
5167         * configure.host: Add riscv*-*-linux*.
5168         * configure.nat: Add riscv*.
5169         * configure.tgt: Add riscv*-*-linux*.
5170         * riscv-linux-nat.c: New file.
5171         * riscv-linux-tdep.c: New file.
5172
5173 2018-08-09  Andrew Burgess  <andrew.burgess@embecosm.com>
5174
5175         * infrun.c (resume): Make static, add forward declaration.
5176         (proceed): Update header comment.
5177         * infrun.h (resume): Delete declaration.
5178
5179 2018-08-09  Tom Tromey  <tom@tromey.com>
5180
5181         * riscv-tdep.h: Minor formatting fixes.
5182
5183 2018-08-09  Simon Marchi  <simon.marchi@ericsson.com>
5184
5185         * common/scoped_mmap.c (mmap_file): Silence ARI warning.
5186         * dwarf-index-cache.c (create_dir_and_check): Likewise.
5187         (test_mkdir_recursive): Likewise.
5188         * dwarf-index-write.c (write_psymtabs_to_index): Likewise.
5189
5190 2018-08-09  Andrew Burgess  <andrew.burgess@embecosm.com>
5191
5192         * valarith.c (value_subscripted_rvalue): If an array is not in
5193         memory, and we don't know the upper bound, then we can't know that
5194         the requested element exists or not.
5195
5196 2018-08-08  Simon Marchi  <simon.marchi@ericsson.com>
5197
5198         * target.c (str_comma_list_concat_elem): Fix typo in comment.
5199         (target_options_to_string): Add comment.
5200
5201 2018-08-08  Tom Tromey  <tom@tromey.com>
5202
5203         * unittests/scoped_mmap-selftests.c: Check result of "write".
5204
5205 2018-08-08  Jim Wilson  <jimw@sifive.com>
5206
5207         * riscv-tdep.c (enum opcode): Add jump, branch, lr, and sc opcodes.
5208         (decode_register_index_short): New.
5209         (decode_j_type_insn, decode_cj_type_insn): New.
5210         (decode_b_type_insn, decode_cb_type_insn): New.
5211         (riscv_insn::decode): Add support for jumps, branches, lr, and sc.  New
5212         local xlen.  Check xlen when decoding ambiguous compressed insns.  In
5213         compressed decode, use is_c_lui_insn instead of is_lui_insn, and
5214         is_c_sw_insn instead of is_sw_insn.
5215         (riscv_next_pc, riscv_next_pc_atomic_sequence): New.
5216         (riscv_software_single_step): New.
5217         * riscv-tdep.h (riscv_software_single_step): Declare.
5218
5219         * riscv-tdep.c (riscv_isa_xlen): Drop static.
5220         * riscv-tdep.h (riscv_isa_xlen): Add extern declaration.
5221
5222 2018-08-08  Andrew Burgess  <andrew.burgess@embecosm.com>
5223
5224         PR gdb/18050:
5225         * target.c (dispose_inferior): Don't dispose of inferiors that are
5226         already killed.
5227
5228 2018-08-08  Szabolcs Nagy  <szabolcs.nagy@arm.com>
5229
5230         * remote.c (remote_target::download_tracepoint): Change char* to
5231         const char*.
5232
5233 2018-08-07  Simon Marchi  <simon.marchi@polymtl.ca>
5234
5235         * target.h (target_options_to_string): Return an std::string.
5236         * target.c (str_comma_list_concat_elem): Return void, use
5237         std::string.
5238         (do_option): Likewise.
5239         (target_options_to_string): Return an std::string.
5240         * linux-nat.c (linux_nat_target::wait): Adjust.
5241         * target-debug.h (target_debug_print_options): Adjust.
5242
5243 2018-08-07  Tom Tromey  <tom@tromey.com>
5244
5245         * Makefile.in (CPPFLAGS): New variable.
5246         (INTERNAL_CPPFLAGS): Use it.
5247
5248 2018-08-07  Simon Marchi  <simon.marchi@ericsson.com>
5249
5250         * NEWS: Mention the index cache.
5251
5252 2018-08-07  Simon Marchi  <simon.marchi@ericsson.com>
5253
5254         * common/pathstuff.h (get_standard_cache_dir): New.
5255         * common/pathstuff.c (get_standard_cache_dir): New.
5256         * build-id.h (build_id_to_string): New.
5257         * dwarf-index-common.h (INDEX4_SUFFIX, INDEX5_SUFFIX,
5258         DEBUG_STR_SUFFIX): Move to here.
5259         * dwarf-index-write.c (INDEX4_SUFFIX, INDEX5_SUFFIX,
5260         DEBUG_STR_SUFFIX): Move from there.
5261         (write_psymtabs_to_index): Make non-static, add basename
5262         parameter.  Write to temporary files, rename when done.
5263         (save_gdb_index_command): Adjust call to
5264         write_psymtabs_to_index.
5265         * dwarf2read.h (dwarf2_per_objfile) <index_cache_res>: New
5266         field.
5267         * dwarf2read.c (dwz_file) <index_cache_res>: New field.
5268         (get_gdb_index_contents_from_cache): New.
5269         (get_gdb_index_contents_from_cache_dwz): New.
5270         (dwarf2_initialize_objfile): Read index from cache.
5271         (dwarf2_build_psymtabs): Save to index.
5272         * dwarf-index-cache.h: New file.
5273         * dwarf-index-cache.c: New file.
5274         * dwarf-index-write.h: New file.
5275
5276 2018-08-07  Simon Marchi  <simon.marchi@ericsson.com>
5277
5278         * gnulib/aclocal.m4: Re-generate.
5279         * gnulib/config.in: Re-generate.
5280         * gnulib/configure: Re-generate.
5281         * gnulib/import/Makefile.am: Re-generate.
5282         * gnulib/import/Makefile.in: Re-generate.
5283         * gnulib/import/m4/gnulib-cache.m4: Re-generate.
5284         * gnulib/import/m4/gnulib-comp.m4: Re-generate.
5285         * gnulib/import/m4/mkdir.m4: New file.
5286         * gnulib/import/mkdir.c: New file.
5287         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add mkdir
5288         module.
5289
5290 2018-08-07  Simon Marchi  <simon.marchi@ericsson.com>
5291
5292         * Makefile.in (COMMON_SFILES): Add common/scoped_mmap.c.
5293         * common/scoped_mmap.c: New file.
5294         * common/scoped_mmap.h (destroy): New method.
5295         (~scoped_mmap, reset): Use destroy.
5296         (scoped_mmap): New move constructor.
5297         (mmap_file): New declaration.
5298         * unittests/scoped_mmap-selftests.c (test_normal,
5299         test_invalid_filename, run_tests): New functions.
5300         (_initialize_scoped_mmap_selftests): Register selftest.
5301
5302 2018-08-07  Simon Marchi  <simon.marchi@ericsson.com>
5303
5304         * dwarf2read.c (read_gdb_index_from_section): Rename to...
5305         (read_gdb_index_from_buffer): ... this.  Remove section
5306         parameter, add buffer parameter.
5307         (get_gdb_index_contents_ftype,
5308         get_gdb_index_contents_dwz_ftype): New typedefs.
5309         (dwarf2_read_gdb_index): Add callback parameters to get the
5310         index contents.
5311         (get_gdb_index_contents_from_section): New.
5312         (dwarf2_initialize_objfile): Update call to
5313         dwarf2_read_gdb_index.
5314
5315 2018-08-07  Simon Marchi  <simon.marchi@ericsson.com>
5316
5317         * common/filestuff.h (gdb_fopen_cloexec): New overload.
5318         (gdb_open_cloexec): Likewise.
5319         * nat/linux-osdata.c (command_from_pid): Use string_printf.
5320         (commandline_from_pid): Likewise.
5321         (linux_xfer_osdata_threads): Likewise.
5322         (linux_xfer_osdata_fds): Likewise.
5323         * ada-lang.c (is_package_name): Likewise.
5324         * auxv.c (procfs_xfer_auxv): Likewise.
5325         * breakpoint.c (print_one_breakpoint_location): Use
5326         uiout::field_fmt.
5327         (print_one_catch_solib): Use string_printf.
5328         * coff-pe-read.c (add_pe_exported_sym): Likewise.
5329         (add_pe_forwarded_sym): Likewise.
5330         * dwarf2read.c (create_type_unit_group): Likewise.
5331         (build_error_marker_type): Likewise.
5332         * infcall.c (get_function_name): Likewise.
5333         * valprint.c (print_converted_chars_to_obstack): Likewise.
5334         * xtensa-tdep.c (xtensa_register_type): Likewise.
5335
5336 2018-08-06  Simon Marchi  <simon.marchi@ericsson.com>
5337
5338         * remote.c (remote_target::download_tracepoint): Fix format
5339         string errors.
5340
5341 2018-08-06  Pedro Franco de Carvalho  <pedromfc@linux.ibm.com>
5342
5343         * tracefile.c: Include common/byte-vector.h.
5344         (trace_save): Change type of buf to gdb::byte_vector.  Initialize
5345         with trace_regblock_size if needed.  Update uses of buf.
5346
5347 2018-08-06  Pedro Franco de Carvalho  <pedromfc@linux.ibm.com>
5348
5349         * tracepoint.h (collection_list) <m_regs_mask>: Change type to
5350         std::vector<unsigned char>.
5351         * tracepoint.c (collection_list::collection_list): Remove
5352         m_regs_mask initializer from initializer list.  Resize
5353         m_regs_mask using the largest remote register number.
5354         (collection_list::add_remote_register): Remove size check on
5355         m_regs_mask.  Use at to access element.
5356         (collection_list::stringify): Change type of temp_buf to
5357         gdb::char_vector.  Update uses of temp_buf.  Resize if needed to
5358         stringify the register mask.  Use pack_hex_byte for the register
5359         mask.
5360
5361 2018-08-06  Pedro Franco de Carvalho  <pedromfc@linux.ibm.com>
5362
5363         * tracepoint.h (class collection_list) <add_register>: Remove.
5364         <add_remote_register, add_ax_registers, add_local_register>:
5365         Declare.
5366         <add_memrange>: Add scope parameter.
5367         * tracepoint.c (encode_actions_1): Likewise.
5368         (collection_list::add_register): Rename to ...
5369         (collection_list::add_remote_register): ... this.  Update
5370         comment.
5371         (collection_list::add_ax_registers, add_local_register): New
5372         methods.
5373         (collection_list::add_memrange): Add scope parameter.  Call
5374         add_local_register instead of add_register.
5375         (finalize_tracepoint_aexpr): New function.
5376         (collection_list::collect_symbol): Update calls to add_memrange.
5377         Call add_local_register instead of add_register.  Call
5378         add_ax_registers.  Call finalize_tracepoint_aexpr.
5379         (encode_actions_1): Get remote regnos for $reg action.  Call
5380         add_remote_register, add_ax_registers, and add_local_register.
5381         Update call to add_memrange.  Call finalize_tracepoint_aexpr.
5382         (validate_actionline): Call finalize_tracepoint_aexpr.
5383
5384 2018-08-06  Pedro Franco de Carvalho  <pedromfc@linux.ibm.com>
5385
5386         * remote.c (remote_target::download_tracepoint): Remove BUF_SIZE.
5387         Replace array buf with gdb::char_vector buf, of size
5388         get_remote_packet_size ().  Replace references to buf and
5389         BUF_SIZE to buf.data () and buf.size ().  Replace strcpy, strcat
5390         and xsnprintf with snprintf.  Raise errors if the buffer is too
5391         small.
5392
5393 2018-08-06  Pedro Franco de Carvalho  <pedromfc@linux.ibm.com>
5394
5395         * remote.c (remote_target::download_tracepoint): Fix the has_more
5396         predicate in the QTDP action list iteration.
5397
5398 2018-08-06  Pedro Franco de Carvalho  <pedromfc@linux.ibm.com>
5399
5400         * remote.c (remote_target::download_tracepoint): Fix indentation
5401         in for block.
5402
5403 2018-08-06  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
5404
5405         * proc-api.c (_initialize_proc_api): Remove c, unused.
5406         * procfs.c (procfs_init_inferior): Remove signals, unused.
5407         (procfs_target::make_corefile_notes): Remove old_chain, fpregs,
5408         unused.
5409
5410 2018-08-06  Sergey Korolev  <s.korolev@ndmsystems.com>
5411             Andrew Burgess  <andrew.burgess@embecosm.com>
5412
5413         * linux-nat.c (linux_nat_target::follow_fork): Avoid using
5414         'W_STOPCODE (0)' as this could be ambiguous.
5415
5416 2018-08-03  Sergio Durigan Junior  <sergiodj@redhat.com>
5417
5418         * ser-tcp.c (net_open): Fix thinko when deciding whether to
5419         disable TCP's Nagle algorithm (use "ai_protocol" instead of
5420         "ai_socktype").
5421
5422 2018-08-02  Tom Tromey  <tom@tromey.com>
5423
5424         PR symtab/16842.
5425         * dwarf2read.c (read_func_scope): Set symtab on template parameter
5426         symbols.
5427         (process_structure_scope): Likewise.
5428
5429 2018-08-02  Xavier Roirand  <roirand@adacore.com>
5430
5431         PR gdb/22629:
5432         * darwin-nat.c (darwin_kill_inferior): Fix handling of
5433         kill inferior.
5434
5435 2018-08-02  Tom Tromey  <tom@tromey.com>
5436
5437         * darwin-nat.c (find_inferior_task_it, darwin_find_thread)
5438         (darwin_suspend_inferior, darwin_resume_inferior)
5439         (darwin_decode_notify_message, darwin_resume_inferior_threads)
5440         (darwin_check_new_threads): Check result of get_darwin_inferior.
5441
5442 2018-07-31  Joel Brobecker  <brobecker@adacore.com>
5443
5444         GDB 8.1.1 released.
5445
5446 2018-07-31  Jan Vrany  <jan.vrany@fit.cvut.cz>
5447
5448         * varobj.c (varobj_get_path_expr_parent): Report an error if
5449         parent is a dynamic varobj.
5450
5451 2018-07-31  Simon Marchi  <simon.marchi@ericsson.com>
5452
5453         * gnulib/aclocal.m4: Re-generate.
5454         * gnulib/config.in: Re-generate.
5455         * gnulib/configure: Re-generate.
5456         * gnulib/import/Makefile.in: Re-generate.
5457         * gnulib/import/m4/gnulib-comp.m4: Re-generate.
5458         * gnulib/import/m4/onceonly.m4: Re-generate.
5459
5460 2018-07-31  Simon Marchi  <simon.marchi@ericsson.com>
5461
5462         * target-descriptions.c (struct xml_test_tdesc): New.
5463         (xml_tdesc): Change type to std::vector<xml_test_tdesc>.
5464         (record_xml_tdesc): Update.
5465         (maintenance_check_xml_descriptions): Update.
5466         * target-descriptions.h (record_xml_tdesc): Update comment.
5467
5468 2018-07-30  Andrew Burgess  <andrew.burgess@embecosm.com>
5469
5470         * eval.c (evaluate_subexp_for_sizeof): Check for array type before
5471         checking array bounds are defined.
5472
5473 2018-07-30  Tom Tromey  <tom@tromey.com>
5474
5475         * nat/linux-osdata.c (pid_pgid_entry::operator<): Fix
5476         irreflexivity violation.
5477
5478 2018-07-30  Tom Tromey  <tom@tromey.com>
5479
5480         * cli/cli-decode.c (lookup_cmd): Remove lint code.
5481         * value.c (unpack_long): Remove lint code.
5482         * valops.c (value_ind): Remove lint code.
5483         * valarith.c (value_x_binop, value_x_unop, value_equal)
5484         (value_pos): Remove lint code.
5485
5486 2018-07-28  Tom de Vries  <tdevries@suse.de>
5487
5488         * eval.c (evaluate_subexp_for_sizeof): Interpret size of dynamic type
5489         with undefined upper bound as <optimized out>.
5490
5491 2018-07-27  Sergio Durigan Junior  <sergiodj@redhat.com>
5492
5493         * gcore.in: Rename variable "name" to "prefix".  Expand
5494         "usage" text.
5495
5496 2018-07-14  Jon Turney  <jon.turney@dronecode.org.uk>
5497
5498         * windows-nat.c (windows_nat_target::create_inferior): Update to
5499         call close() in global namespace.
5500
5501 2018-07-26  Tom Tromey  <tom@tromey.com>
5502
5503         * dwarf-index-write.c (add_address_entry): Don't add objfile
5504         offsets.
5505         * dbxread.c (find_stab_function): Rename from
5506         find_stab_function_addr.  Return a bound_minimal_symbol.
5507         (read_dbx_symtab): Use raw_text_low, raw_text_high.
5508         Don't add objfile offsets.
5509         (end_psymtab): Use raw_text_low, raw_text_high,
5510         MSYMBOL_VALUE_RAW_ADDRESS.
5511         (read_ofile_symtab): Update.
5512         (process_one_symbol): Update.
5513         * dwarf2read.c (create_addrmap_from_index): Don't add objfile
5514         offsets.
5515         (dw2_relocate): Remove.
5516         (dw2_find_pc_sect_symtab): Bias PC by the text offset before
5517         searching addrmap.
5518         (dwarf2_gdb_index_functions, dwarf2_debug_names_functions):
5519         Update.
5520         (process_psymtab_comp_unit_reader, add_partial_symbol)
5521         (add_partial_subprogram, dwarf2_ranges_read): Update.
5522         (load_partial_dies): Update.
5523         (add_address_entry): Don't add objfile offsets.
5524         (dwarf2_build_include_psymtabs): Update.
5525         (create_addrmap_from_aranges): Don't add objfile offsets.
5526         (dw2_find_pc_sect_compunit_symtab): Update.
5527         * mdebugread.c (parse_symbol): Don't add objfile offsets.
5528         (parse_lines): Remove 'pst' parameter, replace with 'textlow'.
5529         Update.
5530         (parse_partial_symbols): Don't add objfile offsets.  Use
5531         raw_text_low, raw_text_high.  Update.
5532         (handle_psymbol_enumerators, psymtab_to_symtab_1): Update.
5533         * objfiles.c (objfile_relocate1): Don't relocate psymtabs_addrmap
5534         or call 'relocate' quick function.  Clear psymbol_map.
5535         * psympriv.h (struct partial_symbol) <address>: Add section
5536         offset.
5537         <set_unrelocated_address>: Rename from set_address.
5538         <raw_text_low, raw_text_high>: New methods.
5539         <text_low, text_high>: Add objfile parameter.
5540         (add_psymbol_to_bcache): Add 'section' parameter.  Call
5541         set_unrelocated_address.
5542         * psymtab.c (find_pc_sect_psymtab_closer, find_pc_sect_psymtab)
5543         (find_pc_psymbol): Update.
5544         (fixup_psymbol_section, relocate_psymtabs): Remove.
5545         (dump_psymtab, psym_functions): Update.
5546         (add_psymbol_to_bcache, add_psymbol_to_list): Add 'section'
5547         parameter.
5548         (maintenance_info_psymtabs, maintenance_check_psymtabs): Update.
5549         (start_psymtab_common): Update.
5550         * symfile-debug.c (debug_qf_relocate): Remove.
5551         (debug_sym_quick_functions): Update.
5552         * symfile.h (struct quick_symbol_functions) <relocate>: Remove.
5553         * xcoffread.c (scan_xcoff_symtab): Don't add objfile offsets.
5554         Update.
5555
5556 2018-07-26  Tom Tromey  <tromey@redhat.com>
5557
5558         * dbxread.c (end_psymtab): Use text_high_valid and
5559         text_low_valid.
5560         * mdebugread.c (parse_partial_symbols): Use text_low_valid.
5561         (psymtab_to_symtab_1): Use text_high_valid and text_low_valid.
5562         * psympriv.h (struct partial_symtab) <m_text_low, m_text_high>:
5563         Update comment.
5564         <text_low_valid, text_high_valid>: New fields.
5565         <set_text_low, set_text_high>: Update.
5566         * xcoffread.c (scan_xcoff_symtab): Use text_low_valid.
5567
5568 2018-07-26  Tom Tromey  <tom@tromey.com>
5569
5570         * dbxread.c (read_dbx_symtab, end_psymtab, read_ofile_symtab):
5571         Update.
5572         * dwarf2read.c (dwarf2_create_include_psymtab): Don't initialize
5573         textlow and texthigh fields.
5574         (process_psymtab_comp_unit_reader, dwarf2_build_include_psymtabs):
5575         Update.
5576         * mdebugread.c (parse_lines, parse_partial_symbols)
5577         (psymtab_to_symtab_1): Update.
5578         * psympriv.h (struct partial_symtab) <m_text_low, m_text_high>:
5579         Rename fields.  Update comment.  Now private.
5580         <text_low, text_high, set_text_low, set_text_high>: New methods.
5581         * psymtab.c (find_pc_sect_psymtab_closer, find_pc_sect_psymtab)
5582         (find_pc_sect_psymbol, relocate_psymtabs, dump_psymtab)
5583         (start_psymtab_common, maintenance_info_psymtabs)
5584         (maintenance_check_psymtabs): Update.
5585         * xcoffread.c (xcoff_end_psymtab): Don't initialize textlow and
5586         texthigh fields.
5587         (scan_xcoff_symtab): Update.
5588
5589 2018-07-26  Tom Tromey  <tromey@redhat.com>
5590
5591         * psympriv.h (struct partial_symbol) <unrelocated_address,
5592         address, set_address>: New methods.
5593         * psymtab.c (find_pc_sect_psymtab_closer, find_pc_sect_psymbol)
5594         (fixup_psymbol_section, relocate_psymtabs): Update.
5595         (print_partial_symbols): Add 'objfile' parameter.  Update.
5596         (dump_psymtab, add_psymbol_to_bcache, psym_fill_psymbol_map):
5597         Update.
5598
5599 2018-07-26  Tom Tromey  <tom@tromey.com>
5600
5601         * dwarf-index-write.c (write_psymbols, debug_names::insert)
5602         (debug_names::write_psymbols): Update.
5603         * psympriv.h (struct partial_symbol): Derive from
5604         general_symbol_info.
5605         <obj_section>: New method.
5606         (PSYMBOL_DOMAIN, PSYMBOL_CLASS): Remove.n
5607         * psymtab.c (find_pc_sect_psymtab_closer, find_pc_sect_psymtab)
5608         (find_pc_sect_psymbol, fixup_psymbol_section)
5609         (match_partial_symbol, lookup_partial_symbol, relocate_psymtabs)
5610         (print_partial_symbols, recursively_search_psymtabs)
5611         (compare_psymbols, psymbol_hash, psymbol_compare)
5612         (add_psymbol_to_bcache, maintenance_check_psymtabs)
5613         (psymbol_name_matches, psym_fill_psymbol_map): Update.
5614
5615 2018-07-26  Tom Tromey  <tromey@redhat.com>
5616
5617         * dbxread.c (end_psymtab): Remove dead code.
5618
5619 2018-07-26  Andrew Burgess  <andrew.burgess@embecosm.com>
5620
5621         * dwarf2-frame-tailcall.c (tailcall_frame_sniffer): Exit early if
5622         DWARF unwinders are disabled.
5623         * dwarf2-frame.c: Add dwarf2read.h include.
5624         (dwarf2_frame_sniffer): Exit early if DWARF unwinders are
5625         disabled.
5626         (dwarf2_frame_unwinders_enabled_p): Define.
5627         (show_dwarf_unwinders_enabled_p): New function.
5628         (_initialize_dwarf2_frame): Register switch to control DWARF
5629         unwinder use.
5630         * dwarf2-frame.h (dwarf2_frame_unwinders_enabled_p): Declare.
5631         * dwarf2read.c (set_dwarf_cmdlist): Remove static keyword.
5632         (show_dwarf_cmdlist): Remove static keyword.
5633         * dwarf2read.h (set_dwarf_cmdlist): Declare.
5634         (show_dwarf_cmdlist): Declare.
5635         * NEWS: Document new feature.
5636
5637 2018-07-26  Tom de Vries  <tdevries@suse.de>
5638
5639         PR breakpoints/23366
5640         * infcmd.c (info_program_command): Handle ptid == minus_one_ptid.
5641
5642 2018-07-26  Tom de Vries  <tdevries@suse.de>
5643
5644         * dwarf2read.c (read_subrange_type): Warn if DW_AT_upper_bound or
5645         DW_AT_count can't be translated to a dynamic prop.
5646
5647 2018-07-25  Tom de Vries  <tdevries@suse.de>
5648
5649         * dwarf2loc.c (dwarf2_locexpr_baton_eval): Wrap ctx.eval call in
5650         try/catch.
5651
5652 2018-07-25  Jan Vrany  <jan.vrany@fit.cvut.cz>
5653
5654         * breakpoint.c (enable_disable_bp_num_loc): Notify observers.
5655
5656 2018-07-25  Joel Brobecker  <brobecker@adacore.com>
5657
5658         * MAINTAINERS (Global Maintainers): Add Tom Tromey.
5659
5660 2018-07-24  Keith Seitz  <keiths@redhat.comt
5661
5662         PR symtab/23010
5663         * dwarf2read.c (dw2_add_symbol_to_list): New function.
5664         (fixup_go_packaging, new_symbol): Use dw2_add_symbol_to_list
5665         instead of add_symbol_to_list.
5666         (read_file_scope): Call prepare_one_comp_unit before reading
5667         any other DIEs.
5668
5669 2018-07-24  Simon Marchi  <simon.marchi@ericsson.com>
5670
5671         * common/scoped_mmap.h (class scoped_mmap): Fix indentation.
5672
5673 2018-07-24  Tom Tromey  <tom@tromey.com>
5674
5675         * utils.c (malloc, realloc, free): Don't declare.
5676         * configure, config.in: Rebuild.
5677         * configure.ac: Don't check for declarations of free, malloc, or
5678         realloc.
5679
5680 2018-07-22  Simon Marchi  <simon.marchi@polymtl.ca>
5681
5682         * aarch64-linux-nat.c
5683         (aarch64_linux_nat_target::stopped_data_address): Remove unused
5684         variable.
5685         * arm-linux-nat.c (fetch_regs): Likewise.
5686         (store_regs): Likewise.
5687         (fetch_vfp_regs): Likewise.
5688         (store_vfp_regs): Likewise.
5689         (arm_linux_nat_target::insert_hw_breakpoint): Likewise.
5690         (arm_linux_nat_target::remove_hw_breakpoint): Likewise.
5691         (arm_linux_nat_target::insert_watchpoint): Likewise.
5692         (arm_linux_nat_target::remove_watchpoint): Likewise.
5693         * mips-linux-nat.c (mips_linux_nat_target::insert_watchpoint):
5694         Likewise.
5695         * nat/aarch64-sve-linux-ptrace.c (aarch64_sve_get_sveregs):
5696         Likewise.
5697         * ppc-linux-nat.c (fetch_register): Likewise.
5698         (fetch_all_gp_regs): Likewise.
5699         (fetch_ppc_registers): Likewise.
5700         (store_all_gp_regs): Likewise.
5701         (store_ppc_registers): Likewise.
5702         (hwdebug_insert_point): Likewise.
5703         (can_use_watchpoint_cond_accel): Likewise.
5704         * remote-sim.c (gdb_os_write_stdout): Likewise.
5705
5706 2018-07-22  Simon Marchi  <simon.marchi@polymtl.ca>
5707             Tom Tromey  <tom@tromey.com>
5708
5709         * warning.m4 (AM_GDB_WARNINGS): Add -Wunused-variable and special
5710         test for it.
5711         * configure: Rebuild.
5712
5713 2018-07-22  Tom Tromey  <tom@tromey.com>
5714
5715         * regformats/regdat.sh: Define xmltarget_${name} inside
5716         #ifndef IN_PROCESS_AGENT.
5717
5718 2018-07-22  Tom Tromey  <tom@tromey.com>
5719
5720         * value.c (value_fetch_lazy_bitfield): Remove unused variable.
5721
5722 2018-07-22  Tom Tromey  <tom@tromey.com>
5723
5724         * symfile.c (reread_symbols): Notify iter, not objfile.
5725
5726 2018-07-22  Tom Tromey  <tom@tromey.com>
5727
5728         * ravenscar-thread.c (ravenscar_thread_target::store_registers):
5729         Use arch_ops.
5730         (ravenscar_thread_target::prepare_to_store): Likewise.
5731
5732 2018-07-22  Tom Tromey  <tom@tromey.com>
5733
5734         * python/py-prettyprint.c (gdbpy_apply_val_pretty_printer): Remove
5735         unused variable.  Call value_fetch_lazy when needed.
5736         * guile/scm-pretty-print.c (gdbscm_apply_val_pretty_printer):
5737         Remove unused variable.  Call value_fetch_lazy when needed.
5738
5739 2018-07-22  Tom Tromey  <tom@tromey.com>
5740
5741         * m32c-tdep.c (mark_dma): Return void.
5742         (make_regs): Remove unused declarations.
5743
5744 2018-07-22  Tom Tromey  <tom@tromey.com>
5745
5746         * guile/scm-cmd.c (gdbscm_dont_repeat): Call
5747         cmdscm_get_valid_command_smob_arg_unsafe for effect.
5748         * guile/scm-block.c (gdbscm_make_block_syms_iter): Call
5749         bkscm_get_valid_block_smob_arg_unsafe for effect.
5750
5751 2018-07-22  Tom Tromey  <tom@tromey.com>
5752
5753         * bfin-tdep.c (bfin_push_dummy_call): Use arg_type, not
5754         value_type.
5755
5756 2018-07-22  Tom Tromey  <tom@tromey.com>
5757
5758         * windows-nat.c (saved_context): Conditionally define.
5759         * remote.c (remote_target::remote_btrace_maybe_reopen):
5760         Conditionally declare "warned".
5761         * inflow.c (sigquit_ours): Conditionally define.
5762         (new_tty): Move "tty" declaration inside #if.
5763         * guile/guile.c (guile_datadir): Conditionally define.
5764         * charset.c (set_be_le_names): Move some declarations inside #if.
5765         * btrace.c (parse_xml_btrace): Move "errcode" declaration inside
5766         #if.
5767         (parse_xml_btrace_conf): Likewise.
5768
5769 2018-07-22  Tom Tromey  <tom@tromey.com>
5770
5771         * spu-tdep.c (spu_get_overlay_table): Remove unused variable.
5772
5773 2018-07-22  Tom Tromey  <tom@tromey.com>
5774
5775         * guile/scm-value.c (gdbscm_value_call): Remove unused variables.
5776         * guile/scm-math.c (vlscm_unop_gdbthrow, vlscm_binop_gdbthrow)
5777         (vlscm_convert_typed_value_from_scheme): Remove unused variable.
5778         * buildsym-legacy.c (get_macro_table): Remove unused variable.
5779         * stack.c (frame_apply_level_command): Remove unused variable.
5780         * tic6x-tdep.c (tic6x_push_dummy_call): Remove unused variable.
5781         * sparc64-tdep.c (adi_examine_command): Remove unused variable.
5782         * rs6000-lynx178-tdep.c (rs6000_lynx178_push_dummy_call): Remove
5783         unused variable.
5784         * nios2-tdep.c (nios2_push_dummy_call): Remove unused variable.
5785         * mep-tdep.c (mep_push_dummy_call): Remove unused variable.
5786         * ada-lang.c (ada_lookup_symbol_list_worker): Remove unused
5787         variable.
5788         * amd64-tdep.c (amd64_supply_xsave): Remove unused variable.
5789         * arm-tdep.c (arm_record_data_proc_misc_ld_str): Remove unused
5790         variable.
5791         * breakpoint.c (check_no_tracepoint_commands, update_watchpoint):
5792         Remove unused variable.
5793         * cli/cli-script.c (recurse_read_control_structure): Remove unused
5794         variable.
5795         * common/tdesc.c (print_xml_feature::visit): Remove unused
5796         variable.
5797         * compile/compile-object-load.c (store_regs): Remove unused
5798         variables.
5799         * complaints.c (clear_complaints): Remove unused variable.
5800         * corelow.c (core_target_open): Remove unused variable.
5801         * fbsd-tdep.c (fbsd_core_info_proc_status): Remove unused
5802         variable.
5803         * guile/scm-frame.c (gdbscm_frame_read_var): Remove unused
5804         variable.
5805         * guile/scm-symtab.c (stscm_print_sal_smob): Remove unused
5806         variable.
5807         * guile/scm-type.c (gdbscm_field_baseclass_p): Remove unused
5808         variable.
5809         * guile/scm-utils.c (gdbscm_parse_function_args): Remove unused
5810         variable.
5811         * hppa-tdep.c (hppa_stub_frame_unwind_cache): Remove unused
5812         variable.
5813         * ia64-tdep.c (examine_prologue): Remove unused variable.
5814         * infcall.c (run_inferior_call): Remove unused variable.
5815         * inferior.c (exit_inferior): Remove unused variable.
5816         * infrun.c (infrun_thread_ptid_changed): Remove unused variable.
5817         * linespec.c (decode_line_2): Remove unused variable.
5818         * linux-nat.c (super_close): Remove.
5819         * linux-tdep.c (linux_info_proc): Remove unused variable.
5820         * mi/mi-main.c (mi_execute_command): Remove unused variable.
5821         * microblaze-linux-tdep.c (microblaze_linux_sigtramp_cache):
5822         Remove unused variable.
5823         * parse.c (find_minsym_type_and_address): Remove unused variable.
5824         * printcmd.c (info_symbol_command, printf_floating): Remove unused
5825         variable.
5826         * python/py-breakpoint.c (bppy_set_commands): Remove unused
5827         variable.
5828         * python/py-unwind.c (unwind_infopy_dealloc): Remove unused
5829         variables.
5830         * record-btrace.c (record_btrace_target::store_registers): Remove
5831         unused variable.
5832         (cmd_show_record_btrace_cpu): Remove unused variable.
5833         * riscv-tdep.c (riscv_register_reggroup_p)
5834         (riscv_push_dummy_call, riscv_return_value): Remove unused
5835         variable.
5836         * rust-exp.y (literal): Remove unused variable.
5837         * rust-lang.c (rust_evaluate_subexp) <OP_RUST_ARARAY>: Remove
5838         unused variable.
5839         <STRUCTOP_ANONYMOUS>: Likewise.
5840         * s390-linux-tdep.c (s390_linux_init_abi_31)
5841         (s390_linux_init_abi_64): Remove unused variable.
5842         * ser-ming2.c (ser_windows_read_prim, pipe_select_thread)
5843         (file_select_thread, net_windows_open, _initialize_ser_windows):
5844         Remove unused variables.
5845         * symtab.c (find_pc_sect_line): Remove unused variable.
5846         * target-memory.c (compute_garbled_blocks): Remove unused
5847         variable.
5848         (target_write_memory_blocks): Remove unused variable.
5849         * target.c (target_stack::unpush): Remove unused variables.
5850         * tracepoint.c (start_tracing, all_tracepoint_actions)
5851         (merge_uploaded_trace_state_variables)
5852         (print_one_static_tracepoint_marker): Remove unused variable.
5853         * unittests/basic_string_view/element_access/char/1.cc (test01):
5854         Remove unused variable.
5855         * windows-nat.c (windows_continue, windows_add_all_dlls)
5856         (do_initial_windows_stuff, windows_nat_target::create_inferior):
5857         Remove unused variables.
5858
5859 2018-07-21  Simon Marchi  <simon.marchi@polymtl.ca>
5860
5861         * arm-tdep.c (arm_gdbarch_init): Declare attr_arch and
5862         attr_profile in HAVE_ELF.
5863         * rs6000-tdep.c (bfd_uses_spe_extensions): Declare vector_abi in
5864         HAVE_ELF.
5865
5866 2018-07-20  Simon Marchi  <simon.marchi@polymtl.ca>
5867
5868         * frame.c (frame_register_unwind): Change parameter name.
5869         (frame_unwind_register): Likewise.
5870         (frame_unwind_register_value): Likewise.
5871         (frame_unwind_register_signed): Likewise.
5872         (frame_unwind_register_unsigned): Likewise.
5873         * frame.h (frame_register_unwind): Likewise.
5874         (frame_unwind_register): Likewise.
5875         (frame_unwind_register_value): Likewise.
5876         (frame_unwind_register_signed): Likewise.
5877         (frame_unwind_register_unsigned): Likewise.
5878         (frame_unwind_arch): Likewise.
5879
5880 2018-07-20  Maciej W. Rozycki  <macro@mips.com>
5881
5882         * MAINTAINERS: Update my e-mail address, downgrade to MIPS I-IV
5883         ISA maintenance.
5884
5885 2018-07-20  Maciej W. Rozycki  <macro@mips.com>
5886
5887         * mips-linux-nat.c (mips_linux_nat_target::read_description):
5888         Call `get_ptrace_pid' rather than extracting the ptrace PID by
5889         hand.
5890
5891 2018-07-20  Keith Seitz  <keiths@redhat.com>
5892
5893         * buildsym.h (struct buildsym_compunit) <m_objfile, m_subfiles,
5894         m_main_subfile, m_comp_dir, m_producer, m_debugformat,
5895         m_compunit_symtab, m_language>: Add "m_" prefix.
5896         Update all uses.
5897         * buildsym.c: Update all uses.
5898
5899 2018-07-20  Tom Tromey  <tom@tromey.com>
5900
5901         * buildsym-legacy.h (record_line): Don't use record_line_ftype.
5902         * buildsym.h (record_line_ftype): Remove typedef.
5903
5904 2018-07-20  Tom Tromey  <tom@tromey.com>
5905
5906         * buildsym-legacy.h (augment_type_symtab): Don't declare.
5907         (end_expandable_symtab): Likewise.
5908         (end_symtab_get_static_block): Likewise.
5909         (end_symtab_from_static_block): Likewise.
5910         * buildsym-legacy.c (augment_type_symtab): Remove.
5911         (end_expandable_symtab): Remove.
5912         (end_symtab_get_static_block): Remove.
5913         (end_symtab_from_static_block): Remove.
5914
5915 2018-07-20  Tom Tromey  <tom@tromey.com>
5916
5917         * dwarf2read.c: Include buildsym.h.
5918         (struct dwarf2_cu) <builder>: New method.
5919         (fixup_go_packaging): Update.
5920         (process_full_comp_unit, process_full_type_unit): Update.  Don't
5921         use scoped_free_pendings.
5922         (using_directives): Add "cu" parameter, remove "language".
5923         (read_import_statement, setup_type_unit_groups, )
5924         (read_func_scope, read_lexical_block_scope)
5925         (dwarf2_record_block_ranges, read_namespace): Update.
5926         (lnp_state_machine::lnp_state_machine): Add cu parameter.
5927         (lnp_state_machine::handle_end_sequence): Update.
5928         (class lnp_state_machine) <m_cu>: New member.
5929         <m_record_line_callback>: Remove.
5930         <m_currently_recording_lines>: New member.
5931         (lnp_state_machine::handle_set_file): Update.
5932         (noop_record_line): Remove.
5933         (dwarf_record_line_p): Add cu parameter.
5934         (dwarf_record_line_1, dwarf_finish_line): Likewise.
5935         (lnp_state_machine::record_line)
5936         (lnp_state_machine::lnp_state_machine)
5937         (lnp_state_machine::check_line_address, dwarf_decode_lines_1)
5938         (dwarf_decode_lines): Update.
5939         (dwarf2_start_subfile): Add cu parameter.
5940         (dwarf2_start_symtab, new_symbol): Update.
5941         (macro_start_file, dwarf_decode_macro_bytes): Add cu parameter.
5942         Remove dwarf2_per_objfile parameter.
5943         (dwarf_decode_macros): Update.
5944
5945 2018-07-20  Tom Tromey  <tom@tromey.com>
5946
5947         * stabsread.c (define_symbol): Update.
5948         * buildsym-legacy.h (get_buildsym_compunit): Declare.
5949         * dwarf2read.c (new_symbol): Update.
5950         * cp-support.h (cp_scan_for_anonymous_namespaces): Update.
5951         * cp-namespace.c: Include buildsym.h.
5952         (cp_scan_for_anonymous_namespaces): Add "compunit" parameter.
5953         * buildsym-legacy.c (get_buildsym_compunit): New function.
5954
5955 2018-07-20  Tom Tromey  <tom@tromey.com>
5956
5957         * xcoffread.c: Include buildsym-legacy.h.
5958         * windows-nat.c: Include buildsym-legacy.h.
5959         * stabsread.c: Include buildsym-legacy.h.
5960         * mdebugread.c: Include buildsym-legacy.h.
5961         * buildsym-legacy.h: New file.
5962         * buildsym-legacy.c: New file, from buildsym.c.
5963         * go32-nat.c: Include buildsym-legacy.h.
5964         * dwarf2read.c: Include buildsym-legacy.h.
5965         * dbxread.c: Include buildsym-legacy.h.
5966         * cp-namespace.c: Include buildsym-legacy.h.
5967         * coffread.c: Include buildsym-legacy.h.
5968         * buildsym.h: Move some contents to buildsym-legacy.h.
5969         * buildsym.c: Include buildsym-legacy.h.  Move many functions to
5970         buildsym-legacy.c.
5971         * Makefile.in (HFILES_NO_SRCDIR): Add buildsym-legacy.h.
5972
5973 2018-07-20  Tom Tromey  <tom@tromey.com>
5974
5975         * buildsym.h (struct buildsym_compunit): Move from buildsym.c.
5976         * buildsym.c (struct buildsym_compunit): Move to buildsym.h.
5977         (buildsym_compunit::buildsym_compunit)
5978         (buildsym_compunit::~buildsym_compunit)
5979         (buildsym_compunit::get_macro_table): Define.
5980
5981 2018-07-20  Tom Tromey  <tom@tromey.com>
5982
5983         * buildsym.c (reset_symtab_globals): Remove.
5984         (buildsym_compunit::end_symtab_from_static_block): Update.
5985         (buildsym_compunit::augment_type_symtab): Update.
5986         (end_symtab_from_static_block): Call free_buildsym_compunit.
5987         (augment_type_symtab, end_symtab, end_expandable_symtab):
5988         Likewise.
5989
5990 2018-07-20  Tom Tromey  <tom@tromey.com>
5991
5992         * arch-utils.c: Do not include buildsym.h.
5993         * mipsread.c: Do not include buildsym.h.
5994         * machoread.c: Do not include buildsym.h.
5995         * elfread.c: Do not include buildsym.h.
5996
5997 2018-07-20  Tom Tromey  <tom@tromey.com>
5998
5999         * buildsym.c (buildsym_compunit::buildsym_compunit): Do more
6000         initialization.
6001         (buildsym_compunit): Add new constructor.
6002         (struct buildsym_compunit) <get_last_source_file, finish_block,
6003         record_block_range, start_subfile, patch_subfile_names,
6004         push_subfile, pop_subfile, record_line, get_compunit_symtab,
6005         set_last_source_start_addr, get_last_source_start_addr,
6006         get_local_using_directives, set_local_using_directives,
6007         get_global_using_directives, outermost_context_p,
6008         get_current_context_stack, get_context_stack_depth,
6009         get_current_subfile, get_local_symbols, get_file_symbols,
6010         get_global_symbols, record_debugformat, record_producer,
6011         push_context, pop_context, end_symtab_get_static_block,
6012         end_symtab_from_static_block, end_symtab, end_expandable_symtab>:
6013         New public methods.
6014         <record_pending_block, finish_block_internal, make_blockvector,
6015         watch_main_source_file_lossage, end_symtab_with_blockvector>: New
6016         private methods.
6017         Update all users.
6018
6019 2018-05-22  Tom Tromey  <tom@tromey.com>
6020
6021         * buildsym.c (record_pending_block): Move earlier.  Remove objfile
6022         parameter.
6023         (finish_block_internal): Update.
6024
6025 2018-07-20  Tom Tromey  <tom@tromey.com>
6026
6027         * buildsym.c (record_pending_block): Move earlier.  Remove objfile
6028         parameter.
6029         (finish_block_internal): Update.
6030
6031 2018-07-20  Tom Tromey  <tom@tromey.com>
6032
6033         * buildsym.h (EXTERN): Don't define or undef.
6034         * buildsym.c (EXTERN): Don't define.
6035
6036 2018-07-20  Tom Tromey  <tom@tromey.com>
6037
6038         * buildsym.c: Remove TODO comment.
6039
6040 2018-07-20  Tom Tromey  <tom@tromey.com>
6041
6042         * coffread.c (coff_symtab_read): Update.
6043         * xcoffread.c (xcoff_psymtab_to_symtab_1): Update.
6044         (xcoff_new_init): Update.
6045         * mipsread.c (mipscoff_new_init): Update.
6046         * mdebugread.c (mdebug_build_psymtabs): Update.
6047         * elfread.c (elf_new_init): Update.
6048         * dwarf2read.c (process_full_comp_unit, process_full_type_unit):
6049         Update.
6050         * dbxread.c (dbx_new_init, dbx_psymtab_to_symtab_1)
6051         (coffstab_build_psymtabs, elfstab_build_psymtabs)
6052         (stabsect_build_psymtabs): Update.
6053         * buildsym.h (buildsym_init): Don't declare.
6054         * buildsym.c: Update comment.
6055         (prepare_for_building): Remove.
6056         (start_symtab, restart_symtab): Update.
6057         (reset_symtab_globals): Update comment.
6058         (buildsym_init): Remove.
6059
6060 2018-07-20  Tom Tromey  <tom@tromey.com>
6061
6062         * xcoffread.c (read_xcoff_symtab, process_xcoff_symbol): Update.
6063         * stabsread.c (patch_block_stabs, define_symbol, read_type)
6064         (read_enum_type, common_block_start, common_block_end)
6065         (cleanup_undefined_types_1, finish_global_stabs): Update.
6066         * mdebugread.c (psymtab_to_symtab_1): Update.
6067         * dwarf2read.c (fixup_go_packaging, read_func_scope)
6068         (read_lexical_block_scope, new_symbol): Update.
6069         * dbxread.c (process_one_symbol): Update.
6070         * coffread.c (coff_symtab_read, process_coff_symbol)
6071         (coff_read_enum_type): Update.
6072         * buildsym.h (file_symbols, global_symbols, local_symbols): Don't
6073         declare.
6074         (get_local_symbols, get_file_symbols, get_global_symbols): New
6075         functions.
6076         * buildsym.c (~buildsym_compunit): Clean up m_file_symbols and
6077         m_global_symbols.
6078         <m_file_symbols, m_local_symbols, m_global_symbols>: New members.
6079         (~scoped_free_pendings): Update.
6080         (finish_block, prepare_for_building, reset_symtab_globals)
6081         (end_symtab_get_static_block, end_symtab_with_blockvector)
6082         (augment_type_symtab, push_context): Update.
6083         (get_local_symbols, get_file_symbols, get_global_symbols): New
6084         functions.
6085         (buildsym_init): Update.
6086
6087 2018-07-20  Tom Tromey  <tom@tromey.com>
6088
6089         * dwarf2read.c (process_full_comp_unit): Do not set list_in_scope.
6090         (process_full_type_unit): Likewise.
6091         (dwarf2_start_symtab): Set list_in_scope.
6092
6093 2018-07-20  Tom Tromey  <tom@tromey.com>
6094
6095         * dwarf2read.c (process_psymtab_comp_unit_reader)
6096         (build_type_psymtabs_reader): Do not set list_in_scope.
6097
6098 2018-07-20  Tom Tromey  <tom@tromey.com>
6099
6100         * buildsym.c (free_pendings): Remove.
6101         (add_symbol_to_list, scoped_free_pendings)
6102         (finish_block_internal, buildsym_init): Update.
6103
6104 2018-07-20  Tom Tromey  <tom@tromey.com>
6105
6106         * xcoffread.c (read_xcoff_symtab): Update.
6107         * dwarf2read.c (read_func_scope, read_lexical_block_scope):
6108         Update.
6109         * dbxread.c (process_one_symbol): Update.
6110         * coffread.c (coff_symtab_read): Update.
6111         * buildsym.h (finish_block): Update.
6112         * buildsym.c (finish_block): Remove "listhead" argument.
6113         (end_symtab_get_static_block): Update.
6114
6115 2018-07-20  Tom Tromey  <tom@tromey.com>
6116
6117         * buildsym.h (class scoped_free_pendings): Remove constructor.
6118         * buildsym.c (struct buildsym_compunit) <free_pending_blocks>: New
6119         method.
6120         <m_pending_block_obstack, m_pending_blocks>: New members.
6121         (pending_block_obstack, pending_blocks): Remove.
6122         (scoped_free_pendings::scoped_free_pendings): Default.
6123         (~scoped_free_pendings): Update.
6124         (free_pending_blocks): Remove.
6125         (finish_block_internal, record_pending_block, make_blockvector)
6126         (end_symtab_get_static_block, augment_type_symtab, push_context)
6127         (buildsym_init): Update.
6128
6129 2018-07-20  Tom Tromey  <tom@tromey.com>
6130
6131         * buildsym.c (struct buildsym_compunit) <m_pending_addrmap,
6132         m_pending_addrmap_obstack, m_pending_addrmap_interesting>: New
6133         members.
6134         (pending_addrmap, pending_addrmap_obstack)
6135         (pending_addrmap_interesting): Remove.
6136         (scoped_free_pendings, record_block_range, make_blockvector)
6137         (prepare_for_building, reset_symtab_globals, buildsym_init):
6138         Update.
6139
6140 2018-07-20  Tom Tromey  <tom@tromey.com>
6141
6142         * xcoffread.c (process_linenos): Update.
6143         * stabsread.c (define_symbol, read_type, read_enum_type): Update.
6144         * mdebugread.c (psymtab_to_symtab_1): Update.
6145         * dwarf2read.c (setup_type_unit_groups)
6146         (lnp_state_machine::handle_set_file, dwarf_record_line_p)
6147         (lnp_state_machine::record_line, dwarf_decode_lines): Update.
6148         * dbxread.c (process_one_symbol): Update.
6149         * coffread.c (coff_symtab_read, enter_linenos)
6150         (process_coff_symbol): Update.
6151         * buildsym.h (current_subfile): Don't declare.
6152         (get_current_subfile): Declare.
6153         * buildsym.c (struct buildsym_compunit) <m_current_subfile>: New
6154         member.
6155         (start_subfile, free_buildsym_compunit, push_subfile)
6156         (prepare_for_building, start_symtab): Update.
6157         (get_current_subfile): New function.
6158
6159 2018-07-20  Tom Tromey  <tom@tromey.com>
6160
6161         * coffread.c (coff_symtab_read): Update.
6162         * xcoffread.c (read_xcoff_symtab): Update.
6163         * dwarf2read.c (new_symbol): Update.
6164         (read_func_scope, read_lexical_block_scope): Update.
6165         * dbxread.c (process_one_symbol): Update.
6166         * buildsym.h (context_stack, context_stack_depth): Don't declare.
6167         (outermost_context_p): Remove macro.
6168         (outermost_context_p, get_current_context_stack)
6169         (get_context_stack_depth): Declare.
6170         (pop_context): Return struct context_stack.
6171         * buildsym.c (struct buildsym_compunit) <m_context_stack: New
6172         member.
6173         (context_stack_size): Remove.
6174         (INITIAL_CONTEXT_STACK_SIZE): Remove.
6175         (prepare_for_building, end_symtab_get_static_block)
6176         (augment_type_symtab, push_context): Update.
6177         (pop_context): Return struct context_stack.
6178         (outermost_context_p, get_current_context_stack)
6179         (get_context_stack_depth): New functions.
6180         (buildsym_init): Update.
6181
6182 2018-07-20  Tom Tromey  <tom@tromey.com>
6183
6184         * rust-exp.y: Now a pure parser.  Update all rules.
6185         (%union): Move earlier.
6186         (current_parser, work_obstack): Remove globals.
6187         (rust_parser, ~rust_parser): Update.
6188         (class rust_parser) <copy_name, concat3, crate_name, super_name,
6189         lex_character, lex_number, lex_string, lex_identifier,
6190         rust_lookup_type, convert_params_to_types, convert_ast_to_type,
6191         convert_name, convert_params_to_expression,
6192         convert_ast_to_expression, ast_basic_type, ast_operation,
6193         ast_compound_assignment, rust_op, ast_literal, ast_dliteral,
6194         ast_structop, ast_structop_anonymous, ast_unary, ast_cast,
6195         ast_call_ish, ast_path, ast_string, ast_struct, ast_range,
6196         ast_array_type, ast_slice_type, ast_reference_type,
6197         ast_pointer_type, ast_function_type, ast_tuple_type>: New methods.
6198         (rust_parse): Update.
6199         (rustyyerror, rustyylex): Add parser parameter.
6200         (rust_lex_test_one, rust_lex_int_test, rust_lex_exception_test)
6201         (rust_lex_stringish_test, rust_lex_test_sequence)
6202         (rust_lex_test_trailing_dot, rust_lex_test_completion)
6203         (rust_lex_test_push_back, rust_lex_tests): Update.
6204
6205 2018-07-19  Pedro Alves  <palves@redhat.com>
6206
6207         * guile/guile-internal.h (gdbscm_scm_to_c_string): Now returns a
6208         gdb::unique_xmalloc_ptr.
6209         * guile/scm-breakpoint.c (gdbscm_set_breakpoint_condition_x):
6210         Adjust to use dbscm_wrap and gdb::unique_xmalloc_ptr.
6211         * guile/scm-exception.c (gdbscm_exception_message_to_string): Use
6212         copy-initialization.
6213         * guile/scm-pretty-print.c (ppscm_print_children): Use
6214         gdb::unique_xmalloc_ptr instead of cleanups.
6215         (gdbscm_apply_val_pretty_printer): Remove cleanups.
6216         * guile/scm-string.c (gdbscm_scm_to_c_string): Now returns a
6217         gdb::unique_xmalloc_ptr.
6218         * guile/scm-type.c (gdbscm_type_field, gdbscm_type_has_field_p):
6219         Adjust to use gdb::unique_xmalloc_ptr.
6220         * guile/scm-utils.c (extract_arg): Adjust.
6221         * guile/scm-value.c (gdbscm_value_field): Adjust to use
6222         gdb::unique_xmalloc_ptr instead of a cleanup.
6223
6224 2018-07-19  Tom Tromey  <tom@tromey.com>
6225
6226         * utils.c (do_value_free_to_mark)
6227         (make_cleanup_value_free_to_mark): Remove.
6228         * utils.h (make_cleanup_value_free_to_mark): Remove.
6229
6230 2018-07-19  Pedro Alves  <palves@redhat.com>
6231
6232         * guile/guile-internal.h (gdbscm_wrap): Really make 'args' a
6233         forwarding reference.
6234
6235 2018-07-18  Pedro Alves  <palves@redhat.com>
6236
6237         * guile/guile.c (gdbscm_execute_gdb_command): Adjust to use
6238         gdbscm_wrap.  Use gdb::unique_xmalloc_ptr<char> instead of a
6239         cleanup.
6240
6241 2018-07-18  Pedro Alves  <palves@redhat.com>
6242
6243         * guile/guile-internal.h: Add comment about mixing GDB and Scheme
6244         exceptions.
6245         (GDBSCM_HANDLE_GDB_EXCEPTION_WITH_CLEANUPS): Delete.
6246         (gdbscm_wrap): New.
6247         * guile/scm-frame.c (gdbscm_frame_read_register): Use xfree
6248         directly instead of a cleanup.
6249         * guile/scm-math.c (vlscm_unop_gdbthrow): New, factored out from ...
6250         (vlscm_unop): ... this.  Reimplement using gdbscm_wrap.
6251         (vlscm_binop_gdbthrow): New, factored out from ...
6252         (vlscm_binop): ... this.  Reimplement using gdbscm_wrap.
6253         (vlscm_rich_compare): Use gdbscm_wrap.
6254         * guile/scm-symbol.c (gdbscm_lookup_symbol): Use xfree directly
6255         instead of a cleanup.
6256         (gdbscm_lookup_global_symbol): Use xfree directly instead of a
6257         cleanup.
6258         * guile/scm-type.c (gdbscm_type_field, gdbscm_type_has_field_p):
6259         Use xfree directly instead of a cleanup.
6260         * guile/scm-value.c (gdbscm_make_value, gdbscm_make_lazy_value):
6261         Adjust to use gdbscm_wrap and scoped_value_mark.
6262         (gdbscm_value_optimized_out_p): Adjust to use gdbscm_wrap.
6263         (gdbscm_value_address, gdbscm_value_dereference)
6264         (gdbscm_value_referenced_value): Adjust to use gdbscm_wrap and
6265         scoped_value_mark.
6266         (gdbscm_value_dynamic_type): Use scoped_value_mark.
6267         (vlscm_do_cast, gdbscm_value_field): Adjust to use gdbscm_wrap and
6268         scoped_value_mark.
6269         (gdbscm_value_subscript, gdbscm_value_call): Adjust to use
6270         gdbscm_wrap and scoped_value_mark.
6271         (gdbscm_value_to_string): Use xfree directly instead of a
6272         cleanup.  Move 'buffer' unique_ptr to TRY scope.
6273         (gdbscm_value_to_lazy_string): Use xfree directly instead of a
6274         cleanup.  Move 'buffer' unique_ptr to TRY scope.  Use
6275         scoped_value_mark.
6276         (gdbscm_value_fetch_lazy_x): Use gdbscm_wrap.
6277         (gdbscm_parse_and_eval): Adjust to use gdbscm_wrap and
6278         scoped_value_mark.
6279         (gdbscm_history_ref, gdbscm_history_append_x): Adjust to use
6280         gdbscm_wrap.
6281
6282 2018-07-18  Tom de Vries  <tdevries@suse.de>
6283
6284         * findvar.c (default_read_var_value): Also resolve dynamic type for
6285         LOC_OPTIMIZED_OUT vars.
6286
6287 2018-07-18  Maciej W. Rozycki  <macro@mips.com>
6288
6289         * mips-tdep.c (micromips_next_pc): Add SYSCALL instruction
6290         decoding.
6291
6292 2018-07-17  Tom Tromey  <tom@tromey.com>
6293
6294         * guile/scm-param.c (pascm_set_func, pascm_show_func)
6295         (compute_enum_list, pascm_set_param_value_x)
6296         (gdbscm_parameter_value): Update.
6297         * guile/guile-internal.h (gdbscm_scm_to_string): Update.
6298         (gdbscm_scm_to_host_string): Update.
6299         * guile/scm-math.c (vlscm_convert_typed_value_from_scheme):
6300         Update.
6301         * guile/scm-cmd.c (cmdscm_add_completion): Update.
6302         * guile/scm-pretty-print.c (ppscm_print_string_repr): Update.
6303         * guile/scm-string.c (gdbscm_scm_to_string): Return
6304         unique_xmalloc_ptr.
6305         (gdbscm_scm_to_host_string): Likewise.
6306
6307 2018-07-17  Tom Tromey  <tom@tromey.com>
6308
6309         * guile/guile.c (gdbscm_eval_from_control_command): Update.
6310         * guile/guile-internal.h (gdbscm_safe_eval_string): Update.
6311         * guile/scm-objfile.c (gdbscm_execute_objfile_script): Update.
6312         * guile/scm-safe-call.c (gdbscm_safe_eval_string): Return
6313         unique_xmalloc_ptr.
6314
6315 2018-07-17  Tom Tromey  <tom@tromey.com>
6316
6317         * guile/scm-param.c (pascm_signal_setshow_error): Update.
6318         * guile/guile-internal.h (gdbscm_exception_message_to_string):
6319         Update.
6320         * guile/scm-cmd.c (cmdscm_function): Update.
6321         * guile/scm-pretty-print.c
6322         (ppscm_print_exception_unless_memory_error): Update.
6323         * guile/scm-exception.c (gdbscm_exception_message_to_string):
6324         Return unique_xmalloc_ptr.
6325
6326 2018-07-17  Tom Tromey  <tom@tromey.com>
6327
6328         * guile/scm-pretty-print.c (ppscm_make_pp_type_error_exception):
6329         Use string_printf.
6330
6331 2018-07-17  Jim Wilson  <jimw@sifive.com>
6332
6333         * riscv-tdep.c (riscv_has_feature): Delete comment that refers to
6334         set_gdbarch_decr_pc_after_break.  Call riscv_read_misa_reg always.
6335         (riscv_gdbarch_init): Delete local has_compressed_isa.  Delete now
6336         unecessary braces after EF_RISCV_RVC test.  Delete call to
6337         set_gdbarch_decr_pc_after_break.
6338
6339         * riscv-tdep.h (DECLARE_CSR): Use RISCV_FIRST_CSR_REGNUM instead of
6340         RISCV_LAST_FP_REGNUM + 1.
6341         (RSICV_CSR_LEGACY_MISA_REGNUM): Add RISCV_FIRST_CSR_REGNUM.
6342
6343 2018-07-17  Tom Tromey  <tom@tromey.com>
6344
6345         * configure.ac: Remove --disable-gdbcli.
6346         * configure: Rebuild.
6347         * Makefile.in (SUBDIR_CLI_DEPS, SUBDIR_CLI_LDFLAGS)
6348         (SUBDIR_CLI_CFLAGS): Remove.
6349         (SFILES): Use SUBDIR_CLI_SRCS.
6350         (COMMON_OBS): Use SUBDIR_CLI_OBS.
6351
6352 2018-07-17  Tom Tromey  <tom@tromey.com>
6353
6354         PR gdb/18624:
6355         * coffread.c (coff_symtab_read): Use scoped_free_pendings.
6356
6357 2018-07-16  Jim Wilson  <jimw@sifive.com>
6358
6359         * riscv-tdep.c (riscv_gdbarch_init): Call gdbarch_init_osabi.
6360
6361 2018-07-16  Simon Marchi  <simon.marchi@ericsson.com>
6362
6363         * ia64-libunwind-tdep.c (libunwind_frame_cache): Remove unused
6364         variable.
6365         (libunwind_frame_sniffer): Likewise.
6366         (libunwind_frame_prev_register): Likewise.
6367         (libunwind_sigtramp_frame_sniffer): Likewise.
6368         * ia64-tdep.c (ia64_access_reg): Likewise.
6369         (ia64_access_rse_reg): Likewise.
6370         (ia64_libunwind_sigtramp_frame_this_id): Likewise.
6371         * ia64-vms-tdep.c (ia64_vms_find_proc_info_x): Likewise.
6372
6373 2018-07-16  Simon Marchi  <simon.marchi@ericsson.com>
6374
6375         * ia64-vms-tdep.c (ia64_vms_find_proc_info_x): Add cast.
6376
6377 2018-07-16  Simon Marchi  <simon.marchi@ericsson.com>
6378
6379         * remote-sim.c (gdbsim_target::close,
6380         gdbsim_target::mourn_inferior): Remove unused variables.
6381
6382 2018-07-16  Simon Marchi  <simon.marchi@polymtl.ca>
6383
6384         * ia64-tdep.c (ktab_buf): New global.
6385         (getunwind_table): Return a gdb::optional<gdb::byte_vector>.
6386         (get_kernel_table): Adjust.
6387
6388 2018-07-16  Tom Tromey  <tom@tromey.com>
6389
6390         * xcoffread.c (read_xcoff_symtab): Use outermost_context_p.
6391         * dwarf2read.c (using_directives, new_symbol): Use
6392         outermost_context_p.
6393         * dbxread.c (process_one_symbol): Use outermost_context_p.
6394         * coffread.c (coff_symtab_read): Use outermost_context_p.
6395
6396 2018-07-16  Tom Tromey  <tom@tromey.com>
6397
6398         * dwarf2read.c (using_directives, read_func_scope)
6399         (read_lexical_block_scope): Update.
6400         * cp-namespace.c (cp_scan_for_anonymous_namespaces): Update.
6401         * buildsym.h (local_using_directives, global_using_directives):
6402         Don't declare.
6403         (get_local_using_directives, set_local_using_directives)
6404         (get_global_using_directives): Declare.
6405         * buildsym.c (struct buildsym_compunit) <m_local_using_directives,
6406         m_global_using_directives>: New members.
6407         (finish_block_internal, prepare_for_building)
6408         (reset_symtab_globals, end_symtab_get_static_block)
6409         (push_context): Update.
6410         (get_local_using_directives, set_local_using_directives)
6411         (get_global_using_directives): New functions.
6412         (buildsym_init): Update.
6413
6414 2018-07-16  Tom Tromey  <tom@tromey.com>
6415
6416         * xcoffread.c (xcoff_initial_scan): Don't call
6417         free_pending_blocks.
6418         * dbxread.c (dbx_symfile_read): Don't call free_pending_blocks.
6419         * buildsym.h (class scoped_free_pendings): Add constructor.
6420         (free_pending_blocks): Don't declare.
6421         * buildsym.c (scoped_free_pendings::scoped_free_pendings): New.
6422         (free_pending_blocks): Now static.
6423
6424 2018-07-16  Tom Tromey  <tom@tromey.com>
6425
6426         * buildsym.h (push_subfile, pop_subfile): Update declarations.
6427         * buildsym.c (struct buildsym_compunit) <m_subfile_stack>: New
6428         member.
6429         (struct subfile_stack): Remove.
6430         (subfile_stack): Remove.
6431         (push_subfile, pop_subfile, buildsym_init): Update.
6432
6433 2018-07-16  Tom Tromey  <tom@tromey.com>
6434
6435         * buildsym.c (push_subfile): Use gdb_assert.
6436         (pop_subfile): Use gdb_assert.
6437
6438 2018-07-16  Tom Tromey  <tom@tromey.com>
6439
6440         * buildsym.h (merge_symbol_lists): Remove.
6441         * buildsym.c (merge_symbol_lists): Remove.
6442
6443 2018-07-16  Tom Tromey  <tom@tromey.com>
6444
6445         * stabsread.c (scan_file_globals): Update comment.
6446         * stabsread.h (scan_file_globals): Move from buildsym.h.
6447         * buildsym.h (scan_file_globals): Move to stabsread.h.
6448
6449 2018-07-16  Tom Tromey  <tom@tromey.com>
6450
6451         * xcoffread.c (xcoff_new_init): Update.
6452         * mipsread.c (mipscoff_new_init): Update.
6453         * mdebugread.c (mdebug_build_psymtabs): Update.
6454         * elfread.c (elf_new_init): Update.
6455         * dbxread.c (dbx_new_init, coffstab_build_psymtabs)
6456         (elfstab_build_psymtabs, stabsect_build_psymtabs): Update.
6457         * buildsym.h (buildsym_new_init): Don't declare.
6458         * buildsym.c (buildsym_new_init): Remove.
6459
6460 2018-07-16  Tom Tromey  <tom@tromey.com>
6461
6462         * stabsread.h (within_function): Move from buildsym.h.
6463         * stabsread.c (start_stabs): Clear within_function.
6464         * coffread.c (coff_start_symtab): Clear within_function.
6465         * buildsym.h (within_function): Move to stabsread.h.
6466         * buildsym.c (prepare_for_building): Update.
6467
6468 2018-07-16  Tom Tromey  <tom@tromey.com>
6469
6470         * stabsread.h (processing_gcc_compilation): Move from buildsym.h.
6471         * dwarf2read.c (dwarf2_start_symtab): Don't set
6472         processing_gcc_compilation.
6473         * buildsym.h (processing_gcc_compilation): Move to stabsread.h.
6474
6475 2018-07-16  Tom Tromey  <tom@tromey.com>
6476
6477         * stabsread.h (HASHSIZE, hashname, symnum, next_symbol_text)
6478         (next_symbol_text_func): Move from buildsym.h.
6479         * stabsread.c (hashname): Move from buildsym.c.
6480         * buildsym.h (HASHSIZE, symnum, next_symbol_text)
6481         (next_symbol_text_func, hashname): Move to stabsread.h.
6482         * buildsym.c: Don't include bcache.h
6483         (hashname): Move to stasbread.c.
6484
6485 2018-07-16  Tom Tromey  <tom@tromey.com>
6486
6487         * buildsym.h (context_stack_size): Don't declare.
6488         * buildsym.c (context_stack_size): New global.
6489
6490 2018-07-16  Tom Tromey  <tom@tromey.com>
6491
6492         * dbxread.c (processing_acc_compilation): New global.
6493         * buildsym.h (processing_acc_compilation): Don't declare.
6494
6495 2018-07-16  Tom Tromey  <tom@tromey.com>
6496
6497         * xcoffread.c (aix_process_linenos, complete_symtab): Update.
6498         * dbxread.c (read_ofile_symtab): Update.
6499         * coffread.c (coff_start_symtab, coff_end_symtab): Update.
6500         * buildsym.h (last_source_start_addr): Remove.
6501         (set_last_source_start_addr, get_last_source_start_addr):
6502         Declare.
6503         * buildsym.c (buildsym_compunit::buildsym_compunit): Add last_addr
6504         parameter.
6505         (struct buildsym_compunit) <m_last_source_start_addr>: New
6506         member.
6507         (prepare_for_building): Remove start_addr parameter.
6508         (start_symtab, restart_symtab, end_symtab_get_static_block)
6509         (end_symtab_with_blockvector): Update.
6510         (set_last_source_start_addr, get_last_source_start_addr): New
6511         functions.
6512
6513 2018-07-16  Tom Tromey  <tom@tromey.com>
6514
6515         * buildsym.c (struct buildsym_compunit) <m_have_line_numbers>: New
6516         member.
6517         (have_line_numbers): Remove.
6518         (record_line, prepare_for_building, end_symtab_get_static_block)
6519         (augment_type_symtab): Update.
6520
6521 2018-07-16  Tom Tromey  <tom@tromey.com>
6522
6523         * buildsym.c (~buildsym_compunit): Free the macro table.
6524         (struct buildsym_compunit) <get_macro_table, release_macros>: New
6525         methods.
6526         <m_pending_macros>: New member.
6527         (pending_macros): Remove.
6528         (~scoped_free_pendings, get_macro_table, prepare_for_building)
6529         (reset_symtab_globals, end_symtab_get_static_block)
6530         (end_symtab_with_blockvector, augment_type_symtab)
6531         (buildsym_init): Update.
6532
6533 2018-07-16  Tom Tromey  <tom@tromey.com>
6534
6535         * buildsym.c (buildsym_compunit::buildsym_compunit): Add name
6536         parameter.
6537         (buildsym_compunit::set_last_source_file): New method.
6538         <m_last_source_file>: New member.
6539         (prepare_for_building): Remove "name" parameter.
6540         (start_symtab, restart_symtab, reset_symtab_globals): Update.
6541         (last_source_file): Remove.
6542         (set_last_source_file, get_last_source_file): Update.
6543
6544 2018-07-16  Tom Tromey  <tom@tromey.com>
6545
6546         * buildsym.c (prepare_for_building): Add assert.
6547
6548 2018-07-16  Tom Tromey  <tom@tromey.com>
6549
6550         * buildsym.c (~buildsym_compunit): Update.
6551         (struct buildsym_compunit) <comp_unit>: Now a unique_xmalloc_ptr.
6552         (start_subfile, patch_subfile_names)
6553         (end_symtab_with_blockvector): Update.
6554
6555 2018-07-16  Tom Tromey  <tom@tromey.com>
6556
6557         * buildsym.c (struct buildsym_compunit): Add constructor,
6558         destructor, initializers.
6559         (start_buildsym_compunit): Remove.
6560         (free_buildsym_compunit): Use "delete".
6561         (start_symtab, restart_symtab): Use "new".
6562
6563 2018-07-13  Simon Marchi  <simon.marchi@polymtl.ca>
6564
6565         * symfile.c (set_objfile_default_section_offset): Remove struct
6566         keyword.
6567
6568 2018-07-14  Stafford Horne  <shorne@gmail.com>
6569
6570         * (Responsible Maintainers): Add myself as or1k maintainer.
6571
6572 2018-07-13  Tom Tromey  <tom@tromey.com>
6573
6574         * symfile.c (set_objfile_default_section_offset): Use extra braces
6575         around initializer.
6576
6577 2018-07-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
6578
6579         * s390-tdep.c (s390_displaced_step_fixup): Adjust PC for a
6580         non-branching basr.
6581
6582 2018-07-12  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
6583
6584         * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
6585         unittests/cli-utils-selftests.c
6586         * unittests/cli-utils-selftests.c: New file.
6587
6588 2018-07-12  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
6589
6590         * NEWS: Mention new commands. Mention change to 'thread apply'.
6591
6592 2018-07-12  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
6593
6594         * thread.c (thr_try_catch_cmd): New function.
6595         (thread_apply_all_command): Handle qcs flags.
6596         (thread_apply_command): Handle qcs flags.
6597         (taas_command): New function.
6598         (tfaas_command): New function.
6599         (_initialize_thread): Update to setup the new commands 'taas
6600         and 'tfaas'. Change doc string for 'thread apply'.
6601
6602 2018-07-12  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
6603
6604         * stack.c: (trailing_outermost_frame): New function, mostly
6605         extracted from backtrace_command_1.
6606         (leading_innermost_frame): New function.
6607         (backtrace_command_1): Update to call trailing_outermost_frame.
6608         (frame_apply_command_count): New function.
6609         (frame_apply_level_command): New function.
6610         (frame_apply_all_command): New function.
6611         (frame_apply_command): New function.
6612         (faas_command): New function.
6613         (frame_cmd_list): New variable.
6614         (_initialize_stack): Update to setup the new commands 'frame apply'
6615         and 'faas'.
6616
6617 2018-07-12  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
6618
6619         * cli-utils.c (number_or_range_parser::get_number): Only handle
6620         numbers or convenience var as numbers.
6621         (parse_flags): New function.
6622         (parse_flags_qcs): New function.
6623         (number_or_range_parser::finished): Ensure parsing end is detected
6624         before end of string.
6625         * cli-utils.h (parse_flags): New function.
6626         (parse_flags_qcs): New function.
6627         (number_or_range_parser): Remove m_finished bool.
6628         (number_or_range_parser::skip_range): Set m_in_range to false.
6629
6630 2018-07-12  Sergio Durigan Junior  <sergiodj@redhat.com>
6631
6632         * ser-tcp.c (try_connect): Declare 'ioarg' as 'u_long' if building
6633         on Windows.
6634
6635 2018-07-11  Sergio Durigan Junior  <sergiodj@redhat.com>
6636             Jan Kratochvil  <jan.kratochvil@redhat.com>
6637             Paul Fertser  <fercerpav@gmail.com>
6638             Tsutomu Seki  <sekiriki@gmail.com>
6639             Pedro Alves  <palves@redhat.com>
6640
6641         * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
6642         'unittests/parse-connection-spec-selftests.c'.
6643         (COMMON_SFILES): Add 'common/netstuff.c'.
6644         (HFILES_NO_SRCDIR): Add 'common/netstuff.h'.
6645         * NEWS (Changes since GDB 8.2): Mention IPv6 support.
6646         * common/netstuff.c: New file.
6647         * common/netstuff.h: New file.
6648         * ser-tcp.c: Include 'netstuff.h' and 'wspiapi.h'.
6649         (wait_for_connect): Update comment.  New parameter
6650         'gdb::optional<int> sock' instead of 'struct serial *scb'.
6651         Use 'sock' directly instead of 'scb->fd'.
6652         (try_connect): New function, with code from 'net_open'.
6653         (net_open): Rewrite main loop to deal with multiple
6654         sockets/addresses.  Handle IPv6-style hostnames; implement
6655         support for IPv6 connections.
6656         * unittests/parse-connection-spec-selftests.c: New file.
6657
6658 2018-07-11  Pedro Alves  <palves@redhat.com>
6659
6660         PR gdb/23377
6661         * remote.c (remote_target::remote_detach_pid): Call
6662         set_current_process.
6663
6664 2018-07-11  Pedro Alves  <palves@redhat.com>
6665
6666         * h8300-tdep.c (h8300_gdbarch_init): Remove
6667         set_gdbarch_ecoff_reg_to_regnum calls.
6668
6669 2018-07-11  Sergio Durigan Junior  <sergiodj@redhat.com>
6670
6671         PR c++/23373
6672         * c-typeprint.c (c_type_print_base_struct_union): Don't print
6673         offsets/sizes for static members of a class/struct.
6674
6675 2018-07-11  Alan Hayward  <alan.hayward@arm.com>
6676
6677         * target-descriptions.c (tdesc_register_bitsize): Rename.
6678         * target-descriptions.h (tdesc_register_bitsize): Likewise.
6679         * rs6000-tdep.c (rs6000_gdbarch_init): Use new name.
6680         * aarch64-tdep.c (aarch64_get_tdesc_vq): Convert size.
6681
6682 2018-07-10  Tom Tromey  <tom@tromey.com>
6683
6684         * breakpoint.c (moribund_locations): Now static and a
6685         std::vector.
6686         (breakpoint_init_inferior, moribund_breakpoint_here_p)
6687         (build_bpstat_chain, update_global_location_list)
6688         (breakpoint_retire_moribund): Update.
6689         * breakpoint.h (bp_location_p): Remove typedef.  Don't declare
6690         VEC.
6691
6692 2018-07-10  Andrew Burgess  <andrew.burgess@embecosm.com>
6693
6694         * riscv-tdep.c (riscv_is_fp_regno_p): New function.
6695         (riscv_register_reggroup_p): Use new function, remove unneeded
6696         parenthesis.
6697         (riscv_push_dummy_call): Extend assert to compare against xlen or
6698         flen based on register type.
6699
6700 2018-07-10  Andrew Burgess  <andrew.burgess@embecosm.com>
6701
6702         * riscv-tdep.c (riscv_print_arg_location): Use TYPE_SAFE_NAME.
6703
6704 2018-07-09  Andrew Burgess  <andrew.burgess@embecosm.com>
6705
6706         * remote.c (show_hardware_watchpoint_limit): New function.
6707         (show_hardware_watchpoint_length_limit): New function.
6708         (show_hardware_breakpoint_limit): New function.
6709         (_initialize_remote): Use add_setshow_zuinteger_unlimited_cmd
6710         where appropriate, update help text.
6711
6712 2018-07-09  Tom Tromey  <tom@tromey.com>
6713
6714         * Makefile.in (CDEPS): Don't mention XM_CDEPS.
6715         (CLIBS): Don't mention NAT_CLIBS.
6716
6717 2018-07-09  Tom Tromey  <tom@tromey.com>
6718
6719         * Makefile.in (ADD_FILES, ADD_DEPS): Remove.
6720         (LIBGDB_OBS, clean mostlyclean): Update.
6721         (gdb$(EXEEXT), insight$(EXEEXT)): Update.
6722
6723 2018-07-09  Tom Tromey  <tom@tromey.com>
6724
6725         * Makefile.in (%.c: %.y): Use ECHO_YACC.
6726         (%.c: %.l): Use ECHO_LEX.  Just fail if flex not available.
6727         * silent-rules.mk (ECHO_YACC, ECHO_LEX): New variables.
6728
6729 2018-07-09  Tom Tromey  <tom@tromey.com>
6730
6731         * Makefile.in (ALLDEPFILES): Remove exec.c.
6732         (COMMON_OBS): Remove exec.o.
6733         (COMMON_SFILES): Add exec.c.
6734
6735 2018-07-09  Tom Tromey  <tom@tromey.com>
6736
6737         * Makefile.in (LINT, LINTFLAGS, LINTFILES, lint): Remove.
6738
6739 2018-07-09  Tom Tromey  <tom@tromey.com>
6740
6741         * Makefile.in (clean mostlyclean): Remove stamp-version.
6742         (version.c): Depend on stamp-version.
6743         (stamp-version): New rule, from version.c rule.
6744
6745 2018-07-09  Tom Tromey  <tom@tromey.com>
6746
6747         * Makefile.in (init.c): Depend on stamp-init.
6748         (stamp-init): New rule, from init.c rule.
6749         (clean mostlyclean): Remove stamp-init.
6750
6751 2018-07-09  Tom Tromey  <tom@tromey.com>
6752
6753         * Makefile.in (INIT_FILES): Remove CONFIG_SRCS,
6754         SUBDIR_GCC_COMPILE_SRCS.
6755
6756 2018-07-09  Tom Tromey  <tom@tromey.com>
6757
6758         * Makefile.in (init.c): Remove some unused sed rules.
6759
6760 2018-07-09  Tom Tromey  <tom@tromey.com>
6761
6762         * Makefile.in (TSOBS): Remove.
6763         (INIT_FILES): Update.
6764         (LIBGDB_OBS): Update.
6765         (COMMON_SFILES): Add inflow.c.
6766         (SFILES): Remove inflow.c.
6767
6768 2018-07-07  Jan Kratochvil  <jan.kratochvil@redhat.com>
6769
6770         * contrib/gdb-add-index.sh ($dwarf5): New, use it.
6771
6772 2018-07-07  Simon Marchi  <simon.marchi@polymtl.ca>
6773
6774         * ia64-libunwind-tdep.c (get_reg_name, get_fpreg_name,
6775         get_saveloc_name, is_signal_frame_name, step_name,
6776         init_remote_name, create_addr_space_name,
6777         destroy_addr_space_name, search_unwind_table_name,
6778         find_dyn_list_name): Constify.
6779
6780 2018-07-05  Simon Marchi  <simon.marchi@polymtl.ca>
6781
6782         * darwin-nat.c (darwin_pthread_kill): New function.
6783         (darwin_resume_thread): Use darwin_pthread_kill.
6784
6785 2018-07-05  Tom de Vries  <tdevries@suse.de>
6786
6787         * macroexp.c (macro_buffer) <operator=>: New member function.
6788
6789 2018-07-04  Tom Tromey  <tom@tromey.com>
6790
6791         * darwin-nat.c (darwin_attach_pid): Use exit_inferior.
6792
6793 2018-07-04  Simon Marchi  <simon.marchi@polymtl.ca>
6794
6795         * common/common-defs.h (HAVE_USEFUL_SBRK): Define.
6796         * main.c: Use HAVE_USEFUL_SBRK instead of HAVE_SBRK.
6797         * maint.c: Likewise.
6798         * top.c: Likewise.
6799
6800 2018-07-04  Joel Brobecker  <brobecker@adacore.com>
6801
6802         * NEWS: Create a new section for the next release branch.
6803         Rename the section of the current branch, now that it has
6804         been cut.
6805
6806 2018-07-04  Joel Brobecker  <brobecker@adacore.com>
6807
6808         GDB 8.2 branch created (1b919490e8ba30bf1d6941df0ed112b0e557017e):
6809         * version.in: Bump version to 8.2.50.DATE-git.
6810
6811 2018-07-04  Vyacheslav Barinov  <v.barinov@samsung.com>
6812             Pedro Alves  <palves@redhat.com>
6813
6814         * linux-nat.c (linux_init_ptrace): Rename to ...
6815         (linux_init_ptrace_procfs): ... this.  Call
6816         linux_proc_init_warnings.
6817         (linux_nat_target::post_attach)
6818         (linux_nat_target::post_startup_inferior): Adjust.
6819         * nat/linux-procfs.c (linux_proc_init_warnings): Define function.
6820         * nat/linux-procfs.h (linux_proc_init_warnings): Declare function.
6821
6822 2018-07-04  Tom de Vries  <tdevries@suse.de>
6823
6824         * dwarf2read.c (error_check_comp_unit_head): Move dwarf version
6825         check ...
6826         (read_comp_unit_head): ... here.
6827
6828 2018-07-03  Tom Tromey  <tom@tromey.com>
6829
6830         * tracepoint.c (process_tracepoint_on_disconnect, start_tracing)
6831         (stop_tracing, tstatus_command)
6832         (find_matching_tracepoint_location, merge_uploaded_tracepoints)
6833         (print_one_static_tracepoint_marker): Update.
6834         * breakpoint.c (static_tracepoints_here, all_tracepoints): Return
6835         std::vector.
6836         * breakpoint.h (breakpoint_p): Remove typedef.  Don't declare
6837         VEC.
6838         (all_tracepoints, static_tracepoints_here): Return std::vector.
6839
6840 2018-07-03  Tom Tromey  <tom@tromey.com>
6841
6842         * common/ptid.c (ptid_equal): Remove.
6843         * common/ptid.h (ptid_equal): Don't declare.
6844         * ada-tasks.c: Update.
6845         * breakpoint.c: Update.
6846         * common/agent.c: Update.
6847         * corelow.c: Update.
6848         * darwin-nat-info.c: Update.
6849         * darwin-nat.c: Update.
6850         * dcache.c: Update.
6851         * dtrace-probe.c: Update.
6852         * dummy-frame.c: Update.
6853         * fbsd-nat.c: Update.
6854         * frame.c: Update.
6855         * gdbthread.h: Update.
6856         * gnu-nat.c: Update.
6857         * go32-nat.c: Update.
6858         * inf-loop.c: Update.
6859         * inf-ptrace.c: Update.
6860         * infcall.c: Update.
6861         * infcmd.c: Update.
6862         * inflow.c: Update.
6863         * infrun.c: Update.
6864         * linux-fork.c: Update.
6865         * linux-nat.c: Update.
6866         * linux-thread-db.c: Update.
6867         * mi/mi-cmd-var.c: Update.
6868         * mi/mi-interp.c: Update.
6869         * mi/mi-main.c: Update.
6870         * nto-procfs.c: Update.
6871         * ppc-linux-tdep.c: Update.
6872         * procfs.c: Update.
6873         * python/py-inferior.c: Update.
6874         * python/py-record-btrace.c: Update.
6875         * python/py-record.c: Update.
6876         * ravenscar-thread.c: Update.
6877         * regcache.c: Update.
6878         * remote-sim.c: Update.
6879         * remote.c: Update.
6880         * sol-thread.c: Update.
6881         * solib.c: Update.
6882         * target.c: Update.
6883         * tui/tui-stack.c: Update.
6884         * varobj.c: Update.
6885         * windows-nat.c: Update.
6886         * windows-tdep.c: Update.
6887
6888 2018-07-03  Tom Tromey  <tom@tromey.com>
6889
6890         * common/ptid.c (ptid_match): Remove.
6891         * common/ptid.h (ptid_match): Don't declare.
6892         * fbsd-nat.c: Update.
6893         * infcmd.c: Update.
6894         * infrun.c: Update.
6895         * linux-nat.c: Update.
6896         * record-btrace.c: Update.
6897         * regcache.c: Update.
6898         * remote.c: Update.
6899
6900 2018-07-03  Tom Tromey  <tom@tromey.com>
6901
6902         * common/ptid.c (ptid_tid_p): Remove.
6903         * common/ptid.h (ptid_tid_p): Don't declare.
6904         * sol-thread.c: Update.
6905
6906 2018-07-03  Tom Tromey  <tom@tromey.com>
6907
6908         * common/ptid.c (ptid_lwp_p): Remove.
6909         * common/ptid.h (ptid_lwp_p): Don't declare.
6910         * fbsd-nat.c: Update.
6911         * linux-nat.c: Update.
6912         * nat/linux-procfs.c: Update.
6913         * nat/x86-linux-dregs.c: Update.
6914         * sol-thread.c: Update.
6915
6916 2018-07-03  Tom Tromey  <tom@tromey.com>
6917
6918         * common/ptid.c (ptid_is_pid): Remove.
6919         * common/ptid.h (ptid_is_pid): Don't declare.
6920         * infrun.c: Update.
6921         * linux-nat.c: Update.
6922         * mi/mi-interp.c: Update.
6923         * remote.c: Update.
6924         * thread.c: Update.
6925
6926 2018-07-03  Tom Tromey  <tom@tromey.com>
6927
6928         * common/ptid.c (ptid_get_tid): Remove.
6929         * common/ptid.h (ptid_get_tid): Don't declare.
6930         * ada-tasks.c: Update.
6931         * aix-thread.c: Update.
6932         * bsd-uthread.c: Update.
6933         * darwin-nat.c: Update.
6934         * fbsd-nat.c: Update.
6935         * i386-darwin-nat.c: Update.
6936         * infrun.c: Update.
6937         * linux-tdep.c: Update.
6938         * nto-procfs.c: Update.
6939         * ppc-ravenscar-thread.c: Update.
6940         * python/py-infthread.c: Update.
6941         * ravenscar-thread.c: Update.
6942         * sol-thread.c: Update.
6943         * sparc-ravenscar-thread.c: Update.
6944         * windows-nat.c: Update.
6945
6946 2018-07-03  Tom Tromey  <tom@tromey.com>
6947
6948         * common/ptid.c (ptid_get_lwp): Remove.
6949         * common/ptid.h (ptid_get_lwp): Don't declare.
6950         * aarch64-linux-nat.c: Update.
6951         * ada-tasks.c: Update.
6952         * aix-thread.c: Update.
6953         * amd64-linux-nat.c: Update.
6954         * arm-linux-nat.c: Update.
6955         * corelow.c: Update.
6956         * fbsd-nat.c: Update.
6957         * fbsd-tdep.c: Update.
6958         * gnu-nat.c: Update.
6959         * i386-cygwin-tdep.c: Update.
6960         * i386-gnu-nat.c: Update.
6961         * i386-linux-nat.c: Update.
6962         * ia64-linux-nat.c: Update.
6963         * inf-ptrace.c: Update.
6964         * infrun.c: Update.
6965         * linux-fork.c: Update.
6966         * linux-nat.c: Update.
6967         * linux-tdep.c: Update.
6968         * linux-thread-db.c: Update.
6969         * mips-linux-nat.c: Update.
6970         * nat/aarch64-linux-hw-point.c: Update.
6971         * nat/aarch64-linux.c: Update.
6972         * nat/linux-btrace.c: Update.
6973         * nat/linux-osdata.c: Update.
6974         * nat/linux-procfs.c: Update.
6975         * nat/x86-linux-dregs.c: Update.
6976         * obsd-nat.c: Update.
6977         * ppc-fbsd-nat.c: Update.
6978         * ppc-linux-nat.c: Update.
6979         * procfs.c: Update.
6980         * python/py-infthread.c: Update.
6981         * ravenscar-thread.c: Update.
6982         * remote.c: Update.
6983         * s390-linux-nat.c: Update.
6984         * sol-thread.c: Update.
6985         * sol2-tdep.c: Update.
6986         * spu-linux-nat.c: Update.
6987         * x86-linux-nat.c: Update.
6988         * xtensa-linux-nat.c: Update.
6989
6990 2018-07-03  Tom Tromey  <tom@tromey.com>
6991
6992         * common/ptid.c (ptid_get_pid): Remove.
6993         * common/ptid.h (ptid_get_pid): Don't declare.
6994         * aarch64-linux-nat.c: Update.
6995         * ada-lang.c: Update.
6996         * aix-thread.c: Update.
6997         * alpha-bsd-nat.c: Update.
6998         * amd64-fbsd-nat.c: Update.
6999         * amd64-linux-nat.c: Update.
7000         * arm-linux-nat.c: Update.
7001         * arm-nbsd-nat.c: Update.
7002         * auxv.c: Update.
7003         * break-catch-syscall.c: Update.
7004         * breakpoint.c: Update.
7005         * bsd-uthread.c: Update.
7006         * corelow.c: Update.
7007         * ctf.c: Update.
7008         * darwin-nat.c: Update.
7009         * fbsd-nat.c: Update.
7010         * fbsd-tdep.c: Update.
7011         * gcore.c: Update.
7012         * gnu-nat.c: Update.
7013         * hppa-nbsd-nat.c: Update.
7014         * hppa-obsd-nat.c: Update.
7015         * i386-fbsd-nat.c: Update.
7016         * ia64-linux-nat.c: Update.
7017         * inf-ptrace.c: Update.
7018         * infcmd.c: Update.
7019         * inferior.c: Update.
7020         * inferior.h: Update.
7021         * inflow.c: Update.
7022         * infrun.c: Update.
7023         * linux-fork.c: Update.
7024         * linux-nat.c: Update.
7025         * linux-tdep.c: Update.
7026         * linux-thread-db.c: Update.
7027         * m68k-bsd-nat.c: Update.
7028         * mi/mi-interp.c: Update.
7029         * mi/mi-main.c: Update.
7030         * mips-linux-nat.c: Update.
7031         * mips-nbsd-nat.c: Update.
7032         * mips64-obsd-nat.c: Update.
7033         * nat/aarch64-linux-hw-point.c: Update.
7034         * nat/aarch64-linux.c: Update.
7035         * nat/linux-btrace.c: Update.
7036         * nat/linux-osdata.c: Update.
7037         * nat/linux-procfs.c: Update.
7038         * nat/x86-linux-dregs.c: Update.
7039         * nto-procfs.c: Update.
7040         * obsd-nat.c: Update.
7041         * ppc-linux-nat.c: Update.
7042         * ppc-nbsd-nat.c: Update.
7043         * ppc-obsd-nat.c: Update.
7044         * proc-service.c: Update.
7045         * procfs.c: Update.
7046         * python/py-inferior.c: Update.
7047         * python/py-infthread.c: Update.
7048         * ravenscar-thread.c: Update.
7049         * record.c: Update.
7050         * remote-sim.c: Update.
7051         * remote.c: Update.
7052         * rs6000-nat.c: Update.
7053         * s390-linux-nat.c: Update.
7054         * sh-nbsd-nat.c: Update.
7055         * sol-thread.c: Update.
7056         * sparc-nat.c: Update.
7057         * sparc64-tdep.c: Update.
7058         * spu-linux-nat.c: Update.
7059         * spu-tdep.c: Update.
7060         * target-debug.h: Update.
7061         * target.c: Update.
7062         * thread.c: Update.
7063         * tid-parse.c: Update.
7064         * tracefile-tfile.c: Update.
7065         * vax-bsd-nat.c: Update.
7066         * windows-nat.c: Update.
7067         * x86-linux-nat.c: Update.
7068         * x86-nat.c: Update.
7069
7070 2018-07-03  Tom Tromey  <tom@tromey.com>
7071
7072         * common/ptid.c (pid_to_ptid): Remove.
7073         * common/ptid.h (pid_to_ptid): Don't declare.
7074         * aix-thread.c: Update.
7075         * arm-linux-nat.c: Update.
7076         * common/ptid.c: Update.
7077         * common/ptid.h: Update.
7078         * corelow.c: Update.
7079         * ctf.c: Update.
7080         * darwin-nat.c: Update.
7081         * fbsd-nat.c: Update.
7082         * fork-child.c: Update.
7083         * gnu-nat.c: Update.
7084         * go32-nat.c: Update.
7085         * inf-ptrace.c: Update.
7086         * infcmd.c: Update.
7087         * inferior.c: Update.
7088         * infrun.c: Update.
7089         * linux-fork.c: Update.
7090         * linux-nat.c: Update.
7091         * nat/aarch64-linux-hw-point.c: Update.
7092         * nat/fork-inferior.c: Update.
7093         * nat/x86-linux-dregs.c: Update.
7094         * nto-procfs.c: Update.
7095         * obsd-nat.c: Update.
7096         * procfs.c: Update.
7097         * progspace.c: Update.
7098         * remote.c: Update.
7099         * rs6000-nat.c: Update.
7100         * s390-linux-nat.c: Update.
7101         * sol-thread.c: Update.
7102         * spu-linux-nat.c: Update.
7103         * target.c: Update.
7104         * top.c: Update.
7105         * tracefile-tfile.c: Update.
7106         * windows-nat.c: Update.
7107
7108 2018-07-03  Tom Tromey  <tom@tromey.com>
7109
7110         * common/ptid.h (ptid_build): Don't declare.
7111         * common/ptid.c (ptid_build): Remove.
7112         * aix-thread.c: Update.
7113         * bsd-kvm.c: Update.
7114         * bsd-uthread.c: Update.
7115         * common/agent.c: Update.
7116         * common/ptid.c: Update.
7117         * common/ptid.h: Update.
7118         * corelow.c: Update.
7119         * darwin-nat.c: Update.
7120         * fbsd-nat.c: Update.
7121         * gnu-nat.c: Update.
7122         * linux-fork.c: Update.
7123         * linux-nat.c: Update.
7124         * linux-thread-db.c: Update.
7125         * nat/linux-osdata.c: Update.
7126         * nat/linux-procfs.c: Update.
7127         * nto-procfs.c: Update.
7128         * obsd-nat.c: Update.
7129         * proc-service.c: Update.
7130         * procfs.c: Update.
7131         * ravenscar-thread.c: Update.
7132         * remote-sim.c: Update.
7133         * remote.c: Update.
7134         * sol-thread.c: Update.
7135         * target.c: Update.
7136         * windows-nat.c: Update.
7137
7138 2018-07-03  Tom Tromey  <tom@tromey.com>
7139
7140         * infrun.c (follow_exec): Use exit_inferior_silent.
7141         * inferior.c (exit_inferior_num_silent): Remove.
7142         * inferior.h (exit_inferior_num_silent): Don't declare.
7143
7144 2018-07-03  Tom Tromey  <tom@tromey.com>
7145
7146         PR cli/23340:
7147         * darwin-nat.c (darwin_attach_pid): Reset inferior and
7148         inferior_ptid on error.
7149
7150 2018-07-02  Maciej W. Rozycki  <macro@mips.com>
7151             Simon Marchi  <simon.marchi@polymtl.ca>
7152
7153         PR tdep/8282
7154         * disasm.h (gdb_disassembler): Add
7155         `m_disassembler_options_holder'. member
7156         * disasm.c (get_all_disassembler_options): New function.
7157         (gdb_disassembler::gdb_disassembler): Use it.
7158         (gdb_buffered_insn_length_init_dis): Likewise.
7159         (gdb_buffered_insn_length): Adjust accordingly.
7160         (set_disassembler_options): Handle options with arguments.
7161         (show_disassembler_options_sfunc): Likewise.  Add a leading new
7162         line if showing options with descriptions.
7163         (disassembler_options_completer): Adapt to using the
7164         `disasm_options_and_args_t' structure.
7165         * mips-tdep.c (mips_disassembler_options): New variable.
7166         (mips_disassembler_options_o32): Likewise.
7167         (mips_disassembler_options_n32): Likewise.
7168         (mips_disassembler_options_n64): Likewise.
7169         (gdb_print_insn_mips): Don't set `disassembler_options'.
7170         (gdb_print_insn_mips_n32, gdb_print_insn_mips_n64): Remove
7171         functions.
7172         (mips_gdbarch_init): Always set `gdbarch_print_insn' to
7173         `gdb_print_insn_mips'.  Set `gdbarch_disassembler_options',
7174         `gdbarch_disassembler_options_implicit' and
7175         `gdbarch_valid_disassembler_options'.
7176         * arm-tdep.c (_initialize_arm_tdep): Adapt to using the
7177         `disasm_options_and_args_t' structure.
7178         * gdbarch.sh (disassembler_options_implicit): New `gdbarch'
7179         method.
7180         (valid_disassembler_options): Switch from `disasm_options_t' to
7181         the `disasm_options_and_args_t' structure.
7182         * NEWS: Document `set disassembler-options' support for the MIPS
7183         target.
7184         * gdbarch.h: Regenerate.
7185         * gdbarch.c: Regenerate.
7186
7187 2018-07-02  Sebastian Huber  <sebastian.huber@embedded-brains.de>
7188
7189         * riscv-tdep.c (riscv_register_aliases): Swap "fp" and "s0" entries.
7190
7191 2018-06-29  Joel Brobecker  <brobecker@adacore.com>
7192
7193         * amd64-darwin-tdep.c (x86_darwin_init_abi_64): Add missing
7194         parameter in call to amd64_target_description.
7195         * amd64-dicos-tdep.c (amd64_dicos_init_abi): Likewise.
7196         * amd64-fbsd-tdep.c (amd64fbsd_core_read_description)
7197         (amd64fbsd_init_abi): Likewise.
7198         * amd64-nbsd-tdep.c (amd64nbsd_init_abi): Likewise.
7199         * amd64-obsd-tdep.c (amd64obsd_init_abi): Likewise.
7200         * amd64-sol2-tdep.c (amd64_sol2_init_abi): Likewise.
7201         * amd64-fbsd-nat.c (amd64_fbsd_nat_target): Likewise.
7202
7203 2018-06-29  Pedro Alves  <palves@redhat.com>
7204
7205         * gdb/amd64-tdep.h (amd64_create_target_description): Add
7206         "segments" parameter.
7207         * gdb/amd64-tdep.c (amd64_none_init_abi, amd64_x32_none_init_abi)
7208         (_initialize_amd64_tdep): Update call to
7209         amd64_create_target_description.
7210         (amd64_target_description): Add "segments" parameter.  Adjust
7211         the implementation to use it.
7212         * gdb/amd64-linux-tdep.c (amd64_linux_read_description): Update
7213         call to amd64_create_target_description.
7214         * gdb/amd64-windows-tdep.c (amd64_windows_init_abi): Likewise.
7215         * gdb/arch/amd64.h (amd64_create_target_description): Add
7216         "segments" register.
7217         * gdb/arch/amd64.c (amd64_create_target_description): Add
7218         "segments" parameter.  Call create_feature_i386_64bit_segments
7219         only if SEGMENTS is true.
7220         * gdb/gdbserver/win32-i386-low.c (i386_arch_setup): Update
7221         call to amd64_create_target_description.
7222
7223 2018-06-29  Pedro Alves  <palves@redhat.com>
7224
7225         * thread.c (thread_target_id_str): New, factored out from ...
7226         (print_thread_info_1): ... here.  Use it to compute the max
7227         "Target Id" column width.
7228
7229 2018-06-29  Pedro Alves  <palves@redhat.com>
7230
7231         * remote.c (remote_target::extra_thread_info): Delete
7232         'display_buf' and 'n' locals.  from the cache, regardless of
7233         packet mechanims is in use.  Use cache for qThreadExtra and qP
7234         methods too.
7235
7236 2018-06-29  Pedro Alves  <palves@redhat.com>
7237
7238         * blockframe.c (find_pc_sect_containing_function): New function.
7239         * breakpoint.c (print_breakpoint_location): Don't call
7240         find_pc_sect_function.
7241         * linespec.c (create_sals_line_offset): Record the location's
7242         symbol in the sal.
7243         * linespec.c (convert_address_location_to_sals): Fill in sal's
7244         symbol with find_pc_sect_containing_function.
7245         * symtab.c (find_function_start_sal): Rename to ...
7246         (find_function_start_sal_1): ... this.
7247         (find_function_start_sal): Reimplement as wrapper around
7248         find_function_start_sal_1, and use
7249         find_pc_sect_containing_function to fill in the sal's symbol.
7250         (find_function_start_sal(symbol*, bool)): Adjust.
7251         * symtab.h (find_pc_function, find_pc_sect_function): Adjust
7252         comments.
7253         (find_pc_sect_containing_function): Declare.
7254
7255 2018-06-29  Pedro Alves  <palves@redhat.com>
7256
7257         * inline-frame.c (stopped_by_user_bp_inline_frame): Return
7258         true if the the location has no symbol.
7259
7260 2018-06-28  Tom Tromey  <tom@tromey.com>
7261
7262         * NEWS: Mention --enable-codesign.
7263         * silent-rules.mk (ECHO_SIGN): New variable.
7264         * configure.ac: Add --enable-codesign.
7265         * configure: Rebuild.
7266         * Makefile.in (CODESIGN, CODESIGN_CERT): New variables.
7267         (gdb$(EXEEXT)): Optionally invoke codesign.
7268
7269 2018-06-28  Pedro Alves  <palves@redhat.com>
7270
7271         * gdbthread.h (struct thread_suspend_state) <stop_pc>: Extend
7272         comments.
7273         (switch_to_thread_no_regs): Adjust comment.
7274         * infcmd.c (stop_pc): Delete.
7275         (post_create_inferior, info_program_command): Replace references
7276         to stop_pc with references to thread_info->suspend.stop_pc.
7277         * inferior.h (stop_pc): Delete declaration.
7278         * infrun.c (proceed, handle_syscall_event, fill_in_stop_func)
7279         (handle_inferior_event_1, handle_signal_stop)
7280         (process_event_stop_test, keep_going_stepped_thread)
7281         (handle_step_into_function, handle_step_into_function_backward)
7282         (print_stop_location): Replace references to stop_pc with
7283         references to thread_info->suspend.stop_pc.
7284         (struct infcall_suspend_state) <stop_pc>: Delete field.
7285         (save_infcall_suspend_state, restore_infcall_suspend_state):
7286         Remove references to inf_stat->stop_pc.
7287         * linux-fork.c (fork_load_infrun_state): Likewise.
7288         * record-btrace.c (record_btrace_set_replay): Likewise.
7289         * record-full.c (record_full_goto_entry): Likewise.
7290         * remote.c (print_one_stopped_thread): Likewise.
7291         * target.c (target_resume): Extend comment.
7292         * thread.c (set_executing_thread): New.
7293         (set_executing): Use it.
7294         (switch_to_thread_no_regs, switch_to_no_thread, switch_to_thread):
7295         Remove references to stop_pc.
7296
7297 2018-06-28  Pedro Alves  <palves@redhat.com>
7298
7299         * infrun.c (handle_inferior_event_1) <TARGET_WAITKIND_EXECD>:
7300         Moving fetching stop_pc until after ecs->event_thread is refreshed.
7301
7302 2018-06-28  Tom Tromey  <tom@tromey.com>
7303
7304         * coffread.c (coff_symfile_finish): Update.
7305         * xcoffread.c (xcoff_symfile_finish): Update.
7306         * elfread.c (elf_symfile_finish): Update.
7307         * symfile.h (dwarf2_free_objfile): Don't declare.
7308         * dwarf2read.c (_initialize_dwarf2_read): Use
7309         register_objfile_data_with_cleanup.
7310         (dwarf2_free_objfile): Now static.  Change signature.
7311
7312 2018-06-28  Petr Tesarik  <ptesarik@suse.cz>
7313
7314         * symfile.c (add_symbol_file_command, _initialize_symfile): Add
7315         option "-o" to add-symbol-file-load to add an offset to each
7316         section's load address.
7317         * symfile.c (set_objfile_default_section_offset): New function.
7318
7319 2018-06-28  Petr Tesarik  <ptesarik@suse.cz>
7320
7321         * symfile.c (add_symbol_file_command): Make sure that sections
7322         with the same name are sorted in the same order.
7323
7324 2018-06-28  Petr Tesarik  <ptesarik@suse.cz>
7325
7326         * symfile.c (add_symbol_file_command, _initialize_symfile): Do not
7327         require the second argument.  If omitted, load sections at the
7328         addresses specified in the file.
7329
7330 2018-06-28  Petr Tesarik  <ptesarik@suse.cz>
7331
7332         * symfile.c (symbol_file_command, symbol_file_add_main_1)
7333         (_initialize_symfile): Add option "-o" to symbol-file to add an
7334         offset to each section of the symbol file.
7335
7336 2018-06-28  Petr Tesarik  <ptesarik@suse.cz>
7337
7338         * MAINTAINERS (Write After Approval): Add Petr Tesarik.
7339
7340 2018-06-27  Tom Tromey  <tom@tromey.com>
7341
7342         * stack.c (_initialize_stack): Update "func" help text.
7343
7344 2018-06-27  Tom Tromey  <tom@tromey.com>
7345
7346         * python/py-unwind.c (unwind_info_object) <saved_regs>: Now a
7347         std::vector.
7348         (unwind_infopy_str, pyuw_create_unwind_info)
7349         (unwind_infopy_add_saved_register, pyuw_sniffer)
7350         (unwind_infopy_dealloc, unwind_infopy_add_saved_register):
7351         Update.
7352         (struct saved_reg): Add constructor.
7353         <value>: Now a gdbpy_ref<>.
7354
7355 2018-06-27  Tom Tromey  <tom@tromey.com>
7356
7357         * machoread.c (macho_symfile_read): Define "symbol_table" earlier.
7358
7359 2018-06-27  Simon Marchi  <simon.marchi@ericsson.com>
7360
7361         * gdb-gdb.py.in: Format using autopep8.
7362
7363 2018-06-27  Simon Marchi  <simon.marchi@ericsson.com>
7364
7365         * gdb-gdb.py.in (CoreAddrPrettyPrinter): New class.
7366         (type_lookup_function): Recognize CORE_ADDR values.
7367
7368 2018-06-27  Simon Marchi  <simon.marchi@ericsson.com>
7369
7370         * gdb-gdb.py.in (StructMainTypePrettyPrinter) <to_string>: Don't
7371         print tag_name.
7372
7373 2018-06-27  Simon Marchi  <simon.marchi@ericsson.com>
7374
7375         * gdb-gdb.py.in (TypeFlag) <__cmp__>: Remove.
7376         <__lt__>: Add.
7377
7378 2018-06-27  Simon Marchi  <simon.marchi@ericsson.com>
7379
7380         * gdb-gdb.py: Move to...
7381         * gdb-gdb.py.in: ... here.
7382         * configure.ac (AC_CONFIG_FILES): Add gdb-gdb.py.
7383         * Makefile.in (all): Add gdb-gdb.gdb and gdb-gdb.py as
7384         dependencies.
7385         (distclean): Remove gdb-gdb.py when cleaning.
7386         (gdb-gdb.py, gdb-gdb.gdb): New rules.
7387         * configure: Re-generate.
7388
7389 2018-06-27  Pedro Alves  <palves@redhat.com>
7390
7391         * proc-service.c (get_ps_regcache): New.
7392         (ps_lgetregs, ps_lsetregs, ps_lgetfpregs)
7393         (ps_lsetfpregs): Use it.
7394
7395 2018-06-27  Omair Javaid  <omair.javaid@linaro.org>
7396
7397         PR gdb/21695
7398         * dwarf2read.c (lnp_state_machine::check_line_address): Update
7399         declaration.
7400         (dwarf_decode_lines_1): Adjust.
7401
7402 2018-06-27  Simon Marchi  <simon.marchi@ericsson.com>
7403
7404         * fbsd-nat.h (class fbsd_nat_target) <find_memory_regions>: Add
7405         override.
7406         <info_proc>: Likewise.
7407
7408 2018-06-26  Joel Brobecker  <brobecker@adacore.com>
7409
7410         * windows-nat.c (do_windows_fetch_inferior_registers): Rename
7411         to windows_fetch_one_register, and only handle the case of
7412         fetching one register.  Move the code that reloads the context
7413         and iterates over all registers if R is negative to...
7414         (windows_nat_target::fetch_registers): ... here.
7415         (do_windows_store_inferior_registers): Rename to
7416         windows_store_one_register, and only handle the case of storing
7417         one register.  Move the code that handles the case where r is
7418         negative to...
7419         (windows_nat_target::store_registers) ... here.
7420
7421 2018-06-26  Tom Tromey  <tom@tromey.com>
7422
7423         PR rust/22574:
7424         * typeprint.c (whatis_exp): Allow ptype/o for Rust.
7425         * rust-lang.c (rust_print_struct_def): Add podata parameter.
7426         Update.
7427         (rust_internal_print_type): Add podata parameter.
7428         (rust_print_type): Update.
7429
7430 2018-06-26  Tom Tromey  <tom@tromey.com>
7431
7432         * typeprint.h (struct print_offset_data) <update, finish,
7433         maybe_print_hole>: New methods.
7434         <indentation>: New constant.
7435         * typeprint.c (print_offset_data::indentation): Define.
7436         (print_offset_data::maybe_print_hole, print_offset_data::update)
7437         (print_offset_data::finish): Move from c-typeprint.c and rename.
7438         * c-typeprint.c (OFFSET_SPC_LEN): Remove.
7439         (print_spaces_filtered_with_print_options): Update.
7440         (c_print_type_union_field_offset, maybe_print_hole)
7441         (c_print_type_struct_field_offset): Move to typeprint.c and
7442         rename.
7443         (c_type_print_base_struct_union): Update.
7444
7445 2018-06-25  Pedro Alves  <palves@redhat.com>
7446
7447         * gdbthread.h (thread_info_ref, delete_thread)
7448         (delete_thread_silent, first_thread_of_inferior)
7449         (any_thread_of_inferior, switch_to_thread)
7450         (enable_thread_stack_temporaries)
7451         (thread_stack_temporaries_enabled_p, push_thread_stack_temporary)
7452         (get_last_thread_stack_temporary)
7453         (value_in_thread_stack_temporaries, can_access_registers_thread):
7454         Spell out "struct thread_info" instead of just "thread_info".
7455         * inferior.h (notice_new_inferior): Likewise.
7456
7457 2018-06-25  Pedro Alves  <palves@redhat.com>
7458
7459         * windows-nat.c (windows_delete_thread): Use find_thread_ptid and
7460         pass thread_info pointer to delete_thread.
7461         (windows_nat_target::detach): Pass inferior pointer to
7462         detach_inferior.
7463         * aix-thread.c (sync_threadlists): Pass thread_info pointer to
7464         delete_thread.
7465         * bsd-kvm.c (bsd_kvm_target::close): Use discard_all_inferiors.
7466         * darwin-nat.c (darwin_check_new_threads): Use find_thread_ptid
7467         and pass a thread_info pointer to delete_thread.
7468         * fbsd-nat.c (fbsd_nat_target::wait): Use find_thread_ptid and
7469         pass thread_info pointer to delete_thread.
7470         * go32-nat.c (go32_nat_target::mourn_inferior): Remove
7471         delete_thread_silent call.
7472         * procfs.c (procfs_target::detach): Pass inferior pointer to
7473         detach_inferior.
7474         (procfs_target::wait): Pass thread_info pointer to delete_thread.
7475         * remote-sim.c (gdbsim_target::mourn_inferior): Remove
7476         delete_thread_silent call.
7477         * windows-nat.c (windows_delete_thread): Use find_thread_ptid and
7478         pass thread_info pointer to delete_thread.
7479         (windows_nat_target::detach): Pass inferior pointer to
7480         delete_inferior.
7481
7482 2018-06-22  Alan Hayward  <alan.hayward@arm.com>
7483
7484         * regcache.c (readable_regcache::read_part): Fix asserts.
7485         (reg_buffer::raw_collect_part): New function.
7486         (regcache::write_part): Fix asserts.
7487         (reg_buffer::raw_supply_part): New function.
7488         (regcache::transfer_regset_register): New helper function.
7489         (regcache::transfer_regset): Call new functions.
7490         (regcache_supply_regset): Use gdb_byte*.
7491         (regcache::supply_regset): Likewise.
7492         (regcache_collect_regset): Likewise.
7493         (regcache::collect_regset): Likewise.
7494         * regcache.h (reg_buffer::raw_collect_part): New declaration.
7495         (reg_buffer::raw_supply_part): Likewise.
7496         (regcache::transfer_regset_register): Likewise.
7497         (regcache::transfer_regset): Use gdb_byte*.
7498
7499 2018-06-22  Alan Hayward  <alan.hayward@arm.com>
7500
7501         * nat/aarch64-sve-linux-ptrace.h (HAS_SVE_STATE): Use &.
7502
7503 2018-06-21  Pedro Alves  <palves@redhat.com>
7504
7505         * ada-lang.h (ada_get_task_number): Take a thread_info pointer
7506         instead of a ptid_t.  All callers adjusted.
7507         * ada-tasks.c (ada_get_task_number): Likewise.  All callers
7508         adjusted.
7509         (print_ada_task_info, display_current_task_id, task_command_1):
7510         Adjust.
7511         * breakpoint.c (watchpoint_in_thread_scope): Adjust to use
7512         inferior_thread.
7513         (breakpoint_kind): Adjust.
7514         (remove_breakpoints_pid): Rename to ...
7515         (remove_breakpoints_inf): ... this.  Adjust to take an inferior
7516         pointer.  All callers adjusted.
7517         (bpstat_clear_actions): Use inferior_thread.
7518         (get_bpstat_thread): New.
7519         (bpstat_do_actions): Use it.
7520         (bpstat_check_breakpoint_conditions, bpstat_stop_status): Adjust
7521         to take a thread_info pointer.  All callers adjusted.
7522         (set_longjmp_breakpoint_for_call_dummy, set_momentary_breakpoint)
7523         (breakpoint_re_set_thread): Use inferior_thread.
7524         * breakpoint.h (struct inferior): Forward declare.
7525         (bpstat_stop_status): Update.
7526         (remove_breakpoints_pid): Delete.
7527         (remove_breakpoints_inf): New.
7528         * bsd-uthread.c (bsd_uthread_target::wait)
7529         (bsd_uthread_target::update_thread_list): Use find_thread_ptid.
7530         * btrace.c (btrace_add_pc, btrace_enable, btrace_fetch)
7531         (maint_btrace_packet_history_cmd)
7532         (maint_btrace_clear_packet_history_cmd): Adjust.
7533         (maint_btrace_clear_cmd, maint_info_btrace_cmd): Adjust to use
7534         inferior_thread.
7535         * cli/cli-interp.c: Include "inferior.h".
7536         * common/refcounted-object.h (struct
7537         refcounted_object_ref_policy): New.
7538         * compile/compile-object-load.c: Include gdbthread.h.
7539         (store_regs): Use inferior_thread.
7540         * corelow.c (core_target::close): Use current_inferior.
7541         (core_target_open): Adjust to use first_thread_of_inferior and use
7542         the current inferior.
7543         * ctf.c (ctf_target::close): Adjust to use current_inferior.
7544         * dummy-frame.c (dummy_frame_id) <ptid>: Delete, replaced by ...
7545         <thread>: ... this new field.  All references adjusted.
7546         (dummy_frame_pop, dummy_frame_discard, register_dummy_frame_dtor):
7547         Take a thread_info pointer instead of a ptid_t.
7548         * dummy-frame.h (dummy_frame_push, dummy_frame_pop)
7549         (dummy_frame_discard, register_dummy_frame_dtor): Take a
7550         thread_info pointer instead of a ptid_t.
7551         * elfread.c: Include "inferior.h".
7552         (elf_gnu_ifunc_resolver_stop, elf_gnu_ifunc_resolver_return_stop):
7553         Use inferior_thread.
7554         * eval.c (evaluate_subexp): Likewise.
7555         * frame.c (frame_pop, has_stack_frames, find_frame_sal): Use
7556         inferior_thread.
7557         * gdb_proc_service.h (struct thread_info): Forward declare.
7558         (struct ps_prochandle) <ptid>: Delete, replaced by ...
7559         <thread>: ... this new field.  All references adjusted.
7560         * gdbarch.h, gdbarch.c: Regenerate.
7561         * gdbarch.sh (get_syscall_number): Replace 'ptid' parameter with a
7562         'thread' parameter.  All implementations and callers adjusted.
7563         * gdbthread.h (thread_info) <set_running>: New method.
7564         (delete_thread, delete_thread_silent): Take a thread_info pointer
7565         instead of a ptid.
7566         (global_thread_id_to_ptid, ptid_to_global_thread_id): Delete.
7567         (first_thread_of_process): Delete, replaced by ...
7568         (first_thread_of_inferior): ... this new function.  All callers
7569         adjusted.
7570         (any_live_thread_of_process): Delete, replaced by ...
7571         (any_live_thread_of_inferior): ... this new function.  All callers
7572         adjusted.
7573         (switch_to_thread, switch_to_no_thread): Declare.
7574         (is_executing): Delete.
7575         (enable_thread_stack_temporaries): Update comment.
7576         <enable_thread_stack_temporaries>: Take a thread_info pointer
7577         instead of a ptid_t.  Incref the thread.
7578         <~enable_thread_stack_temporaries>: Decref the thread.
7579         <m_ptid>: Delete
7580         <m_thr>: New.
7581         (thread_stack_temporaries_enabled_p, push_thread_stack_temporary)
7582         (get_last_thread_stack_temporary)
7583         (value_in_thread_stack_temporaries, can_access_registers_thread):
7584         Take a thread_info pointer instead of a ptid_t.  All callers
7585         adjusted.
7586         * infcall.c (get_call_return_value): Use inferior_thread.
7587         (run_inferior_call): Work with thread pointers instead of ptid_t.
7588         (call_function_by_hand_dummy): Work with thread pointers instead
7589         of ptid_t.  Use thread_info_ref.
7590         * infcmd.c (proceed_thread_callback): Access thread's state
7591         directly.
7592         (ensure_valid_thread, ensure_not_running): Use inferior_thread,
7593         access thread's state directly.
7594         (continue_command): Use inferior_thread.
7595         (info_program_command): Use find_thread_ptid and access thread
7596         state directly.
7597         (proceed_after_attach_callback): Use thread state directly.
7598         (notice_new_inferior): Take a thread_info pointer instead of a
7599         ptid_t.  All callers adjusted.
7600         (exit_inferior): Take an inferior pointer instead of a pid.  All
7601         callers adjusted.
7602         (exit_inferior_silent): New.
7603         (detach_inferior): Delete.
7604         (valid_gdb_inferior_id, pid_to_gdb_inferior_id)
7605         (gdb_inferior_id_to_pid, in_inferior_list): Delete.
7606         (detach_inferior_command, kill_inferior_command): Use
7607         find_inferior_id instead of valid_gdb_inferior_id and
7608         gdb_inferior_id_to_pid.
7609         (inferior_command): Use inferior and thread pointers.
7610         * inferior.h (struct thread_info): Forward declare.
7611         (notice_new_inferior): Take a thread_info pointer instead of a
7612         ptid_t.  All callers adjusted.
7613         (detach_inferior): Delete declaration.
7614         (exit_inferior, exit_inferior_silent): Take an inferior pointer
7615         instead of a pid.  All callers adjusted.
7616         (gdb_inferior_id_to_pid, pid_to_gdb_inferior_id, in_inferior_list)
7617         (valid_gdb_inferior_id): Delete.
7618         * infrun.c (follow_fork_inferior, proceed_after_vfork_done)
7619         (handle_vfork_child_exec_or_exit, follow_exec): Adjust.
7620         (struct displaced_step_inferior_state) <pid>: Delete, replaced by
7621         ...
7622         <inf>: ... this new field.
7623         <step_ptid>: Delete, replaced by ...
7624         <step_thread>: ... this new field.
7625         (get_displaced_stepping_state): Take an inferior pointer instead
7626         of a pid.  All callers adjusted.
7627         (displaced_step_in_progress_any_inferior): Adjust.
7628         (displaced_step_in_progress_thread): Take a thread pointer instead
7629         of a ptid_t.  All callers adjusted.
7630         (displaced_step_in_progress, add_displaced_stepping_state): Take
7631         an inferior pointer instead of a pid.  All callers adjusted.
7632         (get_displaced_step_closure_by_addr): Adjust.
7633         (remove_displaced_stepping_state): Take an inferior pointer
7634         instead of a pid.  All callers adjusted.
7635         (displaced_step_prepare_throw, displaced_step_prepare)
7636         (displaced_step_fixup): Take a thread pointer instead of a ptid_t.
7637         All callers adjusted.
7638         (start_step_over): Adjust.
7639         (infrun_thread_ptid_changed): Remove bit updating ptids in the
7640         displaced step queue.
7641         (do_target_resume): Adjust.
7642         (fetch_inferior_event): Use inferior_thread.
7643         (context_switch, get_inferior_stop_soon): Take an
7644         execution_control_state pointer instead of a ptid_t.  All callers
7645         adjusted.
7646         (switch_to_thread_cleanup): Delete.
7647         (stop_all_threads): Use scoped_restore_current_thread.
7648         * inline-frame.c: Include "gdbthread.h".
7649         (inline_state) <inline_state>: Take a thread pointer instead of a
7650         ptid_t.  All callers adjusted.
7651         <ptid>: Delete, replaced by ...
7652         <thread>: ... this new field.
7653         (find_inline_frame_state): Take a thread pointer instead of a
7654         ptid_t.  All callers adjusted.
7655         (skip_inline_frames, step_into_inline_frame)
7656         (inline_skipped_frames, inline_skipped_symbol): Take a thread
7657         pointer instead of a ptid_t.  All callers adjusted.
7658         * inline-frame.h (skip_inline_frames, step_into_inline_frame)
7659         (inline_skipped_frames, inline_skipped_symbol): Likewise.
7660         * linux-fork.c (delete_checkpoint_command): Adjust to use thread
7661         pointers directly.
7662         * linux-nat.c (get_detach_signal): Likewise.
7663         * linux-thread-db.c (thread_from_lwp): New 'stopped' parameter.
7664         (thread_db_notice_clone): Adjust.
7665         (thread_db_find_new_threads_silently)
7666         (thread_db_find_new_threads_2, thread_db_find_new_threads_1): Take
7667         a thread pointer instead of a ptid_t.  All callers adjusted.
7668         * mi/mi-cmd-var.c: Include "inferior.h".
7669         (mi_cmd_var_update_iter): Update to use thread pointers.
7670         * mi/mi-interp.c (mi_new_thread): Update to use the thread's
7671         inferior directly.
7672         (mi_output_running_pid, mi_inferior_count): Delete, bits factored
7673         out to ...
7674         (mi_output_running): ... this new function.
7675         (mi_on_resume_1): Adjust to use it.
7676         (mi_user_selected_context_changed): Adjust to use inferior_thread.
7677         * mi/mi-main.c (proceed_thread): Adjust to use thread pointers
7678         directly.
7679         (interrupt_thread_callback): : Adjust to use thread and inferior
7680         pointers.
7681         * proc-service.c: Include "gdbthread.h".
7682         (ps_pglobal_lookup): Adjust to use the thread's inferior directly.
7683         * progspace-and-thread.c: Include "inferior.h".
7684         * progspace.c: Include "inferior.h".
7685         * python/py-exitedevent.c (create_exited_event_object): Adjust to
7686         hold a reference to an inferior_object.
7687         * python/py-finishbreakpoint.c (bpfinishpy_init): Adjust to use
7688         inferior_thread.
7689         * python/py-inferior.c (struct inferior_object): Give the type a
7690         tag name instead of a typedef.
7691         (python_on_normal_stop): No need to check if the current thread is
7692         listed.
7693         (inferior_to_inferior_object): Change return type to
7694         inferior_object.  All callers adjusted.
7695         (find_thread_object): Delete, bits factored out to ...
7696         (thread_to_thread_object): ... this new function.
7697         * python/py-infthread.c (create_thread_object): Use
7698         inferior_to_inferior_object.
7699         (thpy_is_stopped): Use thread pointer directly.
7700         (gdbpy_selected_thread): Use inferior_thread.
7701         * python/py-record-btrace.c (btpy_list_object) <ptid>: Delete
7702         field, replaced with ...
7703         <thread>: ... this new field.  All users adjusted.
7704         (btpy_insn_or_gap_new): Drop const.
7705         (btpy_list_new): Take a thread pointer instead of a ptid_t.  All
7706         callers adjusted.
7707         * python/py-record.c: Include "gdbthread.h".
7708         (recpy_insn_new, recpy_func_new): Take a thread pointer instead of
7709         a ptid_t.  All callers adjusted.
7710         (gdbpy_current_recording): Use inferior_thread.
7711         * python/py-record.h (recpy_record_object) <ptid>: Delete
7712         field, replaced with ...
7713         <thread>: ... this new field.  All users adjusted.
7714         (recpy_element_object) <ptid>: Delete
7715         field, replaced with ...
7716         <thread>: ... this new field.  All users adjusted.
7717         (recpy_insn_new, recpy_func_new): Take a thread pointer instead of
7718         a ptid_t.  All callers adjusted.
7719         * python/py-threadevent.c: Include "gdbthread.h".
7720         (get_event_thread): Use thread_to_thread_object.
7721         * python/python-internal.h (struct inferior_object): Forward
7722         declare.
7723         (find_thread_object, find_inferior_object): Delete declarations.
7724         (thread_to_thread_object, inferior_to_inferior_object): New
7725         declarations.
7726         * record-btrace.c: Include "inferior.h".
7727         (require_btrace_thread): Use inferior_thread.
7728         (record_btrace_frame_sniffer)
7729         (record_btrace_tailcall_frame_sniffer): Use inferior_thread.
7730         (get_thread_current_frame): Use scoped_restore_current_thread and
7731         switch_to_thread.
7732         (get_thread_current_frame): Use thread pointer directly.
7733         (record_btrace_replay_at_breakpoint): Use thread's inferior
7734         pointer directly.
7735         * record-full.c: Include "inferior.h".
7736         * regcache.c: Include "gdbthread.h".
7737         (get_thread_arch_regcache): Use the inferior's address space
7738         directly.
7739         (get_thread_regcache, registers_changed_thread): New.
7740         * regcache.h (get_thread_regcache(thread_info *thread)): New
7741         overload.
7742         (registers_changed_thread): New.
7743         (remote_target) <remote_detach_1>: Swap order of parameters.
7744         (remote_add_thread): <remote_add_thread>: Return the new thread.
7745         (get_remote_thread_info(ptid_t)): New overload.
7746         (remote_target::remote_notice_new_inferior): Use thread pointers
7747         directly.
7748         (remote_target::process_initial_stop_replies): Use
7749         thread_info::set_running.
7750         (remote_target::remote_detach_1, remote_target::detach)
7751         (extended_remote_target::detach): Adjust.
7752         * stack.c (frame_show_address): Use inferior_thread.
7753         * target-debug.h (target_debug_print_thread_info_pp): New.
7754         * target-delegates.c: Regenerate.
7755         * target.c (default_thread_address_space): Delete.
7756         (memory_xfer_partial_1): Use current_inferior.
7757         (target_detach): Use current_inferior.
7758         (target_thread_address_space): Delete.
7759         (generic_mourn_inferior): Use current_inferior.
7760         * target.h (struct target_ops) <thread_address_space>: Delete.
7761         (target_thread_address_space): Delete.
7762         * thread.c (init_thread_list): Use ALL_THREADS_SAFE.  Use thread
7763         pointers directly.
7764         (delete_thread_1, delete_thread, delete_thread_silent): Take a
7765         thread pointer instead of a ptid_t.  Adjust all callers.
7766         (ptid_to_global_thread_id, global_thread_id_to_ptid): Delete.
7767         (first_thread_of_process): Delete, replaced by ...
7768         (first_thread_of_inferior): ... this new function.  All callers
7769         adjusted.
7770         (any_thread_of_process): Rename to ...
7771         (any_thread_of_inferior): ... this, and take an inferior pointer.
7772         (any_live_thread_of_process): Rename to ...
7773         (any_live_thread_of_inferior): ... this, and take an inferior
7774         pointer.
7775         (thread_stack_temporaries_enabled_p, push_thread_stack_temporary)
7776         (value_in_thread_stack_temporaries)
7777         (get_last_thread_stack_temporary): Take a thread pointer instead
7778         of a ptid_t.  Adjust all callers.
7779         (thread_info::set_running): New.
7780         (validate_registers_access): Use inferior_thread.
7781         (can_access_registers_ptid): Rename to ...
7782         (can_access_registers_thread): ... this, and take a thread
7783         pointer.
7784         (print_thread_info_1): Adjust to compare thread pointers instead
7785         of ptids.
7786         (switch_to_no_thread, switch_to_thread): Make extern.
7787         (scoped_restore_current_thread::~scoped_restore_current_thread):
7788         Use m_thread pointer directly.
7789         (scoped_restore_current_thread::scoped_restore_current_thread):
7790         Use inferior_thread.
7791         (thread_command): Use thread pointer directly.
7792         (thread_num_make_value_helper): Use inferior_thread.
7793         * top.c (execute_command): Use inferior_thread.
7794         * tui/tui-interp.c: Include "inferior.h".
7795         * varobj.c (varobj_create): Use inferior_thread.
7796         (value_of_root_1): Use find_thread_global_id instead of
7797         global_thread_id_to_ptid.
7798
7799 2018-06-21  Alan Hayward  <alan.hayward@arm.com>
7800
7801         * regcache.c (readable_regcache::read_part): Avoid memcpy when
7802         possible.
7803         (regcache::write_part): Likewise.
7804         (readable_regcache::cooked_read_part): Update comment.
7805         (readable_regcache::cooked_write_part): Likewise.
7806         * regcache.h: (readable_regcache::read_part): Likewise.
7807         (regcache::write_part): Likewise.
7808
7809 2018-06-21  Richard Bunt  <richard.bunt@arm.com>
7810             Dirk Schubert  <dirk.schubert@arm.com>
7811
7812         * aarch64-linux-nat.c (post_attach): New.
7813         (aarch64_linux_nat_target::post_attach): Override post_attach to
7814         record the number of hardware debug registers.
7815
7816 2018-06-20  Tom Tromey  <tom@tromey.com>
7817
7818         * python/py-param.c (add_setshow_generic): Make parameters const.
7819         (parmpy_init): Update.
7820
7821 2018-06-20  Simon Marchi  <simon.marchi@polymtl.ca>
7822
7823         * regcache.h (regcache_cooked_read_ftype): Rename to...
7824         (register_read_ftype): ...this, change type to function_view.
7825         (class reg_buffer) <save>: Remove src parameter.
7826         (readonly_detached_regcache) <readonly_detached_regcache>: Make
7827         parameter non-const in first overload.  Remove src parameter in
7828         second overload.
7829         * regcache.c (do_cooked_read): Remove.
7830         (readonly_detached_regcache::readonly_detached_regcache): Make
7831         parameter non-const, adjust call to other constructor.
7832         (reg_buffer::save): Remove src parameter.
7833         * frame.c (do_frame_register_read): Remove.
7834         (frame_save_as_regcache): Use lambda function.
7835         * ppc-linux-tdep.c (ppu2spu_unwind_register): Change type of src
7836         parameter to ppu2spu_data *.
7837         (ppu2spu_sniffer): Use lambda function.
7838
7839 2018-06-20  Simon Marchi  <simon.marchi@polymtl.ca>
7840
7841         * record-full.c (record_full_target::insert_breakpoint): Remove
7842         "struct" keyword, add const.
7843
7844 2018-06-19  Simon Marchi  <simon.marchi@ericsson.com>
7845
7846         * common/common-defs.h (PACKAGE_NAME, PACKAGE_VERSION,
7847         PACKAGE_STRING, PACKAGE_TARNAME): Undefine.
7848         * configure.ac: Remove AC_PREREQ, add missing quoting.
7849         * gnulib/configure.ac: Modernize usage of
7850         AC_INIT/AM_INIT_AUTOMAKE.  Remove AC_PREREQ.
7851         * gnulib/update-gnulib.sh (AUTOCONF_VERSION): Bump to 2.69.
7852         (AUTOMAKE_VERSION): Bump to 1.15.1.
7853         * configure: Re-generate.
7854         * config.in: Re-generate.
7855         * aclocal.m4: Re-generate.
7856         * gnulib/aclocal.m4: Re-generate.
7857         * gnulib/config.in: Re-generate.
7858         * gnulib/configure: Re-generate.
7859         * gnulib/import/Makefile.in: Re-generate.
7860
7861 2018-06-19  Pedro Alves  <palves@redhat.com>
7862
7863         * minsyms.c (msym_prefer_to_msym_type): New, factored out from ...
7864         (lookup_minimal_symbol_by_pc_section): ... here with
7865         gdb_assert_not_reached added.
7866
7867 2018-06-19  Pedro Alves  <palves@redhat.com>
7868
7869         * inline-frame.c (stopped_by_user_bp_inline_frame): Replace PC
7870         parameter with a block parameter.  Compare location's block symbol
7871         with the frame's block instead of addresses.
7872         (skip_inline_frames): Pass the current block instead of the
7873         frame's address.  Break out as soon as we determine the frame
7874         should not be skipped.
7875
7876 2018-06-18  Tom Tromey  <tom@tromey.com>
7877
7878         * solib-aix.c (solib_aix_get_section_offsets): Return
7879         unique_xmalloc_ptr.
7880         (solib_aix_solib_create_inferior_hook): Update.
7881
7882 2018-06-18  Tom Tromey  <tom@tromey.com>
7883
7884         * solib-darwin.c (darwin_current_sos): Use unique_xmalloc_ptr.
7885
7886 2018-06-18  Tom Tromey  <tom@tromey.com>
7887
7888         * solib-frv.c (frv_relocate_main_executable): Use
7889         unique_xmalloc_ptr.
7890         * solib-dsbt.c (dsbt_relocate_main_executable): Use
7891         unique_xmalloc_ptr.
7892
7893 2018-06-18  Tom Tromey  <tom@tromey.com>
7894
7895         * objfiles.h (inhibit_section_map_updates): Update.
7896         (resume_section_map_updates, resume_section_map_updates_cleanup):
7897         Remove.
7898         * solib-svr4.c (svr4_handle_solib_event): Update.
7899         * objfiles.c (inhibit_section_map_updates): Return
7900         scoped_restore_tmpl<int>.
7901         (resume_section_map_updates, resume_section_map_updates_cleanup):
7902         Remove.
7903
7904 2018-06-18  Tom Tromey  <tom@tromey.com>
7905
7906         * valprint.h (read_string): Update.
7907         * valprint.c (read_string): Change type of "buffer".
7908         (val_print_string): Update.
7909         * python/py-value.c (valpy_string): Update.
7910         * language.h (struct language_defn) <la_get_string>: Change
7911         type of "buffer".
7912         (default_get_string, c_get_string): Update.
7913         * language.c (default_get_string): Change type of "buffer".
7914         * guile/scm-value.c (gdbscm_value_to_string): Update.
7915         * c-lang.c (c_get_string): Change type of "buffer".
7916
7917 2018-06-18  Tom Tromey  <tom@tromey.com>
7918
7919         * ser-mingw.c (struct pipe_state_destroyer): New.
7920         (pipe_state_up): New typedef.
7921         (cleanup_pipe_state): Remove.
7922         (pipe_windows_open): Use pipe_state_up.  Don't release argv.
7923
7924 2018-06-18  Tom Tromey  <tom@tromey.com>
7925
7926         * rust-lang.h (rust_yyerror): Don't declare.
7927         * rust-lang.c (rust_language_defn): Update.
7928         * rust-exp.y (yyerror): Now static.
7929         * parse.c (parse_exp_in_context_1): Update.
7930         * p-lang.h (p_yyerror): Don't declare.
7931         * p-lang.c (p_language_defn): Update.
7932         * p-exp.y (yyerror): Now static.
7933         * opencl-lang.c (opencl_language_defn): Update.
7934         * objc-lang.c (objc_language_defn): Update.
7935         * m2-lang.h (m2_yyerror): Don't declare.
7936         * m2-lang.c (m2_language_defn): Update.
7937         * m2-exp.y (yyerror): Now static.
7938         * language.h (struct language_defn) <la_error>: Remove.
7939         * language.c (unk_lang_error): Remove.
7940         (unknown_language_defn, auto_language_defn): Remove.
7941         * go-lang.h (go_yyerror): Don't declare.
7942         * go-lang.c (go_language_defn): Update.
7943         * go-exp.y (yyerror): Now static.
7944         * f-lang.h (f_yyerror): Don't declare.
7945         * f-lang.c (f_language_defn): Update.
7946         * f-exp.y (yyerror): Now static.
7947         * d-lang.h (d_yyerror): Don't declare.
7948         * d-lang.c (d_language_defn): Update.
7949         * d-exp.y (yyerror): Now static.
7950         * c-lang.h (c_yyerror): Don't declare.
7951         * c-lang.c (c_language_defn, cplus_language_defn)
7952         (asm_language_defn, minimal_language_defn): Update.
7953         * c-exp.y (yyerror): Now static.
7954         * ada-lang.h (ada_yyerror): Don't declare.
7955         * ada-lang.c (ada_language_defn): Update.
7956         * ada-exp.y (yyerror): Now static.
7957
7958 2018-06-18  Alan Hayward  <alan.hayward@arm.com>
7959
7960         * aarch64-linux-nat.c (fetch_sveregs_from_thread): New function.
7961         (store_sveregs_to_thread): Likewise.
7962         (aarch64_linux_fetch_inferior_registers): Check for SVE.
7963         (aarch64_linux_store_inferior_registers): Likewise.
7964         * nat/aarch64-sve-linux-ptrace.c (aarch64_sve_get_sveregs): New
7965         function.
7966         (aarch64_sve_regs_copy_to_regcache): Likewise.
7967         (aarch64_sve_regs_copy_from_regcache): Likewise.
7968         * nat/aarch64-sve-linux-ptrace.h (aarch64_sve_get_sveregs): New
7969         declaration.
7970         (aarch64_sve_regs_copy_to_regcache): Likewise.
7971         (aarch64_sve_regs_copy_from_regcache): Likewise.
7972         (sve_context): Structure from Linux headers.
7973         (SVE_SIG_ZREGS_SIZE): Define from Linux headers.
7974         (SVE_SIG_ZREG_SIZE): Likewise.
7975         (SVE_SIG_PREG_SIZE): Likewise.
7976         (SVE_SIG_FFR_SIZE): Likewise.
7977         (SVE_SIG_REGS_OFFSET): Likewise.
7978         (SVE_SIG_ZREGS_OFFSET): Likewise.
7979         (SVE_SIG_ZREG_OFFSET): Likewise.
7980         (SVE_SIG_ZREGS_SIZE): Likewise.
7981         (SVE_SIG_PREGS_OFFSET): Likewise.
7982         (SVE_SIG_PREG_OFFSET): Likewise.
7983         (SVE_SIG_PREGS_SIZE): Likewise.
7984         (SVE_SIG_FFR_OFFSET): Likewise.
7985         (SVE_SIG_REGS_SIZE): Likewise.
7986         (SVE_SIG_CONTEXT_SIZE): Likewise.
7987         (SVE_PT_REGS_MASK): Likewise.
7988         (SVE_PT_REGS_FPSIMD): Likewise.
7989         (SVE_PT_REGS_SVE): Likewise.
7990         (SVE_PT_VL_INHERIT): Likewise.
7991         (SVE_PT_VL_ONEXEC): Likewise.
7992         (SVE_PT_REGS_OFFSET): Likewise.
7993         (SVE_PT_FPSIMD_OFFSET): Likewise.
7994         (SVE_PT_FPSIMD_SIZE): Likewise.
7995         (SVE_PT_SVE_ZREG_SIZE): Likewise.
7996         (SVE_PT_SVE_PREG_SIZE): Likewise.
7997         (SVE_PT_SVE_FFR_SIZE): Likewise.
7998         (SVE_PT_SVE_FPSR_SIZE): Likewise.
7999         (SVE_PT_SVE_FPCR_SIZE): Likewise.
8000         (__SVE_SIG_TO_PT): Likewise.
8001         (SVE_PT_SVE_OFFSET): Likewise.
8002         (SVE_PT_SVE_ZREGS_OFFSET): Likewise.
8003         (SVE_PT_SVE_ZREG_OFFSET): Likewise.
8004         (SVE_PT_SVE_ZREGS_SIZE): Likewise.
8005         (SVE_PT_SVE_PREGS_OFFSET): Likewise.
8006         (SVE_PT_SVE_PREG_OFFSET): Likewise.
8007         (SVE_PT_SVE_PREGS_SIZE): Likewise.
8008         (SVE_PT_SVE_FFR_OFFSET): Likewise.
8009         (SVE_PT_SVE_FPSR_OFFSET): Likewise.
8010         (SVE_PT_SVE_FPCR_OFFSET): Likewise.
8011         (SVE_PT_SVE_SIZE): Likewise.
8012         (SVE_PT_SIZE): Likewise.
8013         (HAS_SVE_STATE): New define.
8014
8015 2018-06-18  Alan Hayward  <alan.hayward@arm.com>
8016
8017         * nat/aarch64-sve-linux-sigcontext.h: New file.
8018         * nat/aarch64-sve-linux-ptrace.h (SVE_VQ_BYTES): Move to
8019         new files.
8020         (SVE_VQ_MIN): Likewise.
8021         (SVE_VQ_MAX): Likewise.
8022         (SVE_VL_MIN): Likewise.
8023         (SVE_VL_MAX): Likewise.
8024         (SVE_NUM_ZREGS): Likewise.
8025         (SVE_NUM_PREGS): Likewise.
8026         (sve_vl_valid): Likewise.
8027         (struct user_sve_header): Likewise.
8028
8029 2018-06-16  Andrew Burgess  <andrew.burgess@embecosm.com>
8030             Richard Bunt <Richard.Bunt@arm.com>
8031
8032         * linux-nat.c (stop_wait_callback): Don't discard SIGSTOP if it
8033         was requested by GDB.
8034
8035 2018-06-15  Tom de Vries  <tdevries@suse.de>
8036
8037         * MAINTAINERS (Write After Approval): Add Tom de Vries.
8038
8039 2018-06-14  Simon Marchi  <simon.marchi@polymtl.ca>
8040
8041         * gnulib/update-gnulib.sh: Print expected versions of
8042         autoconf/aclocal.
8043
8044 2018-06-14  Simon Marchi  <simon.marchi@ericsson.com>
8045
8046         * arch-utils.c (default_type_align): Use type_length_units.
8047         * gdbtypes.c (type_align): Use type_length_units.
8048
8049 2018-06-14  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
8050
8051         * cli/cli-script.c (_initialize_cli_script): Fix online documentation
8052         of 'define' command.
8053
8054 2018-06-14  Tom de Vries  <tdevries@suse.de>
8055
8056         PR cli/22573
8057         * infcmd.c (print_return_value_1): Use get_user_print_options instead of
8058         get_no_prettyformat_print_options.
8059
8060 2018-06-13  Simon Marchi  <simon.marchi@ericsson.com>
8061
8062         * sparc-nat.h: Include target.h.
8063         * sparc64-linux-nat.c (class sparc64_linux_nat_target)
8064         <fetch_registers>: Remove this argument in function call.
8065         <store_registers>: Remove this argument in function call, remove
8066         extra semicolon.
8067         <low_forget_process>: Call sparc64_forget_process instead of
8068         sparc_forget_process.
8069
8070 2018-06-13  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
8071
8072         * procfs.c (_initialize_procfs): Use add_inf_child_target.
8073         (procfs_target::make_corefile_notes): Adjust to new
8074         target_read_alloc return type.
8075
8076 2018-06-12  Andrew Burgess  <andrew.burgess@embecosm.com>
8077             Stephen Roberts  <stephen.roberts@arm.com>
8078
8079         PR gdb/22882
8080         * infrun.c (fetch_inferior_event): If GDB is not proceeding then
8081         run INF_EXEC_COMPLETE handler, even when not calling normal_stop.
8082         Move should_notify_stop local into more inner scope.
8083
8084 2018-06-12  Andrew Burgess  <andrew.burgess@embecosm.com>
8085             Stephen Roberts  <stephen.roberts@arm.com>
8086
8087         PR gdb/22882
8088         * infrun.c (resume_1): Add call to mark_async_event_handler.
8089
8090 2018-06-12  Andrew Burgess  <andrew.burgess@embecosm.com>
8091
8092         * infrun.c (do_target_wait): Change old version of $pc printed.
8093
8094 2018-06-11  Simon Marchi  <simon.marchi@ericsson.com>
8095
8096         * dwarf2read.c (read_index_from_section): Rename to...
8097         (read_gdb_index_from_section): ... this, update all callers.
8098         (dwarf2_read_index): Rename to...
8099         (dwarf2_read_gdb_index): ... this, update all callers.
8100
8101 2018-06-11  John David Anglin  <danglin@gcc.gnu.org>
8102
8103         * hppa-linux-nat.c
8104         (hppa_linux_nat_target::fetch_inferior_registers): Rename to
8105         hppa_linux_nat_target::fetch_registers.
8106
8107 2018-06-11  Alan Hayward  <alan.hayward@arm.com>
8108
8109         * aarch64-tdep.c (aarch64_dwarf_reg_to_regnum): Add mappings.
8110         * aarch64-tdep.h (AARCH64_DWARF_SVE_VG): Add define.
8111         (AARCH64_DWARF_SVE_FFR): Likewise.
8112         (AARCH64_DWARF_SVE_P0): Likewise.
8113         (AARCH64_DWARF_SVE_Z0): Likewise.
8114
8115 2018-06-11  Alan Hayward  <alan.hayward@arm.com>
8116
8117         * common/common-regcache.h (raw_compare): New function.
8118         * regcache.c (regcache::raw_compare): Likewise.
8119         * regcache.h (regcache::raw_compare): New declaration.
8120
8121 2018-06-11  Alan Hayward  <alan.hayward@arm.com>
8122
8123         * common/common-regcache.h (reg_buffer_common): New structure.
8124         * regcache.c (reg_buffer::invalidate): Move from detached_regcache.
8125         (reg_buffer::raw_supply): Likewise.
8126         (reg_buffer::raw_supply_integer): Likewise.
8127         (reg_buffer::raw_supply_zeroed): Likewise.
8128         (reg_buffer::raw_collect): Likewise.
8129         (reg_buffer::raw_collect_integer): Likewise.
8130         * regcache.h (reg_buffer::invalidate): Move from detached_regcache.
8131         (reg_buffer::raw_supply): Likewise.
8132         (reg_buffer::raw_supply_integer): Likewise.
8133         (reg_buffer::raw_supply_zeroed): Likewise.
8134         (reg_buffer::raw_collect): Likewise.
8135         (reg_buffer::raw_collect_integer): Likewise.
8136
8137 2018-06-10  Tom Tromey  <tom@tromey.com>
8138
8139         * remote.c (stop_reply_p): Remove typedef.  Don't declare queue.
8140         (class remote_state) <stop_reply_queue>: Now std::vector.
8141         (remote_state::~remote_state)
8142         (remote_target::stop_reply_queue_length): Update.
8143         (struct queue_iter_param, remove_child_of_pending_fork)
8144         (struct check_pending_event_prevents_wildcard_vcont_callback_data)
8145         (check_pending_event_prevents_wildcard_vcont_callback)
8146         (remove_stop_reply_for_inferior)
8147         (remove_stop_reply_of_remote_state)
8148         (remote_notif_remove_once_on_match)
8149         (stop_reply_match_ptid_and_ws)
8150         (remote_kill_child_of_pending_fork): Remove.
8151         (remote_target::remove_new_fork_children)
8152         (remote_target::check_pending_events_prevent_wildcard_vcont)
8153         (remote_target::discard_pending_stop_replies)
8154         (remote_target::discard_pending_stop_replies_in_queue)
8155         (remote_target::remote_notif_remove_queued_reply)
8156         (remote_target::queued_stop_reply)
8157         (remote_target::push_stop_reply, remote_target::peek_stop_reply)
8158         (remote_target::wait, remote_target::kill_new_fork_children)
8159         (remote_target::async): Update.
8160
8161 2018-06-10  Tom Tromey  <tom@tromey.com>
8162
8163         * record-full.c (record_full_arch_list_cleanups): Remove.
8164         (record_full_message): Use try/catch.
8165         (record_full_wait_cleanups): Remove.
8166         (record_full_wait_1): Use try/catch.
8167         (record_full_restore): Likewise.
8168
8169 2018-06-10  Tom Tromey  <tom@tromey.com>
8170
8171         * record-full.c (record_full_breakpoint_p): Remove typedef.  Don't
8172         declare VEC.  Add constructor.
8173         <in_target_beneath>: Now bool.
8174         (record_full_breakpoints): Now a std::vector, static.
8175         (record_full_sync_record_breakpoints)
8176         (record_full_init_record_breakpoints)
8177         (record_full_target::insert_breakpoint)
8178         (record_full_target::remove_breakpoint): Update.  Don't use XNEW.
8179
8180 2018-06-10  Simon Marchi  <simon.marchi@polymtl.ca>
8181
8182         * dwarf2read.c (process_cu_includes): Remove struct keyword.
8183         * serial.c (serial_interface_lookup): Remove struct keyword.
8184
8185 2018-06-10  Tom Tromey  <tom@tromey.com>
8186
8187         * procfs.c (procfs_target::xfer_partial): Use "beneath" as a
8188         method.
8189         * nto-procfs.c (nto_procfs_target::xfer_partial): Use "beneath" as
8190         a method.
8191         * go32-nat.c (go32_nat_target::xfer_partial): Use "beneath" as a
8192         method.
8193         * arm-linux-nat.c (arm_linux_nat_target::read_description): Use
8194         "beneath" as a method.
8195         * arm-fbsd-nat.c (arm_fbsd_nat_target::read_description):
8196         Use "beneath" as a method.
8197
8198 2018-06-10  Tom Tromey  <tom@tromey.com>
8199
8200         * tracefile.c (struct trace_file_writer_deleter): New.
8201         <operator()>: Rename from trace_file_writer_xfree.
8202         (trace_file_writer_up): New typedef.
8203         (tsave_command, trace_save_tfile, trace_save_ctf): Update.
8204
8205 2018-06-09  Simon Marchi  <simon.marchi@ericsson.com>
8206
8207         * regcache.h (reg_buffer) <~reg_buffer>: Use default destructor.
8208         <m_registers, m_register_status>: Change type to
8209         std::unique_ptr.
8210         * regcache.c (reg_buffer::reg_buffer): Use new instead of
8211         XCNEWVEC.
8212
8213 2018-06-09  Simon Marchi  <simon.marchi@ericsson.com>
8214
8215         * common/common-regcache.h (enum register_status): Add
8216         underlying type "signed char".
8217         * regcache.h (reg_buffer) <m_register_status>: Change type to
8218         register_status *.
8219         * regcache.c (reg_buffer::reg_buffer): Alocate arrays of
8220         register_status instead of signed char.
8221         (reg_buffer::save): Use REG_UNKNOWN instead of 0.
8222         (reg_buffer::get_register_status): Remove cast.
8223         (readable_regcache::raw_read): Remove cast.
8224         (readable_regcache::cooked_read): Remove cast.
8225
8226 2018-06-09  Tom Tromey  <tom@tromey.com>
8227
8228         * source.c (reverse_search_command, forward_search_command): Use
8229         scoped_fd.
8230
8231 2018-06-09  Tom Tromey  <tom@tromey.com>
8232
8233         * serial.c (serial_ops_p): Remove typedef.  Don't declare VEC.
8234         (serial_ops_list): Now static, std::vector.
8235         (serial_interface_lookup, serial_add_interface): Update.
8236
8237 2018-06-09  Tom Tromey  <tom@tromey.com>
8238
8239         * dwarf2read.c (process_cu_includes): Update.
8240         (process_full_comp_unit): Update.
8241         * dwarf2read.h (struct dwarf2_per_objfile) <just_read_cus>: Now a
8242         std::vector.
8243
8244 2018-06-08  Paul Koning  <paul_koning@dell.com>
8245
8246         PR gdb/23252
8247
8248         * python/python.c (do_start_initialization):
8249         Avoid call to internal Python API.
8250         (init__gdb_module): New function.
8251
8252 2018-06-08  Gary Benson <gbenson@redhat.com>
8253
8254         * linux-thread-db.c (valprint.h): New include.
8255         (struct check_thread_db_info): New structure.
8256         (check_thread_db_on_load, tdb_testinfo): New static globals.
8257         (check_thread_db, check_thread_db_callback): New functions.
8258         (try_thread_db_load_1): Run integrity checks if requested.
8259         (maintenance_check_libthread_db): New function.
8260         (_initialize_thread_db): Register "maint check libthread-db"
8261         and "maint set/show check-libthread-db".
8262         * NEWS: Mention the above new commands.
8263
8264 2018-06-08  Tom Tromey  <tom@tromey.com>
8265
8266         * windows-nat.c (windows_nat_target::xfer_partial): "beneath" is
8267         now a method.
8268
8269 2018-06-08  Tom Tromey  <tom@tromey.com>
8270
8271         * btrace.c (parse_xml_raw): Use gdb::unique_xmalloc_ptr.
8272
8273 2018-06-08  Tom Tromey  <tom@tromey.com>
8274
8275         * common/btrace-common.h (struct btrace_data): Add constructor,
8276         destructor, move assignment operator.
8277         <empty, clear, fini>: New methods.
8278         <format>: Initialize.
8279         (btrace_data_init, btrace_data_fini, btrace_data_clear)
8280         (btrace_data_empty): Don't declare.
8281         * common/btrace-common.c (btrace_data_init): Remove.
8282         (btrace_data::fini): Rename from btrace_data_fini.
8283         (btrace_data::empty): Rename from btrace_data_empty.
8284         (btrace_data::clear): Rename from btrace_data_clear.  Return
8285         bool.
8286         * btrace.h (make_cleanup_btrace_data): Don't declare.
8287         * btrace.c (btrace_add_pc, btrace_stitch_trace, btrace_clear)
8288         (parse_xml_btrace): Update.
8289         (do_btrace_data_cleanup, make_cleanup_btrace_data): Remove.
8290         (maint_btrace_clear_packet_history_cmd): Update.
8291
8292 2018-06-07  Pedro Alves  <palves@redhat.com>
8293
8294         * target.h (target_ops) <beneath>: Now a method.  All references
8295         updated.
8296         (class target_stack): New.
8297         * target.c (g_target_stack): New.
8298         (g_current_top_target): Delete.
8299         (current_top_target): Get the top target out of g_target_stack.
8300         (target_stack::push, target_stack::unpush): New.
8301         (push_target, unpush_target): Reimplement.
8302         (target_is_pushed): Reimplement in terms of g_target_stack.
8303         (target_ops::beneath, target_stack::find_beneath): New.
8304
8305 2018-06-07  Pedro Alves  <palves@redhat.com>
8306
8307         * target.h (find_target_beneath): Delete declaration.
8308         * target.c (find_target_beneath): Delete definition.
8309         * aix-thread.c: All callers of find_target_beneath adjusted to
8310         call target_ops::beneath instead.
8311         * bsd-uthread.c: Likewise.
8312         * linux-thread-db.c: Likewise.
8313         * ravenscar-thread.c: Likewise.
8314         * sol-thread.c: Likewise.
8315         * spu-multiarch.c: Likewise.
8316
8317 2018-06-07  Pedro Alves  <palves@redhat.com>
8318
8319         * target.h (target_ops) <beneath>: Now a method.  All references
8320         updated.
8321         (target_ops) <m_beneath>: New.
8322         * target.c (target_ops::beneath): New.
8323         * corelow.c: Adjust all references to target_ops::beneath.
8324         * linux-thread-db.c: Likewise.
8325         * make-target-delegates: Likewise.
8326         * record-btrace.c: Likewise.
8327         * record-full.c: Likewise.
8328         * remote.c: Likewise.
8329         * target.c: Likewise.
8330         * target-delegates.c: Regenerate.
8331
8332 2018-06-07  Pedro Alves  <palves@redhat.com>
8333
8334         * target.h (target_stack): Delete.
8335         (current_top_target): Declare function.
8336         * target.c (target_stack): Delete.
8337         (g_current_top_target): New.
8338         (current_top_target): New function.
8339         * auxv.c: Use current_top_target instead of target_stack
8340         throughout.
8341         * avr-tdep.c: Likewise.
8342         * breakpoint.c: Likewise.
8343         * corefile.c: Likewise.
8344         * elfread.c: Likewise.
8345         * eval.c: Likewise.
8346         * exceptions.c: Likewise.
8347         * frame.c: Likewise.
8348         * gdbarch-selftests.c: Likewise.
8349         * gnu-v3-abi.c: Likewise.
8350         * ia64-tdep.c: Likewise.
8351         * ia64-vms-tdep.c: Likewise.
8352         * infcall.c: Likewise.
8353         * infcmd.c: Likewise.
8354         * infrun.c: Likewise.
8355         * linespec.c: Likewise.
8356         * linux-tdep.c: Likewise.
8357         * minsyms.c: Likewise.
8358         * ppc-linux-nat.c: Likewise.
8359         * ppc-linux-tdep.c: Likewise.
8360         * procfs.c: Likewise.
8361         * regcache.c: Likewise.
8362         * remote.c: Likewise.
8363         * rs6000-tdep.c: Likewise.
8364         * s390-linux-nat.c: Likewise.
8365         * s390-tdep.c: Likewise.
8366         * solib-aix.c: Likewise.
8367         * solib-darwin.c: Likewise.
8368         * solib-dsbt.c: Likewise.
8369         * solib-spu.c: Likewise.
8370         * solib-svr4.c: Likewise.
8371         * solib-target.c: Likewise.
8372         * sparc-tdep.c: Likewise.
8373         * sparc64-tdep.c: Likewise.
8374         * spu-tdep.c: Likewise.
8375         * symfile.c: Likewise.
8376         * symtab.c: Likewise.
8377         * target-descriptions.c: Likewise.
8378         * target-memory.c: Likewise.
8379         * target.c: Likewise.
8380         * target.h: Likewise.
8381         * tracefile-tfile.c: Likewise.
8382         * tracepoint.c: Likewise.
8383         * valops.c: Likewise.
8384         * valprint.c: Likewise.
8385         * value.c: Likewise.
8386         * windows-tdep.c: Likewise.
8387         * mi/mi-main.c: Likewise.
8388
8389 2018-06-07  Tom Tromey  <tom@tromey.com>
8390
8391         * valprint.h (build_address_symbolic): Declare.
8392         * printcmd.c (print_address_symbolic): Update.
8393         (build_address_symbolic): Change "name" and "filename" to
8394         std::string.
8395         * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn):
8396         Update.
8397         * defs.h (build_address_symbolic): Remove declaration.
8398
8399 2018-06-07  Alan Hayward  <alan.hayward@arm.com>
8400
8401         * aarch64-tdep.c (AARCH64_SVE_V0_REGNUM): Add define.
8402         (aarch64_vnv_type): Add function.
8403         (aarch64_pseudo_register_name): Add V regs for SVE.
8404         (aarch64_pseudo_register_type): Likewise.
8405         (aarch64_pseudo_register_reggroup_p): Likewise.
8406         (aarch64_pseudo_read_value_2): Use V0 offset for SVE
8407         (aarch64_pseudo_read_value): Add V regs for SVE.
8408         (aarch64_pseudo_write_2): Use V0 offset for SVE
8409         (aarch64_pseudo_write): Add V regs for SVE.
8410         * aarch64-tdep.h (struct gdbarch_tdep): Add vnv_type.
8411
8412 2018-06-06  Sergio Durigan Junior  <sergiodj@redhat.com>
8413
8414         * arch/aarch64.h (sve_vq_from_vl): Guard with #ifndef.
8415         (sve_vl_from_vq): Likewise.
8416
8417 2018-06-05  Tom Tromey  <tom@tromey.com>
8418
8419         * cli/cli-cmds.c (show_version): Update.
8420         * top.c (print_gdb_version): Add "interactive" parameter.
8421         Update.
8422         * main.c (captured_main_1): Update.
8423         * top.h (print_gdb_version): Add "interactive" parameter and a
8424         comment.
8425
8426 2018-06-05  David Malcolm  <dmalcolm@redhat.com>
8427
8428         * common/enum-flags.h: Add trailing semicolon to example in
8429         comment.
8430
8431 2018-06-05  Tom Tromey  <tom@tromey.com>
8432
8433         PR cli/12326:
8434         * NEWS: Add entry about pager.
8435         * utils.c (pagination_disabled_for_command): New global.
8436         (prompt_for_continue): Allow "c" response to prompt.
8437         (reinitialize_more_filter): Clear
8438         pagination_disabled_for_command.
8439         (fputs_maybe_filtered): Check pagination_disabled_for_command.
8440
8441 2018-06-04  Tom Tromey  <tom@tromey.com>
8442
8443         * ada-lang.h (ada_lookup_symbol_list): Update.
8444         * ada-lang.c (resolve_subexp): Update.
8445         (symbols_are_identical_enums): Change type of syms.  Remove nsyms
8446         parameter.
8447         (remove_extra_symbols, remove_irrelevant_renamings): Likewise.
8448         (ada_lookup_symbol_list_worker, ada_lookup_symbol_list): Change
8449         results parameter to std::vector.
8450         (ada_iterate_over_symbols, ada_lookup_symbol, get_var_value):
8451         Update.
8452         * ada-exp.y (block_lookup): Update.
8453         (select_possible_type_sym): Change type of syms.  Remove nsyms
8454         parameter.
8455         (write_var_or_type, write_name_assoc): Update.
8456
8457 2018-06-04  Joel Brobecker  <brobecker@adacore.com>
8458
8459         * windows-nat.c (windows_nat_target::xfer_partial): Return
8460         TARGET_XFER_E_IO if we need to delegate to the target beneath
8461         but BENEATH is NULL.
8462
8463 2018-06-04  Simon Marchi  <simon.marchi@ericsson.com>
8464
8465         * Makefile.in (config.status): Add configure.nat as a
8466         dependency.
8467
8468 2018-06-04  Tom Tromey  <tom@tromey.com>
8469
8470         * cp-name-parser.y (cpname_state): Add method declarations.
8471         (HANDLE_QUAL): Update.
8472         (cpname_state::d_grab, cpname_state::fill_comp)
8473         (cpname_state::make_operator, cpname_state::make_dtor)
8474         (cpname_state::make_builtin_type, cpname_state::make_name)
8475         (cpname_state::d_qualify, cpname_state::d_int_type)
8476         (cpname_state::d_unary, cpname_state::d_binary): Now methods.
8477         (%union): Move earlier.
8478
8479 2018-06-04  Alan Hayward  <alan.hayward@arm.com>
8480
8481         * elfread.c (elf_symfile_segments): Use ELF_SECTION_IN_SEGMENT.
8482
8483 2018-06-04  Alan Hayward  <alan.hayward@arm.com>
8484
8485         * aarch64-tdep.c (aarch64_pseudo_read_value_1): New helper func.
8486         (aarch64_pseudo_write_1): Likewise.
8487         (aarch64_pseudo_read_value): Use helper.
8488         (aarch64_pseudo_write): Likewise.
8489
8490 2018-06-04  Pedro Alves  <palves@redhat.com>
8491
8492         * darwin-nat.c (darwin_ops): Delete.
8493         (darwin_attach_pid): Use get_native_target.
8494
8495 2018-06-04  Alan Hayward  <alan.hayward@arm.com>
8496
8497         * aarch64-tdep.c (aarch64_get_tdesc_vq): Use uint64_t for VQ.
8498         * aarch64-tdep.h (struct gdbarch_tdep): Likewise.
8499
8500 2018-06-04  Alan Hayward  <alan.hayward@arm.com>
8501
8502         * aarch64-linux-nat.c (aarch64_linux_read_description): Support SVE.
8503         * aarch64-tdep.c (aarch64_get_tdesc_vq): New function.
8504         (aarch64_gdbarch_init): Check for SVE.
8505         * aarch64-tdep.h (gdbarch_tdep::has_sve): New function.
8506
8507 2018-06-04  Alan Hayward  <alan.hayward@arm.com>
8508
8509         * aarch64-tdep.c (aarch64_read_description): Use uint64_t for VQ.
8510         * aarch64-tdep.h (aarch64_read_description): Likewise.
8511         * arch/aarch64.c (aarch64_create_target_description): Likewise.
8512         * arch/aarch64.h (aarch64_create_target_description): Likewise.
8513         * features/aarch64-sve.c (create_feature_aarch64_sve): Likewise.
8514         * nat/aarch64-sve-linux-ptrace.c(aarch64_sve_get_vq): Likewise.
8515         * nat/aarch64-sve-linux-ptrace.h (aarch64_sve_get_vq): Likewise.
8516
8517 2018-06-02  Simon Marchi  <simon.marchi@ericsson.com>
8518
8519         * value.c (value_fetch_lazy_bitfield): New.
8520         (value_fetch_lazy_memory): New.
8521         (value_fetch_lazy_register): New.
8522         (value_fetch_lazy): Factor out to smaller functions.
8523
8524 2018-06-01  Tom Tromey  <tom@tromey.com>
8525
8526         * cp-name-parser.y (backslashable, represented): Now const.
8527
8528 2018-06-01  Tom Tromey  <tom@tromey.com>
8529
8530         * cp-name-parser.y: Include parser-defs.h.
8531         (parser_fprintf): Remove declaration.
8532
8533 2018-06-01  Tom Tromey  <tom@tromey.com>
8534
8535         * cp-name-parser.y: Use %pure-parser, %lex-param, and
8536         %parse-param.
8537         (lexptr, prev_lexptr, error_lexptr, global_errmsg, demangle_info)
8538         (global_result): Remove globals.
8539         (struct cpname_state): New.
8540         (yyparse): Don't declare.
8541         (yylex, yyerror): Move declarations after %union.
8542         (d_grab, fill_comp, make_operator, make_dtor, make_builtin_type)
8543         (make_name): Add state parameter.
8544         Update all callers.
8545         (d_qualify, d_int_type, d_unary, d_binary, parse_number) Add state
8546         parameter.
8547         (HANDLE_QUAL, HANDLE_SPECIAL, HANDLE_TOKEN2, HANDLE_TOKEN3):
8548         Update.
8549         (yylex): Add lvalp, state parameters.
8550         (yyerror): Add state parameter.
8551         (cp_demangled_name_to_comp): Update.
8552
8553 2018-06-01  Tom Tromey  <tom@tromey.com>
8554
8555         * cp-name-parser.y (parser_fprintf): Declare.
8556         (GDB_YY_REMAP_PREFIX): Define.
8557         Include yy-remap.h.  Don't redefine yy* identifiers.
8558
8559 2018-06-01  Tom Tromey  <tom@tromey.com>
8560
8561         * python/py-type.c (typy_legacy_template_argument): Update.
8562         * cp-support.h (cp_demangled_name_to_comp): Update.
8563         * cp-name-parser.y (cp_demangled_name_to_comp): Change errmsg
8564         parameter to be a "std::string *".
8565         (main): Update.
8566
8567 2018-06-01  H.J. Lu  <hongjiu.lu@intel.com>
8568
8569         * ada-lex.l: Include "diagnostics.h" instead of
8570         "common/diagnostics.h".
8571         * unittests/environ-selftests.c: Likewise.
8572         * common/diagnostics.h: Moved to ../include.
8573
8574 2018-06-01  Joel Brobecker  <brobecker@adacore.com>
8575
8576         * breakpoint.c (breakpoint_re_set): Temporarily force language_mode
8577         to language_mode_manual while calling breakpoint_re_set_one.
8578
8579 2018-06-01  Tom Tromey  <tom@tromey.com>
8580
8581         * valops.c (value_cast_structs, destructor_name_p): Update.
8582         * symtab.c (gdb_mangle_name): Update.
8583         * stabsread.c (define_symbol, read_cpp_abbrev, read_baseclasses):
8584         Update.
8585         * p-valprint.c (pascal_object_is_vtbl_ptr_type)
8586         (pascal_object_print_value_fields, pascal_object_print_value):
8587         Update.
8588         * p-typeprint.c (pascal_type_print_derivation_info): Update.
8589         * linespec.c (find_methods): Update.
8590         * gdbtypes.h (type_name_no_tag): Remove.
8591         (type_name_or_error): Rename from type_name_no_tag_or_error.
8592         * gdbtypes.c (type_name_no_tag): Remove.
8593         (type_name_or_error): Rename from type_name_no_tag_or_error.
8594         (lookup_struct_elt_type, check_typedef): Update.
8595         * expprint.c (print_subexp_standard): Update.
8596         * dwarf2read.c (dwarf2_add_field, load_partial_dies): Update.
8597         * d-namespace.c (d_lookup_nested_symbol): Update.
8598         * cp-valprint.c (cp_is_vtbl_ptr_type, cp_print_value_fields)
8599         (cp_print_class_member): Update.
8600         * cp-namespace.c (cp_lookup_nested_symbol): Update.
8601         * completer.c (add_struct_fields): Update.
8602         * c-typeprint.c (cp_type_print_derivation_info)
8603         (c_type_print_varspec_prefix, c_type_print_base_struct_union):
8604         Update.
8605         * ada-lang.c (parse_old_style_renaming, xget_renaming_scope)
8606         (ada_prefer_type, ada_is_exception_sym): Update.
8607
8608 2018-06-01  Tom Tromey  <tom@tromey.com>
8609
8610         * valops.c (enum_constant_from_type, value_namespace_elt)
8611         (value_maybe_namespace_elt): Update.
8612         * valarith.c (find_size_for_pointer_math): Update.
8613         * target-descriptions.c (make_gdb_type): Update.
8614         * symmisc.c (print_symbol): Update.
8615         * stabsread.c (define_symbol, read_type)
8616         (complain_about_struct_wipeout, add_undefined_type)
8617         (cleanup_undefined_types_1): Update.
8618         * rust-lang.c (rust_tuple_type_p, rust_slice_type_p)
8619         (rust_range_type_p, val_print_struct, rust_print_struct_def)
8620         (rust_internal_print_type, rust_composite_type)
8621         (rust_evaluate_funcall, rust_evaluate_subexp)
8622         (rust_inclusive_range_type_p): Update.
8623         * python/py-type.c (typy_get_tag): Update.
8624         * p-typeprint.c (pascal_type_print_base): Update.
8625         * mdebugread.c (parse_symbol, parse_type): Update.
8626         * m2-typeprint.c (m2_long_set, m2_record_fields, m2_enum):
8627         Update.
8628         * guile/scm-type.c (gdbscm_type_tag): Update.
8629         * go-lang.c (sixg_string_p): Update.
8630         * gnu-v3-abi.c (build_gdb_vtable_type, build_std_type_info_type):
8631         Update.
8632         * gdbtypes.h (struct main_type) <tag_name>: Remove.
8633         (TYPE_TAG_NAME): Remove.
8634         * gdbtypes.c (type_name_no_tag): Simplify.
8635         (check_typedef, check_types_equal, recursive_dump_type)
8636         (copy_type_recursive, arch_composite_type): Update.
8637         * f-typeprint.c (f_type_print_base): Update.  Print "Type" prefix
8638         in summary mode when needed.
8639         * eval.c (evaluate_funcall): Update.
8640         * dwarf2read.c (fixup_go_packaging, read_structure_type)
8641         (process_structure_scope, read_enumeration_type)
8642         (read_namespace_type, read_module_type, determine_prefix): Update.
8643         * cp-support.c (inspect_type): Update.
8644         * coffread.c (process_coff_symbol, decode_base_type): Update.
8645         * c-varobj.c (c_is_path_expr_parent): Update.
8646         * c-typeprint.c (c_type_print_base_struct_union): Update.
8647         (c_type_print_base_1): Update.  Print struct/class/union/enum in
8648         summary when using C language.
8649         * ax-gdb.c (gen_struct_ref, gen_namespace_elt)
8650         (gen_maybe_namespace_elt): Update.
8651         * ada-lang.c (ada_type_name): Simplify.
8652         (empty_record, ada_template_to_fixed_record_type_1)
8653         (template_to_static_fixed_type)
8654         (to_record_with_fixed_variant_part, ada_check_typedef): Update.
8655
8656 2018-06-01  Tom Tromey  <tom@tromey.com>
8657
8658         * dwarf2read.c (dwarf2_compute_name): Pass CU's language to
8659         c_print_type.
8660         * c-typeprint.c (c_print_type_1): Add "language" parameter.
8661         (c_print_type): Update.
8662         (c_print_type): New overload.
8663         (c_type_print_varspec_prefix, c_type_print_args)
8664         (c_type_print_varspec_suffix, c_print_type_no_offsets)
8665         (c_type_print_base_struct_union, c_type_print_base_1)
8666         (cp_type_print_method_args): Add "language" parameter.
8667         (c_type_print_base): Update.
8668         * c-lang.h (c_print_type): Add new overload.
8669
8670 2018-06-01  Tom Tromey  <tom@tromey.com>
8671
8672         * typeprint.h (c_type_print_varspec_suffix): Don't declare.
8673         * c-typeprint.c (c_type_print_varspec_suffix): Now static.
8674
8675 2018-06-01  Alan Hayward  <alan.hayward@arm.com>
8676
8677         * aarch64-tdep.c (aarch64_sve_register_names): New const
8678         var.
8679         * arch/aarch64.h (enum aarch64_regnum): Add SVE entries.
8680         (AARCH64_SVE_Z_REGS_NUM): New define.
8681         (AARCH64_SVE_P_REGS_NUM): Likewise.
8682         (AARCH64_SVE_NUM_REGS): Likewise.
8683
8684 2018-05-31  Uros Bizjak  <ubizjak@gmail.com>
8685
8686         * nat/linux-ptrace.h [__alpha__]
8687         (GDB_ARCH_IS_TRAP_BRKPT, GDB_ARCH_IS_TRAP_HWBKPT): Remove
8688         definitions.
8689
8690 2018-05-31  Maciej W. Rozycki  <macro@mips.com>
8691
8692         * arch-utils.c (gdbarch_info_fill): Set `default_byte_order' to
8693         the endianness selected.
8694         * NEWS: Document `set endian auto' mode operation update.
8695
8696 2018-05-31  Alan Hayward  <alan.hayward@arm.com>
8697
8698         * Makefile.in: Add new header.
8699         * gdb/arch/aarch64.h (sve_vg_from_vl): New macro.
8700         (sve_vl_from_vg): Likewise.
8701         (sve_vq_from_vl): Likewise.
8702         (sve_vl_from_vq): Likewise.
8703         (sve_vq_from_vg): Likewise.
8704         (sve_vg_from_vq): Likewise.
8705         * configure.nat: Add new c file.
8706         * nat/aarch64-sve-linux-ptrace.c: New file.
8707         * nat/aarch64-sve-linux-ptrace.h: New file.
8708
8709 2018-05-31  Alan Hayward  <alan.hayward@arm.com>
8710
8711         * aarch64-linux-nat.c (aarch64_linux_read_description):
8712         Add parmeter zero.
8713         * aarch64-linux-tdep.c (aarch64_linux_core_read_description):
8714         Likewise.
8715         * aarch64-tdep.c (tdesc_aarch64_list): Add.
8716         (aarch64_read_description): Use VQ to index tdesc_aarch64_list.
8717         (aarch64_gdbarch_init): Add parmeter zero.
8718         * aarch64-tdep.h (aarch64_read_description): Add VQ parmeter.
8719         * arch/aarch64.c (aarch64_create_target_description): Check VQ.
8720         * arch/aarch64.h (aarch64_create_target_description): Add VQ.
8721         parmeter.
8722         * doc/gdb.texinfo: Describe SVE feature
8723         * features/aarch64-sve.c: New file.
8724
8725 2018-05-31  Omair Javaid  <omair.javaid@linaro.org>
8726
8727         PR gdb/23210
8728         * gdbarch.sh (significant_addr_bit): Default to zero when
8729         not set by target architecture.
8730         * gdbarch.c: Re-generated.
8731         * utils.c (address_significant): Update.
8732
8733 2018-05-30  Joel Brobecker  <brobecker@adacore.com>
8734
8735         * stack.c (func_command): Remove trailing newline in call to error.
8736
8737 2018-05-30  Simon Marchi  <simon.marchi@ericsson.com>
8738
8739         * regcache.h (regcache_raw_collect): Remove, update callers to
8740         use regcache::raw_collect.
8741         * regcache.c (regcache_raw_collect): Remove.
8742
8743 2018-05-30  Simon Marchi  <simon.marchi@ericsson.com>
8744
8745         * regcache.h (regcache_raw_supply): Remove, update callers to
8746         use detached_regcache::raw_supply.
8747         * regcache.c (regcache_raw_supply): Remove.
8748
8749 2018-05-30  Simon Marchi  <simon.marchi@ericsson.com>
8750
8751         * regcache.h (regcache_cooked_write_part): Remove, update
8752         callers to use regcache::cooked_write_part.
8753         * regcache.c (regcache_cooked_write_part): Remove.
8754
8755 2018-05-30  Simon Marchi  <simon.marchi@ericsson.com>
8756
8757         * regcache.h (regcache_cooked_read_part): Remove, update callers
8758         to use readable_regcache::cooked_read_part.
8759         * regcache.c (regcache_cooked_read_part): Remove.
8760
8761 2018-05-30  Simon Marchi  <simon.marchi@ericsson.com>
8762
8763         * regcache.h (regcache_cooked_read_value): Remove, update
8764         callers to use readable_regcache::cooked_read_value.
8765         * regcache.c (regcache_cooked_read_value): Remove.
8766
8767 2018-05-30  Simon Marchi  <simon.marchi@ericsson.com>
8768
8769         * regcache.h (regcache_cooked_write): Remove, update callers to
8770         use regcache::cooked_write.
8771         * regcache.c (regcache_cooked_write): Remove.
8772
8773 2018-05-30  Simon Marchi  <simon.marchi@ericsson.com>
8774
8775         * regcache.h (regcache_invalidate): Remove, update callers to
8776         use detached_regcache::invalidate instead.
8777         * regcache.c (regcache_invalidate): Remove.
8778
8779 2018-05-30  Simon Marchi  <simon.marchi@ericsson.com>
8780
8781         * regcache.h (regcache_raw_write_part): Remove, update callers
8782         to use regcache::raw_write_part instead.
8783         * regcache.c (regcache_raw_write_part): Remove.
8784
8785 2018-05-30  Simon Marchi  <simon.marchi@ericsson.com>
8786
8787         * regcache.h (regcache_raw_read_part): Remove, update callers to
8788         use readable_regcache::raw_read_part instead.
8789         * regcache.c (regcache_raw_read_part): Remove.
8790
8791 2018-05-30  Simon Marchi  <simon.marchi@ericsson.com>
8792
8793         * regcache.h (regcache_cooked_read): Remove, update callers to
8794         use readable_regcache::cooked_read instead.
8795         * regcache.c (regcache_cooked_read): Remove.
8796
8797 2018-05-30  Simon Marchi  <simon.marchi@ericsson.com>
8798
8799         * regcache.h (regcache_raw_write): Remove, update callers to use
8800         regcache::raw_write instead.
8801         * regcache.c (regcache_raw_write): Remove.
8802
8803 2018-05-30  Simon Marchi  <simon.marchi@ericsson.com>
8804
8805         * regcache.h (regcache_raw_read): Remove, update callers to use
8806         readable_regcache::raw_read instead.
8807         * regcache.c (regcache_raw_read): Remove.
8808
8809 2018-05-30  Simon Marchi  <simon.marchi@ericsson.com>
8810
8811         * regcache.h (regcache_raw_update): Remove, update callers to
8812         use readable_regcache::raw_update instead.
8813         * regcache.c (regcache_raw_update): Remove.
8814
8815 2018-05-30  Simon Marchi  <simon.marchi@ericsson.com>
8816
8817         * regcache.h (regcache_register_status): Remove, update callers
8818         to use reg_buffer::get_register_status directly instead.
8819         * regcache.c (regcache_register_status): Remove.
8820
8821 2018-05-30  Simon Marchi  <simon.marchi@ericsson.com>
8822
8823         * regcache.h (regcache_get_ptid): Remove, update all callers to
8824         call regcache::ptid instead.
8825         * regcache.c (regcache_get_ptid): Remove.
8826
8827 2018-05-30  Simon Marchi  <simon.marchi@ericsson.com>
8828
8829         * Makefile.in (ALL_TARGET_OBS): Add or1k-tdep.o.
8830
8831 2018-05-30  Pedro Alves  <palves@redhat.com>
8832
8833         * common/common-exceptions.h (exception_rethrow): Use
8834         ATTRIBUTE_NORETURN.
8835
8836 2018-05-29  Simon Marchi  <simon.marchi@polymtl.ca>
8837
8838         * breakpoint.c (print_solib_event, check_status_catch_solib):
8839         Remove struct keyword in range-based for loops.
8840         * dbxread.c (find_corresponding_bincl_psymtab): Likewise.
8841         * dwarf2read.c (compute_delayed_physnames, rust_union_quirks);
8842         Likewise.
8843         * linespec.c (find_superclass_methods, search_minsyms_for_name):
8844         Likewise.
8845         * symfile.c (addr_info_make_relative): Likewise.
8846         * thread.c (value_in_thread_stack_temporaries): Likewise.
8847
8848 2018-06-12  Weimin Pan  <weimin.pan@oracle.com>
8849
8850         PR gdb/16841
8851         * valops.c (value_struct_elt_for_reference): Call check_typedef on
8852         aggregate type to get its real type before accessing it.
8853
8854 2018-05-29  Weimin Pan  <weimin.pan@oracle.com>
8855
8856         * minsyms.h (lookup_minimal_symbol_and_objfile): Remove declaration.
8857         * minsyms.c (lookup_minimal_symbol_and_objfile): Remove definition.
8858         * coff-pe-read.c (add_pe_forwarded_sym): Replace
8859         lookup_minimal_symbol_and_objfile with lookup_bound_minimal_symbol.
8860         * glibc-tdep.c (glibc_skip_solib_resolver): Likewise.
8861         * jit.c (jit_breakpoint_re_set_internal): Likewise.
8862         * printcmd.c (info_address_command): Likewise.
8863
8864 2018-05-29  Tom Tromey  <tom@tromey.com>
8865
8866         * windows-nat.c (handle_exception): Update fall-through comment.
8867
8868 2018-05-29  Tom Tromey  <tom@tromey.com>
8869
8870         * progspace.h (so_list_ptr): Remove typedef.  Don't declare VEC.
8871         (struct program_space) <added_solibs>: Now a std::vector.
8872         * breakpoint.c (print_solib_event): Update.
8873         (check_status_catch_solib): Update.
8874         * progspace.c (clear_program_space_solib_cache): Update.
8875         * solib.c (update_solib_list): Update.
8876
8877 2018-05-29  Tom Tromey  <tom@tromey.com>
8878
8879         * python/py-type.c (typy_richcompare): Update.
8880         * guile/scm-type.c (tyscm_equal_p_type_smob): Update.
8881         * gdbtypes.h (types_deeply_equal): Return bool.
8882         (types_equal): Likewise.
8883         * gdbtypes.c (type_equality_entry_d): Remove typedef.  Don't
8884         declare VEC.
8885         (check_types_equal): Change worklist to std::vector.  Return
8886         bool.
8887         (struct type_equality_entry): Add constructor.
8888         (compare_maybe_null_strings): Return bool.
8889         (check_types_worklist): Return bool.  Change worklist to
8890         std::vector.
8891         (types_deeply_equal): Use std::vector.
8892         (types_equal): Return bool.
8893         (compare_maybe_null_strings): Simplify.
8894
8895 2018-05-29  Tom Tromey  <tom@tromey.com>
8896
8897         * record-btrace.c (tp_t): Remove typedef.  Don't declare VEC.
8898
8899 2018-05-29  Tom Tromey  <tom@tromey.com>
8900
8901         * objc-lang.h: Don't include cp-support.h.
8902         * common/gdb_vecs.h (const_char_ptr): Remove typedef.  Don't
8903         declare VEC.
8904
8905 2018-05-27  Tom Tromey  <tom@tromey.com>
8906
8907         * Makefile.in (DEPFILES): Don't reference REMOTE_OBS.
8908
8909 2018-05-25  Tom Tromey  <tom@tromey.com>
8910
8911         * value.c (value::location): Initialize.
8912
8913 2018-05-25  Tom Tromey  <tom@tromey.com>
8914
8915         * dbxread.c (init_bincl_list): Remove.
8916         (bincl_list): Now a std::vector.
8917         (bincls_allocated, next_bincl): Remove.
8918         (free_bincl_list, do_free_bincl_list_cleanup)
8919         (make_cleanup_free_bincl_list): Remove.
8920         (dbx_read_symtab, elfstab_build_psymtabs): Use scoped_restore,
8921         unique_xmalloc_ptr.
8922         (find_corresponding_bincl_psymtab, read_dbx_symtab): Update.
8923         (struct header_file_location): Add constructor.
8924         (add_bincl_to_list): Remove.
8925
8926 2018-05-25  Tom Tromey  <tom@tromey.com>
8927
8928         * tui/tui.c (tui_enable): Update.
8929         * mi/mi-interp.c (mi_interp::init): Update.
8930         * interps.h (class interp) <name>: New method.
8931         <m_name>: Rename from name.
8932         (~scoped_restore_interp): Update.
8933         * interps.c (interp::interp): Update.
8934         (interp_add, interp_set, interp_lookup_existing)
8935         (current_interp_named_p): Update.
8936
8937 2018-05-25  Tom Tromey  <tom@tromey.com>
8938
8939         * interps.c (interp_name): Remove.
8940         * mi/mi-interp.c (mi_interp::init): Update.
8941         * interps.h (interp_name): Remove.
8942         (~scoped_restore_interp): Update.
8943         * tui/tui.c (tui_enable): Update.
8944
8945 2018-05-25  Tom Tromey  <tom@tromey.com>
8946
8947         * utils.c (fputs_maybe_filtered): Update.
8948         * linespec.c (decode_line_full): Update.
8949         * mi/mi-interp.c (mi_on_normal_stop_1, mi_tsv_modified)
8950         (mi_print_breakpoint_for_event, mi_solib_loaded)
8951         (mi_solib_unloaded, mi_command_param_changed, mi_memory_changed)
8952         (mi_user_selected_context_changed): Update.
8953         * mi/mi-main.c (mi_execute_command): Update.
8954         * cli/cli-script.c (execute_control_command): Update.
8955         * python/python.c (execute_gdb_command): Update.
8956         * solib.c (info_sharedlibrary_command): Update.
8957         * interps.c (interp_ui_out): Remove.
8958         * interps.h (interp_ui_out): Remove.
8959
8960 2018-05-25  Tom Tromey  <tom@tromey.com>
8961
8962         * tui/tui-interp.c (as_tui_interp): Use dynamic_cast.
8963         * mi/mi-interp.c (as_mi_interp): Use dynamic_cast.
8964         * cli/cli-interp.c (as_cli_interp): Use dynamic_cast.
8965
8966 2018-05-25  Tom Tromey  <tom@tromey.com>
8967
8968         * cli/cli-interp.c (safe_execute_command): Use scoped_restore.
8969         * interps.c (interp_exec): Use scoped_restore.
8970
8971 2018-05-25  Tom Tromey  <tom@tromey.com>
8972
8973         * remote.c (remote_target::remote_file_get): Use
8974         gdb::byte_vector.
8975         (remote_target::remote_file_put): Likewise.
8976
8977 2018-05-25  Tom Tromey  <tom@tromey.com>
8978
8979         * coff-pe-read.c (struct read_pe_section_data) <section_name>: Now
8980         a std::string.
8981         (get_pe_section_index, add_pe_exported_sym): Update.
8982         (read_pe_exported_syms): Use gdb::def_vector.
8983
8984 2018-05-25  Tom Tromey  <tom@tromey.com>
8985
8986         * frame.c (remove_prev_frame): Remove.
8987         (get_prev_frame_if_no_cycle): Use TRY/CATCH.
8988
8989 2018-05-25  Maciej W. Rozycki  <macro@mips.com>
8990
8991         * mips-linux-tdep.h (mips_supply_fpregset, mips_fill_fpregset):
8992         Remove prototypes.
8993         * mips-linux-nat.c (supply_fpregset): Always call
8994         `mips64_supply_fpregset' rather than `mips_supply_fpregset'.
8995         (fill_fpregset): Always call `mips64_fill_fpregset' rather than
8996         `mips_fill_fpregset'.
8997         * mips-linux-tdep.c (mips_supply_fpregset)
8998         (mips_supply_fpregset_wrapper, mips_fill_fpregset)
8999         (mips_fill_fpregset_wrapper): Remove functions.
9000         (mips64_supply_fpregset, mips64_fill_fpregset): Update comments.
9001         (mips_linux_fpregset): Remove variable.
9002         (mips_linux_iterate_over_regset_sections): Use
9003         `mips64_linux_fpregset' in place of `mips_linux_fpregset'.
9004         (mips_linux_o32_sigframe_init): Remove comment.
9005
9006 2018-05-25  Pedro Alves  <palves@redhat.com>
9007
9008         * remote.c (struct vCont_action_support, MAXTHREADLISTRESULTS)
9009         (struct readahead_cache, struct packet_reg, struct
9010         remote_arch_state, class remote_state): Move higher up in the
9011         file.
9012         (remote_target::m_remote_state): Now an object instead of a pointer.
9013         (remote_target::get_remote_state): Adjust.
9014
9015 2018-05-24  Andrew Burgess  <andrew.burgess@embecosm.com>
9016
9017         * stack.c (select_and_print_frame): Delete.
9018         (struct function_bounds): Move struct within function.
9019         (func_command): Most content moved into new function
9020         find_frame_for_function, use new function, print result, add
9021         function comment.
9022         (find_frame_for_function): New function, now returns a result.
9023
9024 2018-05-24  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
9025
9026         * stack.c (iterate_over_block_arg_vars): Fix comment.
9027         (print_frame_arg_vars): Pass stream in cb_data, not gdb_stdout.
9028
9029 2018-05-24  Andrew Burgess  <andrew.burgess@embecosm.com>
9030
9031         PR gdb/23203
9032         * frame.c
9033         (scoped_restore_selected_frame::scoped_restore_selected_frame):
9034         Define.
9035         (scoped_restore_selected_frame::~scoped_restore_selected_frame):
9036         Define.
9037         * frame.h (class scoped_restore_selected_frame): New class.
9038         * stack.c (print_frame_local_vars): Remove catching and rethrowing
9039         of any exception, use scoped_restore_selected_frame to restore the
9040         frame instead.
9041
9042 2018-05-24  Pedro Alves  <palves@redhat.com>
9043
9044         * darwin-nat.h (darwin_nat_target::create_inferior): Mark with
9045         override.
9046
9047 2018-05-23  Tom Tromey  <tom@tromey.com>
9048
9049         * complaints.c (struct complaints): Remove.
9050         (symfile_complaint_book): Remove.
9051         (series): New global.
9052         (complaint_internal): Update.
9053         (clear_complaints): Update.
9054
9055 2018-05-23  Tom Tromey  <tom@tromey.com>
9056
9057         * complaints.c (counters): New global.
9058         (struct complain): Remove.
9059         (struct complaints) <root>: Remove.
9060         (complaint_sentinel): Remove.
9061         (symfile_complaint_book): Update.
9062         (find_complaint) Remove.
9063         (complaint_internal, clear_complaints): Update.
9064
9065 2018-05-23  Tom Tromey  <tom@tromey.com>
9066
9067         * complaints.c (struct complain) <file, line>: Remove.
9068         (find_complaint): Remove file, line parameters.
9069         (complaint_internal): Update.
9070
9071 2018-05-23  Tom Tromey  <tom@tromey.com>
9072
9073         * complaints.c (vcomplaint): Remove.
9074         (complaint_internal) Merge in contents of vcomplaint.
9075
9076 2018-05-23  Tom Tromey  <tom@tromey.com>
9077
9078         * complaints.c (struct complaints) <explanation>: Remove.
9079         (symfile_explanations): Remove.
9080         (symfile_complaint_book): Update.
9081         (vcomplaint): Update.
9082         (struct explanation): Remove.
9083
9084 2018-05-23  Tom Tromey  <tom@tromey.com>
9085
9086         * complaints.c (symfile_complaints): Remove.
9087         (complaint_internal): Remove "complaints" parameter.
9088         (clear_complaints, vcomplaint): Remove "c" parameter.
9089         (get_complaints): Remove.
9090         * dwarf2read.c (dwarf2_statement_list_fits_in_line_number_section_complaint)
9091         (dwarf2_debug_line_missing_file_complaint)
9092         (dwarf2_debug_line_missing_end_sequence_complaint)
9093         (dwarf2_complex_location_expr_complaint)
9094         (dwarf2_const_value_length_mismatch_complaint)
9095         (dwarf2_section_buffer_overflow_complaint)
9096         (dwarf2_macro_malformed_definition_complaint)
9097         (dwarf2_invalid_attrib_class_complaint)
9098         (create_addrmap_from_index, dw2_symtab_iter_next)
9099         (dw2_expand_marked_cus)
9100         (dw2_debug_names_iterator::find_vec_in_debug_names)
9101         (dw2_debug_names_iterator::next, dw2_debug_names_iterator::next)
9102         (create_debug_type_hash_table, init_cutu_and_read_dies)
9103         (partial_die_parent_scope, add_partial_enumeration)
9104         (skip_one_die, fixup_go_packaging, quirk_rust_enum, process_die)
9105         (dwarf2_compute_name, dwarf2_physname, read_namespace_alias)
9106         (read_import_statement, read_file_scope, create_dwo_cu_reader)
9107         (create_cus_hash_table, create_dwp_hash_table)
9108         (inherit_abstract_dies, read_func_scope, read_call_site_scope)
9109         (dwarf2_rnglists_process, dwarf2_ranges_process)
9110         (dwarf2_add_type_defn, dwarf2_attach_fields_to_type)
9111         (dwarf2_add_member_fn, get_alignment, maybe_set_alignment)
9112         (handle_struct_member_die, process_structure_scope)
9113         (read_array_type, read_common_block, read_module_type)
9114         (read_tag_pointer_type, read_typedef, read_base_type)
9115         (read_subrange_type, load_partial_dies, partial_die_info::read)
9116         (partial_die_info::read, partial_die_info::read)
9117         (partial_die_info::read, read_checked_initial_length_and_offset)
9118         (dwarf2_string_attr, read_formatted_entries)
9119         (dwarf_decode_line_header)
9120         (lnp_state_machine::check_line_address, dwarf_decode_lines_1)
9121         (new_symbol, dwarf2_const_value_attr, lookup_die_type)
9122         (read_type_die_1, determine_prefix, dwarf2_get_ref_die_offset)
9123         (dwarf2_get_attr_constant_value, dwarf2_fetch_constant_bytes)
9124         (get_signatured_type, get_DW_AT_signature_type)
9125         (decode_locdesc, file_file_name, consume_improper_spaces)
9126         (skip_form_bytes, skip_unknown_opcode, dwarf_parse_macro_header)
9127         (dwarf_decode_macro_bytes, dwarf_decode_macros)
9128         (dwarf2_symbol_mark_computed, set_die_type)
9129         (read_attribute_value): Update.
9130         * stap-probe.c (handle_stap_probe, get_stap_base_address):
9131         Update.
9132         * dbxread.c (unknown_symtype_complaint)
9133         (lbrac_mismatch_complaint, repeated_header_complaint)
9134         (set_namestring, function_outside_compilation_unit_complaint)
9135         (read_dbx_symtab, process_one_symbol): Update.
9136         * gdbtypes.c (stub_noname_complaint): Update.
9137         * windows-nat.c (handle_unload_dll): Update.
9138         * coffread.c (coff_symtab_read, enter_linenos, decode_type)
9139         (decode_base_type): Update.
9140         * xcoffread.c (bf_notfound_complaint, ef_complaint)
9141         (eb_complaint, record_include_begin, record_include_end)
9142         (enter_line_range, xcoff_next_symbol_text, read_xcoff_symtab)
9143         (process_xcoff_symbol, read_symbol)
9144         (function_outside_compilation_unit_complaint)
9145         (scan_xcoff_symtab): Update.
9146         * machoread.c (macho_symtab_read, macho_add_oso_symfile): Update.
9147         * buildsym.c (finish_block_internal, make_blockvector)
9148         (end_symtab_get_static_block, augment_type_symtab): Update.
9149         * dtrace-probe.c (dtrace_process_dof)
9150         (dtrace_static_probe_ops::get_probes): Update.
9151         * complaints.h (struct complaint): Don't declare.
9152         (symfile_complaints): Remove.
9153         (complaint_internal): Remove "complaints" parameter.
9154         (complaint): Likewise.
9155         (clear_complaints): Likewise.
9156         * symfile.c (syms_from_objfile_1, finish_new_objfile)
9157         (reread_symbols): Update.
9158         * dwarf2-frame.c (dwarf2_restore_rule, execute_cfa_program)
9159         (dwarf2_frame_cache, decode_frame_entry): Update.
9160         * dwarf2loc.c (dwarf_reg_to_regnum): Update.
9161         * objc-lang.c (lookup_objc_class, lookup_child_selector)
9162         (info_selectors_command): Update.
9163         * macrotab.c (macro_include, check_for_redefinition)
9164         (macro_undef): Update.
9165         * objfiles.c (filter_overlapping_sections): Update.
9166         * stabsread.c (invalid_cpp_abbrev_complaint)
9167         (reg_value_complaint, stabs_general_complaint, dbx_lookup_type)
9168         (define_symbol, error_type, read_type, rs6000_builtin_type)
9169         (stabs_method_name_from_physname, read_member_functions)
9170         (read_cpp_abbrev, read_baseclasses, read_tilde_fields)
9171         (attach_fields_to_type, complain_about_struct_wipeout)
9172         (read_range_type, read_args, common_block_start)
9173         (common_block_end, cleanup_undefined_types_1, scan_file_globals):
9174         Update.
9175         * mdebugread.c (index_complaint, unknown_ext_complaint)
9176         (basic_type_complaint, bad_tag_guess_complaint)
9177         (bad_rfd_entry_complaint, unexpected_type_code_complaint)
9178         (reg_value_complaint, parse_symbol, parse_type, upgrade_type)
9179         (parse_procedure, parse_lines)
9180         (function_outside_compilation_unit_complaint)
9181         (parse_partial_symbols, psymtab_to_symtab_1, cross_ref)
9182         (bad_tag_guess_complaint, reg_value_complaint): Update.
9183         * cp-support.c (demangled_name_complaint): Update.
9184         * macroscope.c (sal_macro_scope): Update.
9185         * dwarf-index-write.c (class debug_names): Update.
9186
9187 2018-05-23  Tom Tromey  <tom@tromey.com>
9188
9189         * complaints.c (clear_complaints): Remove "noisy" parameter.
9190         * complaints.h (clear_complaints): Update.
9191         * symfile.c (syms_from_objfile_1, finish_new_objfile)
9192         (reread_symbols): Update.
9193
9194 2018-05-23  Tom Tromey  <tom@tromey.com>
9195
9196         * complaints.c (enum complaint_series): Remove FIRST_MESSAGE,
9197         SUBSEQUENT_MESSAGE.
9198         (vcomplaint, clear_complaints): Update.
9199         (symfile_explanations): Remove some messages.
9200
9201 2018-05-23  Tom Tromey  <tom@tromey.com>
9202
9203         * complaints.c (internal_complaint): Remove.
9204         * complaints.h (internal_complaint): Remove.
9205
9206 2018-05-22  Maciej W. Rozycki  <macro@mips.com>
9207
9208         * i387-tdep.c (i387_collect_xsave): Make `i' unsigned.
9209
9210 2018-05-22  Pedro Alves  <palves@redhat.com>
9211
9212         * remote-fileio.c (remote_fileio_reply, remote_fileio_ioerror)
9213         (remote_fileio_badfd, remote_fileio_return_errno)
9214         (remote_fileio_return_success, remote_fileio_func_open)
9215         (remote_fileio_func_open, remote_fileio_func_close)
9216         (remote_fileio_func_read, remote_fileio_func_write)
9217         (remote_fileio_func_lseek, remote_fileio_func_rename)
9218         (remote_fileio_func_unlink, remote_fileio_func_stat)
9219         (remote_fileio_func_fstat, remote_fileio_func_gettimeofday)
9220         (remote_fileio_func_isatty, remote_fileio_func_system): Add
9221         remote_target parameter.
9222         (remote_fio_func_map) <func>: Add remote_target parameter.
9223         (do_remote_fileio_request, remote_fileio_request):
9224         * remote-fileio.h (remote_fileio_request):
9225         * remote-notif.c (remote_notif_ack, remote_notif_parse, ): Add
9226         remote_target parameter.
9227         (remote_notif_process, handle_notification): Adjust to pass down
9228         the remote.
9229         (remote_notif_state_allocate): Add remote_target parameter.  Save
9230         it.
9231         * remote-notif.h (struct remote_target): Forward declare.
9232         (struct notif_client) <parse, ack, can_get_pending_events>: Add
9233         remote_target parameter.
9234         (struct remote_notif_state) <remote>: New field.
9235         (remote_notif_ack, remote_notif_parse): Add remote_target
9236         parameter.
9237         (remote_notif_state_allocate, remote_notif_state_allocate): Add
9238         remote_target parameter.
9239         * remote.c (OPAQUETHREADBYTES, threadref, gdb_ext_thread_info)
9240         (threads_listing_context, rmt_thread_action, protocol_feature)
9241         (packet_reg, stop_reply, stop_reply_p, enum packet_support)
9242         (packet_result, struct threads_listing_context, remote_state):
9243         Move definitions and declarations higher up.
9244         (remote_target) <~remote_target>: Declare.
9245         (remote_download_command_source, remote_file_put, remote_file_get)
9246         (remote_file_delete, remote_hostio_pread, remote_hostio_pwrite)
9247         (remote_hostio_pread_vFile, remote_hostio_send_command)
9248         (remote_hostio_set_filesystem, remote_hostio_open)
9249         (remote_hostio_close, remote_hostio_unlink, remote_state)
9250         (get_remote_state, get_remote_packet_size, get_memory_packet_size)
9251         (get_memory_write_packet_size, get_memory_read_packet_size)
9252         (append_pending_thread_resumptions, remote_detach_1)
9253         (append_resumption, remote_resume_with_vcont)
9254         (add_current_inferior_and_thread, wait_ns, wait_as)
9255         (process_stop_reply, remote_notice_new_inferior)
9256         (process_initial_stop_replies, remote_add_thread)
9257         (btrace_sync_conf, remote_btrace_maybe_reopen)
9258         (remove_new_fork_children, kill_new_fork_children)
9259         (discard_pending_stop_replies, stop_reply_queue_length)
9260         (check_pending_events_prevent_wildcard_vcont)
9261         (discard_pending_stop_replies_in_queue, stop_reply)
9262         (remote_notif_remove_queued_reply, stop_reply *queued_stop_reply)
9263         (peek_stop_reply, remote_parse_stop_reply, remote_stop_ns)
9264         (remote_interrupt_as, remote_interrupt_ns)
9265         (remote_get_noisy_reply, remote_query_attached)
9266         (remote_add_inferior, remote_current_thread, get_current_thread)
9267         (set_thread, set_general_thread, set_continue_thread)
9268         (set_general_process, write_ptid)
9269         (remote_unpack_thread_info_response, remote_get_threadinfo)
9270         (parse_threadlist_response, remote_get_threadlist)
9271         (remote_threadlist_iterator, remote_get_threads_with_ql)
9272         (remote_get_threads_with_qxfer)
9273         (remote_get_threads_with_qthreadinfo, extended_remote_restart)
9274         (get_offsets, remote_check_symbols, remote_supported_packet)
9275         (remote_query_supported, remote_packet_size)
9276         (remote_serial_quit_handler, remote_detach_pid)
9277         (remote_vcont_probe, remote_resume_with_hc)
9278         (send_interrupt_sequence, interrupt_query)
9279         (remote_notif_get_pending_events, fetch_register_using_p)
9280         (send_g_packet, process_g_packet, fetch_registers_using_g)
9281         (store_register_using_P, store_registers_using_G)
9282         (set_remote_traceframe, check_binary_download)
9283         (remote_write_bytes_aux, remote_write_bytes, remote_read_bytes_1)
9284         (remote_xfer_live_readonly_partial, remote_read_bytes)
9285         (remote_send_printf, remote_flash_write, readchar)
9286         (remote_serial_write, putpkt, putpkt_binary, skip_frame)
9287         (read_frame, getpkt, getpkt_or_notif_sane_1, getpkt_sane)
9288         (getpkt_or_notif_sane, remote_vkill, remote_kill_k)
9289         (extended_remote_disable_randomization, extended_remote_run)
9290         (send_environment_packet, extended_remote_environment_support)
9291         (extended_remote_set_inferior_cwd, remote_write_qxfer)
9292         (remote_read_qxfer, push_stop_reply, vcont_r_supported)
9293         (packet_command): Now methods of ...
9294         (remote_target): ... this class.
9295         (m_remote_state) <remote_target>: New field.
9296         (struct remote_state) <stop_reply_queue,
9297         remote_async_inferior_event_token, wait_forever_enabled_p>: New
9298         fields.
9299         (remote_state::remote_state): Allocate stop_reply_queue.
9300         (remote_state): Delete global.
9301         (get_remote_state_raw): Delete.
9302         (remote_target::get_remote_state): Allocate m_remote_state on
9303         demand.
9304         (get_current_remote_target): New.
9305         (remote_ops, extended_remote_ops): Delete.
9306         (wait_forever_enabled_p, remote_async_inferior_event_token):
9307         Delete, moved to struct remote_state.
9308         (remote_target::close): Delete self.  Destruction bits split to
9309         ...
9310         (remote_target::~remote_target): ... this.
9311         (show_memory_packet_size): Adjust to use
9312         get_current_remote_target.
9313         (struct protocol_feature) <func>: Add remote_target parameter.
9314         All callers adjusted.
9315         (curr_quit_handler_target): New.
9316         (remote_serial_quit_handler): Reimplement.
9317         (remote_target::open_1): Adjust to use get_current_remote_target.
9318         Heap-allocate remote_target/extended_remote_target instances.
9319         (vcont_builder::vcont_builder): Add remote_target parameter, and
9320         save it in m_remote.  All callers adjusted.
9321         (vcont_builder::m_remote): New field.
9322         (vcont_builder::restart, vcont_builder::flush)
9323         (vcont_builder::push_action): Use it.
9324         (remote_target::commit_resume): Use it.
9325         (struct queue_iter_param) <remote>: New field.
9326         (remote_target::remove_new_fork_children): Fill in 'remote' field.
9327         (check_pending_event_prevents_wildcard_vcont_callback_data): New.
9328         (check_pending_event_prevents_wildcard_vcont_callback)
9329         (remote_target::check_pending_events_prevent_wildcard_vcont)
9330         (remote_target::discard_pending_stop_replies)
9331         (remote_target::discard_pending_stop_replies_in_queue)
9332         (remote_target::remote_notif_remove_queued_reply): Fill in
9333         'remote' field.
9334         (remote_notif_get_pending_events): New.
9335         (remote_target::readchar, remote_target::remote_serial_write):
9336         Save/restore curr_quit_handler_target.
9337         (putpkt): New.
9338         (kill_new_fork_children): Fill in 'remote' field.
9339         (packet_command): Use get_current_remote_target, defer to
9340         remote_target method of same name.
9341         (scoped_remote_fd::scoped_remote_fd): Add 'remote_target'
9342         parameter, and save it in m_remote.  All callers adjusted.
9343         (scoped_remote_fd::release): Use m_remote.
9344         (scoped_remote_fd::m_remote): New field.
9345         (remote_file_put, remote_file_get, remote_file_delete): Use
9346         get_current_remote_target, defer to remote_target method of same
9347         name.
9348         (remote_btrace_reset): Add remote_state paremeter.  Update all
9349         callers.
9350         (remote_async_inferior_event_handler). Pass down 'data'.
9351         (remote_new_objfile): Use get_current_remote_target.
9352         (remote_target::vcont_r_supported): New.
9353         (set_range_stepping): Use get_current_remote_target and
9354         remote_target::vcont_r_supported.
9355         (_initialize_remote): Don't allocate 'remote_state' and
9356         'stop_reply_queue' globals.
9357         * remote.h (struct remote_target): Forward declare.
9358         (getpkt, putpkt, remote_notif_get_pending_events): Add
9359         'remote_target' parameter.
9360
9361 2018-05-22  Pedro Alves  <palves@redhat.com>
9362
9363         * remote.c (vcont_builder): Now a class.  Make all data members
9364         private.
9365         (vcont_builder) <vcont_builder, restart, flush, push_action>:
9366         Declare methods.
9367         (vcont_builder_restart): Rename to ...
9368         (vcont_builder::restart): ... this.
9369         (vcont_builder_flush): Rename to ...
9370         (vcont_builder::flush): ... this.
9371         (vcont_builder_push_action): Rename to ...
9372         (vcont_builder::push_action): ... this.
9373         (remote_target::commit_resume): Adjust.
9374
9375 2018-05-22  Pedro Alves  <palves@redhat.com>
9376
9377         * remote.c (DEFAULT_MAX_MEMORY_PACKET_SIZE): Rename to ...
9378         (DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED): ... this.
9379         (get_fixed_memory_packet_size): New.
9380         (get_memory_packet_size): Use it.
9381         (set_memory_packet_size): Don't override the config size with
9382         DEFAULT_MAX_MEMORY_PACKET_SIZE.
9383         (show_memory_packet_size): Use get_fixed_memory_packet_size.
9384         Don't refer to get_memory_packet_size if not connected to a remote
9385         target.  Show "(default)" if configured size is 0.
9386
9387 2018-05-22  Pedro Alves  <palves@redhat.com>
9388
9389         * remote.c (remote_target::mourn_inferior): Move
9390         discard_pending_stop_replies call here from ...
9391         (_initialize_remote): ... here.
9392
9393 2018-05-22  Pedro Alves  <palves@redhat.com>
9394
9395         * remote.c (compare_section_command): Remove set_general_process
9396         call.
9397
9398 2018-05-22  Pedro Alves  <palves@redhat.com>
9399
9400         * remote.c (struct packet_reg, struct remote_arch_state):
9401         Move higher up in the file.
9402         (remote_state) <m_arch_states>: Store remote_arch_state values
9403         instead of remote_arch_state pointers.
9404         (remote_state::get_remote_arch_state): Adjust.
9405
9406 2018-05-22  Pedro Alves  <palves@redhat.com>
9407
9408         * remote.c: Include <unordered_map>.
9409         (remote_state): Now a class.
9410         (remote_state) <get_remote_arch_state>: Declare method.
9411         <get_remote_arch_state>: New field.
9412         (remote_arch_state) <remote_arch_state>: Declare ctor.
9413         <regs>: Now a unique_ptr.
9414         (remote_gdbarch_data_handle): Delete.
9415         (get_remote_arch_state): Delete.
9416         (remote_state::get_remote_arch_state): New.
9417         (get_remote_state): Adjust to call remote_state's
9418         get_remote_arch_state method.
9419         (init_remote_state): Delete, bits factored out to ...
9420         (remote_arch_state::remote_arch_state): ... this new method.
9421         (get_remote_packet_size, get_memory_packet_size)
9422         (process_g_packet, remote_target::fetch_registers)
9423         (remote_target::prepare_to_store, store_registers_using_G)
9424         (remote_target::store_registers, remote_target::get_trace_status):
9425         Adjust to call remote_state's method.
9426         (_initialize_remote): Remove reference to
9427         remote_gdbarch_data_handle.
9428
9429 2018-05-22  Pedro Alves  <palves@redhat.com>
9430
9431         * remote.c (struct readahead_cache) <invalidate, invalidate_fd,
9432         pread>: New method declarations.
9433         (remote_target::open_1): Adjust.
9434         (readahead_cache_invalidate): Rename to ...
9435         (readahead_cache::invalidate): ... this, and adjust to be a class
9436         method.
9437         (readahead_cache_invalidate_fd): Rename to ...
9438         (readahead_cache::invalidate_fd): ... this, and adjust to be a
9439         class method.
9440         (remote_hostio_pwrite): Adjust.
9441         (remote_hostio_pread_from_cache): Rename to ...
9442         (readahead_cache::pread): ... this, and adjust to be a class
9443         method.
9444         (remote_hostio_close): Adjust.
9445
9446 2018-05-22  Pedro Alves  <palves@redhat.com>
9447
9448         * remote.c (remote_hostio_close_cleanup): Delete.
9449         (class scoped_remote_fd): New.
9450         (remote_file_put, remote_file_get): Use it.
9451
9452 2018-05-22  Pedro Alves  <palves@redhat.com>
9453
9454         (struct vCont_action_support): Use bool and initialize all fields.
9455         (struct readahead_cache): Initialize all fields.
9456         (remote_state): Use bool and initialize all fields.
9457         (remote_state::remote_state, remote_state::~remote_state): New.
9458         (new_remote_state): Delete.
9459         (_initialize_remote): Use new to allocate remote_state.
9460
9461 2018-05-22  Pedro Alves  <palves@redhat.com>
9462             張俊芝  <zjz@zjz.name>
9463
9464         PR gdb/22973
9465         * c-exp.y: Include "c-support.h".
9466         (parse_number, c_parse_escape, lex_one_token): Use TOLOWER instead
9467         of tolower.  Use c_ident_is_alpha to scan names.
9468         * c-lang.c: Include "c-support.h".
9469         (convert_ucn, convert_octal, convert_hex, convert_escape): Use
9470         ISXDIGIT instead of isxdigit and ISDIGIT instead of isdigit.
9471         * c-support.h: New file, with bits factored out from ...
9472         * cp-name-parser.y: ... this file.
9473         Include "c-support.h".
9474         (cp_ident_is_alpha, cp_ident_is_alnum): Deleted, moved to
9475         c-support.h and renamed.
9476         (symbol_end, yylex): Adjust.
9477
9478 2018-05-22  Pedro Franco de Carvalho  <pedromfc@linux.vnet.ibm.com>
9479
9480         * arch/ppc-linux-common.c (ppc_linux_has_isa205): Change the
9481         parameter type to CORE_ADDR.
9482         * arch/ppc-linux-common.h (ppc_linux_has_isa205): Change the
9483         parameter type in declaration to CORE_ADDR.
9484         * ppc-linux-tdep.c (ppc_linux_core_read_description): Call
9485         target_auxv_search to get AT_HWCAP and use the result to get the
9486         target description.
9487         * ppc-linux-nat.c (ppc_linux_get_hwcap): Change the return type
9488         to CORE_ADDR. Remove the cast of the return value to unsigned
9489         long. Fix error predicate of target_auxv_search.
9490         (ppc_linux_nat_target::read_description): Change the type of the
9491         hwcap variable to CORE_ADDR.
9492
9493 2018-05-22  Pedro Franco de Carvalho  <pedromfc@linux.vnet.ibm.com>
9494
9495         * rs6000-tdep.c (rs6000_gdbarch_init): Assign 1 to have_dfp only
9496         if the size of fpscr is larger than 32 bits.
9497
9498 2018-05-22  Pedro Franco de Carvalho  <pedromfc@linux.vnet.ibm.com>
9499
9500         * ppc-linux-tdep.c (ppc_linux_vsxregset): New function.
9501         (ppc32_linux_vsxregmap): New global.
9502         (ppc32_linux_vsxregset): Initialize with ppc32_linux_vsxregmap,
9503         regcache_supply_regset, and regcache_collect_regset.
9504         * ppc-linux-tdep.h (ppc_linux_vsxregset): Declare.
9505         * ppc-linux-nat.c (supply_vsxregset, fill_vsxregset): Remove.
9506         (fetch_vsx_register, store_vsx_register): Remove.
9507         (fetch_vsx_registers): Add regno parameter. Get regset using
9508         ppc_linux_vsxregset. Use regset to supply registers.
9509         (store_vsx_registers): Add regno parameter. Get regset using
9510         ppc_linux_vsxregset. Use regset to collect registers.
9511         (fetch_register): Call fetch_vsx_registers instead of
9512         fetch_vsx_register.
9513         (store_register): Call store_vsx_registers instead of
9514         store_vsx_register.
9515         (fetch_ppc_registers): Call fetch_vsx_registers with -1 for the
9516         new regno parameter.
9517         (store_ppc_registers): Call store_vsx_registers with -1 for the
9518         new regno parameter.
9519         * rs6000-tdep.c (ppc_vsx_support_p, ppc_supply_vsxreget)
9520         (ppc_collect_vsxregset): Remove.
9521
9522 2018-05-22  Pedro Franco de Carvalho  <pedromfc@linux.vnet.ibm.com>
9523
9524         * ppc-tdep.h (struct ppc_reg_offsets): Remove vector register
9525         offset fields.
9526         * ppc-fbsd-tdep.c (ppc32_fbsd_reg_offsets): Remove initializers
9527         for vector register offset fields.
9528         (ppc64_fbsd_reg_offsets): Likewise.
9529         * ppc-nbsd-tdep.c (_initialize_ppcnbsd_tdep): Remove assignment
9530         to vector register offset fields.
9531         * ppc-obsd-tdep.c (_initialize_ppcnbsd_tdep): Remove assignment
9532         to vector register offset fields.
9533         * ppc-obsd-nat.c (_initialize_ppcobsd_nat): Remove assignment to
9534         vector register offset fields.
9535         * rs6000-aix-tdep.c (rs6000_aix32_reg_offsets): Remove
9536         initializers for vector register offset fields.
9537         (rs6000_aix64_reg_offsets): Likewise.
9538         * rs6000-tdep.c (ppc_vrreg_offset): Remove.
9539         (ppc_supply_vrregset): Remove.
9540         (ppc_collect_vrregset): Remove.
9541         * ppc-linux-tdep.c (ppc_linux_collect_vrregset): New function.
9542         (ppc_linux_vrregset) : New function.
9543         (ppc32_le_linux_vrregmap, ppc32_be_linux_vrregmap)
9544         (ppc32_le_linux_vrregset, ppc32_be_linux_vrregset): New globals.
9545         (ppc32_linux_vrregset): Remove.
9546         (ppc_linux_iterate_over_regset_sections): Call ppc_linux_vrregset
9547         and use result instead of ppc32_linux_vrregset.
9548         (ppc32_linux_reg_offsets): Remove initializers for vector register
9549         offset fields.
9550         (ppc64_linux_reg_offsets): Likewise.
9551         * ppc-linux-tdep.h (ppc_linux_vrregset): New declaration.
9552         * ppc-linux-nat.c: Include regset.h.
9553         (gdb_vrregset_t): Adjust comment to account for little-endian
9554         mode.
9555         (supply_vrregset, fill_vrregset): Remove.
9556         (fetch_altivec_register, store_altivec_register): Remove.
9557         (fetch_altivec_registers): Add regno parameter. Get regset using
9558         ppc_linux_vrregset. Use regset to supply registers.
9559         (store_altivec_registers): Add regno parameter. Get regset using
9560         ppc_linux_vrregset. Use regset to collect registers.
9561         (fetch_register): Call fetch_altivec_registers instead of
9562         fetch_altivec_register.
9563         (store_register): Call store_altivec_registers instead of
9564         store_altivec_register.
9565         (fetch_ppc_registers): Call fetch_altivec_registers with -1 for
9566         the new regno parameter.
9567         (store_ppc_registers): Call store_altivec_registers with -1 for
9568         the new regno parameter.
9569
9570 2018-05-22  Pedro Franco de Carvalho  <pedromfc@linux.vnet.ibm.com>
9571
9572         * arch/ppc-linux-common.h (PPC_LINUX_SIZEOF_VRREGSET)
9573         (PPC_LINUX_SIZEOF_VSXREGSET): Define.
9574         * ppc-linux-nat.c (SIZEOF_VSXREGS, SIZEOF_VRREGS): Remove.
9575         (gdb_vrregset_t): Change array type size to
9576         PPC_LINUX_SIZEOF_VRREGSET.
9577         (gdb_vsxregset_t): Change array type size to
9578         PPC_LINUX_SIZEOF_VSXREGSET.
9579         * ppc-linux-tdep.c (ppc_linux_iterate_over_regset_sections):
9580         Change integer literals to PPC_LINUX_SIZEOF_VRREGSET and
9581         PPC_LINUX_SIZEOF_VSXREGSET.
9582
9583 2018-05-22  Pedro Franco de Carvalho  <pedromfc@linux.vnet.ibm.com>
9584
9585         * configure.nat <linux powerpc>: Add ppc-linux.o to NATDEPFILES.
9586         * ppc-linux-nat.c (ppc_linux_target_wordsize): Move to
9587         nat/ppc-linux.c.
9588         (ppc_linux_nat_target::auxv_parse): Get thread id tid. Call
9589         ppc_linux_target_wordsize with tid.
9590         (ppc_linux_nat_target::read_description): Call ppc_linux_target
9591         wordsize with tid.
9592         * nat/ppc-linux.c: Include nat/gdb_ptrace.h.
9593         (ppc64_64bit_inferior_p): Add static and inline specifiers.
9594         (ppc_linux_target_wordsize): Move here from ppc-linux-nat.c. Add
9595         tid parameter. Remove static specifier.
9596         * nat/ppc-linux.h (ppc64_64bit_inferior_p): Remove declaration.
9597         (ppc_linux_target_wordsize): New declaration.
9598
9599 2018-05-22  Pedro Franco de Carvalho  <pedromfc@linux.vnet.ibm.com>
9600
9601         * arch/ppc-linux-common.c: New file.
9602         * arch/ppc-linux-common.h: New file.
9603         * arch/ppc-linux-tdesc.h: New file.
9604         * configure.tgt (powerpc*-*-linux*): Add arch/ppc-linux-common.o.
9605         * Makefile.in (ALL_TARGET_OBS): Add arch/ppc-linux-common.o.
9606         (HFILES_NO_SRCDIR): Add arch/ppc-linux-common.h and
9607         arch/ppc-linux-tdesc.h.
9608         * ppc-linux-nat.c: Include arch/ppc-linux-common.h and
9609         arch/ppc-linux-tdesc.h.
9610         (ppc_linux_nat_target::read_description): Remove target
9611         description matching code. Fill a ppc_linux_features struct and
9612         call ppc_linux_match_description with it. Move comment about ISA
9613         2.05 to ppc-linux-common.c.
9614         * ppc-linux-tdep.c: Include arch/ppc-linux-common.h and
9615         arch/ppc-linux-tdesc.h.
9616         (ppc_linux_core_read_description): Remove target description
9617         matching code. Fill a ppc_linux_features struct and call
9618         ppc_linux_match_description with it.
9619         * ppc-linux-tdep.h (tdesc_powerpc_32l, tdesc_powerpc_64l)
9620         (tdesc_powerpc_altivec32l, tdesc_powerpc_altivec64l)
9621         (tdesc_powerpc_cell32l, tdesc_powerpc_cell64l)
9622         (tdesc_powerpc_vsx32l, tdesc_powerpc_vsx64l)
9623         (tdesc_powerpc_isa205_32l, tdesc_powerpc_isa205_64l)
9624         (tdesc_powerpc_isa205_altivec32l, tdesc_powerpc_isa205_altivec64l)
9625         (tdesc_powerpc_isa205_vsx32l, tdesc_powerpc_isa205_vsx64l)
9626         (tdesc_powerpc_e500l): Remove.
9627
9628 2018-05-22  Joel Brobecker  <brobecker@adacore.com>
9629
9630         * ada-lang.c (catch_assert_command): Pass empty string instead
9631         of NULL for excep_string argument.
9632
9633 2018-05-22  Maciej W. Rozycki  <macro@mips.com>
9634
9635         * mips-linux-nat.c (mips64_linux_register_addr): Return -1 if
9636         the width of the requested register exceeds the width of the
9637         `ptrace' data type.
9638
9639 2018-05-21  Tom Tromey  <tom@tromey.com>
9640
9641         * printcmd.c (output_command): Remove.
9642         (output_command_const): Rename to output_command.
9643         * valprint.h (output_command): Rename from output_command_const.
9644         * tracepoint.c (trace_dump_actions): Call output_command.
9645
9646 2018-05-21  Tom Tromey  <tom@tromey.com>
9647
9648         * mi/mi-cmd-catch.c (mi_cmd_catch_assert)
9649         (mi_cmd_catch_exception, mi_cmd_catch_handlers): Update.
9650         * ada-lang.h (create_ada_exception_catchpoint): Update.
9651         * ada-lang.c (struct ada_catchpoint) <excep_string>: Now a
9652         std::string.
9653         (create_excep_cond_exprs, ~ada_catchpoint)
9654         (should_stop_exception, print_one_exception)
9655         (print_mention_exception, print_recreate_exception): Update.
9656         (ada_get_next_arg): Remove.
9657         (catch_ada_exception_command_split): Use std::string.  Change type
9658         of "excep_string", "cond_string".
9659         (catch_ada_exception_command): Update.
9660         (create_ada_exception_catchpoint): Change type of excep_string.
9661         (ada_exception_sal): Remove excep_string parameter.
9662         (~ada_catchpoint): Remove.
9663
9664 2018-05-21  Tom Tromey  <tom@tromey.com>
9665
9666         * ada-lang.c (ada_collect_symbol_completion_matches): Remove
9667         cleanup.
9668
9669 2018-05-21  Tom Tromey  <tom@tromey.com>
9670
9671         * ada-lang.c (ada_exception_message_1, ada_exception_message):
9672         Return unique_xmalloc_ptr.
9673         (print_it_exception): Update.
9674
9675 2018-05-21  Tom Tromey  <tom@tromey.com>
9676
9677         * tracepoint.c (trace_dump_actions): Use std::string.
9678
9679 2018-05-21  Tom Tromey  <tom@tromey.com>
9680
9681         * symfile.c (reread_symbols): Use std::string for original_name.
9682
9683 2018-05-21  Tom Tromey  <tom@tromey.com>
9684
9685         * dwarf2read.c (dwarf2_read_debug_names): Use std::unique_ptr.
9686         (mapped_index_base): Use DISABLE_COPY_AND_ASSIGN.  Default
9687         constructor.
9688
9689 2018-05-20  Simon Marchi  <simon.marchi@polymtl.ca>
9690
9691         * common/traits.h (HAVE_IS_TRIVIALLY_COPYABLE): Rename the wrong
9692         instance to...
9693         (HAVE_IS_TRIVIALLY_CONSTRUCTIBLE): ... this.
9694         * objfiles.c (get_objfile_bfd_data): Allocate
9695         objfile_per_bfd_storage with obstack_new when allocating on
9696         obstack.
9697
9698 2018-05-20  Simon Marchi  <simon.marchi@ericsson.com>
9699
9700         * ada-lang.c (cache_symbol): Use XOBNEW and/or XOBNEWVEC and/or
9701         OBSTACK_ZALLOC.
9702         * dwarf2-frame.c (dwarf2_build_frame_info): Likewise.
9703         * hppa-tdep.c (hppa_init_objfile_priv_data): Likewise.
9704         * mdebugread.c (mdebug_build_psymtabs): Likewise.
9705         (add_pending): Likewise.
9706         (parse_symbol): Likewise.
9707         (parse_partial_symbols): Likewise.
9708         (psymtab_to_symtab_1): Likewise.
9709         (new_psymtab): Likewise.
9710         (elfmdebug_build_psymtabs): Likewise.
9711         * minsyms.c (terminate_minimal_symbol_table): Likewise.
9712         * objfiles.c (get_objfile_bfd_data): Likewise.
9713         (objfile_register_static_link): Likewise.
9714         * psymtab.c (allocate_psymtab): Likewise.
9715         * stabsread.c (read_member_functions): Likewise.
9716         * xcoffread.c (xcoff_end_psymtab): Likewise.
9717
9718 2018-05-20  Simon Marchi  <simon.marchi@ericsson.com>
9719
9720         * common/traits.h (HAVE_IS_TRIVIALLY_COPYABLE): Define if
9721         compiler supports std::is_trivially_constructible.
9722         * common/poison.h: Include obstack.h.
9723         (IsMallocable): Define to is_trivially_constructible if the
9724         compiler supports it, define to true_type otherwise.
9725         (xobnew): New.
9726         (XOBNEW): Redefine.
9727         (xobnewvec): New.
9728         (XOBNEWVEC): Redefine.
9729         * gdb_obstack.h (obstack_zalloc): New.
9730         (OBSTACK_ZALLOC): Redefine.
9731         (obstack_calloc): New.
9732         (OBSTACK_CALLOC): Redefine.
9733         (obstack_new): New.
9734         * gdbarch.sh: Include gdb_obstack in gdbarch.h.
9735         (gdbarch_obstack): New declaration in gdbarch.h, definition in
9736         gdbarch.c.
9737         (GDBARCH_OBSTACK_CALLOC, GDBARCH_OBSTACK_ZALLOC): Use
9738         obstack_calloc/obstack_zalloc.
9739         (gdbarch_obstack_zalloc): Remove.
9740         * target-descriptions.c (tdesc_data_init): Use obstack_new.
9741
9742 2018-05-19  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
9743
9744         * stack.c (backtrace_command_1): Remove useless variable int i.
9745
9746 2018-05-19  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
9747
9748         * stack.c (print_frame_info): Fix comment.
9749
9750 2018-05-18  Tom Tromey  <tom@tromey.com>
9751
9752         * dwarf2read.c (struct dwz_file): Add constructor, initializers.
9753         <dwz_bfd>: Now a gdb_bfd_ref_ptr.
9754         (~dwarf2_per_objfile): Update
9755         (dwarf2_get_dwz_file): Use new.
9756         * dwarf2read.h (struct dwarf2_per_objfile) <dwz_file>: Now a
9757         unique_ptr.
9758
9759 2018-05-18  Tom Tromey  <tom@tromey.com>
9760
9761         * dwarf2read.h (struct dwarf2_per_objfile) <dwp_file>: Now a
9762         unique_ptr.
9763         * dwarf2read.c (struct dwp_file): Add constructor and
9764         initializers.
9765         (open_and_init_dwp_file): Return a unique_ptr.
9766         (dwarf2_per_objfile, create_dwp_hash_table)
9767         (create_dwo_unit_in_dwp_v1, create_dwo_unit_in_dwp_v2)
9768         (lookup_dwo_unit_in_dwp): Update.
9769         (open_and_init_dwp_file, get_dwp_file): Update.
9770
9771 2018-05-18  Tom Tromey  <tom@tromey.com>
9772
9773         * dwarf2read.c (dwarf2_per_objfile): Update.
9774         (struct mapped_index): Add initializers.
9775         (dwarf2_read_index): Use new.
9776         (dw2_symtab_iter_init): Update.
9777         * dwarf2read.h (struct dwarf2_per_objfile) <index_table>: Now a
9778         unique_ptr.
9779
9780 2018-05-18  Simon Marchi  <simon.marchi@ericsson.com>
9781
9782         * dwarf2read.c (mapped_index) <total_size>: Remove.
9783
9784 2018-05-18  Simon Marchi  <simon.marchi@ericsson.com>
9785
9786         * unittests/format_pieces-selftests.c (test_format_specifier):
9787         Add ARI comments.
9788
9789 2018-05-18  Tom Tromey  <tom@tromey.com>
9790
9791         * c-typeprint.c (maybe_print_hole): New function.
9792         (c_print_type_struct_field_offset): Update.
9793         (c_type_print_base_struct_union): Call maybe_print_hole.
9794
9795 2018-05-17  Keith Seitz  <keiths@redhat.com>
9796
9797         * breakpoint.c (build_bpstat_chain): New function, moved from
9798         bpstat_stop_status.
9799         (bpstat_stop_status): Add optional parameter, `stop_chain'.
9800         If no stop chain is passed, call build_bpstat_chain to build it.
9801         * breakpoint.h (build_bpstat_chain): Declare.
9802         (bpstat_stop_status): Move documentation here from breakpoint.c.
9803         * infrun.c (handle_signal_stop): Before eliding inlined frames,
9804         build the stop chain and pass it to skip_inline_frames.
9805         Pass this stop chain to bpstat_stop_status.
9806         * inline-frame.c: Include breakpoint.h.
9807         (stopped_by_user_bp_inline_frame): New function.
9808         (skip_inline_frames): Add parameter `stop_chain'.
9809         Move documention to inline-frame.h.
9810         If non-NULL, use stopped_by_user_bp_inline_frame to determine
9811         whether the frame should be elided.
9812         * inline-frame.h (skip_inline_frames): Add parameter `stop_chain'.
9813         Add moved documentation and update for new parameter.
9814
9815 2018-05-17  Simon Marchi  <simon.marchi@ericsson.com>
9816
9817         PR cli/14975
9818         * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
9819         unittests/format_pieces-selftests.c.
9820         * common/format.h (format_piece) <operator==>: New.
9821         (format_pieces) <operator[]>: Remove.
9822         * common/format.c (format_pieces::format_pieces): Handle \e.
9823         * unittests/format_pieces-selftests.c: New.
9824
9825 2018-05-17  Tom Tromey  <tom@tromey.com>
9826
9827         PR symtab/23010:
9828         * dwarf2read.c (load_cu, dw2_do_instantiate_symtab)
9829         (dw2_instantiate_symtab): Add skip_partial parameter.
9830         (dw2_find_last_source_symtab, dw2_map_expand_apply)
9831         (dw2_lookup_symbol, dw2_expand_symtabs_for_function)
9832         (dw2_expand_all_symtabs, dw2_expand_symtabs_with_fullname)
9833         (dw2_expand_symtabs_matching_one)
9834         (dw2_find_pc_sect_compunit_symtab)
9835         (dw2_debug_names_lookup_symbol)
9836         (dw2_debug_names_expand_symtabs_for_function): Update.
9837         (init_cutu_and_read_dies): Add skip_partial parameter.
9838         (process_psymtab_comp_unit, build_type_psymtabs_1)
9839         (process_skeletonless_type_unit, load_partial_comp_unit)
9840         (psymtab_to_symtab_1): Update.
9841         (load_full_comp_unit): Add skip_partial parameter.
9842         (process_imported_unit_die, dwarf2_read_addr_index)
9843         (follow_die_offset, dwarf2_fetch_die_loc_sect_off)
9844         (dwarf2_fetch_constant_bytes, dwarf2_fetch_die_type_sect_off)
9845         (read_signatured_type): Update.
9846
9847 2018-05-17  Simon Marchi  <simon.marchi@ericsson.com>
9848
9849         * value.c (release_value): Remove unused variable.
9850         (record_latest_value): Likewise.
9851         (access_value_history): Likewise.
9852         (preserve_values): Likewise.
9853
9854 2018-05-17  Tom Tromey  <tom@tromey.com>
9855
9856         * extension.h (struct ext_lang_type_printers) <py_type_printers>:
9857         Initialize.
9858
9859 2018-05-16  Maciej W. Rozycki  <macro@mips.com>
9860
9861         PR gdb/22286
9862         * linux-nat-trad.c (linux_nat_trad_target::fetch_register):
9863         Also handle registers whose width is not a multiple of
9864         PTRACE_TYPE_RET.
9865         (linux_nat_trad_target::store_register): Likewise.
9866
9867 2018-05-16  Tom Tromey  <tom@tromey.com>
9868
9869         * gdbcore.h (core_bfd): Redefine.
9870         * corelow.c (core_target::close): Update.
9871         (core_target_open): Update.
9872         * progspace.h (struct program_space) <cbfd>: Now a
9873         gdb_bfd_ref_ptr.
9874
9875 2018-05-16  Tom Tromey  <tom@tromey.com>
9876
9877         PR cli/19551:
9878         * symfile-add-flags.h (enum symfile_add_flags)
9879         <SYMFILE_NOT_FILENAME>: New constant.
9880         * symfile.c (read_symbols): Use SYMFILE_NOT_FILENAME.  Get
9881         objfile name from BFD.
9882         (symbol_file_add_with_addrs): Check SYMFILE_NOT_FILENAME.
9883         * minidebug.c (find_separate_debug_file_in_section): Put
9884         ".gnu_debugdata" into BFD's file name.
9885
9886 2018-05-16  Simon Marchi  <simon.marchi@ericsson.com>
9887
9888         * regcache.c (regcache_read_ftype, regcache_write_ftype):
9889         Remove.
9890
9891 2018-05-15  Tamar Christina  <tamar.christina@arm.com>
9892
9893         PR binutils/21446
9894         * aarch64-tdep.c (aarch64_analyze_prologue,
9895         aarch64_software_single_step, aarch64_displaced_step_copy_insn):
9896         Indicate not interested in errors.
9897
9898 2018-05-15  Maciej W. Rozycki  <macro@mips.com>
9899
9900         * mips-linux-nat.c (mips_linux_nat_target::fetch_registers):
9901         Supply the MIPS_ZERO_REGNUM register.
9902
9903 2018-05-15  Maciej W. Rozycki  <macro@mips.com>
9904
9905         * mips-tdep.c (mask_address_var): Make variable static.
9906
9907 2018-05-14  Tom Tromey  <tom@tromey.com>
9908
9909         * dwarf2read.c (rust_union_quirks): Clear rust_unions.
9910
9911 2018-05-11  Andrew Burgess  <andrew.burgess@embecosm.com>
9912
9913         * i387-tdep.c (i387_collect_xsave): Use FXSAVE_MXCSR_ADDR not
9914         FXSAVE_ADDR for the mxcsr register.
9915
9916 2018-05-11  Max Filippov  <jcmvbkbc@gmail.com>
9917
9918         * configure.tgt (xtensa*-*-linux*): Drop gdb_target definition.
9919
9920 2018-05-11  Pedro Alves  <palves@redhat.com>
9921
9922         * corelow.c (core_target) <core_target>: No longer inline.
9923         Initialize m_core_gdbarch, m_core_vec and build the section table
9924         here.
9925         <~core_target>: New.
9926         <core_gdbarch, get_core_register_section>: New methods.
9927         <m_core_section_table, m_core_vec, m_core_gdbarch>: New fields,
9928         factored out from ...
9929         <core_data, core_vec, core_gdbarch>: ... these deleted globals.
9930         (core_ops): Delete.
9931         (sniff_core_bfd): Add gdbarch parameter.
9932         (core_close): Delete, merged into ...
9933         (core_target::close): ... here.  Delete self.
9934         (core_close_cleanup): Delete.
9935         (core_target_open): Allocate a core_target on the heap.  Use a
9936         unique_ptr instead of a cleanup.  Bits moved into the core_target
9937         ctor.  Adjust to use core_target methods instead of globals.
9938         (get_core_register_section): Rename to ...
9939         (core_target::get_core_register_section): ... this and adjust.
9940         (struct get_core_registers_cb_data): New.
9941         (get_core_registers_cb): Use it.  Use bool.
9942         (core_target::fetch_registers, core_target::files_info)
9943         (core_target::xfer_partial, core_target::read_description)
9944         (core_target::pid_to, core_target::thread_name): Adjust to
9945         reference class fields instead of globals.
9946         * target.h (struct target_ops_deleter, target_ops_up): New.
9947
9948 2018-05-11  Pedro Alves  <palves@redhat.com>
9949
9950         * corefile.c (core_file_command): Move to corelow.c.
9951         * corelow.c (the_core_target): Delete.
9952         (core_file_command): Moved from corefile.c.  Check exec_bfd
9953         instead of the_core_target.  Use target_detach instead of calling
9954         into the_core_target directly.
9955         (maybe_say_no_core_file_now): New.
9956         (core_target::detach): Use it.
9957         (_initialize_corelow): Remove references to the_core_target.
9958         * gdbcore.h (the_core_target): Delete.
9959
9960 2018-05-11  Tom Tromey  <tromey@redhat.com>
9961             Pedro Alves  <palves@redhat.com>
9962
9963         * corefile.c (core_bfd): Remove.
9964         * gdbcore.h (core_bfd): Now a macro.
9965         * progspace.h (struct program_space) <cbfd>: New field.
9966
9967 2018-05-11  Tom Tromey  <tom@tromey.com>
9968
9969         * mdebugread.c (parse_partial_symbols, psymtab_to_symtab_1): Use
9970         gdb::def_vector.
9971
9972 2018-05-10  Tom Tromey  <tom@tromey.com>
9973
9974         * configure: Rebuild.
9975         * warning.m4 (AM_GDB_WARNINGS): Use -Wimplicit-fallthrough=3.
9976
9977 2018-05-10  Joel Brobecker  <brobecker@adacore.com>
9978
9979         PR server/23158:
9980         * regformats/regdat.sh: Adjust script, following the addition
9981         of the new expedite_regs parameter to init_target_desc.
9982
9983 2018-05-10  Omair Javaid  <omair.javaid@linaro.org>
9984     
9985         PR gdb/23127
9986         * aarch64-linux-tdep.c (aarch64_linux_init_abi): Add call to
9987         set_gdbarch_significant_addr_bit.
9988         * aarch64-tdep.c (aarch64_gdbarch_init): Remove call to
9989         set_gdbarch_significant_addr_bit.
9990         * utils.c (address_significant): Update to sign extend addr.
9991
9992 2018-05-09  Max Filippov  <jcmvbkbc@gmail.com>
9993
9994         * xtensa-linux-tdep.c (xtensa-tdep.h): New include.
9995         (xtensa_linux_init_abi): Limit tdep->num_regs by
9996         tdep->num_nopriv_regs.
9997         * xtensa-tdep.c (xtensa_derive_tdep): Calculate
9998         tdep->num_nopriv_regs and only copy it to tdep->num_regs if it's
9999         not initialized.
10000
10001 2018-05-08  Simon Marchi  <simon.marchi@ericsson.com>
10002
10003         * unittests/string_view-selftests.c: Define GNULIB_NAMESPACE.
10004
10005 2018-05-08  Andrew Burgess  <andrew.burgess@embecosm.com>
10006
10007         * common/x86-xstate.h (I387_FCTRL_INIT_VAL): New constant.
10008         (I387_MXCSR_INIT_VAL): New constant.
10009         * amd64-tdep.c (amd64_supply_xsave): Only read state from xsave
10010         buffer if it was supplied by the inferior.
10011         * i387-tdep.c (i387_supply_fsave): Use I387_MXCSR_INIT_VAL.
10012         (i387_xsave_get_clear_bv): New function.
10013         (i387_supply_xsave): Only read x87 control registers from the
10014         xsave buffer if the feature is enabled, and the state will have
10015         been written, otherwise, provide a suitable default.
10016         (i387_collect_xsave): Pre-clear all registers in xsave buffer,
10017         including x87 control registers.  Update control registers if they
10018         have changed from the default value, and mark features as enabled
10019         as required.
10020         * i387-tdep.h (i387_xsave_get_clear_bv): Declare.
10021
10022 2018-05-08  Ulrich Weigand  <uweigand@de.ibm.com>
10023
10024         * spu-tdep.c (info_spu_event_command): Fix output formatting.
10025
10026 2018-05-07  Tom Tromey  <tom@tromey.com>
10027
10028         * configure: Rebuild.
10029         * warning.m4 (AM_GDB_WARNINGS): Add -Wduplicated-cond.
10030
10031 2018-05-07  Tom Tromey  <tom@tromey.com>
10032
10033         PR tdep/20362:
10034         * arm-tdep.c (arm_record_vfp_data_proc_insn): Properly mask off D
10035         bit.  Use correct value for VDIV.
10036
10037 2018-05-04  Tom Tromey  <tom@tromey.com>
10038
10039         * configure: Rebuild.
10040         * warning.m4 (AM_GDB_WARNINGS): Add -Wimplicit-fallthrough.
10041
10042 2018-05-04  Tom Tromey  <tom@tromey.com>
10043
10044         * linux-record.c (record_linux_system_call) <case
10045         RECORD_SYS_RECVFROM>: Add "break".
10046
10047 2018-05-04  Tom Tromey  <tom@tromey.com>
10048
10049         * mi/mi-main.c (mi_cmd_trace_frame_collected) <REGISTERS_FORMAT>:
10050         Add missing "break".
10051         * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals) <NO_FRAME_FILTERS>:
10052         Add missing "break".
10053
10054 2018-05-04  Tom Tromey  <tom@tromey.com>
10055
10056         * rs6000-tdep.c (ppc_process_record_op4)
10057         (ppc_process_record_op63): Add fall-through comment.
10058
10059 2018-05-04  Tom Tromey  <tom@tromey.com>
10060
10061         * i386-tdep.c (i386_process_record): Add fall-through comment.
10062
10063 2018-05-04  Tom Tromey  <tom@tromey.com>
10064
10065         * stabsread.c (define_symbol) <case 'p'>: Add fall-through
10066         comment.
10067
10068 2018-05-04  Tom Tromey  <tom@tromey.com>
10069
10070         * riscv-tdep.c (riscv_isa_xlen): Add fall-through comment.
10071         * utils.c (can_dump_core) <LIMIT_CUR>: Add fall-through comment.
10072         * eval.c (fetch_subexp_value) <MEMORY_ERROR>: Add fall-through
10073         comment.
10074         * d-valprint.c (d_val_print) <TYPE_CODE_STRUCT>: Add fall-through
10075         comment.
10076         * coffread.c (coff_symtab_read) <C_LABEL>: Add fall-through
10077         comment.
10078
10079 2018-05-04  Tom Tromey  <tom@tromey.com>
10080
10081         * dwarf2loc.c (unimplemented): Add ATTRIBUTE_NORETURN.
10082
10083 2018-05-04  Tom Tromey  <tom@tromey.com>
10084
10085         * s390-tdep.c (s390_process_record): Fix fall-through comments.
10086         * xcoffread.c (scan_xcoff_symtab): Move comment later.
10087         * symfile.c (section_is_mapped): Fix fall-through comment.
10088         * stabsread.c (define_symbol, read_member_functions): Fix
10089         fall-through comment.
10090         * s390-linux-tdep.c (s390_process_record): Fix fall-through
10091         comment.
10092         * remote.c (remote_wait_as): Fix fall-through comment.
10093         * p-exp.y (yylex): Fix fall-through comment.
10094         * nat/x86-dregs.c (x86_length_and_rw_bits): Fix fall-through
10095         comment.
10096         * msp430-tdep.c (msp430_gdbarch_init): Fix fall-through comment.
10097         * mdebugread.c (parse_partial_symbols): Fix fall-through comment.
10098         * jv-exp.y (yylex): Fix fall-through comment.
10099         * go-exp.y (lex_one_token): Fix fall-through comment.
10100         * gdbtypes.c (get_discrete_bounds, rank_one_type): Fix
10101         fall-through comment.
10102         * f-exp.y (yylex): Fix fall-through comment.
10103         * dwarf2read.c (process_die): Fix fall-through comments.
10104         * dbxread.c (process_one_symbol): Fix fall-through comment.
10105         * d-exp.y (lex_one_token): Fix fall-through comment.
10106         * cp-name-parser.y (yylex): Fix fall-through comment.
10107         * coffread.c (coff_symtab_read): Fix fall-through comment.
10108         * c-exp.y (lex_one_token): Fix fall-through comment.
10109         * arm-tdep.c (arm_decode_miscellaneous): Fix fall-through
10110         comment.
10111         * arch/arm.c (arm_instruction_changes_pc): Fix fall-through
10112         comment.
10113
10114 2018-05-04  Tom Tromey  <tom@tromey.com>
10115
10116         PR python/22730:
10117         * NEWS: Mention gdb.execute change.
10118         * gdbcmd.h (execute_control_command): Don't declare.
10119         * python/python.c (execute_gdb_command): Use read_command_lines_1,
10120         execute_control_commands, execute_control_commands_to_string.
10121         * cli/cli-script.h (execute_control_commands)
10122         (execute_control_commands_to_string): Declare.
10123         (execute_control_command): Add from_tty parameter.
10124         * cli/cli-script.c (execute_control_commands)
10125         (execute_control_commands_to_string): New functions.
10126         (execute_user_command): Use execute_control_commands.
10127         (execute_control_command_1): Add "from_tty" parameter.  Update.
10128         (execute_control_command): Likewise.
10129
10130 2018-05-04  Tom Tromey  <tom@tromey.com>
10131
10132         PR python/22731:
10133         * NEWS: Mention that breakpoint commands are writable.
10134         * python/py-breakpoint.c (bppy_set_commands): New function.
10135         (breakpoint_object_getset) <"commands">: Use it.
10136
10137 2018-05-04  Tom Tromey  <tom@tromey.com>
10138
10139         * tracepoint.c (actions_command): Update.
10140         * mi/mi-cmd-break.c (mi_command_line_array)
10141         (mi_command_line_array_cnt, mi_command_line_array_ptr)
10142         (mi_read_next_line): Remove.
10143         (mi_cmd_break_commands): Update.
10144         * cli/cli-script.h (read_command_lines, read_command_lines_1): Use
10145         function_view.
10146         * cli/cli-script.c (get_command_line): Update.
10147         (process_next_line): Use function_view.  Constify.
10148         (recurse_read_control_structure, read_command_lines)
10149         (read_command_lines_1): Change argument types to function_view.
10150         (do_define_command, document_command): Update.
10151         * breakpoint.h (check_tracepoint_command): Don't declare.
10152         * breakpoint.c (check_tracepoint_command): Remove.
10153         (commands_command_1, create_tracepoint_from_upload): Update.
10154
10155 2018-05-04  Tom Tromey  <tom@tromey.com>
10156
10157         PR gdb/11750:
10158         * cli/cli-script.h (enum command_control_type) <define_control>:
10159         New constant.
10160         * cli/cli-script.c (multi_line_command_p): Handle define_control.
10161         (build_command_line, execute_control_command_1)
10162         (process_next_line): Likewise.
10163         (do_define_command): New function, extracted from define_command.
10164         (define_command): Use it.
10165
10166 2018-05-04  Tom Tromey  <tom@tromey.com>
10167
10168         * tracepoint.c (actions_command): Update.
10169         * cli/cli-script.h (read_command_lines): Update.
10170         * cli/cli-script.c (read_command_lines): Constify prompt_arg.
10171         (MAX_TMPBUF): Remove define.
10172         (define_command): Use string_printf.
10173         (document_command): Likewise.
10174         * breakpoint.c (commands_command_1): Update.
10175
10176 2018-05-04  Tom Tromey  <tom@tromey.com>
10177
10178         * top.c (execute_command): Update.
10179         * cli/cli-script.h (print_command_lines): Now varargs.
10180         * cli/cli-script.c (print_command_lines): Now varargs.
10181         (execute_control_command_1) <case while_control, case if_control>:
10182         Update.
10183
10184 2018-05-04  Tom Tromey  <tom@tromey.com>
10185
10186         * tracepoint.c (all_tracepoint_actions): Rename from
10187         all_tracepoint_actions_and_cleanup.  Change return type.
10188         (actions_command, encode_actions_1, encode_actions)
10189         (trace_dump_actions, tdump_command): Update.
10190         * remote.c (remote_download_command_source): Update.
10191         * python/python.c (gdbpy_eval_from_control_command)
10192         (python_command, python_interactive_command): Update.
10193         * mi/mi-cmd-break.c (mi_cmd_break_commands): Update.
10194         * guile/guile.c (guile_command)
10195         (gdbscm_eval_from_control_command, guile_command): Update.
10196         * compile/compile.c (compile_code_command)
10197         (compile_print_command, compile_to_object): Update.
10198         * cli/cli-script.h (struct command_lines_deleter): New.
10199         (counted_command_line): New typedef.
10200         (struct command_line): Add constructor, destructor.
10201         <body_list>: Remove.
10202         <body_list_0, body_list_1>: New members.
10203         (command_line_up): Remove typedef.
10204         (read_command_lines, read_command_lines_1, get_command_line):
10205         Update.
10206         (copy_command_lines): Don't declare.
10207         * cli/cli-script.c (build_command_line): Use "new".
10208         (get_command_line): Return counted_command_line.
10209         (print_command_lines, execute_user_command)
10210         (execute_control_command_1, while_command, if_command): Update.
10211         (realloc_body_list): Remove.
10212         (process_next_line, recurse_read_control_structure): Update.
10213         (read_command_lines, read_command_lines_1): Return counted_command_line.
10214         (free_command_lines): Use "delete".
10215         (copy_command_lines): Remove.
10216         (define_command, document_command, show_user_1): Update.
10217         * cli/cli-decode.h (struct cmd_list_element) <user_commands>: Now
10218         a counted_command_line.
10219         * breakpoint.h (counted_command_line): Remove typedef.
10220         (breakpoint_set_commands): Update.
10221         * breakpoint.c (check_no_tracepoint_commands)
10222         (validate_commands_for_breakpoint): Update.
10223         (breakpoint_set_commands): Change commands to be a
10224         counted_command_line.
10225         (commands_command_1, update_dprintf_command_list)
10226         (create_tracepoint_from_upload): Update.
10227
10228 2018-05-04  Tom Tromey  <tom@tromey.com>
10229
10230         * cli/cli-decode.h (cmd_list_element): New constructor.
10231         (~cmd_list_element): New destructor.
10232         (struct cmd_list_element): Add initializers.
10233         * cli/cli-decode.c (do_add_cmd): Use "new".
10234         (delete_cmd): Use "delete".
10235
10236 2018-05-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
10237             Pedro Alves <palves@redhat.com>
10238
10239         PR breakpoints/19806 and support for PR external/20207.
10240         * NEWS: Mention Aarch64 watchpoint improvements.
10241         * aarch64-linux-nat.c (aarch64_linux_stopped_data_address): Fix missed
10242         watchpoints and PR external/20207 watchpoints.
10243         * nat/aarch64-linux-hw-point.c
10244         (kernel_supports_any_contiguous_range): New.
10245         (aarch64_watchpoint_offset): New.
10246         (aarch64_watchpoint_length): Support PR external/20207 watchpoints.
10247         (aarch64_point_encode_ctrl_reg): New parameter offset, new asserts.
10248         (aarch64_point_is_aligned): Support PR external/20207 watchpoints.
10249         (aarch64_align_watchpoint): New parameters aligned_offset_p and
10250         next_addr_orig_p.  Support PR external/20207 watchpoints.
10251         (aarch64_downgrade_regs): New.
10252         (aarch64_dr_state_insert_one_point): New parameters offset and
10253         addr_orig.
10254         (aarch64_dr_state_remove_one_point): Likewise.
10255         (aarch64_handle_breakpoint): Update caller.
10256         (aarch64_handle_aligned_watchpoint): Likewise.
10257         (aarch64_handle_unaligned_watchpoint): Support addr_orig and
10258         aligned_offset.
10259         (aarch64_linux_set_debug_regs): Remove const from state.  Call
10260         aarch64_downgrade_regs.
10261         (aarch64_show_debug_reg_state): Print also dr_addr_orig_wp.
10262         * nat/aarch64-linux-hw-point.h (DR_CONTROL_LENGTH): Rename to ...
10263         (DR_CONTROL_MASK): ... this.
10264         (struct aarch64_debug_reg_state): New field dr_addr_orig_wp.
10265         (unsigned int aarch64_watchpoint_offset): New prototype.
10266         (aarch64_linux_set_debug_regs): Remove const from state.
10267         * utils.c (align_up, align_down): Move to ...
10268         * common/common-utils.c (align_up, align_down): ... here.
10269         * utils.h (align_up, align_down): Move to ...
10270         * common/common-utils.h (align_up, align_down): ... here.
10271
10272 2018-05-04  Joel Brobecker  <brobecker@adacore.com>
10273
10274         * sparc-tdep.c (sparc_structure_return_p): Re-implement to
10275         match the ABI as summarized in GCC's gcc/config/sparc/sparc.c.
10276         (sparc_arg_by_memory_p): Renamed from sparc_arg_on_registers_p.
10277         Re-implement to match the ABI as summarized in GCC's
10278         gcc/config/sparc/sparc.c.  All callers updated.
10279         (sparc32_store_arguments): Remove assertion.
10280
10281 2018-05-04  Tom Tromey  <tom@tromey.com>
10282
10283         * printcmd.c: Don't include tui.h.
10284         (decode_format): Use skip_spaces.
10285
10286 2018-05-04  Tom Tromey  <tom@tromey.com>
10287
10288         PR gdb/22619:
10289         * printcmd.c (last_count): New global.
10290         (x_command): Use saved count when repeating.
10291
10292 2018-05-04  Tom Tromey  <tom@tromey.com>
10293
10294         * nto-procfs.c (do_closedir_cleanup): Remove.
10295         (procfs_pidlist): Use gdb_dir_up.
10296         * procfs.c (do_closedir_cleanup): Remove.
10297         (proc_update_threads): Use gdb_dir_up.
10298         * common/filestuff.h (struct gdb_dir_deleter): New.
10299         (gdb_dir_up): New typedef.
10300
10301 2018-05-04  Tom Tromey  <tom@tromey.com>
10302
10303         * ada-lang.c (print_mention_exception): Use std::string.
10304
10305 2018-05-04  Tom Tromey  <tom@tromey.com>
10306
10307         * ada-lang.c (create_excep_cond_exprs): Update.
10308         (ada_exception_catchpoint_cond_string): Use std::string.
10309
10310 2018-05-04  Tom Tromey  <tom@tromey.com>
10311
10312         * ada-lang.c (xget_renaming_scope): Return std::string.
10313         (old_renaming_is_invisible): Update.
10314
10315 2018-05-04  Tom Tromey  <tom@tromey.com>
10316
10317         * bfd-target.c (target_bfd::m_bfd): Now a gdb_bfd_ref_ptr.
10318         (target_bfd::target_bfd, target_bfd::~target_bfd): Update.
10319
10320 2018-05-04  Ulrich Weigand  <uweigand@de.ibm.com>
10321
10322         * spu-linux-nat.c (spu_linux_nat_target::wait): Fix syntax error.
10323
10324 2018-05-04  Tom Tromey  <tom@tromey.com>
10325
10326         * remote.c (remote_query_supported_append): Change type.
10327         (remote_check_symbols): Update.
10328
10329 2018-05-04  Paul Pluzhnikov  <ppluzhnikov@google.com>
10330
10331         PR gdb/11420
10332         * configure.ac: Prepend libpython.
10333         * python/python-config.py: Likewise.
10334         * configure: Regenerate.
10335
10336 2018-05-03  Simon Marchi  <simon.marchi@ericsson.com>
10337
10338         * Makefile.in (%.c: %.l): Use -t instead of --stdout.
10339
10340 2018-05-03  Pedro Alves  <palves@redhat.com>
10341
10342         * s390-linux-nat.c
10343         (s390_linux_nat_target::have_continuable_watchpoint): Mark with
10344         override.  Write 'true' instead of '1'.
10345         (s390_linux_nat_target::watchpoint_addr_within_range): Remove
10346         declaration.
10347
10348 2018-05-02  Pedro Alves  <palves@redhat.com>
10349
10350         * aarch64-fbsd-nat.c (_initialize_aarch64_fbsd_nat): Use
10351         add_inf_child_target.
10352         * aarch64-linux-nat.c (_initialize_aarch64_linux_nat): Use
10353         add_inf_child_target.
10354         * aix-thread.c (aix_thread_target_info): New.
10355         (aix_thread_target) <shortname, longname, doc>: Delete.
10356         <info>: New.
10357         * alpha-bsd-nat.c (_initialize_alphabsd_nat): Use
10358         add_inf_child_target.
10359         * alpha-linux-nat.c (_initialize_alpha_linux_nat): Use
10360         add_inf_child_target.
10361         * amd64-fbsd-nat.c (_initialize_amd64fbsd_nat): Use
10362         add_inf_child_target.
10363         * amd64-linux-nat.c (_initialize_amd64_linux_nat): Use
10364         add_inf_child_target.
10365         * amd64-nbsd-nat.c (_initialize_amd64nbsd_nat): Use
10366         add_inf_child_target.
10367         * amd64-obsd-nat.c (_initialize_amd64obsd_nat): Use
10368         add_inf_child_target.
10369         * arm-fbsd-nat.c (_initialize_arm_fbsd_nat): Use
10370         add_inf_child_target.
10371         * arm-linux-nat.c (_initialize_arm_linux_nat): Use
10372         add_inf_child_target.
10373         * arm-nbsd-nat.c (_initialize_arm_netbsd_nat): Use
10374         add_inf_child_target.
10375         * bfd-target.c (target_bfd_target_info): New.
10376         (target_bfd) <shortname, longname, doc>: Delete.
10377         <info>: New.
10378         * bsd-kvm.c (bsd_kvm_target_info): New.
10379         (bsd_kvm_target) <shortname, longname, doc>: Delete.
10380         <info>: New.
10381         (bsd_kvm_target::open): Rename to ...
10382         (bsd_kvm_target_open): ... this.  Adjust.
10383         * bsd-uthread.c (bsd_uthread_target_info): New.
10384         (bsd_uthread_target) <shortname, longname, doc>: Delete.
10385         <info>: New.
10386         * corefile.c (core_file_command): Adjust.
10387         * corelow.c (core_target_info): New.
10388         (core_target) <shortname, longname, doc>: Delete.
10389         <info>: New.
10390         (core_target::open): Rename to ...
10391         (core_target_open): ... this.  Adjust.
10392         * ctf.c (ctf_target_info): New.
10393         (ctf_target) <shortname, longname, doc>: Delete.
10394         <info>: New.
10395         (ctf_target::open): Rename to ...
10396         (ctf_target_open): ... this.
10397         (_initialize_ctf): Adjust.
10398         * exec.c (exec_target_info): New.
10399         (exec_target) <shortname, longname, doc>: Delete.
10400         <info>: New.
10401         (exec_target::open): Rename to ...
10402         (exec_target_open): ... this.
10403         * gdbcore.h (core_target_open): Declare.
10404         * go32-nat.c (_initialize_go32_nat): Use add_inf_child_target.
10405         * hppa-linux-nat.c (_initialize_hppa_linux_nat): Use
10406         add_inf_child_target.
10407         * hppa-nbsd-nat.c (_initialize_hppanbsd_nat): Use
10408         add_inf_child_target.
10409         * hppa-obsd-nat.c (_initialize_hppaobsd_nat): Use
10410         add_inf_child_target.
10411         * i386-darwin-nat.c (_initialize_i386_darwin_nat): Use
10412         add_inf_child_target.
10413         * i386-fbsd-nat.c (_initialize_i386fbsd_nat): Use
10414         add_inf_child_target.
10415         * i386-gnu-nat.c (_initialize_i386gnu_nat): Use
10416         add_inf_child_target.
10417         * i386-linux-nat.c (_initialize_i386_linux_nat): Use
10418         add_inf_child_target.
10419         * i386-nbsd-nat.c (_initialize_i386nbsd_nat): Use
10420         add_inf_child_target.
10421         * i386-obsd-nat.c (_initialize_i386obsd_nat): Use
10422         add_inf_child_target.
10423         * ia64-linux-nat.c (_initialize_ia64_linux_nat): Use
10424         add_inf_child_target.
10425         * inf-child.c (inf_child_target_info): New.
10426         (inf_child_target::info): New.
10427         (inf_child_open_target): Remove 'target' parameter.  Use
10428         get_native_target instead.
10429         (inf_child_target::open): Delete.
10430         (add_inf_child_target): New.
10431         * inf-child.h (inf_child_target) <shortname, longname, doc, open>:
10432         Delete.
10433         <info>: New.
10434         (add_inf_child_target): Declare.
10435         (inf_child_open_target): Declare.
10436         * linux-thread-db.c (thread_db_target_info): New.
10437         (thread_db_target) <shortname, longname, doc>: Delete.
10438         <info>: New.
10439         * m32r-linux-nat.c (_initialize_m32r_linux_nat): Use
10440         add_inf_child_target.
10441         * m68k-bsd-nat.c (_initialize_m68kbsd_nat): Use
10442         add_inf_child_target.
10443         * m68k-linux-nat.c (_initialize_m68k_linux_nat): Use
10444         add_inf_child_target.
10445         * m88k-bsd-nat.c (_initialize_m88kbsd_nat): Use
10446         add_inf_child_target.
10447         * make-target-delegates (print_class): Adjust.
10448         * mips-fbsd-nat.c (_initialize_mips_fbsd_nat): Use
10449         add_inf_child_target.
10450         * mips-linux-nat.c (_initialize_mips_linux_nat): Use
10451         add_inf_child_target.
10452         * mips-nbsd-nat.c (_initialize_mipsnbsd_nat): Use
10453         add_inf_child_target.
10454         * mips64-obsd-nat.c (_initialize_mips64obsd_nat): Use
10455         add_inf_child_target.
10456         * nto-procfs.c (nto_native_target_info): New.
10457         (nto_procfs_target_native) <shortname, longname, doc>:
10458         Delete.
10459         <info>: New.
10460         (nto_procfs_target_info): New.
10461         (nto_procfs_target_procfs) <shortname, longname, doc>:
10462         Delete.
10463         <info>: New.
10464         (init_procfs_targets): Adjust.
10465         * ppc-fbsd-nat.c (_initialize_ppcfbsd_nat): Use
10466         add_inf_child_target.
10467         * ppc-linux-nat.c (_initialize_ppc_linux_nat): Use
10468         add_inf_child_target.
10469         * ppc-nbsd-nat.c (_initialize_ppcnbsd_nat): Use
10470         add_inf_child_target.
10471         * ppc-obsd-nat.c (_initialize_ppcobsd_nat): Use
10472         add_inf_child_target.
10473         * ravenscar-thread.c (ravenscar_target_info): New.
10474         (ravenscar_thread_target) <shortname, longname, doc>:
10475         Delete.
10476         <info>: New.
10477         * record-btrace.c (record_btrace_target_info):
10478         (record_btrace_target) <shortname, longname, doc>: Delete.
10479         <info>: New.
10480         (record_btrace_target::open): Rename to ...
10481         (record_btrace_target_open): ... this.  Adjust.
10482         * record-full.c (record_longname, record_doc): New.
10483         (record_full_base_target) <shortname, longname, doc>: Delete.
10484         <info>: New.
10485         (record_full_target_info): New.
10486         (record_full_target): <shortname>: Delete.
10487         <info>: New.
10488         (record_full_core_open_1, record_full_open_1): Update comments.
10489         (record_full_base_target::open): Rename to ...
10490         (record_full_open): ... this.
10491         (cmd_record_full_restore): Update.
10492         (_initialize_record_full): Update.
10493         * remote-sim.c (remote_sim_target_info): New.
10494         (gdbsim_target) <shortname, longname, doc>: Delete.
10495         <info>: New.
10496         (gdbsim_target::open): Rename to ...
10497         (gdbsim_target_open): ... this.
10498         (_initialize_remote_sim): Adjust.
10499         * remote.c (remote_doc): New.
10500         (remote_target_info): New.
10501         (remote_target) <shortname, longname, doc>: Delete.
10502         <info>: New.
10503         (extended_remote_target_info): New.
10504         (extended_remote_target) <shortname, longname, doc>: Delete.
10505         <info>: New.
10506         (remote_target::open_1): Make static.  Adjust.
10507         * rs6000-nat.c (_initialize_rs6000_nat): Use add_inf_child_target.
10508         * s390-linux-nat.c (_initialize_s390_nat): Use
10509         add_inf_child_target.
10510         * sh-nbsd-nat.c (_initialize_shnbsd_nat): Use
10511         add_inf_child_target.
10512         * sol-thread.c (thread_db_target_info): New.
10513         (sol_thread_target) <shortname, longname, doc>: Delete.
10514         <info>: New.
10515         * sparc-linux-nat.c (_initialize_sparc_linux_nat): Use
10516         add_inf_child_target.
10517         * sparc-nbsd-nat.c (_initialize_sparcnbsd_nat): Use
10518         add_inf_child_target.
10519         * sparc64-fbsd-nat.c (_initialize_sparc64fbsd_nat): Use
10520         add_inf_child_target.
10521         * sparc64-linux-nat.c (_initialize_sparc64_linux_nat): Use
10522         add_inf_child_target.
10523         * sparc64-nbsd-nat.c (_initialize_sparc64nbsd_nat): Use
10524         add_inf_child_target.
10525         * sparc64-obsd-nat.c (_initialize_sparc64obsd_nat): Use
10526         add_inf_child_target.
10527         * spu-linux-nat.c (_initialize_spu_nat): Use
10528         add_inf_child_target.
10529         * spu-multiarch.c (spu_multiarch_target_info): New.
10530         (spu_multiarch_target) <shortname, longname, doc>: Delete.
10531         <info>: New.
10532         * target-delegates.c: Regenerate.
10533         * target.c: Include <unordered_map>.
10534         (target_ops_p): Delete.
10535         (DEF_VEC_P(target_ops_p)): Delete.
10536         (target_factories): New.
10537         (test_target_info): New.
10538         (test_target_ops::info): New.
10539         (open_target): Adjust to use target_factories.
10540         (add_target_with_completer): Rename to ...
10541         (add_target): ... this.  Change prototype.  Register target_info
10542         and open callback in target_factories.  Register target_info in
10543         command context instead of target_ops.
10544         (add_target): Delete old implementation.
10545         (add_deprecated_target_alias): Change prototype.  Adjust.
10546         (the_native_target): New.
10547         (set_native_target, get_native_target): New.
10548         (find_default_run_target): Use the_native_target.
10549         (find_attach_target, find_run_target): Simplify.
10550         (target_ops::open): Delete.
10551         (dummy_target_info): New.
10552         (dummy_target::shortname, dummy_target::longname)
10553         (dummy_target::doc): Delete.
10554         (dummy_target::info): New.
10555         (debug_target::shortname, debug_target::longname)
10556         (debug_target::doc): Delete.
10557         (debug_target::info): New.
10558         * target.h (struct target_info): New.
10559         (target_ops::~target_ops): Add comment.
10560         (target_ops::info): New.
10561         (target_ops::shortname, target_ops::longname, target_ops::doc): No
10562         longer virtual.  Implement in terms of target_info.
10563         (set_native_target, get_native_target): Declare.
10564         (target_open_ftype): New.
10565         (add_target, add_target_with_completer)
10566         (add_deprecated_target_alias): Change prototype.
10567         (test_target) <shortname, longname, doc>: Delete.
10568         <info>: New.
10569         * tilegx-linux-nat.c (_initialize_tile_linux_nat): Use
10570         add_inf_child_target.
10571         * tracefile-tfile.c (tfile_target_info): New.
10572         (tfile_target) <shortname, longname, doc>: Delete.
10573         <info>: New.
10574         (tfile_target::open): Rename to ...
10575         (tfile_target_open): ... this.
10576         (_initialize_tracefile_tfile): Adjust.
10577         * vax-bsd-nat.c (_initialize_vaxbsd_nat): Use
10578         add_inf_child_target.
10579         * windows-nat.c (_initialize_windows_nat): Use
10580         add_inf_child_target.
10581         * xtensa-linux-nat.c (_initialize_xtensa_linux_nat): Use
10582         add_inf_child_target.
10583
10584 2018-05-02  Pedro Alves  <palves@redhat.com>
10585
10586         * linux-nat.h (linux_nat_target) <low_new_thread,
10587         low_delete_thread, low_new_fork, low_forget_process,
10588         low_prepare_to_resume, low_siginfo_fixup, low_status_is_event>:
10589         New virtual methods.
10590         (linux_nat_set_new_thread, linux_nat_set_delete_thread)
10591         (linux_nat_new_fork_ftype, linux_nat_set_new_fork)
10592         (linux_nat_forget_process_ftype, linux_nat_set_forget_process)
10593         (linux_nat_forget_process, linux_nat_set_siginfo_fixup)
10594         (linux_nat_set_prepare_to_resume, linux_nat_set_status_is_event):
10595         Delete.
10596         * linux-fork.c (delete_fork): Adjust to call low method.
10597         * linux-nat.c (linux_nat_new_thread, linux_nat_delete_thread)
10598         (linux_nat_new_fork, linux_nat_forget_process_hook)
10599         (linux_nat_prepare_to_resume, linux_nat_siginfo_fixup)
10600         (linux_nat_status_is_event):
10601         (linux_nat_target::follow_fork, lwp_free, add_lwp, detach_one_lwp)
10602         (linux_resume_one_lwp_throw, linux_handle_extended_wait): Adjust
10603         to call low method.
10604         (sigtrap_is_event): Rename to ...
10605         (linux_nat_target::low_status_is_event): ... this.
10606         (linux_nat_set_status_is_event): Delete.
10607         (save_stop_reason, linux_nat_wait_1)
10608         (linux_nat_target::mourn_inferior, siginfo_fixup): Adjust to call
10609         low methods.
10610         (linux_nat_set_new_thread, linux_nat_set_delete_thread)
10611         (linux_nat_set_new_fork, linux_nat_set_forget_process)
10612         (linux_nat_forget_process, linux_nat_set_siginfo_fixup)
10613         (linux_nat_set_prepare_to_resume): Delete.
10614         * aarch64-linux-nat.c: All linux_nat_set_* callbacks converted to
10615         low virtual methods.
10616         * amd64-linux-nat.c: Likewise.
10617         * arm-linux-nat.c: Likewise.
10618         * i386-linux-nat.c: Likewise.
10619         * ia64-linux-nat.c: Likewise.
10620         * mips-linux-nat.c: Likewise.
10621         * ppc-linux-nat.c: Likewise.
10622         * s390-linux-nat.c: Likewise.
10623         * sparc64-linux-nat.c: Likewise.
10624         * x86-linux-nat.c: Likewise.
10625         * x86-linux-nat.h: Include "nat/x86-linux.h".
10626         (x86_linux_nat_target) <low_new_fork, low_forget_process,
10627         low_prepare_to_resume, low_new_thread, low_delete_thread>:
10628         Override methods.
10629
10630 2018-05-02  Pedro Alves  <palves@redhat.com>
10631
10632         * target.h (target_ops)
10633         <stopped_by_sw_breakpoint, supports_stopped_by_sw_breakpoint,
10634         stopped_by_hw_breakpoint, supports_stopped_by_hw_breakpoint,
10635         stopped_by_watchpoint, have_continuable_watchpoint,
10636         stopped_data_address, watchpoint_addr_within_range,
10637         can_accel_watchpoint_condition, can_run, thread_alive,
10638         has_all_memory, has_memory, has_stack, has_registers,
10639         has_execution, can_async_p, is_async_p, supports_non_stop,
10640         always_non_stop_p, can_execute_reverse, supports_multi_process,
10641         supports_enable_disable_tracepoint,
10642         supports_disable_randomization, supports_string_tracing,
10643         supports_evaluation_of_breakpoint_conditions,
10644         can_run_breakpoint_commands, filesystem_is_local,
10645         can_download_tracepoint, get_trace_state_variable_value,
10646         set_trace_notes, get_tib_address, use_agent, can_use_agent,
10647         record_is_replaying, record_will_replay,
10648         augmented_libraries_svr4_read>: Adjust to return bool.
10649         * aarch64-linux-nat.c: All implementations adjusted.
10650         * aix-thread.c: All implementations adjusted.
10651         * arm-linux-nat.c: All implementations adjusted.
10652         * breakpoint.c: All implementations adjusted.
10653         * bsd-kvm.c: All implementations adjusted.
10654         * bsd-uthread.c: All implementations adjusted.
10655         * corelow.c: All implementations adjusted.
10656         * ctf.c: All implementations adjusted.
10657         * darwin-nat.c: All implementations adjusted.
10658         * darwin-nat.h: All implementations adjusted.
10659         * exec.c: All implementations adjusted.
10660         * fbsd-nat.c: All implementations adjusted.
10661         * fbsd-nat.h: All implementations adjusted.
10662         * gnu-nat.c: All implementations adjusted.
10663         * gnu-nat.h: All implementations adjusted.
10664         * go32-nat.c: All implementations adjusted.
10665         * ia64-linux-nat.c: All implementations adjusted.
10666         * inf-child.c: All implementations adjusted.
10667         * inf-child.h: All implementations adjusted.
10668         * inf-ptrace.c: All implementations adjusted.
10669         * inf-ptrace.h: All implementations adjusted.
10670         * linux-nat.c: All implementations adjusted.
10671         * linux-nat.h: All implementations adjusted.
10672         * mips-linux-nat.c: All implementations adjusted.
10673         * nto-procfs.c: All implementations adjusted.
10674         * ppc-linux-nat.c: All implementations adjusted.
10675         * procfs.c: All implementations adjusted.
10676         * ravenscar-thread.c: All implementations adjusted.
10677         * record-btrace.c: All implementations adjusted.
10678         * record-full.c: All implementations adjusted.
10679         * remote-sim.c: All implementations adjusted.
10680         * remote.c: All implementations adjusted.
10681         * s390-linux-nat.c: All implementations adjusted.
10682         * sol-thread.c: All implementations adjusted.
10683         * spu-multiarch.c: All implementations adjusted.
10684         * target-delegates.c: All implementations adjusted.
10685         * target.c: All implementations adjusted.
10686         * target.h: All implementations adjusted.
10687         * tracefile-tfile.c: All implementations adjusted.
10688         * tracefile.c: All implementations adjusted.
10689         * tracefile.h: All implementations adjusted.
10690         * windows-nat.c: All implementations adjusted.
10691         * x86-linux-nat.h: All implementations adjusted.
10692         * x86-nat.h: All implementations adjusted.
10693
10694 2018-05-02  Pedro Alves  <palves@redhat.com>
10695
10696         * make-target-delegates (scan_target_h): Don't trim lines here.
10697         Replace sequences of tabs and/or whitespace with a single
10698         whitespace.
10699         (top level, parsing methods): Trim each line before processing it
10700         here.
10701
10702 2018-05-02  Pedro Alves  <palves@redhat.com>
10703             John Baldwin  <jhb@freebsd.org>
10704
10705         * target.h (enum strata) <debug_stratum>: New.
10706         (struct target_ops) <all delegation methods>: Replace by C++
10707         virtual methods, and drop "to_" prefix.  All references updated
10708         throughout.
10709         <to_shortname, to_longname, to_doc, to_data,
10710         to_have_steppable_watchpoint, to_have_continuable_watchpoint,
10711         to_has_thread_control, to_attach_no_wait>: Delete, replaced by
10712         virtual methods.  All references updated throughout.
10713         <can_attach, supports_terminal_ours, can_create_inferior,
10714         get_thread_control_capabilities, attach_no_wait>: New
10715         virtual methods.
10716         <insert_breakpoint, remove_breakpoint>: Now
10717         TARGET_DEFAULT_NORETURN methods.
10718         <info_proc>: Now returns bool.
10719         <to_magic>: Delete.
10720         (OPS_MAGIC): Delete.
10721         (current_target): Delete.  All references replaced by references
10722         to ...
10723         (target_stack): ... this.  New.
10724         (target_shortname, target_longname): Adjust.
10725         (target_can_run): Now a function declaration.
10726         (default_child_has_all_memory, default_child_has_memory)
10727         (default_child_has_stack, default_child_has_registers)
10728         (default_child_has_execution): Remove target_ops parameter.
10729         (complete_target_initialization): Delete.
10730         (memory_breakpoint_target): New template class.
10731         (test_target_ops): Refactor as a C++ class with virtual methods.
10732         * make-target-delegates (NAME_PART): Tighten.
10733         (POINTER_PART, CP_SYMBOL): New.
10734         (SIMPLE_RETURN_PART): Reimplement.
10735         (VEC_RETURN_PART): Expect less.
10736         (RETURN_PART, VIRTUAL_PART): New.
10737         (METHOD): Adjust to C++ virtual methods.
10738         (scan_target_h): Remove reference to C99.
10739         (dname): Output "target_ops::" prefix.
10740         (write_function_header): Adjust to output a C++ class method.
10741         (write_declaration): New.
10742         (write_delegator): Adjust to output a C++ class method.
10743         (tdname): Output "dummy_target::" prefix.
10744         (write_tdefault, write_debugmethod): Adjust to output a C++ class
10745         method.
10746         (tdefault_names, debug_names): Delete.
10747         (return_types, tdefaults, styles, argtypes_array): New.
10748         (top level): All methods are delegators.
10749         (print_class): New.
10750         (top level): Print dummy_target and debug_target classes.
10751         * target-delegates.c: Regenerate.
10752         * target-debug.h (target_debug_print_enum_info_proc_what)
10753         (target_debug_print_thread_control_capabilities)
10754         (target_debug_print_thread_info_p): New.
10755         * target.c (dummy_target): Delete.
10756         (the_dummy_target, the_debug_target): New.
10757         (target_stack): Now extern.
10758         (set_targetdebug): Push/unpush debug target.
10759         (default_child_has_all_memory, default_child_has_memory)
10760         (default_child_has_stack, default_child_has_registers)
10761         (default_child_has_execution): Remove target_ops parameter.
10762         (complete_target_initialization): Delete.
10763         (add_target_with_completer): No longer call
10764         complete_target_initialization.
10765         (target_supports_terminal_ours): Use regular delegation.
10766         (update_current_target): Delete.
10767         (push_target): No longer check magic number.  Don't call
10768         update_current_target.
10769         (unpush_target): Don't call update_current_target.
10770         (target_is_pushed): No longer check magic number.
10771         (target_require_runnable): Skip for all stratums over
10772         process_stratum.
10773         (target_ops::info_proc): New.
10774         (target_info_proc): Use find_target_at and
10775         find_default_run_target.
10776         (target_supports_disable_randomization): Use regular delegation.
10777         (target_get_osdata): Use find_target_at.
10778         (target_ops::open, target_ops::close, target_ops::can_attach)
10779         (target_ops::attach, target_ops::can_create_inferior)
10780         (target_ops::create_inferior, target_ops::can_run)
10781         (target_can_run): New.
10782         (default_fileio_target): Use regular delegation.
10783         (target_ops::fileio_open, target_ops::fileio_pwrite)
10784         (target_ops::fileio_pread, target_ops::fileio_fstat)
10785         (target_ops::fileio_close, target_ops::fileio_unlink)
10786         (target_ops::fileio_readlink): New.
10787         (target_fileio_open_1, target_fileio_unlink)
10788         (target_fileio_readlink): Always call the target method.  Handle
10789         FILEIO_ENOSYS.
10790         (return_zero, return_zero_has_execution): Delete.
10791         (init_dummy_target): Delete.
10792         (dummy_target::dummy_target, dummy_target::shortname)
10793         (dummy_target::longname, dummy_target::doc)
10794         (debug_target::debug_target, debug_target::shortname)
10795         (debug_target::longname, debug_target::doc): New.
10796         (target_supports_delete_record): Use regular delegation.
10797         (setup_target_debug): Delete.
10798         (maintenance_print_target_stack): Skip debug_stratum.
10799         (initialize_targets): Instantiate the_dummy_target and
10800         the_debug_target.
10801         * auxv.c (target_auxv_parse): Remove 'ops' parameter.  Adjust to
10802         use target_stack.
10803         (target_auxv_search, fprint_target_auxv): Adjust.
10804         (info_auxv_command): Adjust to use target_stack.
10805         * auxv.h (target_auxv_parse): Remove 'ops' parameter.
10806         * exceptions.c (print_flush): Handle a NULL target_stack.
10807         * regcache.c (target_ops_no_register): Refactor as class with
10808         virtual methods.
10809
10810         * exec.c (exec_target): New class.
10811         (exec_ops): Now an exec_target.
10812         (exec_open, exec_close_1, exec_get_section_table)
10813         (exec_xfer_partial, exec_files_info, exec_has_memory)
10814         (exec_make_note_section): Refactor as exec_target methods.
10815         (exec_file_clear, ignore, exec_remove_breakpoint, init_exec_ops):
10816         Delete.
10817         (exec_target::find_memory_regions): New.
10818         (_initialize_exec): Don't call init_exec_ops.
10819         * gdbcore.h (exec_file_clear): Delete.
10820
10821         * corefile.c (core_target): Delete.
10822         (core_file_command): Adjust.
10823         * corelow.c (core_target): New class.
10824         (the_core_target): New.
10825         (core_close): Remove target_ops parameter.
10826         (core_close_cleanup): Adjust.
10827         (core_target::close): New.
10828         (core_open, core_detach, get_core_registers, core_files_info)
10829         (core_xfer_partial, core_thread_alive, core_read_description)
10830         (core_pid_to_str, core_thread_name, core_has_memory)
10831         (core_has_stack, core_has_registers, core_info_proc): Rework as
10832         core_target methods.
10833         (ignore, core_remove_breakpoint, init_core_ops): Delete.
10834         (_initialize_corelow): Initialize the_core_target.
10835         * gdbcore.h (core_target): Delete.
10836         (the_core_target): New.
10837
10838         * ctf.c: (ctf_target): New class.
10839         (ctf_ops): Now a ctf_target.
10840         (ctf_open, ctf_close, ctf_files_info, ctf_fetch_registers)
10841         (ctf_xfer_partial, ctf_get_trace_state_variable_value)
10842         (ctf_trace_find, ctf_traceframe_info): Refactor as ctf_target
10843         methods.
10844         (init_ctf_ops): Delete.
10845         (_initialize_ctf): Don't call it.
10846         * tracefile-tfile.c (tfile_target): New class.
10847         (tfile_ops): Now a tfile_target.
10848         (tfile_open, tfile_close, tfile_files_info)
10849         (tfile_get_tracepoint_status, tfile_trace_find)
10850         (tfile_fetch_registers, tfile_xfer_partial)
10851         (tfile_get_trace_state_variable_value, tfile_traceframe_info):
10852         Refactor as tfile_target methods.
10853         (tfile_xfer_partial_features): Remove target_ops parameter.
10854         (init_tfile_ops): Delete.
10855         (_initialize_tracefile_tfile): Don't call it.
10856         * tracefile.c (tracefile_has_all_memory, tracefile_has_memory)
10857         (tracefile_has_stack, tracefile_has_registers)
10858         (tracefile_thread_alive, tracefile_get_trace_status): Refactor as
10859         tracefile_target methods.
10860         (init_tracefile_ops): Delete.
10861         (tracefile_target::tracefile_target): New.
10862         * tracefile.h: Include "target.h".
10863         (tracefile_target): New class.
10864         (init_tracefile_ops): Delete.
10865
10866         * spu-multiarch.c (spu_multiarch_target): New class.
10867         (spu_ops): Now a spu_multiarch_target.
10868         (spu_thread_architecture, spu_region_ok_for_hw_watchpoint)
10869         (spu_fetch_registers, spu_store_registers, spu_xfer_partial)
10870         (spu_search_memory, spu_mourn_inferior): Refactor as
10871         spu_multiarch_target methods.
10872         (init_spu_ops): Delete.
10873         (_initialize_spu_multiarch): Remove references to init_spu_ops,
10874         complete_target_initialization.
10875
10876         * ravenscar-thread.c (ravenscar_thread_target): New class.
10877         (ravenscar_ops): Now a ravenscar_thread_target.
10878         (ravenscar_resume, ravenscar_wait, ravenscar_update_thread_list)
10879         (ravenscar_thread_alive, ravenscar_pid_to_str)
10880         (ravenscar_fetch_registers, ravenscar_store_registers)
10881         (ravenscar_prepare_to_store, ravenscar_stopped_by_sw_breakpoint)
10882         (ravenscar_stopped_by_hw_breakpoint)
10883         (ravenscar_stopped_by_watchpoint, ravenscar_stopped_data_address)
10884         (ravenscar_mourn_inferior, ravenscar_core_of_thread)
10885         (ravenscar_get_ada_task_ptid): Refactor as ravenscar_thread_target
10886         methods.
10887         (init_ravenscar_thread_ops): Delete.
10888         (_initialize_ravenscar): Remove references to
10889         init_ravenscar_thread_ops and complete_target_initialization.
10890
10891         * bsd-uthread.c (bsd_uthread_ops_hack): Delete.
10892         (bsd_uthread_target): New class.
10893         (bsd_uthread_ops): Now a bsd_uthread_target.
10894         (bsd_uthread_activate): Adjust to refer to bsd_uthread_ops.
10895         (bsd_uthread_close, bsd_uthread_mourn_inferior)
10896         (bsd_uthread_fetch_registers, bsd_uthread_store_registers)
10897         (bsd_uthread_wait, bsd_uthread_resume, bsd_uthread_thread_alive)
10898         (bsd_uthread_update_thread_list, bsd_uthread_extra_thread_info)
10899         (bsd_uthread_pid_to_str): Refactor as bsd_uthread_target methods.
10900         (bsd_uthread_target): Delete function.
10901         (_initialize_bsd_uthread): Remove reference to
10902         complete_target_initialization.
10903
10904         * bfd-target.c (target_bfd_data): Delete.  Fields folded into ...
10905         (target_bfd): ... this new class.
10906         (target_bfd_xfer_partial, target_bfd_get_section_table)
10907         (target_bfd_close): Refactor as target_bfd methods.
10908         (target_bfd::~target_bfd): New.
10909         (target_bfd_reopen): Adjust.
10910         (target_bfd::close): New.
10911
10912         * record-btrace.c (record_btrace_target): New class.
10913         (record_btrace_ops): Now a record_btrace_target.
10914         (record_btrace_open, record_btrace_stop_recording)
10915         (record_btrace_disconnect, record_btrace_close)
10916         (record_btrace_async, record_btrace_info)
10917         (record_btrace_insn_history, record_btrace_insn_history_range)
10918         (record_btrace_insn_history_from, record_btrace_call_history)
10919         (record_btrace_call_history_range)
10920         (record_btrace_call_history_from, record_btrace_record_method)
10921         (record_btrace_is_replaying, record_btrace_will_replay)
10922         (record_btrace_xfer_partial, record_btrace_insert_breakpoint)
10923         (record_btrace_remove_breakpoint, record_btrace_fetch_registers)
10924         (record_btrace_store_registers, record_btrace_prepare_to_store)
10925         (record_btrace_to_get_unwinder)
10926         (record_btrace_to_get_tailcall_unwinder, record_btrace_resume)
10927         (record_btrace_commit_resume, record_btrace_wait)
10928         (record_btrace_stop, record_btrace_can_execute_reverse)
10929         (record_btrace_stopped_by_sw_breakpoint)
10930         (record_btrace_supports_stopped_by_sw_breakpoint)
10931         (record_btrace_stopped_by_hw_breakpoint)
10932         (record_btrace_supports_stopped_by_hw_breakpoint)
10933         (record_btrace_update_thread_list, record_btrace_thread_alive)
10934         (record_btrace_goto_begin, record_btrace_goto_end)
10935         (record_btrace_goto, record_btrace_stop_replaying_all)
10936         (record_btrace_execution_direction)
10937         (record_btrace_prepare_to_generate_core)
10938         (record_btrace_done_generating_core): Refactor as
10939         record_btrace_target methods.
10940         (init_record_btrace_ops): Delete.
10941         (_initialize_record_btrace): Remove reference to
10942         init_record_btrace_ops.
10943         * record-full.c (RECORD_FULL_IS_REPLAY): Adjust to always refer to
10944         the execution_direction global.
10945         (record_full_base_target, record_full_target)
10946         (record_full_core_target): New classes.
10947         (record_full_ops): Now a record_full_target.
10948         (record_full_core_ops): Now a record_full_core_target.
10949         (record_full_target::detach, record_full_target::disconnect)
10950         (record_full_core_target::disconnect)
10951         (record_full_target::mourn_inferior, record_full_target::kill):
10952         New.
10953         (record_full_open, record_full_close, record_full_async): Refactor
10954         as methods of the record_full_base_target class.
10955         (record_full_resume, record_full_commit_resume): Refactor
10956         as methods of the record_full_target class.
10957         (record_full_wait, record_full_stopped_by_watchpoint)
10958         (record_full_stopped_data_address)
10959         (record_full_stopped_by_sw_breakpoint)
10960         (record_full_supports_stopped_by_sw_breakpoint)
10961         (record_full_stopped_by_hw_breakpoint)
10962         (record_full_supports_stopped_by_hw_breakpoint): Refactor as
10963         methods of the record_full_base_target class.
10964         (record_full_store_registers, record_full_xfer_partial)
10965         (record_full_insert_breakpoint, record_full_remove_breakpoint):
10966         Refactor as methods of the record_full_target class.
10967         (record_full_can_execute_reverse, record_full_get_bookmark)
10968         (record_full_goto_bookmark, record_full_execution_direction)
10969         (record_full_record_method, record_full_info, record_full_delete)
10970         (record_full_is_replaying, record_full_will_replay)
10971         (record_full_goto_begin, record_full_goto_end, record_full_goto)
10972         (record_full_stop_replaying): Refactor as methods of the
10973         record_full_base_target class.
10974         (record_full_core_resume, record_full_core_kill)
10975         (record_full_core_fetch_registers)
10976         (record_full_core_prepare_to_store)
10977         (record_full_core_store_registers, record_full_core_xfer_partial)
10978         (record_full_core_insert_breakpoint)
10979         (record_full_core_remove_breakpoint)
10980         (record_full_core_has_execution): Refactor
10981         as methods of the record_full_core_target class.
10982         (record_full_base_target::supports_delete_record): New.
10983         (init_record_full_ops): Delete.
10984         (init_record_full_core_ops): Delete.
10985         (record_full_save): Refactor as method of the
10986         record_full_base_target class.
10987         (_initialize_record_full): Remove references to
10988         init_record_full_ops and init_record_full_core_ops.
10989
10990         * remote.c (remote_target, extended_remote_target): New classes.
10991         (remote_ops): Now a remote_target.
10992         (extended_remote_ops): Now an extended_remote_target.
10993         (remote_insert_fork_catchpoint, remote_remove_fork_catchpoint)
10994         (remote_insert_vfork_catchpoint, remote_remove_vfork_catchpoint)
10995         (remote_insert_exec_catchpoint, remote_remove_exec_catchpoint)
10996         (remote_pass_signals, remote_set_syscall_catchpoint)
10997         (remote_program_signals, )
10998         (remote_thread_always_alive): Remove target_ops parameter.
10999         (remote_thread_alive, remote_thread_name)
11000         (remote_update_thread_list, remote_threads_extra_info)
11001         (remote_static_tracepoint_marker_at)
11002         (remote_static_tracepoint_markers_by_strid)
11003         (remote_get_ada_task_ptid, remote_close, remote_start_remote)
11004         (remote_open): Refactor as methods of remote_target.
11005         (extended_remote_open, extended_remote_detach)
11006         (extended_remote_attach, extended_remote_post_attach):
11007         (extended_remote_supports_disable_randomization)
11008         (extended_remote_create_inferior): : Refactor as method of
11009         extended_remote_target.
11010         (remote_set_permissions, remote_open_1, remote_detach)
11011         (remote_follow_fork, remote_follow_exec, remote_disconnect)
11012         (remote_resume, remote_commit_resume, remote_stop)
11013         (remote_interrupt, remote_pass_ctrlc, remote_terminal_inferior)
11014         (remote_terminal_ours, remote_wait, remote_fetch_registers)
11015         (remote_prepare_to_store, remote_store_registers)
11016         (remote_flash_erase, remote_flash_done, remote_files_info)
11017         (remote_kill, remote_mourn, remote_insert_breakpoint)
11018         (remote_remove_breakpoint, remote_insert_watchpoint)
11019         (remote_watchpoint_addr_within_range)
11020         (remote_remove_watchpoint, remote_region_ok_for_hw_watchpoint)
11021         (remote_check_watch_resources, remote_stopped_by_sw_breakpoint)
11022         (remote_supports_stopped_by_sw_breakpoint)
11023         (remote_stopped_by_hw_breakpoint)
11024         (remote_supports_stopped_by_hw_breakpoint)
11025         (remote_stopped_by_watchpoint, remote_stopped_data_address)
11026         (remote_insert_hw_breakpoint, remote_remove_hw_breakpoint)
11027         (remote_verify_memory): Refactor as methods of remote_target.
11028         (remote_write_qxfer, remote_read_qxfer): Remove target_ops
11029         parameter.
11030         (remote_xfer_partial, remote_get_memory_xfer_limit)
11031         (remote_search_memory, remote_rcmd, remote_memory_map)
11032         (remote_pid_to_str, remote_get_thread_local_address)
11033         (remote_get_tib_address, remote_read_description): Refactor as
11034         methods of remote_target.
11035         (remote_target::fileio_open, remote_target::fileio_pwrite)
11036         (remote_target::fileio_pread, remote_target::fileio_close): New.
11037         (remote_hostio_readlink, remote_hostio_fstat)
11038         (remote_filesystem_is_local, remote_can_execute_reverse)
11039         (remote_supports_non_stop, remote_supports_disable_randomization)
11040         (remote_supports_multi_process, remote_supports_cond_breakpoints)
11041         (remote_supports_enable_disable_tracepoint)
11042         (remote_supports_string_tracing)
11043         (remote_can_run_breakpoint_commands, remote_trace_init)
11044         (remote_download_tracepoint, remote_can_download_tracepoint)
11045         (remote_download_trace_state_variable, remote_enable_tracepoint)
11046         (remote_disable_tracepoint, remote_trace_set_readonly_regions)
11047         (remote_trace_start, remote_get_trace_status)
11048         (remote_get_tracepoint_status, remote_trace_stop)
11049         (remote_trace_find, remote_get_trace_state_variable_value)
11050         (remote_save_trace_data, remote_get_raw_trace_data)
11051         (remote_set_disconnected_tracing, remote_core_of_thread)
11052         (remote_set_circular_trace_buffer, remote_traceframe_info)
11053         (remote_get_min_fast_tracepoint_insn_len)
11054         (remote_set_trace_buffer_size, remote_set_trace_notes)
11055         (remote_use_agent, remote_can_use_agent, remote_enable_btrace)
11056         (remote_disable_btrace, remote_teardown_btrace)
11057         (remote_read_btrace, remote_btrace_conf)
11058         (remote_augmented_libraries_svr4_read, remote_load)
11059         (remote_pid_to_exec_file, remote_can_do_single_step)
11060         (remote_execution_direction, remote_thread_handle_to_thread_info):
11061         Refactor as methods of remote_target.
11062         (init_remote_ops, init_extended_remote_ops): Delete.
11063         (remote_can_async_p, remote_is_async_p, remote_async)
11064         (remote_thread_events, remote_upload_tracepoints)
11065         (remote_upload_trace_state_variables): Refactor as methods of
11066         remote_target.
11067         (_initialize_remote): Remove references to init_remote_ops and
11068         init_extended_remote_ops.
11069
11070         * remote-sim.c (gdbsim_target): New class.
11071         (gdbsim_fetch_register, gdbsim_store_register, gdbsim_kill)
11072         (gdbsim_load, gdbsim_create_inferior, gdbsim_open, gdbsim_close)
11073         (gdbsim_detach, gdbsim_resume, gdbsim_interrupt)
11074         (gdbsim_wait, gdbsim_prepare_to_store, gdbsim_xfer_partial)
11075         (gdbsim_files_info, gdbsim_mourn_inferior, gdbsim_thread_alive)
11076         (gdbsim_pid_to_str, gdbsim_has_all_memory, gdbsim_has_memory):
11077         Refactor as methods of gdbsim_target.
11078         (gdbsim_ops): Now a gdbsim_target.
11079         (init_gdbsim_ops): Delete.
11080         (gdbsim_cntrl_c): Adjust.
11081         (_initialize_remote_sim): Remove reference to init_gdbsim_ops.
11082
11083         * amd64-linux-nat.c (amd64_linux_nat_target): New class.
11084         (the_amd64_linux_nat_target): New.
11085         (amd64_linux_fetch_inferior_registers)
11086         (amd64_linux_store_inferior_registers): Refactor as methods of
11087         amd64_linux_nat_target.
11088         (_initialize_amd64_linux_nat): Adjust.  Set linux_target.
11089         * i386-linux-nat.c: Don't include "linux-nat.h".
11090         (i386_linux_nat_target): New class.
11091         (the_i386_linux_nat_target): New.
11092         (i386_linux_fetch_inferior_registers)
11093         (i386_linux_store_inferior_registers, i386_linux_resume): Refactor
11094         as methods of i386_linux_nat_target.
11095         (_initialize_i386_linux_nat): Adjust.  Set linux_target.
11096         * inf-child.c (inf_child_ops): Delete.
11097         (inf_child_fetch_inferior_registers)
11098         (inf_child_store_inferior_registers): Delete.
11099         (inf_child_post_attach, inf_child_prepare_to_store): Refactor as
11100         methods of inf_child_target.
11101         (inf_child_target::supports_terminal_ours)
11102         (inf_child_target::terminal_init)
11103         (inf_child_target::terminal_inferior)
11104         (inf_child_target::terminal_ours_for_output)
11105         (inf_child_target::terminal_ours, inf_child_target::interrupt)
11106         (inf_child_target::pass_ctrlc, inf_child_target::terminal_info):
11107         New.
11108         (inf_child_open, inf_child_disconnect, inf_child_close)
11109         (inf_child_mourn_inferior, inf_child_maybe_unpush_target)
11110         (inf_child_post_startup_inferior, inf_child_can_run)
11111         (inf_child_pid_to_exec_file): Refactor as methods of
11112         inf_child_target.
11113         (inf_child_follow_fork): Delete.
11114         (inf_child_target::can_create_inferior)
11115         (inf_child_target::can_attach): New.
11116         (inf_child_target::has_all_memory, inf_child_target::has_memory)
11117         (inf_child_target::has_stack, inf_child_target::has_registers)
11118         (inf_child_target::has_execution): New.
11119         (inf_child_fileio_open, inf_child_fileio_pwrite)
11120         (inf_child_fileio_pread, inf_child_fileio_fstat)
11121         (inf_child_fileio_close, inf_child_fileio_unlink)
11122         (inf_child_fileio_readlink, inf_child_use_agent)
11123         (inf_child_can_use_agent): Refactor as methods of
11124         inf_child_target.
11125         (return_zero, inf_child_target): Delete.
11126         (inf_child_target::inf_child_target): New.
11127         * inf-child.h: Include "target.h".
11128         (inf_child_target): Delete function prototype.
11129         (inf_child_target): New class.
11130         (inf_child_open_target, inf_child_mourn_inferior)
11131         (inf_child_maybe_unpush_target): Delete.
11132         * inf-ptrace.c (inf_ptrace_target::~inf_ptrace_target): New.
11133         (inf_ptrace_follow_fork, inf_ptrace_insert_fork_catchpoint)
11134         (inf_ptrace_remove_fork_catchpoint, inf_ptrace_create_inferior)
11135         (inf_ptrace_post_startup_inferior, inf_ptrace_mourn_inferior)
11136         (inf_ptrace_attach, inf_ptrace_post_attach, inf_ptrace_detach)
11137         (inf_ptrace_detach_success, inf_ptrace_kill, inf_ptrace_resume)
11138         (inf_ptrace_wait, inf_ptrace_xfer_partial)
11139         (inf_ptrace_thread_alive, inf_ptrace_files_info)
11140         (inf_ptrace_pid_to_str, inf_ptrace_auxv_parse): Refactor as
11141         methods of inf_ptrace_target.
11142         (inf_ptrace_target): Delete function.
11143         * inf-ptrace.h: Include "inf-child.h".
11144         (inf_ptrace_target): Delete function declaration.
11145         (inf_ptrace_target): New class.
11146         (inf_ptrace_trad_target, inf_ptrace_detach_success): Delete.
11147         * linux-nat.c (linux_target): New.
11148         (linux_ops, linux_ops_saved, super_xfer_partial): Delete.
11149         (linux_nat_target::~linux_nat_target): New.
11150         (linux_child_post_attach, linux_child_post_startup_inferior)
11151         (linux_child_follow_fork, linux_child_insert_fork_catchpoint)
11152         (linux_child_remove_fork_catchpoint)
11153         (linux_child_insert_vfork_catchpoint)
11154         (linux_child_remove_vfork_catchpoint)
11155         (linux_child_insert_exec_catchpoint)
11156         (linux_child_remove_exec_catchpoint)
11157         (linux_child_set_syscall_catchpoint, linux_nat_pass_signals)
11158         (linux_nat_create_inferior, linux_nat_attach, linux_nat_detach)
11159         (linux_nat_resume, linux_nat_stopped_by_watchpoint)
11160         (linux_nat_stopped_data_address)
11161         (linux_nat_stopped_by_sw_breakpoint)
11162         (linux_nat_supports_stopped_by_sw_breakpoint)
11163         (linux_nat_stopped_by_hw_breakpoint)
11164         (linux_nat_supports_stopped_by_hw_breakpoint, linux_nat_wait)
11165         (linux_nat_kill, linux_nat_mourn_inferior)
11166         (linux_nat_xfer_partial, linux_nat_thread_alive)
11167         (linux_nat_update_thread_list, linux_nat_pid_to_str)
11168         (linux_nat_thread_name, linux_child_pid_to_exec_file)
11169         (linux_child_static_tracepoint_markers_by_strid)
11170         (linux_nat_is_async_p, linux_nat_can_async_p)
11171         (linux_nat_supports_non_stop, linux_nat_always_non_stop_p)
11172         (linux_nat_supports_multi_process)
11173         (linux_nat_supports_disable_randomization, linux_nat_async)
11174         (linux_nat_stop, linux_nat_close, linux_nat_thread_address_space)
11175         (linux_nat_core_of_thread, linux_nat_filesystem_is_local)
11176         (linux_nat_fileio_open, linux_nat_fileio_readlink)
11177         (linux_nat_fileio_unlink, linux_nat_thread_events): Refactor as
11178         methods of linux_nat_target.
11179         (linux_nat_wait_1, linux_xfer_siginfo, linux_proc_xfer_partial)
11180         (linux_proc_xfer_spu, linux_nat_xfer_osdata): Remove target_ops
11181         parameter.
11182         (check_stopped_by_watchpoint): Adjust.
11183         (linux_xfer_partial): Delete.
11184         (linux_target_install_ops, linux_target, linux_nat_add_target):
11185         Delete.
11186         (linux_nat_target::linux_nat_target): New.
11187         * linux-nat.h: Include "inf-ptrace.h".
11188         (linux_nat_target): New.
11189         (linux_target, linux_target_install_ops, linux_nat_add_target):
11190         Delete function declarations.
11191         (linux_target): Declare global.
11192         * linux-thread-db.c (thread_db_target): New.
11193         (thread_db_target::thread_db_target): New.
11194         (thread_db_ops): Delete.
11195         (the_thread_db_target): New.
11196         (thread_db_detach, thread_db_wait, thread_db_mourn_inferior)
11197         (thread_db_update_thread_list, thread_db_pid_to_str)
11198         (thread_db_extra_thread_info)
11199         (thread_db_thread_handle_to_thread_info)
11200         (thread_db_get_thread_local_address, thread_db_get_ada_task_ptid)
11201         (thread_db_resume): Refactor as methods of thread_db_target.
11202         (init_thread_db_ops): Delete.
11203         (_initialize_thread_db): Remove reference to init_thread_db_ops.
11204         * x86-linux-nat.c: Don't include "linux-nat.h".
11205         (super_post_startup_inferior): Delete.
11206         (x86_linux_nat_target::~x86_linux_nat_target): New.
11207         (x86_linux_child_post_startup_inferior)
11208         (x86_linux_read_description, x86_linux_enable_btrace)
11209         (x86_linux_disable_btrace, x86_linux_teardown_btrace)
11210         (x86_linux_read_btrace, x86_linux_btrace_conf): Refactor as
11211         methods of x86_linux_nat_target.
11212         (x86_linux_create_target): Delete.  Bits folded ...
11213         (x86_linux_add_target): ... here.  Now takes a linux_nat_target
11214         pointer.
11215         * x86-linux-nat.h: Include "linux-nat.h" and "x86-nat.h".
11216         (x86_linux_nat_target): New class.
11217         (x86_linux_create_target): Delete.
11218         (x86_linux_add_target): Now takes a linux_nat_target pointer.
11219         * x86-nat.c (x86_insert_watchpoint, x86_remove_watchpoint)
11220         (x86_region_ok_for_watchpoint, x86_stopped_data_address)
11221         (x86_stopped_by_watchpoint, x86_insert_hw_breakpoint)
11222         (x86_remove_hw_breakpoint, x86_can_use_hw_breakpoint)
11223         (x86_stopped_by_hw_breakpoint): Remove target_ops parameter and
11224         make extern.
11225         (x86_use_watchpoints): Delete.
11226         * x86-nat.h: Include "breakpoint.h" and "target.h".
11227         (x86_use_watchpoints): Delete.
11228         (x86_can_use_hw_breakpoint, x86_region_ok_for_hw_watchpoint)
11229         (x86_stopped_by_watchpoint, x86_stopped_data_address)
11230         (x86_insert_watchpoint, x86_remove_watchpoint)
11231         (x86_insert_hw_breakpoint, x86_remove_hw_breakpoint)
11232         (x86_stopped_by_hw_breakpoint): New declarations.
11233         (x86_nat_target): New template class.
11234
11235         * ppc-linux-nat.c (ppc_linux_nat_target): New class.
11236         (the_ppc_linux_nat_target): New.
11237         (ppc_linux_fetch_inferior_registers)
11238         (ppc_linux_can_use_hw_breakpoint)
11239         (ppc_linux_region_ok_for_hw_watchpoint)
11240         (ppc_linux_ranged_break_num_registers)
11241         (ppc_linux_insert_hw_breakpoint, ppc_linux_remove_hw_breakpoint)
11242         (ppc_linux_insert_mask_watchpoint)
11243         (ppc_linux_remove_mask_watchpoint)
11244         (ppc_linux_can_accel_watchpoint_condition)
11245         (ppc_linux_insert_watchpoint, ppc_linux_remove_watchpoint)
11246         (ppc_linux_stopped_data_address, ppc_linux_stopped_by_watchpoint)
11247         (ppc_linux_watchpoint_addr_within_range)
11248         (ppc_linux_masked_watch_num_registers)
11249         (ppc_linux_store_inferior_registers, ppc_linux_auxv_parse)
11250         (ppc_linux_read_description): Refactor as methods of
11251         ppc_linux_nat_target.
11252         (_initialize_ppc_linux_nat): Adjust.  Set linux_target.
11253
11254         * procfs.c (procfs_xfer_partial): Delete forward declaration.
11255         (procfs_target): New class.
11256         (the_procfs_target): New.
11257         (procfs_target): Delete function.
11258         (procfs_auxv_parse, procfs_attach, procfs_detach)
11259         (procfs_fetch_registers, procfs_store_registers, procfs_wait)
11260         (procfs_xfer_partial, procfs_resume, procfs_pass_signals)
11261         (procfs_files_info, procfs_kill_inferior, procfs_mourn_inferior)
11262         (procfs_create_inferior, procfs_update_thread_list)
11263         (procfs_thread_alive, procfs_pid_to_str)
11264         (procfs_can_use_hw_breakpoint, procfs_stopped_by_watchpoint)
11265         (procfs_stopped_data_address, procfs_insert_watchpoint)
11266         (procfs_remove_watchpoint, procfs_region_ok_for_hw_watchpoint)
11267         (proc_find_memory_regions, procfs_info_proc)
11268         (procfs_make_note_section): Refactor as methods of procfs_target.
11269         (_initialize_procfs): Adjust.
11270         * sol-thread.c (sol_thread_target): New class.
11271         (sol_thread_ops): Now a sol_thread_target.
11272         (sol_thread_detach, sol_thread_resume, sol_thread_wait)
11273         (sol_thread_fetch_registers, sol_thread_store_registers)
11274         (sol_thread_xfer_partial, sol_thread_mourn_inferior)
11275         (sol_thread_alive, solaris_pid_to_str, sol_update_thread_list)
11276         (sol_get_ada_task_ptid): Refactor as methods of sol_thread_target.
11277         (init_sol_thread_ops): Delete.
11278         (_initialize_sol_thread): Adjust.  Remove references to
11279         init_sol_thread_ops and complete_target_initialization.
11280
11281         * windows-nat.c (windows_nat_target): New class.
11282         (windows_fetch_inferior_registers)
11283         (windows_store_inferior_registers, windows_resume, windows_wait)
11284         (windows_attach, windows_detach, windows_pid_to_exec_file)
11285         (windows_files_info, windows_create_inferior)
11286         (windows_mourn_inferior, windows_interrupt, windows_kill_inferior)
11287         (windows_close, windows_pid_to_str, windows_xfer_partial)
11288         (windows_get_tib_address, windows_get_ada_task_ptid)
11289         (windows_thread_name, windows_thread_alive): Refactor as
11290         windows_nat_target methods.
11291         (do_initial_windows_stuff): Adjust.
11292         (windows_target): Delete function.
11293         (_initialize_windows_nat): Adjust.
11294
11295         * darwin-nat.c (darwin_resume, darwin_wait_to, darwin_interrupt)
11296         (darwin_mourn_inferior, darwin_kill_inferior)
11297         (darwin_create_inferior, darwin_attach, darwin_detach)
11298         (darwin_pid_to_str, darwin_thread_alive, darwin_xfer_partial)
11299         (darwin_pid_to_exec_file, darwin_get_ada_task_ptid)
11300         (darwin_supports_multi_process): Refactor as darwin_nat_target
11301         methods.
11302         (darwin_resume_to, darwin_files_info): Delete.
11303         (_initialize_darwin_inferior): Rename to ...
11304         (_initialize_darwin_nat): ... this.  Adjust to C++ification.
11305         * darwin-nat.h: Include "inf-child.h".
11306         (darwin_nat_target): New class.
11307         (darwin_complete_target): Delete.
11308         * i386-darwin-nat.c (i386_darwin_nat_target): New class.
11309         (darwin_target): New.
11310         (i386_darwin_fetch_inferior_registers)
11311         (i386_darwin_store_inferior_registers): Refactor as methods of
11312         darwin_nat_target.
11313         (darwin_complete_target): Delete, with ...
11314         (_initialize_i386_darwin_nat): ... bits factored out here.
11315
11316         * alpha-linux-nat.c (alpha_linux_nat_target): New class.
11317         (the_alpha_linux_nat_target): New.
11318         (alpha_linux_register_u_offset): Refactor as
11319         alpha_linux_nat_target method.
11320         (_initialize_alpha_linux_nat): Adjust.
11321         * linux-nat-trad.c (inf_ptrace_register_u_offset): Delete.
11322         (inf_ptrace_fetch_register, inf_ptrace_fetch_registers)
11323         (inf_ptrace_store_register, inf_ptrace_store_registers): Refact as
11324         methods of linux_nat_trad_target.
11325         (linux_trad_target): Delete.
11326         * linux-nat-trad.h (linux_trad_target): Delete function.
11327         (linux_nat_trad_target): New class.
11328         * mips-linux-nat.c (mips_linux_nat_target): New class.
11329         (super_fetch_registers, super_store_registers, super_close):
11330         Delete.
11331         (the_mips_linux_nat_target): New.
11332         (mips64_linux_regsets_fetch_registers)
11333         (mips64_linux_regsets_store_registers)
11334         (mips64_linux_fetch_registers, mips64_linux_store_registers)
11335         (mips_linux_register_u_offset, mips_linux_read_description)
11336         (mips_linux_can_use_hw_breakpoint)
11337         (mips_linux_stopped_by_watchpoint)
11338         (mips_linux_stopped_data_address)
11339         (mips_linux_region_ok_for_hw_watchpoint)
11340         (mips_linux_insert_watchpoint, mips_linux_remove_watchpoint)
11341         (mips_linux_close): Refactor as methods of mips_linux_nat.
11342         (_initialize_mips_linux_nat): Adjust to C++ification.
11343
11344         * aix-thread.c (aix_thread_target): New class.
11345         (aix_thread_ops): Now an aix_thread_target.
11346         (aix_thread_detach, aix_thread_resume, aix_thread_wait)
11347         (aix_thread_fetch_registers, aix_thread_store_registers)
11348         (aix_thread_xfer_partial, aix_thread_mourn_inferior)
11349         (aix_thread_thread_alive, aix_thread_pid_to_str)
11350         (aix_thread_extra_thread_info, aix_thread_get_ada_task_ptid):
11351         Refactor as methods of aix_thread_target.
11352         (init_aix_thread_ops): Delete.
11353         (_initialize_aix_thread): Remove references to init_aix_thread_ops
11354         and complete_target_initialization.
11355         * rs6000-nat.c (rs6000_xfer_shared_libraries): Delete.
11356         (rs6000_nat_target): New class.
11357         (the_rs6000_nat_target): New.
11358         (rs6000_fetch_inferior_registers, rs6000_store_inferior_registers)
11359         (rs6000_xfer_partial, rs6000_wait, rs6000_create_inferior)
11360         (rs6000_xfer_shared_libraries): Refactor as rs6000_nat_target methods.
11361         (super_create_inferior): Delete.
11362         (_initialize_rs6000_nat): Adjust to C++ification.
11363
11364         * arm-linux-nat.c (arm_linux_nat_target): New class.
11365         (the_arm_linux_nat_target): New.
11366         (arm_linux_fetch_inferior_registers)
11367         (arm_linux_store_inferior_registers, arm_linux_read_description)
11368         (arm_linux_can_use_hw_breakpoint, arm_linux_insert_hw_breakpoint)
11369         (arm_linux_remove_hw_breakpoint)
11370         (arm_linux_region_ok_for_hw_watchpoint)
11371         (arm_linux_insert_watchpoint, arm_linux_remove_watchpoint)
11372         (arm_linux_stopped_data_address, arm_linux_stopped_by_watchpoint)
11373         (arm_linux_watchpoint_addr_within_range): Refactor as methods of
11374         arm_linux_nat_target.
11375         (_initialize_arm_linux_nat): Adjust to C++ification.
11376
11377         * aarch64-linux-nat.c (aarch64_linux_nat_target): New class.
11378         (the_aarch64_linux_nat_target): New.
11379         (aarch64_linux_fetch_inferior_registers)
11380         (aarch64_linux_store_inferior_registers)
11381         (aarch64_linux_child_post_startup_inferior)
11382         (aarch64_linux_read_description)
11383         (aarch64_linux_can_use_hw_breakpoint)
11384         (aarch64_linux_insert_hw_breakpoint)
11385         (aarch64_linux_remove_hw_breakpoint)
11386         (aarch64_linux_insert_watchpoint, aarch64_linux_remove_watchpoint)
11387         (aarch64_linux_region_ok_for_hw_watchpoint)
11388         (aarch64_linux_stopped_data_address)
11389         (aarch64_linux_stopped_by_watchpoint)
11390         (aarch64_linux_watchpoint_addr_within_range)
11391         (aarch64_linux_can_do_single_step): Refactor as methods of
11392         aarch64_linux_nat_target.
11393         (super_post_startup_inferior): Delete.
11394         (_initialize_aarch64_linux_nat): Adjust to C++ification.
11395
11396         * hppa-linux-nat.c (hppa_linux_nat_target): New class.
11397         (the_hppa_linux_nat_target): New.
11398         (hppa_linux_fetch_inferior_registers)
11399         (hppa_linux_store_inferior_registers): Refactor as methods of
11400         hppa_linux_nat_target.
11401         (_initialize_hppa_linux_nat): Adjust to C++ification.
11402
11403         * ia64-linux-nat.c (ia64_linux_nat_target): New class.
11404         (the_ia64_linux_nat_target): New.
11405         (ia64_linux_insert_watchpoint, ia64_linux_remove_watchpoint)
11406         (ia64_linux_stopped_data_address)
11407         (ia64_linux_stopped_by_watchpoint, ia64_linux_fetch_registers)
11408         (ia64_linux_store_registers, ia64_linux_xfer_partial): Refactor as
11409         ia64_linux_nat_target methods.
11410         (super_xfer_partial): Delete.
11411         (_initialize_ia64_linux_nat): Adjust to C++ification.
11412
11413         * m32r-linux-nat.c (m32r_linux_nat_target): New class.
11414         (the_m32r_linux_nat_target): New.
11415         (m32r_linux_fetch_inferior_registers)
11416         (m32r_linux_store_inferior_registers): Refactor as
11417         m32r_linux_nat_target methods.
11418         (_initialize_m32r_linux_nat): Adjust to C++ification.
11419
11420         * m68k-linux-nat.c (m68k_linux_nat_target): New class.
11421         (the_m68k_linux_nat_target): New.
11422         (m68k_linux_fetch_inferior_registers)
11423         (m68k_linux_store_inferior_registers): Refactor as
11424         m68k_linux_nat_target methods.
11425         (_initialize_m68k_linux_nat): Adjust to C++ification.
11426
11427         * s390-linux-nat.c (s390_linux_nat_target): New class.
11428         (the_s390_linux_nat_target): New.
11429         (s390_linux_fetch_inferior_registers)
11430         (s390_linux_store_inferior_registers, s390_stopped_by_watchpoint)
11431         (s390_insert_watchpoint, s390_remove_watchpoint)
11432         (s390_can_use_hw_breakpoint, s390_insert_hw_breakpoint)
11433         (s390_remove_hw_breakpoint, s390_region_ok_for_hw_watchpoint)
11434         (s390_auxv_parse, s390_read_description): Refactor as methods of
11435         s390_linux_nat_target.
11436         (_initialize_s390_nat): Adjust to C++ification.
11437
11438         * sparc-linux-nat.c (sparc_linux_nat_target): New class.
11439         (the_sparc_linux_nat_target): New.
11440         (_initialize_sparc_linux_nat): Adjust to C++ification.
11441         * sparc-nat.c (sparc_fetch_inferior_registers)
11442         (sparc_store_inferior_registers): Remove target_ops parameter.
11443         * sparc-nat.h (sparc_fetch_inferior_registers)
11444         (sparc_store_inferior_registers): Remove target_ops parameter.
11445         * sparc64-linux-nat.c (sparc64_linux_nat_target): New class.
11446         (the_sparc64_linux_nat_target): New.
11447         (_initialize_sparc64_linux_nat): Adjust to C++ification.
11448
11449         * spu-linux-nat.c (spu_linux_nat_target): New class.
11450         (the_spu_linux_nat_target): New.
11451         (spu_child_post_startup_inferior, spu_child_post_attach)
11452         (spu_child_wait, spu_fetch_inferior_registers)
11453         (spu_store_inferior_registers, spu_xfer_partial)
11454         (spu_can_use_hw_breakpoint): Refactor as spu_linux_nat_target
11455         methods.
11456         (_initialize_spu_nat): Adjust to C++ification.
11457
11458         * tilegx-linux-nat.c (tilegx_linux_nat_target): New class.
11459         (the_tilegx_linux_nat_target): New.
11460         (fetch_inferior_registers, store_inferior_registers):
11461         Refactor as methods.
11462         (_initialize_tile_linux_nat): Adjust to C++ification.
11463
11464         * xtensa-linux-nat.c (xtensa_linux_nat_target): New class.
11465         (the_xtensa_linux_nat_target): New.
11466         (xtensa_linux_fetch_inferior_registers)
11467         (xtensa_linux_store_inferior_registers): Refactor as
11468         xtensa_linux_nat_target methods.
11469         (_initialize_xtensa_linux_nat): Adjust to C++ification.
11470
11471         * fbsd-nat.c (USE_SIGTRAP_SIGINFO): Delete.
11472         (fbsd_pid_to_exec_file, fbsd_find_memory_regions)
11473         (fbsd_find_memory_regions, fbsd_info_proc, fbsd_xfer_partial)
11474         (fbsd_thread_alive, fbsd_pid_to_str, fbsd_thread_name)
11475         (fbsd_update_thread_list, fbsd_resume, fbsd_wait)
11476         (fbsd_stopped_by_sw_breakpoint)
11477         (fbsd_supports_stopped_by_sw_breakpoint, fbsd_follow_fork)
11478         (fbsd_insert_fork_catchpoint, fbsd_remove_fork_catchpoint)
11479         (fbsd_insert_vfork_catchpoint, fbsd_remove_vfork_catchpoint)
11480         (fbsd_post_startup_inferior, fbsd_post_attach)
11481         (fbsd_insert_exec_catchpoint, fbsd_remove_exec_catchpoint)
11482         (fbsd_set_syscall_catchpoint)
11483         (super_xfer_partial, super_resume, super_wait)
11484         (fbsd_supports_stopped_by_hw_breakpoint): Delete.
11485         (fbsd_handle_debug_trap): Remove target_ops parameter.
11486         (fbsd_nat_add_target): Delete.
11487         * fbsd-nat.h: Include "inf-ptrace.h".
11488         (fbsd_nat_add_target): Delete.
11489         (USE_SIGTRAP_SIGINFO): Define.
11490         (fbsd_nat_target): New class.
11491
11492         * amd64-bsd-nat.c (amd64bsd_fetch_inferior_registers)
11493         (amd64bsd_store_inferior_registers): Remove target_ops parameter.
11494         (amd64bsd_target): Delete.
11495         * amd64-bsd-nat.h: New file.
11496         * amd64-fbsd-nat.c: Include "amd64-bsd-nat.h" instead of
11497         "x86-bsd-nat.h".
11498         (amd64_fbsd_nat_target): New class.
11499         (the_amd64_fbsd_nat_target): New.
11500         (amd64fbsd_read_description): Refactor as method of
11501         amd64_fbsd_nat_target.
11502         (amd64_fbsd_nat_target::supports_stopped_by_hw_breakpoint): New.
11503         (_initialize_amd64fbsd_nat): Adjust to C++ification.
11504         * amd64-nat.h (amd64bsd_target): Delete function declaration.
11505         * i386-bsd-nat.c (i386bsd_fetch_inferior_registers)
11506         (i386bsd_store_inferior_registers): Remove target_ops parameter.
11507         (i386bsd_target): Delete.
11508         * i386-bsd-nat.h (i386bsd_target): Delete function declaration.
11509         (i386bsd_fetch_inferior_registers)
11510         (i386bsd_store_inferior_registers): Declare.
11511         (i386_bsd_nat_target): New class.
11512         * i386-fbsd-nat.c (i386_fbsd_nat_target): New class.
11513         (the_i386_fbsd_nat_target): New.
11514         (i386fbsd_resume, i386fbsd_read_description): Refactor as
11515         i386_fbsd_nat_target methods.
11516         (i386_fbsd_nat_target::supports_stopped_by_hw_breakpoint): New.
11517         (_initialize_i386fbsd_nat): Adjust to C++ification.
11518         * x86-bsd-nat.c (super_mourn_inferior): Delete.
11519         (x86bsd_mourn_inferior, x86bsd_target): Delete.
11520         (_initialize_x86_bsd_nat): Adjust to C++ification.
11521         * x86-bsd-nat.h: Include "x86-nat.h".
11522         (x86bsd_target): Delete declaration.
11523         (x86bsd_nat_target): New class.
11524
11525         * aarch64-fbsd-nat.c (aarch64_fbsd_nat_target): New class.
11526         (the_aarch64_fbsd_nat_target): New.
11527         (aarch64_fbsd_fetch_inferior_registers)
11528         (aarch64_fbsd_store_inferior_registers): Refactor as methods of
11529         aarch64_fbsd_nat_target.
11530         (_initialize_aarch64_fbsd_nat): Adjust to C++ification.
11531         * alpha-bsd-nat.c (alpha_bsd_nat_target): New class.
11532         (the_alpha_bsd_nat_target): New.
11533         (alphabsd_fetch_inferior_registers)
11534         (alphabsd_store_inferior_registers): Refactor as
11535         alpha_bsd_nat_target methods.
11536         (_initialize_alphabsd_nat): Refactor as methods of
11537         alpha_bsd_nat_target.
11538         * amd64-nbsd-nat.c: Include "amd64-bsd-nat.h".
11539         (the_amd64_nbsd_nat_target): New.
11540         (_initialize_amd64nbsd_nat): Adjust to C++ification.
11541         * amd64-obsd-nat.c: Include "amd64-bsd-nat.h".
11542         (the_amd64_obsd_nat_target): New.
11543         (_initialize_amd64obsd_nat): Adjust to C++ification.
11544         * arm-fbsd-nat.c (arm_fbsd_nat_target): New.
11545         (the_arm_fbsd_nat_target): New.
11546         (arm_fbsd_fetch_inferior_registers)
11547         (arm_fbsd_store_inferior_registers, arm_fbsd_read_description):
11548         (_initialize_arm_fbsd_nat): Refactor as methods of
11549         arm_fbsd_nat_target.
11550         (_initialize_arm_fbsd_nat): Adjust to C++ification.
11551         * arm-nbsd-nat.c (arm_netbsd_nat_target): New class.
11552         (the_arm_netbsd_nat_target): New.
11553         (armnbsd_fetch_registers, armnbsd_store_registers): Refactor as
11554         arm_netbsd_nat_target.
11555         (_initialize_arm_netbsd_nat): Adjust to C++ification.
11556         * hppa-nbsd-nat.c (hppa_nbsd_nat_target): New class.
11557         (the_hppa_nbsd_nat_target): New.
11558         (hppanbsd_fetch_registers, hppanbsd_store_registers): Refactor as
11559         hppa_nbsd_nat_target methods.
11560         (_initialize_hppanbsd_nat): Adjust to C++ification.
11561         * hppa-obsd-nat.c (hppa_obsd_nat_target): New class.
11562         (the_hppa_obsd_nat_target): New.
11563         (hppaobsd_fetch_registers, hppaobsd_store_registers): Refactor as
11564         methods of hppa_obsd_nat_target.
11565         (_initialize_hppaobsd_nat): Adjust to C++ification.  Use
11566         add_target.
11567         * i386-nbsd-nat.c (the_i386_nbsd_nat_target): New.
11568         (_initialize_i386nbsd_nat): Adjust to C++ification.  Use
11569         add_target.
11570         * i386-obsd-nat.c (the_i386_obsd_nat_target): New.
11571         (_initialize_i386obsd_nat): Use add_target.
11572         * m68k-bsd-nat.c (m68k_bsd_nat_target): New class.
11573         (the_m68k_bsd_nat_target): New.
11574         (m68kbsd_fetch_inferior_registers)
11575         (m68kbsd_store_inferior_registers): Refactor as methods of
11576         m68k_bsd_nat_target.
11577         (_initialize_m68kbsd_nat): Adjust to C++ification.
11578         * mips-fbsd-nat.c (mips_fbsd_nat_target): New class.
11579         (the_mips_fbsd_nat_target): New.
11580         (mips_fbsd_fetch_inferior_registers)
11581         (mips_fbsd_store_inferior_registers): Refactor as methods of
11582         mips_fbsd_nat_target.
11583         (_initialize_mips_fbsd_nat): Adjust to C++ification.  Use
11584         add_target.
11585         * mips-nbsd-nat.c (mips_nbsd_nat_target): New class.
11586         (the_mips_nbsd_nat_target): New.
11587         (mipsnbsd_fetch_inferior_registers)
11588         (mipsnbsd_store_inferior_registers): Refactor as methods of
11589         mips_nbsd_nat_target.
11590         (_initialize_mipsnbsd_nat): Adjust to C++ification.
11591         * mips64-obsd-nat.c (mips64_obsd_nat_target): New class.
11592         (the_mips64_obsd_nat_target): New.
11593         (mips64obsd_fetch_inferior_registers)
11594         (mips64obsd_store_inferior_registers): Refactor as methods of
11595         mips64_obsd_nat_target.
11596         (_initialize_mips64obsd_nat): Adjust to C++ification.  Use
11597         add_target.
11598         * nbsd-nat.c (nbsd_pid_to_exec_file): Refactor as method of
11599         nbsd_nat_target.
11600         * nbsd-nat.h: Include "inf-ptrace.h".
11601         (nbsd_nat_target): New class.
11602         * obsd-nat.c (obsd_pid_to_str, obsd_update_thread_list)
11603         (obsd_wait): Refactor as methods of obsd_nat_target.
11604         (obsd_add_target): Delete.
11605         * obsd-nat.h: Include "inf-ptrace.h".
11606         (obsd_nat_target): New class.
11607         * ppc-fbsd-nat.c (ppc_fbsd_nat_target): New class.
11608         (the_ppc_fbsd_nat_target): New.
11609         (ppcfbsd_fetch_inferior_registers)
11610         (ppcfbsd_store_inferior_registers): Refactor as methods of
11611         ppc_fbsd_nat_target.
11612         (_initialize_ppcfbsd_nat): Adjust to C++ification.  Use
11613         add_target.
11614         * ppc-nbsd-nat.c (ppc_nbsd_nat_target): New class.
11615         (the_ppc_nbsd_nat_target): New.
11616         (ppcnbsd_fetch_inferior_registers)
11617         (ppcnbsd_store_inferior_registers): Refactor as methods of
11618         ppc_nbsd_nat_target.
11619         (_initialize_ppcnbsd_nat): Adjust to C++ification.
11620         * ppc-obsd-nat.c (ppc_obsd_nat_target): New class.
11621         (the_ppc_obsd_nat_target): New.
11622         (ppcobsd_fetch_registers, ppcobsd_store_registers): Refactor as
11623         methods of ppc_obsd_nat_target.
11624         (_initialize_ppcobsd_nat): Adjust to C++ification.  Use
11625         add_target.
11626         * sh-nbsd-nat.c (sh_nbsd_nat_target): New class.
11627         (the_sh_nbsd_nat_target): New.
11628         (shnbsd_fetch_inferior_registers)
11629         (shnbsd_store_inferior_registers): Refactor as methods of
11630         sh_nbsd_nat_target.
11631         (_initialize_shnbsd_nat): Adjust to C++ification.
11632         * sparc-nat.c (sparc_xfer_wcookie): Make extern.
11633         (inf_ptrace_xfer_partial): Delete.
11634         (sparc_xfer_partial, sparc_target): Delete.
11635         * sparc-nat.h (sparc_fetch_inferior_registers)
11636         (sparc_store_inferior_registers, sparc_xfer_wcookie): Declare.
11637         (sparc_target): Delete function declaration.
11638         (sparc_target): New template class.
11639         * sparc-nbsd-nat.c (the_sparc_nbsd_nat_target): New.
11640         (_initialize_sparcnbsd_nat): Adjust to C++ification.
11641         * sparc64-fbsd-nat.c (the_sparc64_fbsd_nat_target): New.
11642         (_initialize_sparc64fbsd_nat): Adjust to C++ification.  Use
11643         add_target.
11644         * sparc64-nbsd-nat.c (the_sparc64_nbsd_nat_target): New.
11645         (_initialize_sparc64nbsd_nat): Adjust to C++ification.
11646         * sparc64-obsd-nat.c (the_sparc64_obsd_nat_target): New.
11647         (_initialize_sparc64obsd_nat): Adjust to C++ification.  Use
11648         add_target.
11649         * vax-bsd-nat.c (vax_bsd_nat_target): New class.
11650         (the_vax_bsd_nat_target): New.
11651         (vaxbsd_fetch_inferior_registers)
11652         (vaxbsd_store_inferior_registers): Refactor as vax_bsd_nat_target
11653         methods.
11654         (_initialize_vaxbsd_nat): Adjust to C++ification.
11655
11656         * bsd-kvm.c (bsd_kvm_target): New class.
11657         (bsd_kvm_ops): Now a bsd_kvm_target.
11658         (bsd_kvm_open, bsd_kvm_close, bsd_kvm_xfer_partial)
11659         (bsd_kvm_files_info, bsd_kvm_fetch_registers)
11660         (bsd_kvm_thread_alive, bsd_kvm_pid_to_str): Refactor as methods of
11661         bsd_kvm_target.
11662         (bsd_kvm_return_one): Delete.
11663         (bsd_kvm_add_target): Adjust to C++ification.
11664
11665         * nto-procfs.c (nto_procfs_target, nto_procfs_target_native)
11666         (nto_procfs_target_procfs): New classes.
11667         (procfs_open_1, procfs_thread_alive, procfs_update_thread_list)
11668         (procfs_files_info, procfs_pid_to_exec_file, procfs_attach)
11669         (procfs_post_attach, procfs_wait, procfs_fetch_registers)
11670         (procfs_xfer_partial, procfs_detach, procfs_insert_breakpoint)
11671         (procfs_remove_breakpoint, procfs_insert_hw_breakpoint)
11672         (procfs_remove_hw_breakpoint, procfs_resume)
11673         (procfs_mourn_inferior, procfs_create_inferior, procfs_interrupt)
11674         (procfs_kill_inferior, procfs_store_registers)
11675         (procfs_pass_signals, procfs_pid_to_str, procfs_can_run): Refactor
11676         as methods of nto_procfs_target.
11677         (nto_procfs_ops): Now an nto_procfs_target_procfs.
11678         (nto_native_ops): Delete.
11679         (procfs_open, procfs_native_open): Delete.
11680         (nto_native_ops): Now an nto_procfs_target_native.
11681         (init_procfs_targets): Adjust to C++ification.
11682         (procfs_can_use_hw_breakpoint, procfs_remove_hw_watchpoint)
11683         (procfs_insert_hw_watchpoint, procfs_stopped_by_watchpoint):
11684         Refactor as methods of nto_procfs_target.
11685
11686         * go32-nat.c (go32_nat_target): New class.
11687         (the_go32_nat_target): New.
11688         (go32_attach, go32_resume, go32_wait, go32_fetch_registers)
11689         (go32_store_registers, go32_xfer_partial, go32_files_info)
11690         (go32_kill_inferior, go32_create_inferior, go32_mourn_inferior)
11691         (go32_terminal_init, go32_terminal_info, go32_terminal_inferior)
11692         (go32_terminal_ours, go32_pass_ctrlc, go32_thread_alive)
11693         (go32_pid_to_str): Refactor as methods of go32_nat_target.
11694         (go32_target): Delete.
11695         (_initialize_go32_nat): Adjust to C++ification.
11696
11697         * gnu-nat.c (gnu_wait, gnu_resume, gnu_kill_inferior)
11698         (gnu_mourn_inferior, gnu_create_inferior, gnu_attach, gnu_detach)
11699         (gnu_stop, gnu_thread_alive, gnu_xfer_partial)
11700         (gnu_find_memory_regions, gnu_pid_to_str): Refactor as methods of
11701         gnu_nat_target.
11702         (gnu_target): Delete.
11703         * gnu-nat.h (gnu_target): Delete.
11704         (gnu_nat_target): New class.
11705         * i386-gnu-nat.c (gnu_base_target): New.
11706         (i386_gnu_nat_target): New class.
11707         (the_i386_gnu_nat_target): New.
11708         (_initialize_i386gnu_nat): Adjust to C++ification.
11709
11710 2018-05-02  Pedro Alves  <palves@redhat.com>
11711
11712         * bfd-target.c (target_bfd_xclose): Rename to ...
11713         (target_bfd_close): ... this.
11714         (target_bfd_reopen): Adjust.
11715         * target.c (target_close): Remove references to to_xclose.
11716         * target.h (target_ops::to_xclose): Delete.
11717         (target_ops::to_close): Update comments.
11718
11719 2018-05-02  Pedro Alves  <palves@redhat.com>
11720
11721         * alpha-linux-nat.c: Include "linux-nat-trad.h" instead of
11722         "linux-nat.h".
11723         * configure.nat (alpha-linux, linux-mips): Add linux-nat-trad.o.
11724         * inf-ptrace.c (inf_ptrace_register_u_offset)
11725         (inf_ptrace_fetch_register, inf_ptrace_fetch_registers)
11726         (inf_ptrace_store_register, inf_ptrace_store_registers)
11727         (inf_ptrace_trad_target): Move to ...
11728         * linux-nat-trad.c: ... this new file.
11729         * linux-nat-trad.h: New file.
11730         * linux-nat.c (linux_target_install_ops): Make extern.
11731         (linux_trad_target): Delete.
11732         * linux-nat.h (linux_trad_target): Delete declaration.
11733         (linux_target_install_ops): Declare.
11734         * mips-linux-nat.c: Include "linux-nat-trad.h" instead of
11735         "linux-nat.h".
11736
11737 2018-05-02  Pedro Alves  <palves@redhat.com>
11738
11739         * i386-sol2-nat.c (_initialize_amd64_sol2_nat): Don't call
11740         procfs_target/add_target here.
11741         * procfs.c (procfs_target): Make static.
11742         (_initialize_procfs): Call add_target here.
11743         * procfs.h (struct target_ops): Remove forward declaration.
11744         (procfs_target): Remove declaration.
11745         * sparc-sol2-nat.c (_initialize_sparc_sol2_nat): Delete.
11746
11747 2018-05-02  Pedro Alves  <palves@redhat.com>
11748
11749         * procfs.c (procfs_stopped_by_watchpoint)
11750         (procfs_insert_watchpoint, procfs_remove_watchpoint)
11751         (procfs_region_ok_for_hw_watchpoint, procfs_stopped_data_address):
11752         Forward declare.
11753         (procfs_use_watchpoints): Delete, move contents...
11754         (procfs_target): ... here.
11755         * procfs.h (procfs_use_watchpoints): Delete declaration.
11756         * i386-sol2-nat.c (_initialize_amd64_sol2_nat): Don't call
11757         procfs_use_watchpoints.
11758         * sparc-sol2-nat.c (_initialize_sparc_sol2_nat): Don't call
11759         procfs_use_watchpoints.
11760
11761 2018-05-02  Tom Tromey  <tom@tromey.com>
11762
11763         PR python/20084:
11764         * python/python.c (gdbpy_parameter_value): Handle var_zuinteger
11765         and var_zuinteger_unlimited.
11766         * python/py-param.c (struct parm_constant): Add PARAM_ZUINTEGER
11767         and PARAM_ZUINTEGER_UNLIMITED.
11768         (set_parameter_value): Handle var_zuinteger and
11769         var_zuinteger_unlimited.
11770         (add_setshow_generic): Likewise.
11771         (parmpy_init): Likewise.
11772
11773 2018-04-28  Dan Robertson  <danlrobertson89@gmail.com>
11774
11775         PR rust/23124
11776         * gdb/rust-exp.y (convert_params_to_types): Ensure that the params
11777         pointer is not null before dereferencing it.
11778
11779 2018-04-30  Tom Tromey  <tom@tromey.com>
11780
11781         * darwin-nat-info.c (darwin_debug_regions_recurse): Remove use of
11782         is_mi_like_p.
11783
11784 2018-04-30  Tom Tromey  <tom@tromey.com>
11785
11786         * breakpoint.c (mention): Remove use of is_mi_like_p.
11787         (print_mention_ranged_breakpoint): Likewise.
11788         * break-catch-throw.c (print_it_exception_catchpoint): Remove use
11789         of is_mi_like_p.
11790
11791 2018-04-30  Tom Tromey  <tom@tromey.com>
11792
11793         * tracepoint.c (tvariables_info_1): Remove use of is_mi_like_p.
11794
11795 2018-04-30  Tom Tromey  <tom@tromey.com>
11796
11797         * spu-tdep.c (info_spu_mailbox_list, info_spu_dma_cmdlist)
11798         (info_spu_event_command): Remove some uses of is_mi_like_p.
11799
11800 2018-04-30  Tom Tromey  <tom@tromey.com>
11801
11802         * python/py-framefilter.c (py_print_single_arg)
11803         (enumerate_locals, py_print_args, py_print_frame): Remove some
11804         uses of is_mi_like_p.
11805
11806 2018-04-30  Tom Tromey  <tom@tromey.com>
11807
11808         * ui-out.c: Update.
11809         * cli-out.h (cli_ui_out::do_is_mi_like_p): Update.
11810         * ui-out.h (ui_out::is_mi_like_p): Now const.
11811         (ui_out::do_is_mi_like_p): Now const.
11812         * mi/mi-out.h (mi_ui_out::do_is_mi_like_p): Update.
11813
11814 2018-04-30  Tom Tromey  <tom@tromey.com>
11815
11816         * varobj.c (varobj_set_visualizer): Use new_reference.
11817         * python/python.c (gdbpy_decode_line): Use new_reference.
11818         * python/py-cmd.c (cmdpy_function, cmdpy_completer_helper): Use
11819         new_reference.
11820
11821 2018-04-30  Tom Tromey  <tom@tromey.com>
11822
11823         * varobj.c (install_new_value): Use new_reference.
11824         * value.h (value_incref): Return void.  Swap intro comment with
11825         value_decref.
11826         * value.c (set_value_parent): Use new_reference.
11827         (value_incref): Return void.  Update intro comment.
11828         (release_value): Use new_reference.
11829         * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Use new_reference.
11830
11831 2018-04-30  Tom Tromey  <tom@tromey.com>
11832
11833         * symfile-mem.c (symbol_file_add_from_memory): Use new_reference.
11834         * gdb_bfd.h (new_bfd_ref): Remove.
11835         (gdb_bfd_open): Update comment.
11836         * gdb_bfd.c (gdb_bfd_open, gdb_bfd_fopen, gdb_bfd_openr)
11837         (gdb_bfd_openw, gdb_bfd_openr_iovec, gdb_bfd_record_inclusion)
11838         (gdb_bfd_fdopenr): Use new_reference.
11839         * exec.c (exec_file_attach): Use new_reference.
11840
11841 2018-04-30  Tom Tromey  <tom@tromey.com>
11842
11843         * common/gdb_ref_ptr.h (ref_ptr::new_reference): New static
11844         method.
11845
11846 2018-04-30  Tom Tromey  <tom@tromey.com>
11847
11848         * jit.c (jit_read_code_entry): Use type_align.
11849         * i386-tdep.c (i386_gdbarch_init): Don't call
11850         set_gdbarch_long_long_align_bit.
11851         * gdbarch.sh: Remove long_long_align_bit.
11852         * gdbarch.c, gdbarch.h: Rebuild.
11853         * arc-tdep.c (arc_type_align): New function.
11854         (arc_gdbarch_init): Use arc_type_align.  Don't call
11855         set_gdbarch_long_long_align_bit.
11856
11857 2018-04-30  Tom Tromey  <tom@tromey.com>
11858
11859         * rust-lang.c (rust_type_alignment): Remove.
11860         (rust_composite_type): Use type_align.
11861
11862 2018-04-30  Tom Tromey  <tom@tromey.com>
11863
11864         * NEWS: Mention Type.align.
11865         * python/py-type.c (typy_get_alignof): New function.
11866         (type_object_getset): Add "alignof".
11867
11868 2018-04-30  Tom Tromey  <tom@tromey.com>
11869
11870         PR exp/17095:
11871         * NEWS: Update.
11872         * std-operator.def (UNOP_ALIGNOF): New operator.
11873         * expprint.c (dump_subexp_body_standard) <case UNOP_ALIGNOF>:
11874         New.
11875         * eval.c (evaluate_subexp_standard) <case UNOP_ALIGNOF>: New.
11876         * c-lang.c (c_op_print_tab): Add alignof.
11877         * c-exp.y (ALIGNOF): New token.
11878         (exp): Add "ALIGNOF" production.
11879         (ident_tokens): Add _Alignof and alignof.
11880
11881 2018-04-30  Tom Tromey  <tom@tromey.com>
11882
11883         * i386-tdep.c (i386_type_align): New function.
11884         (i386_gdbarch_init): Update.
11885         * gdbarch.sh (type_align): New method.
11886         * gdbarch.c, gdbarch.h: Rebuild.
11887         * arch-utils.h (default_type_align): Declare.
11888         * arch-utils.c (default_type_align): New function.
11889         * gdbtypes.h (TYPE_ALIGN_BITS): New define.
11890         (struct type) <align_log2>: New field.
11891         <instance_flags>: Now a bitfield.
11892         (TYPE_RAW_ALIGN): New macro.
11893         (type_align, type_raw_align, set_type_align): Declare.
11894         * gdbtypes.c (type_align, type_raw_align, set_type_align): New
11895         functions.
11896         * dwarf2read.c (quirk_rust_enum): Set type alignment.
11897         (get_alignment, maybe_set_alignment): New functions.
11898         (read_structure_type, read_enumeration_type, read_array_type)
11899         (read_set_type, read_tag_pointer_type, read_tag_reference_type)
11900         (read_subrange_type, read_base_type): Set type alignment.
11901
11902 2018-04-30  Simon Marchi  <simon.marchi@ericsson.com>
11903
11904         * dwarf2read.c (read_index_from_section): Use bool.
11905
11906 2018-04-29  Fabian Groffen  <grobian@gentoo.org>
11907
11908         PR gdb/22950
11909         * proc-events.c (init_syscall_table): Guard usage os SYS_uuidsys
11910         with #ifdef.
11911
11912 2018-04-29  John Reiser  <jreiser@BitWagon.com>
11913
11914         PR build/22873
11915         * gdb/Makefile.in: (.c:.l, .c:.y): Write the target only in the
11916         last step, and do it atomically.
11917
11918 2018-04-27  Alexandre Oliva  <aoliva@redhat.com>
11919
11920         * compile/compile-c-types.c (convert_int, convert_float):
11921         Update for C FE v1.
11922
11923 2018-04-27  Tom Tromey  <tom@tromey.com>
11924
11925         PR rust/22545:
11926         * rust-lang.c (rust_inclusive_range_type_p): New function.
11927         (rust_range): Handle inclusive ranges.
11928         (rust_compute_range): Likewise.
11929         * rust-exp.y (struct rust_op) <inclusive>: New field.
11930         (DOTDOTEQ): New constant.
11931         (range_expr): Add "..=" productions.
11932         (operator_tokens): Add "..=" token.
11933         (ast_range): Add "inclusive" parameter.
11934         (convert_ast_to_expression) <case OP_RANGE>: Handle inclusive
11935         ranges.
11936         * parse.c (operator_length_standard) <case OP_RANGE>: Handle new
11937         bounds values.
11938         * expression.h (enum range_type) <NONE_BOUND_DEFAULT_EXCLUSIVE,
11939         LOW_BOUND_DEFAULT_EXCLUSIVE>: New constants.
11940         Update comments.
11941         * expprint.c (print_subexp_standard): Handle new bounds values.
11942         (dump_subexp_body_standard): Likewise.
11943
11944 2018-04-27  Tom Tromey  <tom@tromey.com>
11945
11946         * configure: Rebuild.
11947         * warning.m4 (AM_GDB_WARNINGS): Add -Wsuggest-override.
11948         * dwarf2loc.c (class dwarf_evaluate_loc_desc): Use "override", not
11949         "OVERRIDE".
11950         (class symbol_needs_eval_context): Likewise.
11951         * dwarf2read.c (mock_mapped_index::symbol_name_count)
11952         (mock_mapped_index::symbol_name_at): Use "override".  Remove
11953         "virtual".
11954         * dwarf2-frame.c (dwarf_expr_executor::get_addr_index): Use
11955         "override".
11956         (class dwarf_expr_executor): Use "override", not "OVERRIDE".
11957         * aarch64-tdep.c (instruction_reader::read): Use "override".
11958         (instruction_reader_test::read): Likewise.
11959         * arm-tdep.c (instruction_reader::read): Use "override".
11960         (instruction_reader_thumb::read): Likewise.
11961
11962 2018-04-26  Andrzej Kaczmarek  <andrzej.kaczmarek@codecoup.pl>
11963
11964         PR remote/9665
11965         * remote.c (send_g_packet): Use putpkt/getpkt/packet_check_result
11966         instead of remote_send.
11967         (remote_send): Remove.
11968
11969 2018-04-26  Pedro Alves  <palves@redhat.com>
11970
11971         * elfread.c (elf_gnu_ifunc_resolver_return_stop): Use
11972         find_function_start_sal instead of find_pc_line.
11973
11974 2018-04-26  Pedro Alves  <palves@redhat.com>
11975
11976         * breakpoint.c (set_breakpoint_location_function): Handle
11977         mst_data_gnu_ifunc.
11978         * c-exp.y (variable production): Handle mst_data_gnu_ifunc.
11979         * elfread.c (elf_symtab_read): Give data symbols with
11980         BSF_GNU_INDIRECT_FUNCTION set mst_data_gnu_ifunc type.
11981         (elf_rel_plt_read): Update comment.
11982         * linespec.c (convert_linespec_to_sals): Handle
11983         mst_data_gnu_ifunc.
11984         (minsym_found): Handle mst_data_gnu_ifunc.
11985         * minsyms.c (msymbol_is_function, minimal_symbol_reader::record)
11986         (find_solib_trampoline_target): Handle mst_data_gnu_ifunc.
11987         * parse.c (find_minsym_type_and_address): Handle
11988         mst_data_gnu_ifunc.
11989         * symmisc.c (dump_msymbols): Handle mst_data_gnu_ifunc.
11990         * symtab.c (find_gnu_ifunc): Handle mst_data_gnu_ifunc.
11991         * symtab.h (minimal_symbol_type) <mst_text_gnu_ifunc>: Update
11992         comment.
11993         <mst_data_gnu_ifunc>: New enumerator.
11994
11995 2018-04-26  Pedro Alves  <palves@redhat.com>
11996
11997         * minsyms.c (lookup_minimal_symbol_by_pc_section_1): Rename to ...
11998         (lookup_minimal_symbol_by_pc_section): ... this.  Replace
11999         'want_trampoline' parameter by a lookup_msym_prefer parameter.
12000         Handle it.
12001         (lookup_minimal_symbol_by_pc_section): Delete old implementation.
12002         (lookup_minimal_symbol_by_pc): Adjust.
12003         (in_gnu_ifunc_stub): Prefer GNU ifunc symbols.
12004         (lookup_solib_trampoline_symbol_by_pc): Adjust.
12005         * minsyms.h (lookup_msym_prefer): New enum.
12006         (lookup_minimal_symbol_by_pc_section): Replace 'want_trampoline'
12007         parameter by a lookup_msym_prefer parameter.
12008
12009 2018-04-26  Pedro Alves  <palves@redhat.com>
12010
12011         * elfread.c (elf_gnu_ifunc_record_cache): Check if the symbol name
12012         ends in "@plt" instead of looking at the symbol's section.
12013
12014 2018-04-26  Pedro Alves  <palves@redhat.com>
12015
12016         * blockframe.c (cache_pc_function_is_gnu_ifunc): Delete.  Remove
12017         all references.
12018         (find_pc_partial_function_gnu_ifunc): Rename to ...
12019         (find_pc_partial_function): ... this, and remove references to
12020         'is_gnu_ifunc_p'.
12021         (find_pc_partial_function): Delete old implementation.
12022         * symtab.h (find_pc_partial_function_gnu_ifunc): Delete.
12023
12024 2018-04-26  Pedro Alves  <palves@redhat.com>
12025
12026         * linespec.c (struct bound_minimal_symbol_search_key): New.
12027         (convert_linespec_to_sals): Sort minimal symbols earlier.  Don't
12028         skip first line if we found a GNU ifunc minimal symbol by name.
12029         (compare_msymbols): Change parameters to work with a destructured
12030         lhs minsym.
12031         (compare_msymbols_for_qsort, compare_msymbols_for_bsearch): New
12032         functions.
12033
12034 2018-04-26  Pedro Alves  <palves@redhat.com>
12035
12036         * breakpoint.c (set_breakpoint_location_function): Don't resolve
12037         ifunc targets here.  Instead, if we have an ifunc minsym, use its
12038         address/name.
12039         (add_location_to_breakpoint): Store the minsym and the objfile in
12040         the breakpoint location.
12041         * breakpoint.h (bp_location) <msymbol, objfile>: New fields.
12042         * linespec.c (minsym_found): Resolve GNU ifunc targets here.
12043         Record the minsym in the sal.
12044         * symtab.h (symtab_and_line) <msymbol>: New field.
12045
12046 2018-04-26  Pedro Alves  <palves@redhat.com>
12047
12048         * elfread.c (elf_gnu_ifunc_resolve_by_got): Don't write to *ADDR_P
12049         unless we actually resolved the ifunc.
12050
12051 2018-04-26  Pedro Alves  <palves@redhat.com>
12052
12053         * c-exp.y (variable production): Prefer ifunc minsyms over
12054         regular function symbols.
12055         * symtab.c (find_gnu_ifunc): New function.
12056         * minsyms.h (lookup_msym_prefer): New enum.
12057         (lookup_minimal_symbol_by_pc_section): Replace 'want_trampoline'
12058         parameter by a lookup_msym_prefer parameter.
12059         * symtab.h (find_gnu_ifunc): New declaration.
12060
12061 2018-04-26  Pedro Alves  <palves@redhat.com>
12062
12063         * blockframe.c (find_gnu_ifunc_target_type): New function.
12064         (find_function_type): New.
12065         * eval.c (evaluate_var_msym_value): For GNU ifunc types, always
12066         return a value with a memory address.
12067         (eval_call): For calls to GNU ifunc functions, try to find the
12068         type of the target function from the type that the resolver
12069         returns.
12070         * gdbtypes.c (objfile_type): Don't install a return type for ifunc
12071         symbols.
12072         * infcall.c (find_function_return_type): Delete.
12073         (find_function_addr): Add 'function_type' parameter.  For calls to
12074         GNU ifunc functions, try to find the type of the target function
12075         from the type that the resolver returns, and return it via
12076         FUNCTION_TYPE.
12077         (call_function_by_hand_dummy): Adjust to use the function type
12078         returned by find_function_addr.
12079         (find_function_addr): Add 'function_type' parameter and move
12080         description here.
12081         * symtab.h (find_function_type, find_gnu_ifunc_target_type): New
12082         declarations.
12083
12084 2018-04-26  Pedro Alves  <palves@redhat.com>
12085
12086         * c-exp.y (variable production): Skip finding an alias for ifunc
12087         symbols.
12088
12089 2018-04-26  Pedro Alves  <palves@redhat.com>
12090
12091         * elfread.c (elf_rel_plt_read): Look for relocations for .got.plt too.
12092
12093 2018-04-25  Pedro Alves  <palves@redhat.com>
12094
12095         * infcmd.c (kill_command): Print the pid as string, not the whole
12096         thread's ptid.  Add comment.  s/has been killed/killed/ in output
12097         message.
12098         * remote.c (remote_detach_1): Print the pid as string, not the
12099         whole thread's ptid.
12100
12101 2018-04-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
12102             Sergio Durigan Junior  <sergiodj@redhat.com>
12103             Pedro Alves  <palves@redhat.com>
12104
12105         * infcmd.c (kill_command): Print message when inferior has
12106         been killed.
12107         * inferior.c (print_inferior_events): Remove 'static'.  Set as
12108         '1'.
12109         (add_inferior): Improve message printed when
12110         'print_inferior_events' is on.
12111         (exit_inferior): Remove message printed when
12112         'print_inferior_events' is on.
12113         (detach_inferior): Improve message printed when
12114         'print_inferior_events' is on.
12115         (initialize_inferiors): Use 'add_inferior_silent' to set
12116         'current_inferior_'.
12117         * inferior.h (print_inferior_events): Declare here as
12118         'extern'.
12119         * infrun.c (follow_fork_inferior): Print '[Attaching...]' or
12120         '[Detaching...]' messages when 'print_inferior_events' is on.
12121         Use 'add_thread_silent' instead of 'add_thread'.  Add '[' and ']'
12122         as prefix/suffix for messages.  Remove periods.  Fix erroneous
12123         'Detaching after fork from child...', replace it by '... from
12124         parent...'.
12125         (handle_vfork_child_exec_or_exit): Add '[' and ']' as
12126         prefix/suffix when printing 'Detaching...' messages.  Print
12127         them when 'print_inferior_events' is on.
12128         * remote.c (remote_detach_1): Print message when detaching
12129         from inferior and '!is_fork_parent'.
12130
12131 2018-04-24  Tom Tromey  <tom@tromey.com>
12132
12133         * cli-out.h: Reindent.
12134
12135 2018-04-24  Tom Tromey  <tom@tromey.com>
12136
12137         * cli-out.c (cli_ui_out::out_field_fmt): Remove.
12138         (cli_ui_out::do_field_string): Use fputs_filtered.
12139         * cli-out.h (class cli_ui_out) <out_field_fmt>: Remove.
12140
12141 2018-04-23  Tom Tromey  <tom@tromey.com>
12142
12143         * guile/scm-frame.c (gdbscm_frame_read_var): Use
12144         gdb::unique_xmalloc_ptr.
12145
12146 2018-04-23  Tom Tromey  <tom@tromey.com>
12147
12148         * configure: Rebuild.
12149
12150 2018-04-22  Rajendra SY  <rajendra.sy@gmail.com>
12151
12152         PR gdb/23095
12153         * gdb/testsuite/gdb.base/break-probes.exp: Pass shlib_load to
12154         prepare_for_testing.  Set normal_bp to r_debug_state if target
12155         is bsd.
12156
12157 2018-04-21  Pedro Alves  <palves@redhat.com>
12158             Rajendra SY  <rajendra.sy@gmail.com>
12159
12160         * inf-ptrace.c (inf_ptrace_attach): Mark the thread as executing.
12161         * remote.c (extended_remote_attach): In all-stop mode, mark the
12162         thread as executing.
12163
12164 2018-04-19  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
12165
12166         * thread.c (thread_apply_all_command): Fix comment.
12167         (thread_command): Fix comment.
12168
12169 2018-04-10  Alan Hayward  <alan.hayward@arm.com>
12170
12171         * common/tdesc.h (tdesc_create_feature): Remove xml filename
12172         parameter.
12173         * features/aarch64-core.c (create_feature_aarch64_core):
12174         Regenerate.
12175         * features/aarch64-fpu.c (create_feature_aarch64_fpu):
12176         Likewise.
12177         * features/i386/32bit-avx.c (create_feature_i386_32bit_avx):
12178         Likewise.
12179         * features/i386/32bit-avx512.c
12180         (create_feature_i386_32bit_avx512): Likewise.
12181         * features/i386/32bit-core.c (create_feature_i386_32bit_core):
12182         Likewise.
12183         * features/i386/32bit-linux.c (create_feature_i386_32bit_linux):
12184         Likewise.
12185         * features/i386/32bit-mpx.c (create_feature_i386_32bit_mpx):
12186         Likewise.
12187         * features/i386/32bit-pkeys.c (create_feature_i386_32bit_pkeys):
12188         Likewise.
12189         * features/i386/32bit-sse.c (create_feature_i386_32bit_sse):
12190         Likewise.
12191         * features/i386/64bit-avx.c (create_feature_i386_64bit_avx):
12192         Likewise.
12193         * features/i386/64bit-avx512.c
12194         (create_feature_i386_64bit_avx512): Likewise.
12195         * features/i386/64bit-core.c (create_feature_i386_64bit_core):
12196         Likewise.
12197         * features/i386/64bit-linux.c (create_feature_i386_64bit_linux):
12198         Likewise.
12199         * features/i386/64bit-mpx.c (create_feature_i386_64bit_mpx):
12200         Likewise.
12201         * features/i386/64bit-pkeys.c (create_feature_i386_64bit_pkeys):
12202         Likewise.
12203         * features/i386/64bit-segments.c
12204         (create_feature_i386_64bit_segments): Likewise.
12205         * features/i386/64bit-sse.c (create_feature_i386_64bit_sse):
12206         Likewise.
12207         * features/i386/x32-core.c
12208         (create_feature_i386_x32_core): Likewise.
12209         * features/tic6x-c6xp.c (create_feature_tic6x_c6xp): Likewise.
12210         * features/tic6x-core.c (create_feature_tic6x_core): Likewise.
12211         * features/tic6x-gp.c (create_feature_tic6x_gp): Likewise.
12212         * target-descriptions.c: In generated code, don't pass xml
12213         filename.
12214
12215 2018-04-18  Alan Hayward  <alan.hayward@arm.com>
12216
12217         * common/tdesc.c (print_xml_feature::visit_pre): Add xml parsing.
12218         (print_xml_feature::visit_post): Likewise.
12219         (print_xml_feature::visit): Likewise.
12220         * common/tdesc.h (tdesc_get_features_xml): Use const tdesc.
12221         (print_xml_feature): Add new class.
12222         * regformats/regdat.sh: Null xmltarget on feature targets.
12223         * target-descriptions.c (struct target_desc): Add xmltarget.
12224         (maintenance_check_tdesc_xml_convert): Add unittest function.
12225         (tdesc_get_features_xml): Add function to get xml.
12226         (maintenance_check_xml_descriptions): Test xml generation.
12227         * xml-tdesc.c (string_read_description_xml): Add function.
12228         * xml-tdesc.h (string_read_description_xml): Add declaration.
12229
12230 2018-04-18  Alan Hayward  <alan.hayward@arm.com>
12231
12232         * features/Makefile: Add feature marker to targets with new style
12233         target descriptions.
12234         * regformats/aarch64.dat: Regenerate.
12235         * regformats/i386/amd64-avx-avx512-linux.dat: Likewise.
12236         * regformats/i386/amd64-avx-linux.dat: Likewise.
12237         * regformats/i386/amd64-avx-mpx-avx512-pku-linux.dat: Likewise.
12238         * regformats/i386/amd64-avx-mpx-linux.dat: Likewise.
12239         * regformats/i386/amd64-linux.dat: Likewise.
12240         * regformats/i386/amd64-mpx-linux.dat: Likewise.
12241         * regformats/i386/amd64.dat: Likewise.
12242         * regformats/i386/i386-avx-avx512-linux.dat: Likewise.
12243         * regformats/i386/i386-avx-linux.dat: Likewise.
12244         * regformats/i386/i386-avx-mpx-avx512-pku-linux.dat: Likewise.
12245         * regformats/i386/i386-avx-mpx-linux.dat: Likewise.
12246         * regformats/i386/i386-linux.dat: Likewise.
12247         * regformats/i386/i386-mmx-linux.dat: Likewise.
12248         * regformats/i386/i386-mpx-linux.dat: Likewise.
12249         * regformats/i386/i386.dat: Likewise.
12250         * regformats/i386/x32-avx-avx512-linux.dat: Likewise.
12251         * regformats/i386/x32-avx-linux.dat: Likewise.
12252         * regformats/i386/x32-linux.dat: Likewise.
12253         * regformats/tic6x-c62x-linux.dat: Likewise.
12254         * regformats/tic6x-c64x-linux.dat: Likewise.
12255         * regformats/tic6x-c64xp-linux.dat: Likewise.
12256         * regformats/regdat.sh: Parse feature marker.
12257
12258 2018-04-18  Alan Hayward  <alan.hayward@arm.com>
12259
12260         * common/tdesc.h (tdesc_architecture_name): Add new declaration.
12261         (tdesc_osabi_name): Likewise.
12262         * target-descriptions.c (tdesc_architecture_name): Add new
12263         function.
12264         (tdesc_osabi_name): Likewise.
12265
12266 2018-04-18  Alan Hayward  <alan.hayward@arm.com>
12267
12268         * common/tdesc.c (tdesc_predefined_type): Move to here.
12269         (tdesc_named_type): Likewise.
12270         (tdesc_create_vector): Likewise.
12271         (tdesc_create_struct): Likewise.
12272         (tdesc_set_struct_size): Likewise.
12273         (tdesc_create_union): Likewise.
12274         (tdesc_create_flags): Likewise.
12275         (tdesc_create_enum): Likewise.
12276         (tdesc_add_field): Likewise.
12277         (tdesc_add_typed_bitfield): Likewise.
12278         (tdesc_add_bitfield): Likewise.
12279         (tdesc_add_flag): Likewise.
12280         (tdesc_add_enum_value): Likewise.
12281         * common/tdesc.h (struct tdesc_type_builtin): Likewise.
12282         (struct tdesc_type_vector): Likewise.
12283         (struct tdesc_type_field): Likewise.
12284         (struct tdesc_type_with_fields): Likewise.
12285         (tdesc_create_enum): Add declaration.
12286         (tdesc_add_typed_bitfield): Likewise.
12287         (tdesc_add_enum_value): Likewise.
12288         * target-descriptions.c (tdesc_type_field): Move from here.
12289         (tdesc_type_builtin): Likewise.
12290         (tdesc_type_vector): Likewise.
12291         (tdesc_type_with_fields): Likewise.
12292         (tdesc_predefined_types): Likewise.
12293         (tdesc_named_type): Likewise.
12294         (tdesc_create_vector): Likewise.
12295         (tdesc_create_struct): Likewise.
12296         (tdesc_set_struct_size): Likewise.
12297         (tdesc_create_union): Likewise.
12298         (tdesc_create_flags): Likewise.
12299         (tdesc_create_enum): Likewise.
12300         (tdesc_add_field): Likewise.
12301         (tdesc_add_typed_bitfield): Likewise.
12302         (tdesc_add_bitfield): Likewise.
12303         (tdesc_add_flag): Likewise.
12304         (tdesc_add_enum_value): Likewise.
12305         * gdb/target-descriptions.h (tdesc_create_enum): Likewise.
12306         (tdesc_add_typed_bitfield): Likewise.
12307         (tdesc_add_enum_value): Likewise.
12308
12309 2018-04-18  Alan Hayward  <alan.hayward@arm.com>
12310
12311         * common/tdesc.c (tdesc_feature::accept): Move to here.
12312         (tdesc_feature::operator==): Likewise.
12313         (tdesc_create_reg): Likewise.
12314         * common/tdesc.h (tdesc_type_kind): Likewise.
12315         (struct tdesc_type): Likewise.
12316         (struct tdesc_feature): Likewise.
12317         * regformats/regdat.sh: Create a feature.
12318         * target-descriptions.c (tdesc_type_kind): Move from here.
12319         (tdesc_type): Likewise.
12320         (tdesc_type_up): Likewise.
12321         (tdesc_feature): Likewise.
12322         (tdesc_create_reg): Likewise.
12323
12324 2018-04-18  Alan Hayward  <alan.hayward@arm.com>
12325
12326         * Makefile.in: Add arch/tdesc.c
12327         * common/tdesc.c: New file.
12328         * common/tdesc.h (tdesc_element_visitor): Move to here.
12329         (tdesc_element): Likewise.
12330         (tdesc_reg): Likewise.
12331         (tdesc_reg_up): Likewise.
12332         * regformats/regdef.h (reg): Add offset to constructors.
12333         * target-descriptions.c (tdesc_element_visitor): Move from here.
12334         (tdesc_element): Likewise.
12335         (tdesc_reg): Likewise.
12336         (tdesc_reg_up): Likewise.
12337
12338 2018-04-17  Tom Tromey  <tom@tromey.com>
12339
12340         * dwarf2read.c (quirk_rust_enum): Conditionally drop the
12341         discriminant field.
12342
12343 2018-04-17  Tom Tromey  <tom@tromey.com>
12344
12345         * dwarf2read.c (quirk_rust_enum): Handle unions correctly.
12346
12347 2018-04-17  Andreas Arnez  <arnez@linux.vnet.ibm.com>
12348
12349         * symtab.c (print_symbol_info): Skip printing filename and line
12350         number when `last' is NULL.
12351         (symtab_symbol_info): Use empty string instead of NULL for first
12352         invocation of print_symbol_info.
12353         (rbreak_command): Pass NULL to `last' parameter of
12354         print_symbol_info.
12355
12356 2018-04-16  Simon Marchi  <simon.marchi@ericsson.com>
12357
12358         * linux-tdep.c (linux_spu_make_corefile_notes): Return note_data
12359         instead of nullptr.
12360
12361 2018-04-16  Pedro Alves  <palves@redhat.com>
12362
12363         * MAINTAINERS (sh): Remove.
12364         * Makefile.in (ALL_TARGET_OBS): Remove sh64-tdep.o.
12365         (HFILES_NO_SRCDIR): Remove sh64-tdep.h.
12366         (ALLDEPFILES): Remove sh64-tdep.c.
12367         * NEWS: Mentions that support for SH-5/SH64 is removed.
12368         * configure.tgt (sh*-*-linux*): Remove reference to sh64-tdep.o.
12369         (sh*-*-openbsd*): Ditto.
12370         (sh64-*-elf*): Remove.
12371         (sh*): Remove.
12372         * regcache.c (cooked_write_test): Remove bfd_mach_sh5 case.
12373         * sh-linux-tdep.c: Remove reference to bfd_mach_sh5.
12374         * sh-tdep.c: No longer include "sh64-tdep.h".
12375         (sh_gdbarch_init): Remove reference to bfd_mach_sh5.
12376         * sh64-tdep.c, sh64-tdep.h: Remove files.
12377
12378 2018-04-16  Pedro Alves  <palves@redhat.com>
12379
12380         * MAINTAINERS: Remove m88k.
12381         * Makefile.in (ALL_TARGET_OBS): Remove m88k-tdep.o.
12382         (HFILES_NO_SRCDIR): Remove m88k-tdep.h.
12383         (ALLDEPFILES): Remove m88k-bsd-nat.c and m88k-tdep.c.
12384         * NEWS: Mention that support for m88k was removed.
12385         * configure.host (m88*-*-*): Remove support.
12386         * configure.nat (m88k-*-*): Remove support.
12387         * configure.tgt (m88*-*-openbsd*): Remove.
12388         * m88k-bsd-nat.c, m88k-tdep.c, m88k-tdep.h: Delete.
12389
12390 2018-04-15  Simon Marchi  <simon.marchi@polymtl.ca>
12391
12392         * configure.tgt (x86_tobjs): New variable.
12393         (amd64_tobjs, i386_tobjs): Use it.
12394
12395 2018-04-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
12396
12397         * symtab.c (print_symbol_info): Precede the symbol definition by
12398         the line number when available.
12399         * NEWS: Advertise this enhancement.
12400
12401 2018-04-13  Markus Metzger  <markus.t.metzger@intel.com>
12402
12403         * NEWS (New options): announce set/show record btrace cpu.
12404         * btrace.c: Include record-btrace.h.
12405         (btrace_compute_ftrace_pt): Skip enabling errata workarounds if
12406         the vendor is unknown.
12407         (btrace_compute_ftrace_1): Add cpu parameter.  Update callers.
12408         Maybe overwrite the btrace configuration's cpu.
12409         (btrace_compute_ftrace): Add cpu parameter.  Update callers.
12410         (btrace_fetch): Add cpu parameter.  Update callers.
12411         (btrace_maint_update_pt_packets): Call record_btrace_get_cpu.
12412         Maybe overwrite the btrace configuration's cpu.  Skip enabling
12413         errata workarounds if the vendor is unknown.
12414         * python/py-record-btrace.c: Include record-btrace.h.
12415         (recpy_bt_begin, recpy_bt_end, recpy_bt_instruction_history)
12416         (recpy_bt_function_call_history): Call record_btrace_get_cpu.
12417         * record-btrace.c (record_btrace_cpu_state_kind): New.
12418         (record_btrace_cpu): New.
12419         (set_record_btrace_cpu_cmdlist): New.
12420         (record_btrace_get_cpu): New.
12421         (require_btrace_thread, record_btrace_info)
12422         (record_btrace_resume_thread): Call record_btrace_get_cpu.
12423         (cmd_set_record_btrace_cpu_none): New.
12424         (cmd_set_record_btrace_cpu_auto): New.
12425         (cmd_set_record_btrace_cpu): New.
12426         (cmd_show_record_btrace_cpu): New.
12427         (_initialize_record_btrace): Initialize set/show record btrace cpu
12428         commands.
12429         * record-btrace.h (record_btrace_get_cpu): New.
12430
12431 2018-04-13  Markus Metzger  <markus.t.metzger@intel.com>
12432
12433         * record.c (set_record_command): Fix typo in message.
12434
12435 2018-04-13  Markus Metzger  <markus.t.metzger@intel.com>
12436
12437         * record-btrace.c (cmd_set_record_btrace): Print sub-commands.
12438
12439 2018-04-13  Markus Metzger  <markus.t.metzger@intel.com>
12440
12441         * infrun.c (process_event_stop_test): Call
12442         gdbarch_in_indirect_branch_thunk.
12443         * gdbarch.sh (in_indirect_branch_thunk): New.
12444         * gdbarch.c: Regenerated.
12445         * gdbarch.h: Regenerated.
12446         * x86-tdep.h: New.
12447         * x86-tdep.c: New.
12448         * Makefile.in (ALL_TARGET_OBS): Add x86-tdep.o.
12449         (HFILES_NO_SRCDIR): Add x86-tdep.h.
12450         (ALLDEPFILES): Add x86-tdep.c.
12451         * arch-utils.h (default_in_indirect_branch_thunk): New.
12452         * arch-utils.c (default_in_indirect_branch_thunk): New.
12453         * i386-tdep: Include x86-tdep.h.
12454         (i386_in_indirect_branch_thunk): New.
12455         (i386_elf_init_abi): Set in_indirect_branch_thunk gdbarch
12456         function.
12457         * amd64-tdep: Include x86-tdep.h.
12458         (amd64_in_indirect_branch_thunk): New.
12459         (amd64_init_abi): Set in_indirect_branch_thunk gdbarch function.
12460
12461 2018-04-12  Jan Kratochvil  <jan.kratochvil@redhat.com>
12462
12463         PR gdb/23053
12464         * dwarf-index-write.c (data_buf::grow) (write_one_signatured_type)
12465         (recursively_write_psymbols) (debug_names::recursively_write_psymbols)
12466         (debug_names::write_one_signatured_type): Fix -D_GLIBCXX_DEBUG
12467         regression.
12468
12469 2018-04-12  Tom Tromey  <tom@tromey.com>
12470
12471         * rust-lang.c (rust_print_struct_def): Remove univariant code.
12472         (rust_evaluate_subexp): Likewise.
12473
12474 2018-04-12  Pedro Alves  <palves@redhat.com>
12475
12476         * procfs.c (procfs_detach): Make forward declaration's prototype
12477         match definition's protototype.
12478         (proc_get_LDT_entry): Remove stale do_cleanups call.
12479
12480 2018-04-12  Pedro Alves  <palves@redhat.com>
12481
12482         * target.h (target_ops::to_has_exited): Delete.
12483         (target_has_exited): Delete.
12484         * target-delegates.c: Regenerate.
12485
12486 2018-04-11  Pedro Alves  <palves@redhat.com>
12487
12488         * target.c (fileio_fh_t::t): Add comment.
12489         (target_fileio_pwrite, target_fileio_pread, target_fileio_fstat)
12490         (target_fileio_close): Handle a NULL target.
12491         (invalidate_fileio_fh): New.
12492         (target_close): Call it.
12493         * remote.c (remote_hostio_send_command): No longer check whether
12494         remote_desc is open.
12495
12496 2018-04-11  Pedro Alves  <palves@redhat.com>
12497
12498         * target.c (fileio_fh_t): Make it a named struct instead of a
12499         typedef.
12500         (fileio_fh_t::is_closed): New method.
12501         (DEF_VEC_O (fileio_fh_t)): Remove.
12502         (fileio_fhandles): Now a std::vector.
12503         (is_closed_fileio_fh): Delete.
12504         (acquire_fileio_fd): Adjust.  Rename parameters.
12505         (release_fileio_fd): Adjust.
12506         (fileio_fd_to_fh): Reimplement as a function instead of a macro.
12507         (target_fileio_pwrite, target_fileio_pread, target_fileio_fstat)
12508         (target_fileio_close): Adjust.
12509
12510 2018-04-10  Simon Marchi  <simon.marchi@ericsson.com>
12511
12512         * auto-load.c (auto_load_safe_path_vec_update): Iterate by
12513         index.
12514
12515 2018-04-10  Pedro Alves  <palves@redhat.com>
12516
12517         * gdbthread.h (finish_thread_state_cleanup): Delete declaration.
12518         (scoped_finish_thread_state): New class.
12519         * infcmd.c (run_command_1): Use it instead of finish_thread_state
12520         cleanup.
12521         * infrun.c (proceed, prepare_for_detach, wait_for_inferior)
12522         (fetch_inferior_event, normal_stop): Likewise.
12523         * thread.c (finish_thread_state_cleanup): Delete.
12524
12525 2018-04-09  Simon Marchi  <simon.marchi@polymtl.ca>
12526             Pedro Alves  <palves@redhat.com>
12527
12528         * value.c: Include "selftest.h" and "common/array-view.h".
12529         (struct range) <operator ==>: New.
12530         (test_ranges_contain): New.
12531         (check_ranges_vector): New.
12532         (test_insert_into_bit_range_vector): New.
12533         (_initialize_values): Register selftests.
12534         * common/array-view.h (operator==, operator!=): New.
12535
12536 2018-04-09  Simon Marchi  <simon.marchi@polymtl.ca>
12537
12538         * common/gdb_vecs.h (unordered_remove): Add overload that takes
12539         an iterator.
12540         * inline-frame.c: Include <algorithm>.
12541         (struct inline_state): Add constructor.
12542         (inline_state_s): Remove.
12543         (DEF_VEC_O(inline_state_s)): Remove.
12544         (inline_states): Change type to std::vector.
12545         (find_inline_frame_state): Adjust to std::vector.
12546         (allocate_inline_frame_state): Remove.
12547         (clear_inline_frame_state): Adjust to std::vector.
12548         (skip_inline_frames): Adjust to std::vector.
12549
12550 2018-04-09  Simon Marchi  <simon.marchi@polymtl.ca>
12551
12552         * tracepoint.h (struct trace_state_variable): Add constructor.
12553         <name>: Change type to std::string.
12554         * tracepoint.c (tsv_s): Remove.
12555         (DEF_VEC_O(tsv_s)): Remove.
12556         (tvariables): Change to std::vector.
12557         (create_trace_state_variable): Adjust to std::vector.
12558         (find_trace_state_variable): Likewise.
12559         (find_trace_state_variable_by_number): Likewise.
12560         (delete_trace_state_variable): Likewise.
12561         (trace_variable_command): Adjust to std::string.
12562         (delete_trace_variable_command): Likewise.
12563         (tvariables_info_1): Adjust to std::vector.
12564         (save_trace_state_variables): Likewise.
12565         (start_tracing): Likewise.
12566         (merge_uploaded_trace_state_variables): Adjust to std::vector
12567         and std::string.
12568         * target.h (struct target_ops)
12569         <to_download_trace_state_variable>: Pass reference to
12570         trace_state_variable.
12571         * target-debug.h (target_debug_print_const_trace_state_variable_r): New.
12572         * target-delegates.c: Re-generate.
12573         * mi/mi-interp.c (mi_tsv_created): Adjust to std::string.
12574         (mi_tsv_deleted): Likewise.
12575         * mi/mi-main.c (mi_cmd_trace_frame_collected): Likewise.
12576         * remote.c (remote_download_trace_state_variable): Change
12577         pointer to reference and adjust.
12578         * make-target-delegates (parse_argtypes): Handle references.
12579         (write_function_header): Likewise.
12580         (munge_type): Likewise.
12581
12582 2018-04-09  Simon Marchi  <simon.marchi@polymtl.ca>
12583
12584         * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
12585         string_view-selftests.c.
12586         * unittests/basic_string_view/capacity/1.cc: Adapt to GDB
12587         testsuite.
12588         * unittests/basic_string_view/cons/char/1.cc: Likewise.
12589         * unittests/basic_string_view/cons/char/2.cc: Likewise.
12590         * unittests/basic_string_view/cons/char/3.cc: Likewise.
12591         * unittests/basic_string_view/element_access/char/1.cc:
12592         Likewise.
12593         * unittests/basic_string_view/element_access/char/empty.cc:
12594         Likewise.
12595         * unittests/basic_string_view/element_access/char/front_back.cc:
12596         Likewise.
12597         * unittests/basic_string_view/inserters/char/2.cc: Likewise.
12598         * unittests/basic_string_view/modifiers/remove_prefix/char/1.cc:
12599         Likewise.
12600         * unittests/basic_string_view/modifiers/remove_suffix/char/1.cc:
12601         Likewise.
12602         * unittests/basic_string_view/modifiers/swap/char/1.cc:
12603         Likewise.
12604         * unittests/basic_string_view/operations/compare/char/1.cc:
12605         Likewise.
12606         * unittests/basic_string_view/operations/compare/char/13650.cc:
12607         Likewise.
12608         * unittests/basic_string_view/operations/copy/char/1.cc:
12609         Likewise.
12610         * unittests/basic_string_view/operations/data/char/1.cc:
12611         Likewise.
12612         * unittests/basic_string_view/operations/find/char/1.cc:
12613         Likewise.
12614         * unittests/basic_string_view/operations/find/char/2.cc:
12615         Likewise.
12616         * unittests/basic_string_view/operations/find/char/3.cc:
12617         Likewise.
12618         * unittests/basic_string_view/operations/find/char/4.cc:
12619         Likewise.
12620         * unittests/basic_string_view/operations/rfind/char/1.cc:
12621         Likewise.
12622         * unittests/basic_string_view/operations/rfind/char/2.cc:
12623         Likewise.
12624         * unittests/basic_string_view/operations/rfind/char/3.cc:
12625         Likewise.
12626         * unittests/basic_string_view/operations/substr/char/1.cc:
12627         Likewise.
12628         * unittests/basic_string_view/operators/char/2.cc: Likewise.
12629         * unittests/string_view-selftests.c: New file.
12630
12631 2018-04-09  Simon Marchi  <simon.marchi@polymtl.ca>
12632
12633         * unittests/basic_string_view/capacity/1.cc: New file.
12634         * unittests/basic_string_view/capacity/empty_neg.cc: New file.
12635         * unittests/basic_string_view/cons/char/1.cc: New file.
12636         * unittests/basic_string_view/cons/char/2.cc: New file.
12637         * unittests/basic_string_view/cons/char/3.cc: New file.
12638         * unittests/basic_string_view/cons/wchar_t/1.cc: New file.
12639         * unittests/basic_string_view/cons/wchar_t/2.cc: New file.
12640         * unittests/basic_string_view/cons/wchar_t/3.cc: New file.
12641         * unittests/basic_string_view/element_access/char/1.cc: New file.
12642         * unittests/basic_string_view/element_access/char/2.cc: New file.
12643         * unittests/basic_string_view/element_access/char/empty.cc: New file.
12644         * unittests/basic_string_view/element_access/char/front_back.cc: New file.
12645         * unittests/basic_string_view/element_access/wchar_t/1.cc: New file.
12646         * unittests/basic_string_view/element_access/wchar_t/2.cc: New file.
12647         * unittests/basic_string_view/element_access/wchar_t/empty.cc: New file.
12648         * unittests/basic_string_view/element_access/wchar_t/front_back.cc: New file.
12649         * unittests/basic_string_view/include.cc: New file.
12650         * unittests/basic_string_view/inserters/char/1.cc: New file.
12651         * unittests/basic_string_view/inserters/char/2.cc: New file.
12652         * unittests/basic_string_view/inserters/char/3.cc: New file.
12653         * unittests/basic_string_view/inserters/pod/10081-out.cc: New file.
12654         * unittests/basic_string_view/inserters/wchar_t/1.cc: New file.
12655         * unittests/basic_string_view/inserters/wchar_t/2.cc: New file.
12656         * unittests/basic_string_view/inserters/wchar_t/3.cc: New file.
12657         * unittests/basic_string_view/literals/types.cc: New file.
12658         * unittests/basic_string_view/literals/values.cc: New file.
12659         * unittests/basic_string_view/modifiers/remove_prefix/char/1.cc: New file.
12660         * unittests/basic_string_view/modifiers/remove_prefix/wchar_t/1.cc: New file.
12661         * unittests/basic_string_view/modifiers/remove_suffix/char/1.cc: New file.
12662         * unittests/basic_string_view/modifiers/remove_suffix/wchar_t/1.cc: New file.
12663         * unittests/basic_string_view/modifiers/swap/char/1.cc: New file.
12664         * unittests/basic_string_view/modifiers/swap/wchar_t/1.cc: New file.
12665         * unittests/basic_string_view/operations/compare/char/1.cc: New file.
12666         * unittests/basic_string_view/operations/compare/char/13650.cc: New file.
12667         * unittests/basic_string_view/operations/compare/char/2.cc: New file.
12668         * unittests/basic_string_view/operations/compare/char/70483.cc: New file.
12669         * unittests/basic_string_view/operations/compare/wchar_t/1.cc: New file.
12670         * unittests/basic_string_view/operations/compare/wchar_t/13650.cc: New file.
12671         * unittests/basic_string_view/operations/compare/wchar_t/2.cc: New file.
12672         * unittests/basic_string_view/operations/copy/char/1.cc: New file.
12673         * unittests/basic_string_view/operations/copy/wchar_t/1.cc: New file.
12674         * unittests/basic_string_view/operations/data/char/1.cc: New file.
12675         * unittests/basic_string_view/operations/data/wchar_t/1.cc: New file.
12676         * unittests/basic_string_view/operations/find/char/1.cc: New file.
12677         * unittests/basic_string_view/operations/find/char/2.cc: New file.
12678         * unittests/basic_string_view/operations/find/char/3.cc: New file.
12679         * unittests/basic_string_view/operations/find/char/4.cc: New file.
12680         * unittests/basic_string_view/operations/find/wchar_t/1.cc: New file.
12681         * unittests/basic_string_view/operations/find/wchar_t/2.cc: New file.
12682         * unittests/basic_string_view/operations/find/wchar_t/3.cc: New file.
12683         * unittests/basic_string_view/operations/find/wchar_t/4.cc: New file.
12684         * unittests/basic_string_view/operations/rfind/char/1.cc: New file.
12685         * unittests/basic_string_view/operations/rfind/char/2.cc: New file.
12686         * unittests/basic_string_view/operations/rfind/char/3.cc: New file.
12687         * unittests/basic_string_view/operations/rfind/wchar_t/1.cc: New file.
12688         * unittests/basic_string_view/operations/rfind/wchar_t/2.cc: New file.
12689         * unittests/basic_string_view/operations/rfind/wchar_t/3.cc: New file.
12690         * unittests/basic_string_view/operations/string_conversion/1.cc: New file.
12691         * unittests/basic_string_view/operations/substr/char/1.cc: New file.
12692         * unittests/basic_string_view/operations/substr/wchar_t/1.cc: New file.
12693         * unittests/basic_string_view/operators/char/2.cc: New file.
12694         * unittests/basic_string_view/operators/wchar_t/2.cc: New file.
12695         * unittests/basic_string_view/range_access/char/1.cc: New file.
12696         * unittests/basic_string_view/range_access/wchar_t/1.cc: New file.
12697         * unittests/basic_string_view/requirements/explicit_instantiation/1.cc: New file.
12698         * unittests/basic_string_view/requirements/explicit_instantiation/char/1.cc: New file.
12699         * unittests/basic_string_view/requirements/explicit_instantiation/char16_t/1.cc: New file.
12700         * unittests/basic_string_view/requirements/explicit_instantiation/char32_t/1.cc: New file.
12701         * unittests/basic_string_view/requirements/explicit_instantiation/wchar_t/1.cc: New file.
12702         * unittests/basic_string_view/requirements/typedefs.cc: New file.
12703         * unittests/basic_string_view/typedefs.cc: New file.
12704         * unittests/basic_string_view/types/1.cc: New file.
12705
12706 2018-04-09  Simon Marchi  <simon.marchi@polymtl.ca>
12707
12708         * common/gdb_string_view.h: Remove libstdc++ implementation
12709         details, adjust to gdb reality.
12710         * common/gdb_string_view.tcc: Likewise.
12711         * cli/cli-script.c (struct string_view): Remove.
12712         (user_args) <m_args>: Change element type to gdb::string_view.
12713         (user_args::insert_args): Adjust.
12714
12715 2018-04-09  Simon Marchi  <simon.marchi@polymtl.ca>
12716
12717         * common/gdb_string_view.h: New file.
12718         * common/gdb_string_view.tcc: New file.
12719
12720 2018-04-09  Simon Marchi  <simon.marchi@polymtl.ca>
12721
12722         * ax_cxx_compile_stdcxx.m4: Sync with upstream.
12723         * configure: Re-generate.
12724
12725 2018-04-09  Pedro Alves  <palves@redhat.com>
12726
12727         * gdbarch.sh: Include "observable.h" instead of "observer.h".
12728         (set_target_gdbarch): Call
12729         gdb::observers::architecture_changed.notify instead of
12730         observer_notify_architecture_changed.
12731
12732 2018-04-07  Simon Marchi  <simon.marchi@polymtl.ca>
12733
12734         * tracepoint.c (struct current_traceframe_cleanup): Remove.
12735         (do_restore_current_traceframe_cleanup): Remove.
12736         (restore_current_traceframe_cleanup_dtor): Remove.
12737         (make_cleanup_restore_current_traceframe): Remove.
12738         (scoped_restore_current_traceframe::scoped_restore_current_traceframe):
12739         New.
12740         * tracepoint.h (struct scoped_restore_current_traceframe): New.
12741         * infrun.c (fetch_inferior_event): Use
12742         scoped_restore_current_traceframe.
12743
12744 2018-04-07  Simon Marchi  <simon.marchi@polymtl.ca>
12745
12746         * dwarf2read.h (struct dwarf2_per_objfile) <n_type_units>:
12747         Remove.
12748         <n_allocated_type_units>: Remove.
12749         <all_type_units>: Change to std::vector.
12750         * dwarf2read.c (dwarf2_per_objfile::~dwarf2_per_objfile): Adjust
12751         to std::vector change.
12752         (dwarf2_per_objfile::get_cutu): Likewise.
12753         (dwarf2_per_objfile::get_tu): Likewise.
12754         (create_signatured_type_table_from_index): Likewise.
12755         (create_signatured_type_table_from_debug_names): Likewise.
12756         (dw2_symtab_iter_next): Likewise.
12757         (dw2_print_stats): Likewise.
12758         (dw2_expand_all_symtabs): Likewise.
12759         (dw2_expand_marked_cus): Likewise.
12760         (dw2_debug_names_iterator::next): Likewise.
12761         (dwarf2_initialize_objfile): Likewise.
12762         (add_signatured_type_cu_to_table): Likewise.
12763         (create_all_type_units): Likewise.
12764         (add_type_unit): Likewise.
12765         (struct tu_abbrev_offset): Add constructor.
12766         (build_type_psymtabs_1): Adjust to std::vector change.
12767         (print_tu_stats): Likewise.
12768         * dwarf-index-write.c (check_dwarf64_offsets): Likewise.
12769         (write_debug_names): Likewise.
12770
12771 2018-04-07  Simon Marchi  <simon.marchi@polymtl.ca>
12772
12773         * dwarf2read.h (struct dwarf2_per_objfile) <all_comp_units>: Likewise.
12774         Make an std::vector.
12775         <n_comp_units>: Remove.
12776         * dwarf2read.c (dwarf2_per_objfile::~dwarf2_per_objfile): Adjust
12777         to std::vector change.
12778         (dwarf2_per_objfile::get_cutu): Likewise.
12779         (dwarf2_per_objfile::get_cu): Likewise.
12780         (create_cus_from_index): Likewise.
12781         (create_addrmap_from_index): Likewise.
12782         (create_addrmap_from_aranges): Likewise.
12783         (dwarf2_read_index): Likewise.
12784         (dw2_find_last_source_symtab): Likewise.
12785         (dw2_map_symtabs_matching_filename): Likewise.
12786         (dw2_symtab_iter_next): Likewise.
12787         (dw2_print_stats): Likewise.
12788         (dw2_expand_all_symtabs): Likewise.
12789         (dw2_expand_symtabs_with_fullname): Likewise.
12790         (dw2_expand_marked_cus): Likewise.
12791         (dw2_map_symbol_filenames): Likewise.
12792         (create_cus_from_debug_names): Likewise.
12793         (dwarf2_read_debug_names): Likewise.
12794         (dw2_debug_names_iterator::next): Likewise.
12795         (dwarf2_initialize_objfile): Likewise.
12796         (set_partial_user): Likewise.
12797         (dwarf2_build_psymtabs_hard): Likewise.
12798         (read_comp_units_from_section): Remove arguments, adjust to
12799         std::vector change.
12800         (create_all_comp_units): Adjust to std::vector and
12801         read_comp_units_from_section changes.
12802         (dwarf2_find_containing_comp_unit): Adjust to std::vector
12803         change.
12804         * dwarf-index-write.c (check_dwarf64_offsets): Likewise.
12805         (psyms_seen_size): Likewise.
12806         (write_gdbindex): Likewise.
12807         (write_debug_names): Likewise.
12808
12809 2018-04-07  Simon Marchi  <simon.marchi@polymtl.ca>
12810
12811         * dwarf2read.c (create_cus_from_index_list): Replace objfile arg
12812         with dwarf2_per_objfile.
12813         (create_cus_from_index): Likewise.
12814         (create_signatured_type_table_from_index): Likewise.
12815         (dwarf2_read_index): Likewise.
12816         (dwarf2_initialize_objfile): Likewise.
12817         (dwarf2_fetch_die_loc_sect_off):  Get dwarf2_per_objfile from
12818         per_cu rather than get_dwarf2_per_objfile.
12819
12820 2018-04-07  Simon Marchi  <simon.marchi@polymtl.ca>
12821
12822         * dwarf2read.h (struct signatured_type): Forward declare.
12823         (struct dwarf2_per_objfile) <get_cutu, get_cu, get_tu>:
12824         New methods.
12825         * dwarf2read.c (dwarf2_per_objfile::get_cutu): Rename from...
12826         (dw2_get_cutu): ...this.
12827         (dwarf2_per_objfile::get_cu): Rename from...
12828         (dw2_get_cu): ...this.
12829         (dwarf2_per_objfile::get_tu): New.
12830         (create_addrmap_from_index): Adjust.
12831         (create_addrmap_from_aranges): Adjust.
12832         (dw2_find_last_source_symtab): Adjust.
12833         (dw2_map_symtabs_matching_filename): Adjust.
12834         (dw2_symtab_iter_next): Adjust.
12835         (dw2_print_stats): Adjust.
12836         (dw2_expand_all_symtabs): Adjust.
12837         (dw2_expand_symtabs_with_fullname): Adjust.
12838         (dw2_expand_marked_cus): Adjust.
12839         (dw_expand_symtabs_matching_file_matcher): Adjust.
12840         (dw2_map_symbol_filenames): Adjust.
12841         (dw2_debug_names_iterator::next): Adjust.
12842         (dwarf2_initialize_objfile): Adjust.
12843         (set_partial_user): Adjust.
12844         (dwarf2_build_psymtabs_hard): Adjust.
12845
12846 2018-04-07  Simon Marchi  <simon.marchi@polymtl.ca>
12847
12848         * dwarf2read.c (create_signatured_type_table_from_debug_names):
12849         Remove unused variables.
12850         (dw2_map_symtabs_matching_filename): Likewise.
12851         (dwarf2_record_block_ranges): Likewise.
12852         (dwarf2_read_addr_index): Likewise.
12853         (follow_die_offset): Likewise.
12854
12855 2018-04-07  Simon Marchi  <simon.marchi@polymtl.ca>
12856
12857         * progspace.c (clone_program_space): Pass SYMFILE_DEFER_BP_RESET
12858         to symbol_file_add_main.
12859
12860 2018-04-07  Simon Marchi  <simon.marchi@polymtl.ca>
12861
12862         PR mi/22299
12863         * mi/mi-console.c (do_fputc_async_safe): New.
12864         (mi_console_file::write_async_safe): New.
12865         (mi_console_file::flush): Adjust calls to fputstrn_unfiltered.
12866         * mi/mi-console.h (class mi_console_file) <write_async_safe>:
12867         New.
12868         * ui-file.c (ui_file::putstrn): Adjust call to
12869         fputstrn_unfiltered.
12870         * utils.c (printchar): Replace do_fputs and do_fprintf
12871         parameters by do_fputc.
12872         (fputstr_filtered): Adjust call to printchar.
12873         (fputstr_unfiltered): Likewise.
12874         (fputstrn_filtered): Likewise.
12875         (fputstrn_unfiltered): Add do_fputc parameter, pass to
12876         printchar.
12877         * utils.h (do_fputc_ftype): New typedef.
12878         (fputstrn_unfiltered): Add do_fputc parameter.
12879
12880 2018-04-07  Simon Marchi  <simon.marchi@polymtl.ca>
12881
12882         * regformats/i386/i386-avx.dat: Remove.
12883
12884 2018-04-07  Simon Marchi  <simon.marchi@ericsson.com>
12885
12886         PR gdb/22979
12887         * amd64-tdep.c (amd64_none_init_abi): New function.
12888         (amd64_x32_none_init_abi): New function.
12889         (_initialize_amd64_tdep): Register handlers for x86-64 and
12890         x64_32 with GDB_OSABI_NONE.
12891         * osabi.c (gdbarch_init_osabi): Allow running handlers for the
12892         GDB_OSABI_NONE osabi.
12893
12894 2018-04-07  Simon Marchi  <simon.marchi@ericsson.com>
12895
12896         PR gdb/22980
12897         * defs.h (enum gdb_osabi): Remove GDB_OSABI_UNINITIALIZED, add
12898         GDB_OSABI_NONE.
12899         * arch-utils.c (gdbarch_info_init): Don't set info->osabi.
12900         * osabi.c (gdb_osabi_names): Add "unknown" entry.
12901
12902 2018-04-07  Simon Marchi  <simon.marchi@ericsson.com>
12903
12904         * common/byte-vector.h (char_vector): New type.
12905         * target.h (target_read_alloc): Return
12906         gdb::optional<byte_vector>.
12907         (target_read_stralloc): Return gdb::optional<char_vector>.
12908         (target_get_osdata): Return gdb::optional<char_vector>.
12909         * target.c (target_read_alloc_1): Templatize.  Replacement
12910         manual memory management with vector.
12911         (target_read_alloc): Change return type, adjust.
12912         (target_read_stralloc): Change return type, adjust.
12913         (target_get_osdata): Change return type, adjust.
12914         * auxv.c (struct auxv_info) <length>: Remove.
12915         <data>: Change type to gdb::optional<byte_vector>.
12916         (auxv_inferior_data_cleanup): Free auxv_info with delete.
12917         (get_auxv_inferior_data): Allocate auxv_info with new, adjust.
12918         (target_auxv_search): Adjust.
12919         (fprint_target_auxv): Adjust.
12920         * avr-tdep.c (avr_io_reg_read_command): Adjust.
12921         * linux-tdep.c (linux_spu_make_corefile_notes): Adjust.
12922         (linux_make_corefile_notes): Adjust.
12923         * osdata.c (get_osdata): Adjust.
12924         * remote.c (remote_get_threads_with_qxfer): Adjust.
12925         (remote_memory_map): Adjust.
12926         (remote_traceframe_info): Adjust.
12927         (btrace_read_config): Adjust.
12928         (remote_read_btrace): Adjust.
12929         (remote_pid_to_exec_file): Adjust.
12930         * solib-aix.c (solib_aix_get_library_list): Adjust.
12931         * solib-dsbt.c (decode_loadmap): Don't free buf.
12932         (dsbt_get_initial_loadmaps): Adjust.
12933         * solib-svr4.c (svr4_current_sos_via_xfer_libraries): Adjust.
12934         * solib-target.c (solib_target_current_sos): Adjust.
12935         * tracepoint.c (sdata_make_value): Adjust.
12936         * xml-support.c (xinclude_start_include): Adjust.
12937         (xml_fetch_content_from_file): Adjust.
12938         * xml-support.h (xml_fetch_another): Change return type.
12939         (xml_fetch_content_from_file): Change return type.
12940         * xml-syscall.c (xml_init_syscalls_info): Adjust.
12941         * xml-tdesc.c (file_read_description_xml): Adjust.
12942         (fetch_available_features_from_target): Change return type.
12943         (target_fetch_description_xml): Adjust.
12944         (target_read_description_xml): Adjust.
12945
12946 2018-04-06  Tom Tromey  <tom@tromey.com>
12947
12948         * value.c (~value): Update.
12949         (struct value) <contents>: Now unique_xmalloc_ptr.
12950         (value_contents_bits_eq, allocate_value_contents)
12951         (value_contents_raw, value_contents_all_raw)
12952         (value_contents_for_printing, value_contents_for_printing_const)
12953         (set_value_enclosing_type): Update.
12954
12955 2018-04-06  Tom Tromey  <tom@tromey.com>
12956
12957         * value.c (range_s): Remove typedef, VEC.
12958         (struct range): Add operator<.
12959         (range_lessthan): Remove.
12960         (ranges_contain): Change type.
12961         (~value): Update.
12962         (struct value) <unavailable, optimized_out>: Now std::vector.
12963         (value_entirely_available)
12964         (value_entirely_covered_by_range_vector)
12965         (value_entirely_unavailable, value_entirely_optimized_out):
12966         Update.
12967         (insert_into_bit_range_vector): Change argument type.
12968         (find_first_range_overlap): Likewise.
12969         (struct ranges_and_idx, value_contents_bits_eq)
12970         (require_not_optimized_out, require_available): Update.
12971         (ranges_copy_adjusted): Change argument types.
12972         (value_optimized_out, value_copy, value_fetch_lazy): Update.
12973
12974 2018-04-06  Tom Tromey  <tom@tromey.com>
12975
12976         * value.c (~value): Update.
12977         (struct value) <parent>: Now a value_ref_ptr.
12978         (value_parent, set_value_parent, value_address, value_copy):
12979         Update.
12980
12981 2018-04-06  Tom Tromey  <tom@tromey.com>
12982
12983         * value.c (struct value): Add constructor, destructor, and member
12984         initializers.
12985         (allocate_value_lazy, value_decref): Update.
12986
12987 2018-04-06  Tom Tromey  <tom@tromey.com>
12988
12989         * value.c (struct value) <released, next>: Remove.
12990         (all_values): Now a std::vector.
12991         (allocate_value_lazy): Update.
12992         (value_next): Remove.
12993         (value_mark, value_free_to_mark, release_value)
12994         (value_release_to_mark): Update.
12995
12996 2018-04-06  Tom Tromey  <tom@tromey.com>
12997
12998         * value.h (fetch_subexp_value, value_release_to_mark): Update.
12999         (free_value_chain): Remove.
13000         * value.c (free_value_chain): Remove.
13001         (value_release_to_mark): Return a std::vector.
13002         * ppc-linux-nat.c (num_memory_accesses): Change "chain" to a
13003         std::vector.
13004         (check_condition): Update.
13005         * eval.c (fetch_subexp_value): Change "val_chain" to a
13006         std::vector.
13007         * breakpoint.c (update_watchpoint): Update.
13008         (can_use_hardware_watchpoint): Change "vals" to a std::vector.
13009
13010 2018-04-06  Tom Tromey  <tom@tromey.com>
13011
13012         * value.h (free_all_values): Remove.
13013         * value.c (free_all_values): Remove.
13014
13015 2018-04-06  Tom Tromey  <tom@tromey.com>
13016
13017         * value.c (VALUE_HISTORY_CHUNK, struct value_history_chunk)
13018         (value_history_chain, value_history_count): Remove.
13019         (value_history): New global.
13020         (record_latest_value, access_value_history, show_values)
13021         (preserve_values): Update.
13022
13023 2018-04-06  Tom Tromey  <tom@tromey.com>
13024
13025         * varobj.h (struct varobj) <value>: Now a value_ref_ptr.
13026         * varobj.c (varobj_set_display_format, varobj_set_value)
13027         (install_default_visualizer, construct_visualizer)
13028         (install_new_value, ~varobj, varobj_get_value_type)
13029         (my_value_of_variable, varobj_editable_p): Update.
13030         * c-varobj.c (c_describe_child, c_value_of_variable)
13031         (cplus_number_of_children, cplus_describe_child): Update.
13032         * ada-varobj.c (ada_number_of_children, ada_name_of_child)
13033         (ada_path_expr_of_child, ada_value_of_child, ada_type_of_child)
13034         (ada_value_of_variable, ada_value_is_changeable_p): Update.
13035
13036 2018-04-06  Tom Tromey  <tom@tromey.com>
13037
13038         * printcmd.c (last_examine_address): Change type to
13039         value_ref_ptr.
13040         (do_examine, x_command): Update.
13041
13042 2018-04-06  Tom Tromey  <tom@tromey.com>
13043
13044         * value.c (release_value): Update.
13045         * breakpoint.h (struct watchpoint) <val>: Now a value_ref_ptr.
13046         (struct bpstats) <val>: Now a value_ref_ptr.
13047         * breakpoint.c (update_watchpoint, breakpoint_init_inferior)
13048         (~bpstats, bpstats, bpstat_clear_actions, watchpoint_check)
13049         (~watchpoint, print_it_watchpoint, watch_command_1)
13050         (invalidate_bp_value_on_memory_change): Update.
13051
13052 2018-04-06  Tom Tromey  <tom@tromey.com>
13053
13054         * varobj.c (varobj_clear_saved_item)
13055         (update_dynamic_varobj_children, install_new_value, ~varobj):
13056         Update.
13057         * value.h (value_incref): Move declaration earlier.
13058         (value_decref): Rename from value_free.
13059         (struct value_ref_policy): New.
13060         (value_ref_ptr): New typedef.
13061         (struct value_deleter): Remove.
13062         (gdb_value_up): Remove typedef.
13063         (release_value): Change return type.
13064         (release_value_or_incref): Remove.
13065         * value.c (set_value_parent): Update.
13066         (value_incref): Change return type.
13067         (value_decref): Rename from value_free.
13068         (value_free_to_mark, free_all_values, free_value_chain): Update.
13069         (release_value): Return value_ref_ptr.
13070         (release_value_or_incref): Remove.
13071         (record_latest_value, set_internalvar, clear_internalvar):
13072         Update.
13073         * stack.c (info_frame_command): Don't call value_free.
13074         * python/py-value.c (valpy_dealloc, valpy_new)
13075         (value_to_value_object): Update.
13076         * printcmd.c (do_examine): Update.
13077         * opencl-lang.c (lval_func_free_closure): Update.
13078         * mi/mi-main.c (register_changed_p): Don't call value_free.
13079         * mep-tdep.c (mep_frame_prev_register): Don't call value_free.
13080         * m88k-tdep.c (m88k_frame_prev_register): Don't call value_free.
13081         * m68hc11-tdep.c (m68hc11_frame_prev_register): Don't call
13082         value_free.
13083         * guile/scm-value.c (vlscm_free_value_smob)
13084         (vlscm_scm_from_value): Update.
13085         * frame.c (frame_register_unwind, frame_unwind_register_signed)
13086         (frame_unwind_register_unsigned, get_frame_register_bytes)
13087         (put_frame_register_bytes): Don't call value_free.
13088         * findvar.c (address_from_register): Don't call value_free.
13089         * dwarf2read.c (dwarf2_compute_name): Don't call value_free.
13090         * dwarf2loc.c (entry_data_value_free_closure)
13091         (value_of_dwarf_reg_entry, free_pieced_value_closure)
13092         (dwarf2_evaluate_loc_desc_full): Update.
13093         * breakpoint.c (update_watchpoint, breakpoint_init_inferior)
13094         (~bpstats, bpstats, bpstat_clear_actions, watchpoint_check)
13095         (~watchpoint, watch_command_1)
13096         (invalidate_bp_value_on_memory_change): Update.
13097         * alpha-tdep.c (alpha_register_to_value): Don't call value_free.
13098
13099 2018-04-06  Simon Marchi  <simon.marchi@polymtl.ca>
13100
13101         PR gdb/23022
13102         * warning.m4: Add -Wno-error=deprecated-register.
13103         * configure: Re-generate.
13104
13105 2018-04-05  Tom Tromey  <tom@tromey.com>
13106
13107         * linespec.h: Remove include of "vec.h".
13108
13109 2018-04-05  Tom Tromey  <tom@tromey.com>
13110
13111         * linespec.c (typep): Remove typedef.
13112         (find_methods, find_superclass_methods): Take a std::vector.
13113         (find_method): Use std::vector.
13114
13115 2018-04-05  Tom Tromey  <tom@tromey.com>
13116
13117         * utils.c (compare_strings): Remove.
13118         * utils.h (compare_strings): Remove.
13119         * objc-lang.h (find_imps): Update.
13120         * objc-lang.c (find_methods): Take a std::vector.
13121         (uniquify_strings, find_imps): Likewise.
13122         * linespec.c (find_methods): Take a std::vector.
13123         (decode_objc): Use std::vector.
13124         (add_all_symbol_names_from_pspace, find_superclass_methods): Take
13125         a std::vector.
13126         (find_method, find_function_symbols): Use std::vector.
13127
13128 2018-04-05  Tom Tromey  <tom@tromey.com>
13129
13130         * completer.c (completion_tracker::completion_tracker): Remove
13131         cast.
13132         (completion_tracker::discard_completions): Likewise.
13133         * breakpoint.c (ambiguous_names_p): Remove cast.
13134         * ada-lang.c (_initialize_ada_language): Remove cast.
13135         * utils.h (streq): Update.
13136         (streq_hash): Add new declaration.
13137         * utils.c (streq): Return bool.
13138         (streq_hash): New function.
13139
13140 2018-04-05  Tom Tromey  <tom@tromey.com>
13141
13142         * linespec.c (event_location_to_sals) <case ADDRESS_LOCATION>:
13143         Remove a string copy.
13144
13145 2018-04-05  Tom Tromey  <tom@tromey.com>
13146
13147         * linespec.c (filter_results): Use std::vector.
13148         (decode_line_2, decode_line_full): Update.
13149
13150 2018-04-05  Tom Tromey  <tom@tromey.com>
13151
13152         * linespec.c (canonical_to_fullform): Return std::string.
13153         (filter_results): Update.
13154         (struct decode_line_2_item): Add constructor.
13155         <fullform, displayform>: Now std::string.
13156         (decode_line_2_compare_items): Now a std::sort comparator.
13157         (decode_line_2): Update.
13158
13159 2018-04-05  Tom Tromey  <tom@tromey.com>
13160
13161         * linespec.c (copy_token_string): Return a unique_xmalloc_ptr.
13162         (unexpected_linespec_error): Update.
13163         (linespec_parse_basic, parse_linespec): Update.
13164
13165 2018-04-05  Tom Tromey  <tom@tromey.com>
13166
13167         * linespec.c (linespec_parse_basic): Reindent.
13168
13169 2018-04-05  Tom Tromey  <tom@tromey.com>
13170
13171         * minsyms.h (iterate_over_minimal_symbols): Update.
13172         * minsyms.c (iterate_over_minimal_symbols): Take a
13173         gdb::function_view.
13174         * linespec.c (struct collect_minsyms): Remove.
13175         (compare_msyms): Now a std::sort comparator.
13176         (add_minsym): Add parameters.
13177         (search_minsyms_for_name): Update.  Use std::vector.
13178
13179 2018-04-03  Tom Tromey  <tom@tromey.com>
13180
13181         * mipsread.c (read_alphacoff_dynamic_symtab): Use
13182         gdb::byte_vector.
13183
13184 2018-04-02  Weimin Pan  <weimin.pan@oracle.com>
13185
13186         * MAINTAINERS (Write After Approval): Add Weimin Pan.
13187
13188 2018-04-02  Weimin Pan  <weimin.pan@oracle.com>
13189
13190         PR gdb/16959
13191         * cp-valprint.c: (cp_print_static_field) Fix infinite recursion when 
13192         printing static type.
13193
13194 2018-04-01  Tom Tromey  <tom@tromey.com>
13195
13196         * rs6000-nat.c (rs6000_ptrace_ldinfo): Return a byte_vector.
13197         (rs6000_xfer_shared_libraries): Update.
13198
13199 2018-04-01  Simon Marchi  <simon.marchi@polymtl.ca>
13200
13201         * common/gdb_vecs.h (char_ptr): Remove.
13202         * tracepoint.c (encode_actions_1): Remove usage of char_ptr.
13203
13204 2018-03-30  Simon Marchi  <simon.marchi@polymtl.ca>
13205
13206         * guile/scm-utils.c (gdbscm_parse_function_args): Replace VEC
13207         with std::vector.
13208         * common/gdb_vecs.h (DEF_VEC_P (char_ptr)): Remove.
13209
13210 2018-03-30  Simon Marchi  <simon.marchi@polymtl.ca>
13211
13212         * tracepoint.h (struct uploaded_tp): Initialize fields.
13213         <actions, step_actions, cmd_strings>: Change type to
13214         std::vector<char *>.
13215         * tracepoint.c (get_uploaded_tp): Allocate with new.
13216         (free_uploaded_tps): Free with delete.
13217         (parse_tracepoint_definition): Adjust to std::vector change.
13218         * breakpoint.c (read_uploaded_action): Likewise.
13219         (create_tracepoint_from_upload): Likewise.
13220         * ctf.c (ctf_write_uploaded_tp): Likewise.
13221         (SET_ARRAY_FIELD): Likewise.
13222         * tracefile-tfile.c (tfile_write_uploaded_tp): Likewise.
13223
13224 2018-03-30  Tom Tromey  <tom@tromey.com>
13225
13226         * solib-svr4.c (lm_info_read): Use gdb::byte_vector.  Return
13227         std::unique_ptr.
13228         (svr4_keep_data_in_core): Update.
13229         (svr4_read_so_list): Update.
13230
13231 2018-03-30  Tom Tromey  <tom@tromey.com>
13232
13233         * windows-nat.c (handle_output_debug_string, handle_exception):
13234         Update.
13235         * target.h (target_read_string): Update.
13236         * target.c (target_read_string): Change "string" to
13237         unique_xmalloc_ptr.
13238         * solib-svr4.c (open_symbol_file_object, svr4_read_so_list):
13239         Update.
13240         * solib-frv.c (frv_current_sos): Update.
13241         * solib-dsbt.c (dsbt_current_sos): Update.
13242         * solib-darwin.c (darwin_current_sos): Update.
13243         * linux-thread-db.c (inferior_has_bug): Update.
13244         * expprint.c (print_subexp_standard) <case OP_OBJC_MSGCALL>:
13245         Update.  Remove alloca.
13246         * ada-lang.c (ada_main_name): Update.
13247
13248 2018-03-30  Tom Tromey  <tom@tromey.com>
13249
13250         * dwarf2read.c (struct free_dwo_file_cleanup_data): Remove.
13251         (struct dwo_file_deleter): New.
13252         (dwo_file_up): New typedef.
13253         (open_and_init_dwo_file): Use dwo_file_up.
13254         (free_dwo_file_cleanup): Remove.
13255
13256 2018-03-30  Tom Tromey  <tom@tromey.com>
13257
13258         * dwarf2read.c (free_dwo_file): Remove "objfile" parameter.
13259         (free_dwo_file_cleanup, free_dwo_file_from_slot): Update.
13260
13261 2018-03-30  Tom Tromey  <tom@tromey.com>
13262
13263         * dwarf2read.c (class free_cached_comp_units): New class.
13264         (dw2_instantiate_symtab, dwarf2_build_psymtabs_hard): Use it.
13265         (free_cached_comp_units): Remove function.
13266
13267 2018-03-30  Tom Tromey  <tom@tromey.com>
13268
13269         * utils.h (make_cleanup_unpush_target): Remove.
13270         * inf-ptrace.c (struct target_unpusher): New.
13271         (target_unpush_up) New typedef.
13272         (inf_ptrace_create_inferior, inf_ptrace_attach): Use
13273         target_unpush_up.
13274         * utils.c (do_unpush_target, make_cleanup_unpush_target): Remove.
13275
13276 2018-03-27  Tom Tromey  <tom@tromey.com>
13277
13278         * utils.c (prompt_for_continue): Use unique_xmalloc_ptr.
13279
13280 2018-03-27  Pedro Alves  <palves@redhat.com>
13281             Tom Tromey  <tom@tromey.com>
13282
13283         * top.c (class gdb_readline_wrapper_cleanup): Add constructor,
13284         destructor.  Now a class.
13285         (gdb_readline_wrapper_cleanup): Remove function.
13286         (gdb_readline_wrapper): Remove cleanups.
13287
13288 2018-03-27  Tom Tromey  <tom@tromey.com>
13289
13290         * typeprint.h (struct type_print_options) <local_typedefs,
13291         global_typedefs>: Remove "struct" keyword.
13292         (class typedef_hash_table): New class.
13293         (recursively_update_typedef_hash, add_template_parameters)
13294         (create_typedef_hash, free_typedef_hash, copy_typedef_hash)
13295         (find_typedef_in_hash): Don't declare.
13296         * typeprint.c (struct typedef_hash_table): Move to typeprint.h.
13297         (typedef_hash_table::recursively_update): Rename from
13298         recursively_update_typedef_hash.  Now a member.
13299         (typedef_hash_table::add_template_parameters): Rename from
13300         add_template_parameters.  Now a member.
13301         (typedef_hash_table::typedef_hash_table): Now a constructor;
13302         rename from create_typedef_hash.
13303         (typedef_hash_table::~typedef_hash_table): Now a destructor;
13304         rename from free_typedef_hash.
13305         (do_free_typedef_hash, make_cleanup_free_typedef_hash)
13306         (do_free_global_table): Remove.
13307         (typedef_hash_table::typedef_hash_table): New constructor; renamed
13308         from copy_type_recursive.
13309         (create_global_typedef_table): Remove.
13310         (typedef_hash_table::find_global_typedef): Now a member of
13311         typedef_hash_table.
13312         (typedef_hash_table::find_typedef): Rename from
13313         find_typedef_in_hash; now a member.
13314         (whatis_exp): Update.
13315         * extension.h (struct ext_lang_type_printers): Add constructor and
13316         destructor.
13317         (start_ext_lang_type_printers, free_ext_lang_type_printers): Don't
13318         declare.
13319         * extension.c (ext_lang_type_printers::ext_lang_type_printers):
13320         Now a constructor; rename from start_ext_lang_type_printers.
13321         (ext_lang_type_printers): Now a destructor; rename from
13322         free_ext_lang_type_printers.
13323         * c-typeprint.c (find_typedef_for_canonicalize, c_print_type_1):
13324         Update.
13325         (c_type_print_base_struct_union): Update.  Remove cleanups.
13326
13327 2018-03-27  Tom Tromey  <tom@tromey.com>
13328
13329         * dwarf-index-write.c: Include <cmath>.
13330
13331 2018-03-27  Joel Brobecker  <brobecker@adacore.com>
13332
13333         * NEWS: Add entry describing new "set|show varsize-limit" command.
13334         * ada-lang.c (_initialize_ada_language): Add "set/show varsize-limit"
13335         command.
13336         * printcmd.c (_initialize_printcmd): Add "set var" alias of
13337         "set variable".
13338
13339 2018-03-27  Simon Marchi  <simon.marchi@ericsson.com>
13340
13341         * Makefile.in (COMMON_SFILES): Add dwarf-index-common.c and
13342         dwarf-index-write.c
13343         (HFILES_NO_SRCDIR): Add dwarf-index-common.h and dwarf2read.h.
13344         * dwarf-index-common.c: New file.
13345         * dwarf-index-common.h: New file.
13346         * dwarf-index-write.c: New file.
13347         * dwarf2read.c: Include dwarf2read.h and dwarf-index-common.h.
13348         (struct dwarf2_section_info): Move from here.
13349         (dwarf2_section_info_def): Likewise.
13350         (DEF_VEC_O (dwarf2_section_info_def)): Likewise.
13351         (offset_type): Likewise.
13352         (DW2_GDB_INDEX_SYMBOL_STATIC_SET_VALUE): Likewise.
13353         (DW2_GDB_INDEX_SYMBOL_KIND_SET_VALUE): Likewise.
13354         (DW2_GDB_INDEX_CU_SET_VALUE): Likewise.
13355         (byte_swap): Likewise.
13356         (MAYBE_SWAP): Likewise.
13357         (dwarf2_per_cu_ptr): Likewise.
13358         (DEF_VEC_P (dwarf2_per_cu_ptr)): Likewise.
13359         (struct tu_stats): Likewise.
13360         (struct dwarf2_per_objfile): Likewise.
13361         (struct dwarf2_per_cu_data): Likewise.
13362         (struct signatured_type): Likewise.
13363         (sig_type_ptr): Likewise.
13364         (DEF_VEC_P (sig_type_ptr)): Likewise.
13365         (INDEX4_SUFFIX): Likewise.
13366         (INDEX5_SUFFIX): Likewise.
13367         (DEBUG_STR_SUFFIX): Likewise.
13368         (dwarf2_read_section): Make non-static.
13369         (mapped_index_string_hash): Move from here.
13370         (dwarf5_djb_hash): Likewise.
13371         (file_write): Likewise.
13372         (class data_buf): Likewise.
13373         (struct symtab_index_entry): Likewise.
13374         (struct mapped_symtab): Likewise.
13375         (find_slot): Likewise.
13376         (hash_expand): Likewise.
13377         (add_index_entry): Likewise.
13378         (uniquify_cu_indices): Likewise.
13379         (class c_str_view): Likewise.
13380         (class c_str_view_hasher): Likewise.
13381         (class vector_hasher): Likewise.
13382         (write_hash_table): Likewise.
13383         (psym_index_map): Likewise.
13384         (struct addrmap_index_data): Likewise.
13385         (add_address_entry): Likewise.
13386         (add_address_entry_worker): Likewise.
13387         (write_address_map): Likewise.
13388         (symbol_kind): Likewise.
13389         (write_psymbols): Likewise.
13390         (struct signatured_type_index_data): Likewise.
13391         (write_one_signatured_type): Likewise.
13392         (recursively_count_psymbols): Likewise.
13393         (recursively_write_psymbols): Likewise.
13394         (class debug_names): Likewise.
13395         (check_dwarf64_offsets): Likewise.
13396         (psyms_seen_size): Likewise.
13397         (write_gdbindex): Likewise.
13398         (write_debug_names): Likewise.
13399         (assert_file_size): Likewise.
13400         (write_psymtabs_to_index): Likewise.
13401         (save_gdb_index_command): Likewise.
13402         (_initialize_dwarf2_read): Don't register the "save gdb-index"
13403         command.
13404         * dwarf2read.h: New file.
13405
13406 2018-03-27  Joel Brobecker  <brobecker@adacore.com>
13407
13408         PR gdb/22670
13409         * dwarf2read.c (dwarf2_physname): Do not return the demangled
13410         symbol name if the CU's language stores symbol names in linkage
13411         format.
13412         * language.h (struct language_defn)
13413         <la_store_sym_names_in_linkage_form_p>: New field.  Adjust
13414         all instances of this struct.
13415
13416 2018-03-26  Tom Tromey  <tom@tromey.com>
13417
13418         * stack.c (backtrace_command_1): Remove verbose code.
13419
13420 2018-03-26  Tom Tromey  <tom@tromey.com>
13421
13422         * python/py-framefilter.c (py_print_type): Don't catch
13423         exceptions.  Return void.
13424         (py_print_value): Likewise.
13425         (py_print_single_arg): Likewise.
13426         (enumerate_args): Don't catch exceptions.
13427         (py_print_args): Likewise.
13428         (py_print_frame): Likewise.
13429         (gdbpy_apply_frame_filter): Catch exceptions here.
13430
13431 2018-03-26  Tom Tromey  <tom@tromey.com>
13432
13433         * stack.c (_initialize_stack): Remove trailing newlines from help
13434         text.  Add "Usage" line to "backtrace" help.
13435
13436 2018-03-26  Tom Tromey  <tom@tromey.com>
13437
13438         PR python/16486:
13439         * python/py-framefilter.c (py_print_args): Call wrap_hint.
13440
13441 2018-03-26  Tom Tromey  <tom@tromey.com>
13442
13443         * python/py-framefilter.c (py_print_single_arg): Return
13444         EXT_LANG_BT_ERROR from catch.
13445
13446 2018-03-26  Tom Tromey  <tom@tromey.com>
13447
13448         PR backtrace/15584:
13449         * stack.c (backtrace_command_1): Move some code into no-filters
13450         "if".
13451
13452 2018-03-26  Tom Tromey  <tom@tromey.com>
13453
13454         * python/py-framefilter.c (throw_quit_or_print_exception): New
13455         function.
13456         (gdbpy_apply_frame_filter): Use it.
13457
13458 2018-03-26  Tom Tromey  <tom@tromey.com>
13459
13460         PR cli/17716:
13461         * python/py-framefilter.c (py_print_type, py_print_value)
13462         (enumerate_args, py_print_args, gdbpy_apply_frame_filter): Use
13463         RETURN_MASK_ERROR.
13464
13465 2018-03-26  Tom Tromey  <tom@tromey.com>
13466
13467         * python/py-framefilter.c (enumerate_args): Use
13468         gdb::unique_xmalloc_ptr.
13469
13470 2018-03-26  Tom Tromey  <tom@tromey.com>
13471
13472         * python/py-framefilter.c (py_print_frame): Return
13473         EXT_LANG_BT_OK.
13474         (gdbpy_apply_frame_filter): Update comment.
13475         * extension.h (enum ext_lang_bt_status) <EXT_LANG_BT_COMPLETED>:
13476         Remove.
13477         <EXT_LANG_BT_NO_FILTERS>: Change value.
13478
13479 2018-03-26  Tom Tromey  <tom@tromey.com>
13480
13481         PR backtrace/15582:
13482         * stack.c (backtrace_command): Parse "hide" argument.
13483         * python/py-framefilter.c (py_print_frame): Handle PRINT_HIDE.
13484         * extension.h (enum frame_filter_flags) <PRINT_HIDE>: New
13485         constant.
13486
13487 2018-03-26  Tom Tromey  <tom@tromey.com>
13488
13489         * stack.c (backtrace_command_1): Remove "show_locals" parameter,
13490         add "flags".
13491         (backtrace_command): Remove "fulltrace", add "flags".
13492
13493 2018-03-26  Tom Tromey  <tom@tromey.com>
13494
13495         * stack.c (backtrace_command): Rewrite command line parsing.
13496
13497 2018-03-26  Simon Marchi  <simon.marchi@ericsson.com>
13498
13499         * dwarf2read.c (DEF_VEC_I(offset_type)): Remove.
13500
13501 2018-03-26  Simon Marchi  <simon.marchi@ericsson.com>
13502
13503         * filename-seen-cache.h: Add include guard.
13504
13505 2018-03-26  Keith Seitz  <keiths@redhat.com>
13506
13507         * symfile.c (place_section): Remove "struct" from section_addr_info
13508         in comment.
13509         * windows-nat.c (struct safe_symbol_file_add_args) <addrs>: Remove
13510         "struct" keyword from section_addr_info.
13511
13512 2018-03-26  Alan Hayward  <alan.hayward@arm.com>
13513
13514         * regformats/regdef.h (reg): Add constructors.
13515
13516 2018-03-25  Pedro Alves  <palves@redhat.com>
13517
13518         * eval.c (evaluate_funcall): Swap OP_VAR_MSYM_VALUE/OP_VAR_VALUE
13519         if then/else bodies in var_func_name extraction.
13520
13521 2018-03-23  Weimin Pan  <weimin.pan@oracle.com>
13522
13523         * minsyms.c (lookup_minimal_symbol_and_objfile): Use
13524         lookup_minimal_symbol() to find symbol entry.
13525         * minsyms.h (lookup_minimal_symbol_and_objfile): Update comment.
13526
13527 2018-03-23  Keith Seitz  <keiths@redhat.com>
13528
13529         PR c++/22968
13530         * dwarf2read.c (scan_partial_symbols): Scan structs/classes for
13531         nested type definitions for C++, too.
13532
13533 2018-03-23  Tom Tromey  <tom@tromey.com>
13534
13535         * machoread.c (struct oso_el): Add a constructor.  Don't define as
13536         a typedef.
13537         (macho_register_oso): Remove.
13538         (macho_symtab_read): Take a std::vector.
13539         (oso_el_compare_name): Now a std::sort comparator.
13540         (macho_symfile_read_all_oso): Take a std::vector.
13541         (macho_symfile_read): Use std::vector.  Remove cleanups.
13542
13543 2018-03-22  Tom Tromey  <tom@tromey.com>
13544
13545         * record-full.c (record_full_exec_insn): Use gdb::byte_vector.
13546         (record_full_goto_bookmark): Use std::string.
13547
13548 2018-03-22  Pedro Franco de Carvalho  <pedromfc@linux.vnet.ibm.com>
13549
13550         PR tdep/18295
13551         * rs6000-tdep.c (skip_prologue): Match both stwux and stdux
13552         a single mask.
13553
13554 2018-03-22  Pedro Franco de Carvalho  <pedromfc@linux.vnet.ibm.com>
13555
13556         * rs6000-tdep.c (store_insn_p): New function.
13557         (skip_prologue): New variable alloca_reg_offset. Set lr_reg
13558         and cr_reg to their unshifted values. Use store_insn_p to
13559         match LR saves using either R1 or fdata->alloca_reg. Use
13560         store_insn_p to match CR saves. Set alloca_reg_offset
13561         when alloca_reg and framep are set. Remove lr_reg shift
13562         when assigning to fdata->lr_register.
13563
13564 2018-03-22  Andreas Arnez  <arnez@linux.vnet.ibm.com>
13565
13566         * linux-tdep.c (linux_info_proc): For "info proc cmdline", print
13567         command line args instead of emitting a warning.
13568
13569 2018-03-22  Simon Marchi  <simon.marchi@polymtl.ca>
13570
13571         * tracepoint.h (struct static_tracepoint_marker): Initialize
13572         fields, define default constructor, move constructor and move
13573         assignment, disable the rest.
13574         <str_id, extra>: Make std::string.
13575         (release_static_tracepoint_marker): Remove.
13576         (free_current_marker): Remove.
13577         * tracepoint.c (free_current_marker): Remove.
13578         (parse_static_tracepoint_marker_definition): Adjust to
13579         std::string, use new hex2str overload.
13580         (release_static_tracepoint_marker): Remove.
13581         (print_one_static_tracepoint_marker): Get marker by reference
13582         and adjust to std::string.
13583         (info_static_tracepoint_markers_command): Adjust to std::vector
13584         changes
13585         * target.h (static_tracepoint_marker_p): Remove typedef.
13586         (DEF_VEC_P(static_tracepoint_marker_p)): Remove.
13587         (struct target_ops) <to_static_tracepoint_marker_at>: Return
13588         bool.
13589         <to_static_tracepoint_markers_by_strid>: Return std::vector.
13590         * target-debug.h
13591         (target_debug_print_VEC_static_tracepoint_marker_p_p): Remove.
13592         (target_debug_print_std_vector_static_tracepoint_marker): New.
13593         (target_debug_print_struct_static_tracepoint_marker_p): Rename
13594         to...
13595         (target_debug_print_static_tracepoint_marker_p): ... this.
13596         * target-delegates.c: Re-generate.
13597         * breakpoint.h (struct tracepoint) <static_trace_marker_id>:
13598         Make std::string.
13599         * breakpoint.c (init_breakpoint_sal): Adjust to std::string.
13600         (decode_static_tracepoint_spec): Adjust to std::vector.
13601         (tracepoint_print_one_detail): Adjust to std::string.
13602         (strace_marker_decode_location): Adjust to std::string.
13603         (update_static_tracepoint): Adjust to std::string, remove call
13604         to release_static_tracepoint_marker.
13605         * linux-nat.c (linux_child_static_tracepoint_markers_by_strid):
13606         Adjust to std::vector.
13607         * remote.c (remote_static_tracepoint_marker_at): Return bool.
13608         (remote_static_tracepoint_markers_by_strid): Adjust to
13609         std::vector.
13610         * common/rsp-low.h (hex2str): New overload with explicit count
13611         of bytes.
13612         * common/rsp-low.c (hex2str): New overload with explicit count
13613         of bytes.
13614         * unittests/rsp-low-selftests.c (test_hex2str): New function.
13615         (_initialize_rsp_low_selftests): Add test_hex2str test.
13616         * unittests/tracepoint-selftests.c
13617         (test_parse_static_tracepoint_marker_definition): Adjust to
13618         std::string.
13619
13620 2018-03-22  Simon Marchi  <simon.marchi@polymtl.ca>
13621
13622         * tracepoint.c (parse_static_tracepoint_marker_definition):
13623         Consider case where the definition is followed by more
13624         definitions.
13625         * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
13626         tracepoint-selftests.c.
13627         * unittests/tracepoint-selftests.c: New.
13628
13629 2018-03-21  Pedro Franco de Carvalho  <pedromfc@linux.vnet.ibm.com>
13630
13631         * MAINTAINERS (Write After Approval): Add Pedro Franco de
13632         Carvalho.
13633
13634 2018-03-20  Stephen Roberts  <stephen.roberts@arm.com>
13635
13636         * symtab.c (find_pc_sect_line): fixed indentation.
13637
13638 2018-03-20  Stephen Roberts  <stephen.roberts@arm.com>
13639
13640         * symtab.c (find_pc_sect_line): now uses binary search.
13641
13642 2018-03-19  Tom Tromey  <tom@tromey.com>
13643
13644         * rust-exp.y (struct_expr_tail, struct_expr_list): Add plain
13645         "IDENT" production.
13646
13647 2018-03-19  Pedro Alves  <palves@redhat.com>
13648             Tom Tromey  <tom@tromey.com>
13649
13650         * unittests/observable-selftests.c: New file.
13651         * common/observable.h: New file.
13652         * observable.h: New file.
13653         * ada-lang.c, ada-tasks.c, agent.c, aix-thread.c, annotate.c,
13654         arm-tdep.c, auto-load.c, auxv.c, break-catch-syscall.c,
13655         breakpoint.c, bsd-uthread.c, cli/cli-interp.c, cli/cli-setshow.c,
13656         corefile.c, dummy-frame.c, event-loop.c, event-top.c, exec.c,
13657         extension.c, frame.c, gdbarch.c, guile/scm-breakpoint.c,
13658         infcall.c, infcmd.c, inferior.c, inflow.c, infrun.c, jit.c,
13659         linux-tdep.c, linux-thread-db.c, m68klinux-tdep.c,
13660         mi/mi-cmd-break.c, mi/mi-interp.c, mi/mi-main.c, objfiles.c,
13661         ppc-linux-nat.c, ppc-linux-tdep.c, printcmd.c, procfs.c,
13662         python/py-breakpoint.c, python/py-finishbreakpoint.c,
13663         python/py-inferior.c, python/py-unwind.c, ravenscar-thread.c,
13664         record-btrace.c, record-full.c, record.c, regcache.c, remote.c,
13665         riscv-tdep.c, sol-thread.c, solib-aix.c, solib-spu.c, solib.c,
13666         spu-multiarch.c, spu-tdep.c, stack.c, symfile-mem.c, symfile.c,
13667         symtab.c, thread.c, top.c, tracepoint.c, tui/tui-hooks.c,
13668         tui/tui-interp.c, valops.c: Update all users.
13669         * tui/tui-hooks.c (tui_bp_created_observer)
13670         (tui_bp_deleted_observer, tui_bp_modified_observer)
13671         (tui_inferior_exit_observer, tui_before_prompt_observer)
13672         (tui_normal_stop_observer, tui_register_changed_observer):
13673         Remove.
13674         (tui_observers_token): New global.
13675         (attach_or_detach, tui_attach_detach_observers): New functions.
13676         (tui_install_hooks, tui_remove_hooks): Use
13677         tui_attach_detach_observers.
13678         * record-btrace.c (record_btrace_thread_observer): Remove.
13679         (record_btrace_thread_observer_token): New global.
13680         * observer.sh: Remove.
13681         * observer.c: Rename to observable.c.
13682         * observable.c (namespace gdb_observers): Define new objects.
13683         (observer_debug): Move into gdb_observers namespace.
13684         (struct observer, struct observer_list, xalloc_observer_list_node)
13685         (xfree_observer_list_node, generic_observer_attach)
13686         (generic_observer_detach, generic_observer_notify): Remove.
13687         (_initialize_observer): Update.
13688         Don't include observer.inc.
13689         * Makefile.in (generated_files): Remove observer.h, observer.inc.
13690         (clean mostlyclean): Likewise.
13691         (observer.h, observer.inc): Remove targets.
13692         (SUBDIR_UNITTESTS_SRCS): Add observable-selftests.c.
13693         (COMMON_SFILES): Use observable.c, not observer.c.
13694         * .gitignore: Remove observer.h.
13695
13696 2018-03-18  Tom Tromey  <tom@tromey.com>
13697
13698         * solib.c (gdb_bfd_lookup_symbol_from_symtab): Use
13699         gdb::def_vector.
13700         (bfd_lookup_symbol_from_dyn_symtab): Likewise.
13701
13702 2018-03-17  Tom Tromey  <tom@tromey.com>
13703
13704         * auto-load.c (auto_load_objfile_script_1): Use std::string.
13705
13706 2018-03-17  Tom Tromey  <tom@tromey.com>
13707
13708         * target.c (class scoped_target_fd): New.
13709         (target_fileio_close_cleanup): Remove.
13710         (target_fileio_read_alloc_1): Use scoped_target_fd.
13711
13712 2018-03-16  Simon Marchi  <simon.marchi@polymtl.ca>
13713
13714         * silent-rules.mk: New.
13715         * Makefile.in: Include silent-rules.mk
13716         (srcdir, VPATH, top_srcdir): Move up.
13717         (COMPILE): Add ECHO_CXX.
13718         (test-cp-name-parser$(EXEEXT)): Add ECHO_CXXLD.
13719         (init.c): Add ECHO_INIT_C.
13720         (gdb$(EXEEXT)): Add SILENCE and ECHO_CXXLD.
13721         (version.c): Add ECHO_GEN.
13722         (printcmd.o): Add ECHO_CXX.
13723         (target-float.o): Add ECHO_CXX.
13724         (ada-exp.o): Add ECHO_CXX.
13725         (stamp-xml): Add SILENCE and ECHO_GEN_XML_BUILTIN.
13726         (insight$(EXEEXT)): Add ECHO_CXXLD.
13727         * gnulib/configure.ac: Add AM_SILENT_RULES.
13728         * gnulib/aclocal.m4: Re-generate.
13729         * gnulib/configure: Re-generate.
13730         * gnulib/import/Makefile.in: Re-generate.
13731
13732 2018-03-16  Tom Tromey  <tom@tromey.com>
13733
13734         * xcoffread.c (xcoff_symfile_offsets): Change type of "addrs".
13735         * utils.h (make_cleanup_free_section_addr_info): Don't declare.
13736         * utils.c (do_free_section_addr_info)
13737         (make_cleanup_free_section_addr_info): Remove.
13738         * symfile.h (struct other_sections): Add constructor.
13739         (struct section_addr_info): Remove.
13740         (section_addr_info): New typedef.
13741         (struct sym_fns) <sym_offsets>: Change type of parameter.
13742         (build_section_addr_info_from_objfile)
13743         (relative_addr_info_to_section_offsets, addr_info_make_relative)
13744         (default_symfile_offsets, symbol_file_add)
13745         (symbol_file_add_from_bfd)
13746         (build_section_addr_info_from_section_table): Update.
13747         (alloc_section_addr_info, free_section_addr_info): Don't declare.
13748         * symfile.c (alloc_section_addr_info): Remove.
13749         (build_section_addr_info_from_section_table): Change return type.
13750         Update.
13751         (build_section_addr_info_from_bfd)
13752         (build_section_addr_info_from_objfile): Likewise.
13753         (free_section_addr_info): Remove.
13754         (relative_addr_info_to_section_offsets): Change type of "addrs".
13755         (addrs_section_compar): Now a std::sort comparator.
13756         (addrs_section_sort): Change return type.
13757         (addr_info_make_relative): Change type of "addrs".  Update.
13758         (default_symfile_offsets, syms_from_objfile_1)
13759         (syms_from_objfile, symbol_file_add_with_addrs): Likewise.
13760         (symbol_file_add_separate): Update.
13761         (symbol_file_add): Change type of "addrs".  Update.
13762         (add_symbol_file_command): Update.  Remove cleanups.
13763         * symfile-mem.c (symbol_file_add_from_memory): Update.  Remove
13764         cleanups.
13765         * symfile-debug.c (debug_sym_offsets): Change type of "info".
13766         * solib.c (solib_read_symbols): Update.
13767         * objfiles.c (objfile_relocate): Update.  Remove cleanups.
13768         * machoread.c (macho_symfile_offsets): Update.
13769         * jit.c (jit_bfd_try_read_symtab): Update.
13770
13771 2018-03-15  Simon Marchi  <simon.marchi@polymtl.ca>
13772
13773         * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
13774         unittests/utils-selftests.c.
13775         * unittests/utils-selftests.c: New file.
13776
13777 2018-03-14  Tom Tromey  <tom@tromey.com>
13778
13779         PR cli/14977:
13780         * printcmd.c (printf_c_string, printf_wide_c_string): Special case
13781         for NULL.
13782
13783 2018-03-14  Tom Tromey  <tom@tromey.com>
13784
13785         PR cli/19918:
13786         * printcmd.c (printf_pointer): Allow "-" in format.
13787
13788 2018-03-14  Tom Tromey  <tom@tromey.com>
13789
13790         * printcmd.c (_initialize_printcmd): Add usage to printf.
13791
13792 2018-03-14  Yao Qi  <qiyao@sourceware.org>
13793
13794         * MAINTAINERS: Update my email address.
13795
13796 2018-03-13  Tom Tromey  <tom@tromey.com>
13797
13798         * machoread.c (macho_check_dsym): Change filenamep to a
13799         std::string*.
13800         (macho_symfile_read): Update.
13801         * symfile.c (load_command): Use std::string.
13802
13803 2018-03-12  Andrew Burgess  <andrew.burgess@embecosm.com>
13804
13805         * riscv-tdep.c (riscv_sw_breakpoint_from_kind): Add localization
13806         to error message string.
13807         (riscv_register_name): Use xsnprintf instead of sprintf.
13808         (riscv_insn::fetch_instruction): Use gdb_assert instead of
13809         internal_error.
13810         (riscv_print_arg_location): Use gdb_assert_not_reached instead of
13811         error.
13812         (riscv_push_dummy_call): Likewise.
13813
13814 2018-03-12  Tom Tromey  <tom@tromey.com>
13815
13816         * rs6000-aix-tdep.c (rs6000_aix_core_xfer_shared_libraries_aix):
13817         Use gdb::byte_vector.
13818         * arm-tdep.c (arm_exidx_new_objfile): Use gdb::byte_vector.
13819
13820 2018-03-12  Yao Qi  <yao.qi@linaro.org>
13821
13822         * ia64-libunwind-tdep.c (libunwind_get_reg_special): Change
13823         parameter type to readable_regcache.
13824         * ia64-libunwind-tdep.h (libunwind_get_reg_special): Update
13825         the declaration.
13826
13827 2018-03-11  Tom Tromey  <tom@tromey.com>
13828
13829         * dwarf2read.c (struct nextfield): Add initializers.
13830         (struct nextfnfield): Remove.
13831         (struct fnfieldlist): Add initializers.  Remove "length" and
13832         "head", use std::vector.
13833         (struct decl_field_list): Remove.
13834         (struct field_info): Add initializers.
13835         <fields, baseclasses>: Now std::vector.
13836         <nbaseclasses, nfnfields, typedef_field_list_count,
13837         nested_types_list_count>: Remove.
13838         (dwarf2_add_field, dwarf2_add_type_defn)
13839         (dwarf2_attach_fields_to_type, dwarf2_add_member_fn)
13840         (dwarf2_attach_fn_fields_to_type, handle_struct_member_die)
13841         (process_structure_scope): Update.
13842
13843 2018-03-11  Tom Tromey  <tom@tromey.com>
13844
13845         * dwarf2read.c (sort_tu_by_abbrev_offset): Change to be suitable
13846         for use by std::sort.
13847         (build_type_psymtabs_1): Use std::vector.
13848
13849 2018-03-09  Eli Zaretskii  <eliz@gnu.org>
13850
13851         * top.c (print_gdb_configuration): Reflect LIBIPT, LIBMEMCHECK,
13852         and LIBMPFR in the printed configuration.
13853
13854 2018-03-08  Tom Tromey  <tom@tromey.com>
13855
13856         * source.c (get_filename_and_charpos): Use scoped_fd.
13857         * nto-procfs.c (procfs_open_1): Use scoped_fd.
13858         (procfs_pidlist): Likewise.
13859         * procfs.c (proc_get_LDT_entry): Use scoped_fd.
13860         (iterate_over_mappings): Likewise.
13861
13862 2018-03-08  Tom Tromey  <tom@tromey.com>
13863
13864         * infcall.c (struct call_return_meta_info)
13865         <stack_temporaries_enabled>: Remove.
13866         (get_call_return_value, call_function_by_hand_dummy): Update.
13867         * thread.c (disable_thread_stack_temporaries): Remove.
13868         (enable_thread_stack_temporaries): Remove.
13869         (thread_stack_temporaries_enabled_p): Return bool.
13870         (push_thread_stack_temporary, value_in_thread_stack_temporaries)
13871         (get_last_thread_stack_temporary): Update.
13872         * eval.c (evaluate_subexp): Update.
13873         * gdbthread.h (class enable_thread_stack_temporaries): Now a
13874         class, not a function.
13875         (value_ptr, value_vec): Remove typedefs.
13876         (class thread_info) <stack_temporaries_enabled>: Now bool.
13877         <stack_temporaries>: Now a std::vector.
13878         (thread_stack_temporaries_enabled_p)
13879         (value_in_thread_stack_temporaries): Return bool.
13880
13881 2018-03-08  Simon Marchi  <simon.marchi@ericsson.com>
13882
13883         * remote.c (putpkt_binary): Fix omitted bytes reporting.
13884         (getpkt_or_notif_sane_1): Likewise.
13885
13886 2018-03-08  Simon Marchi  <simon.marchi@polymtl.ca>
13887
13888         * build-id.c (build_id_to_debug_bfd): Use std::string.
13889
13890 2018-03-08  Simon Marchi  <simon.marchi@polymtl.ca>
13891
13892         * build-id.c (find_separate_debug_file_by_buildid): Return
13893         std::string.
13894         * build-id.h (find_separate_debug_file_by_buildid): Return
13895         std::string.
13896         * coffread.c (coff_symfile_read): Adjust to std::string.
13897         * elfread.c (elf_symfile_read): Adjust to std::string.
13898         * symfile.c (separate_debug_file_exists): Change parameter to
13899         std::string.
13900         (find_separate_debug_file): Return std::string.
13901         (find_separate_debug_file_by_debuglink): Return std::string.
13902         * symfile.h (find_separate_debug_file_by_debuglink): Return
13903         std::string.
13904
13905 2018-03-08  Simon Marchi  <simon.marchi@polymtl.ca>
13906
13907         * common/xml-utils.c (xml_escape_text): Move code to...
13908         (xml_escape_text_append): ... this new function.
13909         * common/xml-utils.h (xml_escape_text_append): New declaration.
13910         * unittests/xml-utils-selftests.c (test_xml_escape_text_append):
13911         New function.
13912         (_initialize_xml_utils): register test_xml_escape_text_append as
13913         a selftest.
13914
13915 2018-03-07  Alan Hayward  <alan.hayward@arm.com>
13916
13917         * defs.h: Remove MAX_REGISTER_SIZE.
13918         * regcache.c (init_regcache_descr): Remove MAX_REGISTER_SIZE
13919         asserts.
13920         * python/py-unwind.c (pyuw_sniffer): Likewise.
13921
13922 2018-03-07  Tom Tromey  <tom@tromey.com>
13923
13924         * linux-tdep.c (linux_info_proc): Update.
13925         * target.h (struct target_ops) <to_fileio_readlink>: Return
13926         optional<string>.
13927         (target_fileio_readlink): Return optional<string>.
13928         * remote.c (remote_hostio_readlink): Return optional<string>.
13929         * inf-child.c (inf_child_fileio_readlink): Return
13930         optional<string>.
13931         * target.c (target_fileio_readlink): Return optional<string>.
13932
13933 2018-03-07  Andrew Burgess  <andrew.burgess@embecosm.com>
13934
13935         * regcache.c (cooked_read_test): Add riscv to the list of
13936         architectures that have a save_reggroup.
13937
13938 2018-03-07  Andreas Arnez  <arnez@linux.vnet.ibm.com>
13939
13940         * gnu-v3-abi.c (gnuv3_rtti_type): Add early exit if the given
13941         value is not a dynamic class object.
13942
13943 2018-03-06  Tom Tromey  <tom@tromey.com>
13944
13945         * rust-exp.y: Formatting fixes.
13946
13947 2018-03-06  Andrew Burgess  <andrew.burgess@embecosm.com>
13948
13949         * riscv-tdep.c (riscv_register_name): Remove target description
13950         support.
13951         (riscv_gdbarch_init): Remove target description check.
13952
13953 2018-03-06  Andrew Burgess  <andrew.burgess@embecosm.com>
13954
13955         * riscv-tdep.c: Remove 'Contributed by ...' lines from header
13956         comment.
13957         * riscv-tdep.h: Likewise.
13958
13959 2018-03-06  Andrew Burgess  <andrew.burgess@embecosm.com>
13960
13961         * riscv-tdep.c (riscv_pseudo_register_read): Delete.
13962         (riscv_pseudo_register_write): Delete.
13963         (riscv_gdbarch_init): Remove all use of pseudo registers.
13964
13965 2018-03-06  Simon Marchi  <simon.marchi@polymtl.ca>
13966
13967         * record-btrace.c (btrace_print_lines): Replace cleanup
13968         parameter with RAII equivalents.
13969         (btrace_insn_history): Replace cleanup with RAII equivalents.
13970         * ui-out.h (make_cleanup_ui_out_list_begin_end,
13971         make_cleanup_ui_out_tuple_begin_end): Remove.
13972         * ui-out.c (struct ui_out_end_cleanup_data, do_cleanup_end,
13973         make_cleanup_ui_out_end, make_cleanup_ui_out_tuple_begin_end,
13974         make_cleanup_ui_out_list_begin_end): Remove.
13975
13976 2018-03-06  Simon Marchi  <simon.marchi@polymtl.ca>
13977
13978         * record-btrace.c (record_btrace_maybe_mark_async_event): Change
13979         parameter types to std::vector.  Use bool.
13980         (record_btrace_wait): Replace VEC(tp_t) with
13981         std::vector<thread_info *>.
13982         * common/gdb_vecs.h (unordered_remove, ordered_remove): New.
13983
13984 2018-03-06  Simon Marchi  <simon.marchi@polymtl.ca>
13985
13986         * record-btrace.c (record_btrace_disable_callback): Remove.
13987         (struct scoped_btrace_disable): New.
13988         (record_btrace_open): Use scoped_btrace_disable.
13989
13990 2018-03-06  Andrew Burgess  <andrew.burgess@embecosm.com>
13991
13992         * riscv-tdep.c (riscv_return_value): Change type to ULONGEST for
13993         reading values from registers.
13994
13995 2018-03-06  Andrew Burgess  <andrew.burgess@embecosm.com>
13996
13997         * riscv-tdep.c (riscv_push_dummy_call): Use core_addr_to_string_nz
13998         where appropriate.
13999
14000 2018-03-06  Andrew Burgess  <andrew.burgess@embecosm.com>
14001
14002         * riscv-tdep.c (riscv_print_arg_location): Add header comment,
14003         change parameter type.  Use GDB's print functions, and use
14004         core_addr_to_string where appropriate.
14005         (riscv_push_dummy_call): Use core_addr_to_string where
14006         appropriate, update call to riscv_print_arg_location, and reindent
14007         a few lines.
14008         (riscv_return_value): Update call to riscv_print_arg_location.
14009
14010 2018-03-06  Andrew Burgess  <andrew.burgess@embecosm.com>
14011             Tim Newsome <tim@sifive.com>
14012             Albert Ou <a0u@eecs.berkeley.edu>
14013             Darius Rad <darius@bluespec.com>
14014
14015         * Makefile.in (ALL_TARGET_OBS): Add riscv-tdep.o
14016         (HFILES_NO_SRCDIR): Add riscv-tdep.h.
14017         (ALLDEPFILES): Add riscv-tdep.c
14018         * configure.tgt: Add riscv support.
14019         * riscv-tdep.c: New file.
14020         * riscv-tdep.h: New file.
14021         * NEWS: Mention new target.
14022         * MAINTAINERS: Add entry for riscv.
14023
14024 2018-03-06  Andrew Burgess  <andrew.burgess@embecosm.com>
14025
14026         * amd64-tdep.c (amd64_classify_aggregate): Ignore zero sized
14027         fields within aggregates.
14028
14029 2018-03-04  Simon Marchi  <simon.marchi@polymtl.ca>
14030
14031         * record-btrace.c (btrace_print_lines): Change type of flags to
14032         gdb_disassembly_flags.
14033
14034 2018-03-04  John Baldwin  <jhb@FreeBSD.org>
14035
14036         * fbsd-nat.c: Include "inf-ptrace.h".
14037         (USE_SIGTRAP_SIGINFO): Conditionally define.
14038         [USE_SIGTRAP_SIGINFO] (fbsd_handle_debug_trap): New function.
14039         (fbsd_wait) [USE_SIGTRAP_SIGINFO]: Call "fbsd_handle_debug_trap".
14040         [USE_SIGTRAP_SIGINFO] (fbsd_stopped_by_sw_breakpoint): New
14041         function.
14042         [USE_SIGTRAP_SIGINFO] (fbsd_supports_stopped_by_sw_breakpoint):
14043         Likewise.
14044         [USE_SIGTRAP_SIGINFO] (fbsd_supports_stopped_by_hw_breakpoint):
14045         Likewise.
14046         (fbsd_nat_add_target) [USE_SIGTRAP_SIGINFO]: Set
14047         "stopped_by_sw_breakpoint", "supports_stopped_by_sw_breakpoint",
14048         "supports_stopped_by_hw_breakpoint" target methods.
14049
14050 2018-03-04  John Baldwin  <jhb@FreeBSD.org>
14051
14052         * NEWS (Changes since GDB 8.1): Add "set/show debug fbsd-nat".
14053         * fbsd-nat.c (debug_fbsd_nat): New variable.
14054         (show_fbsd_nat_debug): New function.
14055         (fbsd_wait): Log LWP info if "debug_fbsd_nat" is enabled.
14056         (_initialize_fbsd_nat): Add "fbsd-nat" debug boolean command.
14057
14058 2018-03-04  John Baldwin  <jhb@FreeBSD.org>
14059
14060         * nat/x86-dregs.c (x86_dr_stopped_by_hw_breakpoint): New function.
14061         * nat/x86-dregs.h (x86_dr_stopped_by_hw_breakpoint): New
14062         prototype.
14063         * x86-nat.c (x86_stopped_by_hw_breakpoint): New function.
14064         (x86_use_watchpoints): Set "stopped_by_hw_breakpoint" target
14065         method.
14066
14067 2018-03-02  Simon Marchi  <simon.marchi@polymtl.ca>
14068
14069         * common/gdb_vecs.c (free_char_ptr_vec): Remove.
14070         * common/gdb_vecs.h (free_char_ptr_vec): Remove.
14071
14072 2018-03-02  Simon Marchi  <simon.marchi@polymtl.ca>
14073
14074         * charset.c (struct charset_vector): New.
14075         (charsets): Change type to charset_vector.
14076         (find_charset_names): Adjust.
14077         (add_one): Adjust.
14078         (_initialize_charset): Adjust.
14079
14080 2018-03-02  Simon Marchi  <simon.marchi@polymtl.ca>
14081
14082         * progspace.h (struct program_space) <deleted_solibs>: Change
14083         type to std::vector<std::string>.
14084         * progspace.c (clear_program_space_solib_cache): Adjust.
14085         * breakpoint.c (print_solib_event): Adjust.
14086         (check_status_catch_solib): Adjust.
14087         * solib.c (update_solib_list): Adjust.
14088         * ui-out.h (class ui_out) <field_string>: New overload.
14089         * ui-out.c (ui_out::field_string): New overload.
14090
14091 2018-03-02  Simon Marchi  <simon.marchi@polymtl.ca>
14092
14093         * progspace.h (struct program_space): Add constructor and
14094         destructor, initialize fields.
14095         (add_program_space): Remove.
14096         * progspace.c (add_program_space): Rename to...
14097         (program_space::program_space): ... this.
14098         (release_program_space): Rename to...
14099         (program_space::~program_space): ... this.
14100         (delete_program_space): Use delete to delete program_space.
14101         (initialize_progspace): Use new to allocate program_space.
14102         * inferior.c (add_inferior_with_spaces): Likewise.
14103         (clone_inferior_command): Likewise.
14104         * infrun.c (follow_fork_inferior): Likewise.
14105         (handle_vfork_child_exec_or_exit): Likewise.
14106
14107 2018-03-02  Simon Marchi  <simon.marchi@polymtl.ca>
14108
14109         * common/gdb_vecs.h (make_cleanup_free_char_ptr_vec): Remove.
14110         (delim_string_to_char_ptr_vec): Return std::vector of
14111         gdb::unique_xmalloc_ptr.
14112         (dirnames_to_char_ptr_vec_append): Take std::vector of
14113         gdb::unique_xmalloc_ptr.
14114         (dirnames_to_char_ptr_vec): Return std::vector of
14115         gdb::unique_xmalloc_ptr.
14116         * common/gdb_vecs.c (delim_string_to_char_ptr_vec_append):
14117         Take std::vector of gdb::unique_xmalloc_ptr, adjust the code.
14118         (delim_string_to_char_ptr_vec): Return an std::vector of
14119         gdb::unique_xmalloc_ptr, adjust the code.
14120         (dirnames_to_char_ptr_vec_append): Take an std::vector of
14121         gdb::unique_xmalloc_ptr, adjust the code.
14122         (dirnames_to_char_ptr_vec): Return an std::vector of
14123         gdb::unique_xmalloc_ptr, adjust the code.
14124         * auto-load.c (auto_load_safe_path_vec): Change type to
14125         std::vector of gdb::unique_xmalloc_ptr.
14126         (auto_load_expand_dir_vars): Return an std::vector of
14127         gdb::unique_xmalloc_ptr, adjust the code.
14128         (auto_load_safe_path_vec_update): Adjust.
14129         (filename_is_in_auto_load_safe_path_vec): Adjust.
14130         (auto_load_objfile_script_1): Adjust.
14131         * build-id.c (build_id_to_debug_bfd): Adjust.
14132         * linux-thread-db.c (thread_db_load_search): Adjust.
14133         * source.c (add_path): Adjust.
14134         (openp): Adjust.
14135         * symfile.c (find_separate_debug_file): Adjust.
14136         * utils.c (do_free_char_ptr_vec): Remove.
14137         (make_cleanup_free_char_ptr_vec): Remove.
14138
14139 2018-03-01  Sergio Durigan Junior  <sergiodj@redhat.com>
14140
14141         PR gdb/22907
14142         * common/pathstuff.c: Conditionally include "<windows.h>".
14143
14144 2018-03-01  Georg Sauthoff  <mail@georg.so>
14145
14146         PR gdb/22888
14147         * gcore.in: Quote variables and switch interpreter to bash.
14148
14149 2018-03-01  Tom Tromey  <tom@tromey.com>
14150
14151         * dwarf2read.c (alloc_discriminant_info): Fix default_index
14152         assertion.  Add assertion for discriminant_index.
14153         (quirk_rust_enum): Use correct base type name in univariant case.
14154
14155 2018-03-01  Simon Marchi  <simon.marchi@ericsson.com>
14156
14157         * record.c (get_call_history_modifiers): Return a
14158         record_print_flags.
14159         (cmd_record_call_history): Adjust.
14160         * record-btrace.c (record_btrace_call_history): Adjust.
14161         (record_btrace_call_history_range): Adjust.
14162         (record_btrace_call_history_from): Adjust.
14163         * target-debug.h (target_debug_print_record_print_flags): New.
14164         * target-delegates.c: Re-generate.
14165         * target.c (target_call_history): Change flags type.
14166         (target_call_history_from): Likewise.
14167         (target_call_history_range): Likewise.
14168         * target.h (struct target_ops) <target_call_history>: Likewise.
14169         (target_call_history_from): Likewise.
14170         (target_call_history_range): Likewise.
14171
14172 2018-02-28  Sergio Durigan Junior  <sergiodj@redhat.com>
14173             Simon Marchi  <simon.marchi@polymtl.ca>
14174
14175         * common/common-utils.c: Include "sys/stat.h".
14176         (is_regular_file): Move here from "source.c"; change return
14177         type to "bool".
14178         * common/common-utils.h (is_regular_file): New prototype.
14179         * common/pathstuff.c (contains_dir_separator): New function.
14180         * common/pathstuff.h (contains_dir_separator): New prototype.
14181         * source.c: Don't include "sys/stat.h".
14182         (is_regular_file): Move to "common/common-utils.c".
14183
14184 2018-02-28  Sergio Durigan Junior  <sergiodj@redhat.com>
14185
14186         * Makefile.in (COMMON_SFILES): Add "common/pathstuff.c".
14187         (HFILES_NO_SRCDIR): Add "common/pathstuff.h".
14188         * auto-load.c: Include "common/pathstuff.h".
14189         * common/common-def.h (current_directory): Move here.
14190         * common/gdb_tilde_expand.c (gdb_tilde_expand_up): New
14191         function.
14192         * common/gdb_tilde_expand.h (gdb_tilde_expand_up): New
14193         prototype.
14194         * common/pathstuff.c: New file.
14195         * common/pathstuff.h: New file.
14196         * compile/compile.c: Include "common/pathstuff.h".
14197         * defs.h (current_directory): Move to "common/common-defs.h".
14198         * dwarf2read.c: Include "common/pathstuff.h".
14199         * exec.c: Likewise.
14200         * guile/scm-safe-call.c: Likewise.
14201         * linux-thread-db.c: Likewise.
14202         * main.c: Likewise.
14203         * nto-tdep.c: Likewise.
14204         * objfiles.c: Likewise.
14205         * source.c: Likewise.
14206         * symtab.c: Likewise.
14207         * utils.c: Include "common/pathstuff.h".
14208         (gdb_realpath): Move to "common/pathstuff.c".
14209         (gdb_realpath_keepfile): Likewise.
14210         (gdb_abspath): Likewise.
14211         * utils.h (gdb_realpath): Move to "common/pathstuff.h".
14212         (gdb_realpath_keepfile): Likewise.
14213         (gdb_abspath): Likewise.
14214
14215 2018-02-28  John Baldwin  <jhb@FreeBSD.org>
14216
14217         * fbsd-nat.c (fbsd_resume): Use PT_SETSTEP for stepping and a
14218         wildcard process pid for super_resume for kernels with a
14219         specific bug.
14220
14221 2018-02-27  Phil Muldoon  <pmuldoon@redhat.com>
14222
14223         * compile/compile.c (get_args): Add additional comments
14224         explaining function.
14225
14226 2018-02-27  Simon Marchi  <simon.marchi@polymtl.ca>
14227             Tom Tromey  <tom@tromey.com>
14228
14229         * target.h (memory_write_request_s): Remove typedef.  Don't define
14230         VEC.
14231         (target_write_memory_blocks): Change argument to std::vector.
14232         (struct memory_write_request): Add constructor.
14233         * target-memory.c (compare_block_starting_address): Return bool.
14234         Change argument types.
14235         (claim_memory): Change arguments to use std::vector.
14236         (split_regular_and_flash_blocks, blocks_to_erase)
14237         (compute_garbled_blocks): Likewise.
14238         (cleanup_request_data, cleanup_write_requests_vector): Remove.
14239         (target_write_memory_blocks): Change argument to std::vector.
14240         * symfile.c (struct load_section_data): Add constructor and
14241         destructor.  Use std::vector for "requests".
14242         (struct load_progress_data): Add initializers.
14243         (load_section_callback): Update.  Use "new".
14244         (clear_memory_write_data): Remove.
14245         (generic_load): Update.
14246
14247 2018-02-27  Alan Hayward  <alan.hayward@arm.com>
14248
14249         * arch/aarch64.h: Use common/tdesc.h.
14250
14251 2018-02-26  Maciej W. Rozycki  <macro@mips.com>
14252
14253         * mips-tdep.c (mips_gdbarch_init): Don't use a 32-bit BFD
14254         architecture with a 64-bit ABI.
14255
14256 2018-02-26  Maciej W. Rozycki  <macro@mips.com>
14257
14258         * gdb/mips-tdep.c (mips_gdbarch_init): Reorder ABI determination
14259         ahead of target description loading.
14260
14261 2018-02-26  Tom Tromey  <tom@tromey.com>
14262
14263         * stack.c (backtrace_command_1): Update.
14264         * python/python-internal.h (gdbpy_apply_frame_filter): Change type
14265         of "flags".
14266         * python/py-framefilter.c (py_print_frame)
14267         (gdbpy_apply_frame_filter): Change type of "flags".
14268         * mi/mi-cmd-stack.c (mi_apply_ext_lang_frame_filter): Change type
14269         of "flags".
14270         (mi_cmd_stack_list_frames, mi_cmd_stack_list_locals)
14271         (mi_cmd_stack_list_args, mi_cmd_stack_list_variables): Update.
14272         * extension.h (enum frame_filter_flag): Rename from
14273         frame_filter_flags.
14274         (frame_filter_flags): Define using DEF_ENUM_FLAGS_TYPE.
14275         (apply_ext_lang_frame_filter): Change type of "flags".
14276         * extension.c (apply_ext_lang_frame_filter): Change type of
14277         "flags".
14278         * extension-priv.h (struct extension_language_ops)
14279         <apply_frame_filter>: Change type of "flags".
14280
14281 2018-02-26  Tom Tromey  <tom@tromey.com>
14282
14283         PR python/16497:
14284         * stack.c (backtrace_command_1): Set PRINT_MORE_FRAMES flag.  Fix
14285         off-by-one in py_end computation.
14286         * python/py-framefilter.c (gdbpy_apply_frame_filter): Handle
14287         PRINT_MORE_FRAMES.
14288         * extension.h (enum frame_filter_flags) <PRINT_MORE_FRAMES>: New
14289         constant.
14290
14291 2018-02-26  Tom Tromey  <tom@tromey.com>
14292
14293         * dwarf2read.c (struct variant_field): New.
14294         (struct nextfield) <variant>: New field.
14295         (dwarf2_add_field): Handle DW_TAG_variant_part.
14296         (dwarf2_attach_fields_to_type): Attach a discriminant_info to a
14297         discriminated union.
14298         (read_structure_type): Handle DW_TAG_variant_part.
14299         (handle_struct_member_die): New function, extracted from
14300         process_structure_scope.  Handle DW_TAG_variant.
14301         (process_structure_scope): Handle discriminated unions.  Call
14302         handle_struct_member_die.
14303
14304 2018-02-26  Tom Tromey  <tom@tromey.com>
14305
14306         * rust-lang.h (rust_last_path_segment): Declare.
14307         * rust-lang.c (rust_last_path_segment): Now public.  Change
14308         contract.
14309         (struct disr_info): Remove.
14310         (RUST_ENUM_PREFIX, RUST_ENCODED_ENUM_REAL)
14311         (RUST_ENCODED_ENUM_HIDDEN, rust_union_is_untagged)
14312         (rust_get_disr_info, rust_tuple_variant_type_p): Remove.
14313         (rust_enum_p, rust_enum_variant): New function.
14314         (rust_underscore_fields): Remove "offset" parameter.
14315         (rust_print_enum): New function.
14316         (rust_val_print) <TYPE_CODE_UNION>: Remove enum code.
14317         <TYPE_CODE_STRUCT>: Call rust_print_enum when appropriate.
14318         (rust_print_struct_def): Add "for_rust_enum" parameter.  Handle
14319         enums.
14320         (rust_internal_print_type): New function, from rust_print_type.
14321         Remove enum code.
14322         (rust_print_type): Call rust_internal_print_type.
14323         (rust_evaluate_subexp) <STRUCTOP_ANONYMOUS, STRUCTOP_STRUCT>:
14324         Update enum handling.
14325         * dwarf2read.c (struct dwarf2_cu) <rust_unions>: New field.
14326         (rust_fully_qualify, alloc_discriminant_info, quirk_rust_enum)
14327         (rust_union_quirks): New functions.
14328         (process_full_comp_unit, process_full_type_unit): Call
14329         rust_union_quirks.
14330         (process_structure_scope): Update rust_unions if necessary.
14331
14332 2018-02-26  Tom Tromey  <tom@tromey.com>
14333
14334         * value.h (value_union_variant): Declare.
14335         * valops.c (value_union_variant): New function.
14336         * gdbtypes.h (TYPE_FLAG_DISCRIMINATED_UNION): New macro.
14337         (struct discriminant_info): New.
14338         (enum dynamic_prop_node_kind) <DYN_PROP_DISCRIMINATED>: New
14339         enumerator.
14340         (struct main_type) <flag_discriminated_union>: New field.
14341
14342 2018-02-26  Tom Tromey  <tom@tromey.com>
14343
14344         * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
14345         unittests/unpack-selftests.c.
14346         * unittests/unpack-selftests.c: New file.
14347         * value.c (unpack_bits_as_long): Fix bugs in non-bitfield cases.
14348
14349 2018-02-26  Yao Qi  <yao.qi@linaro.org>
14350
14351         * dwarf2read.c (struct partial_die_info) <read>: New method.
14352         (read_partial_die): Remove the declaration.
14353         (load_partial_dies): Update.
14354         (partial_die_info::partial_die_info):
14355         (read_partial_die): Change it to partial_die_info::read.
14356
14357 2018-02-26  Yao Qi  <yao.qi@linaro.org>
14358
14359         * dwarf2read.c (struct partial_die_info) <fixup>: New method.
14360         (fixup_partial_die): Remove declaration.
14361         (scan_partial_symbols): Update.
14362         (partial_die_parent_scope): Likewise.
14363         (partial_die_full_name): Likewise.
14364         (fixup_partial_die): Change it to partial_die_info::fixup.
14365
14366 2018-02-26  Yao Qi  <yao.qi@linaro.org>
14367
14368         * dwarf2read.c (read_partial_die): Update the declaration.
14369         (load_partial_dies): Caller update.
14370         (read_partial_die): Remove one argument abbrev_len.
14371
14372 2018-02-26  Yao Qi  <yao.qi@linaro.org>
14373
14374         * dwarf2read.c (struct partial_die_info): Add ctor, delete
14375         assignment operator.
14376         (load_partial_dies): Use ctor and copy ctor.
14377         (read_partial_die): Update.
14378         (dwarf2_cu::find_partial_die): Use ctor.
14379
14380 2018-02-26  Yao Qi  <yao.qi@linaro.org>
14381
14382         * dwarf2read.c (struct dwarf2_cu) <find_partial_die>: New method.
14383         (find_partial_die_in_comp_unit): Change it to
14384         dwarf2_cu::find_partial_die.
14385         (find_partial_die): Update.
14386
14387 2018-02-26  Yao Qi  <yao.qi@linaro.org>
14388
14389         * dwarf2read.c (read_partial_die): Remove the code checking abbrev
14390         is NULL.
14391
14392 2018-02-26  Yao Qi  <yao.qi@linaro.org>
14393
14394         * dwarf2read.c (load_partial_dies): Move the location of XOBNEW.
14395
14396 2018-02-26  Alan Hayward  <alan.hayward@arm.com>
14397
14398         * arch/amd64.h: Use common/tdesc.h.
14399         * arch/i386.c: Likewise.
14400         * arch/i386.h: Likewise.
14401         * arch/tic6x.c: Likewise.
14402         * arch/tdesc.h: Move file from here...
14403         * common/tdesc.h: ...to here.
14404         * features/aarch64-core.c: Regenerate.
14405         * features/aarch64-fpu.c: Regenerate.
14406         * features/i386/32bit-avx.c: Regenerate.
14407         * features/i386/32bit-avx512.c: Regenerate.
14408         * features/i386/32bit-core.c: Regenerate.
14409         * features/i386/32bit-linux.c: Regenerate.
14410         * features/i386/32bit-mpx.c: Regenerate.
14411         * features/i386/32bit-pkeys.c: Regenerate.
14412         * features/i386/32bit-sse.c: Regenerate.
14413         * features/i386/64bit-avx.c: Regenerate.
14414         * features/i386/64bit-avx512.c: Regenerate.
14415         * features/i386/64bit-core.c: Regenerate.
14416         * features/i386/64bit-linux.c: Regenerate.
14417         * features/i386/64bit-mpx.c: Regenerate.
14418         * features/i386/64bit-pkeys.c: Regenerate.
14419         * features/i386/64bit-segments.c: Regenerate.
14420         * features/i386/64bit-sse.c: Regenerate.
14421         * features/i386/x32-core.c: Regenerate.
14422         * features/tic6x-c6xp.c: Regenerate.
14423         * features/tic6x-core.c: Regenerate.
14424         * features/tic6x-gp.c: Regenerate.
14425         * target-descriptions.c: Use common/tdesc.h.
14426         * target-descriptions.h: Likewise.
14427
14428 2018-02-24  Tom Tromey  <tom@tromey.com>
14429
14430         * linux-thread-db.c (try_thread_db_load_from_pdir_1)
14431         (try_thread_db_load_from_dir, thread_db_load_search): Use
14432         std::string.
14433         (info_auto_load_libthread_db_compare): Return bool.  Change
14434         argument types.
14435         (info_auto_load_libthread_db): Use std::vector, std::string.
14436         Remove cleanups.
14437
14438 2018-02-24  Tom Tromey  <tom@tromey.com>
14439
14440         * i386-tdep.c (i386_fast_tracepoint_valid_at): "msg" now a
14441         std::string.
14442         * gdbarch.sh (fast_tracepoint_valid_at): Change "msg" to a
14443         std::string*.
14444         * gdbarch.c: Rebuild.
14445         * gdbarch.h: Rebuild.
14446         * breakpoint.c (check_fast_tracepoint_sals): Use std::string.
14447         * arch-utils.h (default_fast_tracepoint_valid_at): Update.
14448         * arch-utils.c (default_fast_tracepoint_valid_at): "msg" now a
14449         std::string*.
14450
14451 2018-02-23  Simon Marchi  <simon.marchi@polymtl.ca>
14452
14453         * gdbtypes.h (sect_offset): Change type to uint64_t.
14454         (sect_offset_str): New function.
14455         * dwarf2read.c (create_addrmap_from_aranges): Use
14456         sect_offset_str.
14457         (error_check_comp_unit_head): Likewise.
14458         (create_debug_type_hash_table): Likewise.
14459         (read_cutu_die_from_dwo): Likewise.
14460         (init_cutu_and_read_dies): Likewise.
14461         (init_cutu_and_read_dies_no_follow): Likewise.
14462         (process_psymtab_comp_unit_reader): Likewise.
14463         (partial_die_parent_scope): Likewise.
14464         (peek_die_abbrev): Likewise.
14465         (process_queue): Likewise.
14466         (dwarf2_physname): Likewise.
14467         (read_namespace_alias): Likewise.
14468         (read_import_statement): Likewise.
14469         (create_dwo_cu_reader): Likewise.
14470         (create_cus_hash_table): Likewise.
14471         (lookup_dwo_cutu): Likewise.
14472         (inherit_abstract_dies): Likewise.
14473         (read_func_scope): Likewise.
14474         (read_call_site_scope): Likewise.
14475         (dwarf2_add_member_fn): Likewise.
14476         (read_common_block): Likewise.
14477         (read_module_type): Likewise.
14478         (read_typedef): Likewise.
14479         (read_subrange_type): Likewise.
14480         (load_partial_dies): Likewise.
14481         (read_partial_die): Likewise.
14482         (find_partial_die): Likewise.
14483         (read_str_index): Likewise.
14484         (dwarf2_string_attr): Likewise.
14485         (build_error_marker_type): Likewise.
14486         (lookup_die_type): Likewise.
14487         (dump_die_shallow): Likewise.
14488         (follow_die_ref): Likewise.
14489         (dwarf2_fetch_die_loc_sect_off): Likewise.
14490         (dwarf2_fetch_constant_bytes): Likewise.
14491         (follow_die_sig): Likewise.
14492         (get_signatured_type): Likewise.
14493         (get_DW_AT_signature_type): Likewise.
14494         (dwarf2_find_containing_comp_unit): Likewise.
14495         (set_die_type): Likewise.
14496
14497 2018-02-21  John Baldwin  <jhb@FreeBSD.org>
14498
14499         * arch/aarch64.c: Include "common-defs.h".
14500         * arch/amd64.c: Likewise.
14501         * arch/i386.c: Likewise.
14502
14503 2018-02-21  Tom Tromey  <tom@tromey.com>
14504
14505         * value.h: (extract_field_op): Update.
14506         * eval.c (extract_field_op): Return a const char *.
14507         * expression.h (parse_expression_for_completion): Update.
14508         * completer.c (complete_expression): Update.
14509         (add_struct_fields): Make fieldname const.
14510         * parse.c (expout_completion_name): Now a unique_xmalloc_ptr.
14511         (mark_completion_tag, parse_exp_in_context_1): Update.
14512         (parse_expression_for_completion): Change "name" to
14513         unique_xmalloc_ptr*.
14514
14515 2018-02-21  Tom Tromey  <tom@tromey.com>
14516
14517         * infcall.c (call_function_by_hand_dummy): Use std::vector.
14518
14519 2018-02-21  Yao Qi  <yao.qi@linaro.org>
14520
14521         * avr-tdep.c (avr_read_pc): Change parameter type to
14522         readable_regcache.
14523         * gdbarch.sh (read_pc): Likewise.
14524         * gdbarch.c: Re-generated.
14525         * gdbarch.h: Re-generated.
14526         * hppa-tdep.c (hppa_read_pc): Change parameter type to
14527         readable_regcache.
14528         * ia64-tdep.c (ia64_read_pc): Likewise.
14529         * mips-tdep.c (mips_read_pc): Likewise.
14530         * spu-tdep.c (spu_read_pc): Likewise.
14531
14532 2018-02-21  Yao Qi  <yao.qi@linaro.org>
14533
14534         * Makefile.in (COMMON_SFILES): Add regcache-dump.c
14535         * regcache-dump.c: New file.
14536         * regcache.c: Move register_dump to regcache-dump.c.
14537         (maintenance_print_registers): Likewise.
14538         (maintenance_print_raw_registers): Likewise.
14539         (maintenance_print_cooked_registers): Likewise.
14540         (maintenance_print_register_groups): Likewise.
14541         (maintenance_print_remote_registers): Likewise.
14542         (_initialize_regcache): Likewise.
14543         * regcache.h (register_dump): Moved from regcache.c.
14544
14545 2018-02-21  Yao Qi  <yao.qi@linaro.org>
14546
14547         * regcache.c (regcache::regcache): Update.
14548         (regcache::invalidate): Move it to detached_regcache::invalidate.
14549         (get_thread_arch_aspace_regcache): Update.
14550         (regcache::raw_update): Update.
14551         (regcache::cooked_read): Remove some code.
14552         (regcache::cooked_read_value): Likewise.
14553         (regcache::raw_write): Remove assert on m_readonly_p.
14554         (regcache::raw_supply_integer): Move it to
14555         detached_regcache::raw_supply_integer.
14556         (regcache::raw_supply_zeroed): Likewise.
14557         * regcache.h (detached_regcache) <raw_supply_integer>: New
14558         declaration.
14559         <raw_supply_zeroed, invalidate>: Likewise.
14560         (regcache) <raw_supply_integer, raw_supply_zeroed>: Removed.
14561         <invalidate>: Likewise.
14562         <m_readonly_p>: Removed.
14563
14564 2018-02-21  Yao Qi  <yao.qi@linaro.org>
14565
14566         * infcmd.c (get_return_value): Let stop_regs point to
14567         get_current_regcache.
14568         * regcache.c (regcache::regcache): Remove.
14569         (register_dump_reg_buffer): New class.
14570         (regcache_print): Adjust.
14571         * regcache.h (regcache): Remove constructors.
14572
14573 2018-02-21  Yao Qi  <yao.qi@linaro.org>
14574
14575         * regcache.c (class register_dump): New class.
14576         (register_dump_regcache, register_dump_none): New class.
14577         (register_dump_remote, register_dump_groups): New class.
14578         (regcache_print): Update.
14579         * regcache.h (regcache_dump_what): Move it to regcache.c.
14580         (regcache) <dump>: Remove.
14581
14582 2018-02-21  Yao Qi  <yao.qi@linaro.org>
14583
14584         * jit.c (struct jit_unwind_private) <regcache>: Change its type to
14585          reg_buffer_rw *.
14586         (jit_unwind_reg_set_impl): Call raw_supply.
14587         (jit_frame_sniffer): Use reg_buffer_rw.
14588         * record-full.c (record_full_core_regbuf): Change its type.
14589         (record_full_core_open_1): Use reg_buffer_rw.
14590         (record_full_close): Likewise.
14591         (record_full_core_fetch_registers): Use regcache->raw_supply.
14592         (record_full_core_store_registers): Likewise.
14593         * regcache.c (regcache::get_register_status): Move it to
14594         reg_buffer.
14595         (regcache_raw_set_cached_value): Remove.
14596         (regcache::raw_set_cached_value): Remove.
14597         (regcache::raw_write): Call raw_supply.
14598         (regcache::raw_supply): Move it to reg_buffer_rw.
14599         * regcache.h (regcache_raw_set_cached_value): Remove.
14600         (reg_buffer_rw): New class.
14601
14602 2018-02-21  Yao Qi  <yao.qi@linaro.org>
14603
14604         * dummy-frame.c (dummy_frame_cache) <prev_regcache>: Use
14605         readonly_detached_regcache.
14606         (dummy_frame_prev_register): Use regcache->cooked_read.
14607         * frame.c (frame_save_as_regcache): Change return type.
14608         (frame_pop): Update.
14609         * frame.h (frame_save_as_regcache): Update declaration.
14610         * inferior.h (get_infcall_suspend_state_regcache): Update
14611         declaration.
14612         * infrun.c (infcall_suspend_state) <registers>: use
14613         readonly_detached_regcache.
14614         (save_infcall_suspend_state): Don't use regcache_dup.
14615         (get_infcall_suspend_state_regcache): Change return type.
14616         * linux-fork.c (struct fork_info) <savedregs>: Change to
14617         readonly_detached_regcache.
14618         <pc>: New field.
14619         (fork_save_infrun_state): Don't use regcache_dup.
14620         (info_checkpoints_command): Adjust.
14621         * mi/mi-main.c (register_changed_p): Update declaration.
14622         (mi_cmd_data_list_changed_registers): Use
14623         readonly_detached_regcache.
14624         (register_changed_p): Change parameter type to
14625         readonly_detached_regcache.
14626         * ppc-linux-tdep.c (ppu2spu_cache) <regcache>: Use
14627         readonly_detached_regcache.
14628         (ppu2spu_sniffer): Construct a new readonly_detached_regcache.
14629         * regcache.c (readonly_detached_regcache::readonly_detached_regcache):
14630         New.
14631         (regcache::save): Move it to reg_buffer.
14632         (regcache::restore): Change parameter type.
14633         (regcache_dup): Remove.
14634         * regcache.h (reg_buffer) <save>: New method.
14635         (readonly_detached_regcache): New class.
14636         * spu-tdep.c (spu2ppu_cache) <regcache>: Use
14637         readonly_detached_regcache.
14638         (spu2ppu_sniffer): Construct a new readonly_detached_regcache.
14639
14640 2018-02-21  Yao Qi  <yao.qi@linaro.org>
14641
14642         * frame.c (frame_save_as_regcache): Use regcache method save.
14643         (frame_pop): Use regcache method restore.
14644         * infrun.c (restore_infcall_suspend_state): Likewise.
14645         * linux-fork.c (fork_load_infrun_state): Likewise.
14646         * ppc-linux-tdep.c (ppu2spu_sniffer): User regcache method
14647         save.
14648         * regcache.c (regcache_save): Remove.
14649         (regcache::restore): More asserts.
14650         (regcache_cpy): Remove.
14651         * regcache.h (regcache_save): Remove the declaration.
14652         (regcache::restore): Move from private to public.
14653         Remove the friend declaration of regcache_cpy.
14654         (regcache_cpy): Remove declaration.
14655
14656 2018-02-21  Yao Qi  <yao.qi@linaro.org>
14657
14658         * aarch64-tdep.c (aarch64_pseudo_register_read_value): Change
14659         parameter type to 'readable_regcache *'.
14660         * amd64-tdep.c (amd64_pseudo_register_read_value): Likewise.
14661         * arm-tdep.c (arm_neon_quad_read): Likewise.
14662         (arm_pseudo_read): Likewise.
14663         * avr-tdep.c (avr_pseudo_register_read): Likewise.
14664         * bfin-tdep.c (bfin_pseudo_register_read): Likewise.
14665         * frv-tdep.c (frv_pseudo_register_read): Likewise.
14666         * gdbarch.c: Re-generated.
14667         * gdbarch.h: Re-generated.
14668         * gdbarch.sh (pseudo_register_read): Change parameter type to
14669         'readable_regcache *'.
14670         (pseudo_register_read_value): Likewise.
14671         * h8300-tdep.c (pseudo_from_raw_register): Likewise.
14672         (h8300_pseudo_register_read): Likewise.
14673         * hppa-tdep.c (hppa_pseudo_register_read): Likewise.
14674         * i386-tdep.c (i386_mmx_regnum_to_fp_regnum): Likewise.
14675         (i386_pseudo_register_read_into_value): Likewise.
14676         (i386_pseudo_register_read_value): Likewise.
14677         * i386-tdep.h (i386_pseudo_register_read_into_value): Update
14678         declaration.
14679         * ia64-tdep.c (ia64_pseudo_register_read): Likewise.
14680         * m32c-tdep.c (m32c_raw_read): Likewise.
14681         (m32c_read_flg): Likewise.
14682         (m32c_banked_register): Likewise.
14683         (m32c_banked_read): Likewise.
14684         (m32c_sb_read): Likewise.
14685         (m32c_part_read): Likewise.
14686         (m32c_cat_read): Likewise.
14687         (m32c_r3r2r1r0_read): Likewise.
14688         (m32c_pseudo_register_read): Likewise.
14689         * m68hc11-tdep.c (m68hc11_pseudo_register_read): Likewise.
14690         * mep-tdep.c (mep_pseudo_cr32_read): Likewise.
14691         (mep_pseudo_cr64_read): Likewise.
14692         (mep_pseudo_register_read): Likewise.
14693         * mips-tdep.c (mips_pseudo_register_read): Likewise.
14694         * msp430-tdep.c (msp430_pseudo_register_read): Likewise.
14695         * nds32-tdep.c (nds32_pseudo_register_read): Likewise.
14696         * regcache.c (regcache::raw_read): Move it to readable_regcache.
14697         (regcache::cooked_read): Likewise.
14698         (regcache::cooked_read_value): Likewise.
14699         (regcache_cooked_read_signed):
14700         (regcache::cooked_read): Likewise.
14701         * regcache.h (readable_regcache): New class.
14702         (regcache): Inherit readable_regcache.  Move some methods to
14703         readable_regcache.
14704         * rl78-tdep.c (rl78_pseudo_register_read): Change
14705         parameter type to 'readable_regcache *'.
14706         * rs6000-tdep.c (do_regcache_raw_read): Remove.
14707         (e500_pseudo_register_read): Change parameter type to
14708         'readable_regcache *'.
14709         (dfp_pseudo_register_read): Likewise.
14710         (vsx_pseudo_register_read): Likewise.
14711         (efpr_pseudo_register_read): Likewise.
14712         * s390-tdep.c (s390_pseudo_register_read): Likewise.
14713         * sh-tdep.c (sh_pseudo_register_read): Likewise.
14714         * sh64-tdep.c (pseudo_register_read_portions): Likewise.
14715         (sh64_pseudo_register_read): Likewise.
14716         * sparc-tdep.c (sparc32_pseudo_register_read): Likewise.
14717         * sparc64-tdep.c (sparc64_pseudo_register_read): Likewise.
14718         * spu-tdep.c (spu_pseudo_register_read_spu): Likewise.
14719         (spu_pseudo_register_read): Likewise.
14720         * xtensa-tdep.c (xtensa_register_read_masked): Likewise.
14721         (xtensa_pseudo_register_read): Likewise.
14722
14723 2018-02-21  Yao Qi  <yao.qi@linaro.org>
14724
14725         * regcache.c (regcache::regcache): Call reg_buffer ctor.
14726         (regcache::arch): Move it to reg_buffer::arch.
14727         (regcache::register_buffer): Likewise.
14728         (regcache::assert_regnum): Likewise.
14729         (regcache::num_raw_registers): Likewise.
14730         * regcache.h (reg_buffer): New class.
14731         (regcache): Inherit reg_buffer.
14732
14733 2018-02-20  Simon Marchi  <simon.marchi@ericsson.com>
14734
14735         * remote-sim.c (gdb_os_printf_filtered, gdb_os_vprintf_filtered,
14736         gdb_os_evprintf_filtered, gdb_os_error): Add ATTRIBUTE_PRINTF.
14737
14738 2018-02-20  Markus Metzger  <markus.t.metzger@intel.com>
14739
14740         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add mkstemp.
14741
14742 2018-02-19  Alan Hayward  <alan.hayward@arm.com>
14743
14744         * Makefile.in: (COMMON_SFILES): Add common/*.c files.
14745         (SFILES): Remove common/*.c files.
14746         (COMMON_OBS): Remove some *.o files built from common/*.c files.
14747         * common/common.host: Add common reference.
14748         * configure.ac: Likewise.
14749         * configure: Regenerate.
14750
14751 2018-02-16  Yao Qi  <yao.qi@linaro.org>
14752
14753         * block.c (block_namespace_info): Inherit allocate_on_obstack.
14754         (block_initialize_namespace): Use new.
14755         * dwarf2read.c (dwarf2_per_objfile): Inherit allocate_on_obstack.
14756         (dwarf2_free_objfile): Use delete.
14757         * gdbtypes.c (type_pair): Inherit allocate_on_obstack.
14758         (copy_type_recursive): Use new.
14759         * gdb_obstack.h (allocate_on_obstack): New.
14760
14761 2018-02-15  Yao Qi  <yao.qi@linaro.org>
14762
14763         PR gdb/22849
14764         * inferior.c (exit_inferior_1): Reset inf->control.
14765
14766 2018-02-15  Joel Brobecker  <brobecker@adacore.com>
14767
14768         * ada-lang.c (ada_to_fixed_value_create): Delete advance
14769         declaration.
14770
14771 2018-02-14  Pedro Alves  <palves@redhat.com>
14772
14773         * frame-unwind.c (frame_unwind_try_unwinder): Always call
14774         frame_cleanup_after_sniffer on exception.
14775
14776 2018-02-14  Tom Tromey  <tom@tromey.com>
14777
14778         * solist.h (struct target_so_ops) <bfd_open>: Make pathname
14779         const.
14780         (solib_bfd_open): Make pathname const.
14781         * solib.c (solib_bfd_open): Make pathname const.
14782         * solib-spu.c (spu_bfd_fopen): Make name const.
14783         (spu_bfd_open): Make pathname const.
14784         * solib-darwin.c (darwin_bfd_open): Make pathname const.
14785         * solib-aix.c (solib_aix_bfd_open): Make pathname const.
14786
14787 2018-02-14  Tom Tromey  <tom@tromey.com>
14788
14789         * symfile.c (symfile_bfd_open): Update.
14790         * source.h (openp, source_full_path_of, find_and_open_source):
14791         Change argument type to unique_xmalloc_ptr.
14792         * source.c (openp): Take a unique_xmalloc_ptr.
14793         (source_full_path_of, find_and_open_source): Likewise.
14794         (open_source_file, symtab_to_fullname): Update.
14795         * solist.h (struct target_so_ops) <find_and_open_solib>: Take a
14796         unique_xmalloc_ptr.
14797         * solib.c (solib_find_1): Use unique_xmalloc_ptr.
14798         (exec_file_find): Update.
14799         * psymtab.c (psymtab_to_fullname): Update.
14800         * nto-tdep.h (nto_find_and_open_solib): Update.
14801         * nto-tdep.c (nto_find_and_open_solib): Change temp_path to a
14802         unique_xmalloc_ptr.
14803         * exec.c (exec_file_attach): Update.
14804         * dwarf2read.c (try_open_dwop_file): Use unique_xmalloc_ptr.
14805         * cli/cli-cmds.c (find_and_open_script): Use unique_xmalloc_ptr.
14806
14807 2018-02-14  Tom Tromey  <tom@tromey.com>
14808
14809         * solib.c: Include source.h.
14810         * nto-tdep.c: Include source.h.
14811         * mi/mi-cmd-env.c: Include source.h.
14812         * infcmd.c: Include source.h.
14813         * exec.c: Include source.h.
14814         * defs.h (enum openp_flag, openp, source_full_path_of, mod_path)
14815         (add_path, directory_switch, source_path, init_source_path): Move
14816         declarations...
14817         * source.h (enum openp_flag, openp, source_full_path_of, mod_path)
14818         (add_path, directory_switch, source_path, init_source_path):
14819         ...here.
14820
14821 2018-02-14  Tom Tromey  <tom@tromey.com>
14822
14823         * solist.h (exec_file_find, solib_find): Return
14824         unique_xmalloc_ptr.
14825         (solib_bfd_fopen): Take a const char *.
14826         * solib.c (solib_find_1): Return unique_xmalloc_ptr.
14827         (exec_file_find, solib_find): Likewise.
14828         (solib_bfd_fopen): Do not take ownership of "pathname".
14829         (solib_bfd_open): Use unique_xmalloc_ptr.
14830         * solib-darwin.c (darwin_bfd_open): Use unique_xmalloc_ptr.
14831         * solib-aix.c (solib_aix_bfd_open): Use unique_xmalloc_ptr.
14832         * infrun.c (follow_exec): Use unique_xmalloc_ptr.
14833         * exec.c (exec_file_locate_attach): Use unique_xmalloc_ptr.
14834
14835 2018-02-14  Joel Brobecker  <brobecker@adacore.com>
14836
14837         * ada-lang.c (name_match_type_from_name): Remove reference to
14838         ada_name_for_lookup in function's documentation.
14839         * ada-lang.h (ada_name_for_lookup): Delete declaration.
14840
14841 2018-02-13  Simon Marchi  <simon.marchi@polymtl.ca>
14842
14843         * defs.h (enum openp_flags): New enum.
14844         (OPF_TRY_CWD_FIRST, OPF_SEARCH_IN_PATH, OPF_RETURN_REALPATH):
14845         Move to enum openp_flags.
14846         (openp_flags): New enum flags.
14847         (openp): Change parameter type to openp_flags.
14848         * source.c (openp): Change parameter type to openp_flags.
14849         * cli/cli-cmds.c (find_and_open_script): Use openp_flags.
14850         * dwarf2read.c (try_open_dwop_file): Use openp_flags.
14851
14852 2018-02-13  Simon Marchi  <simon.marchi@polymtl.ca>
14853
14854         * maint.c (_initialize_maint_cmds): Fix prefix of maint set/show
14855         per-command.
14856
14857 2018-02-12  Andrew Burgess  <andrew.burgess@embecosm.com>
14858
14859         * dwarf2read.c (dwarf2_release_queue): Delete function, move body
14860         into...
14861         (class dwarf2_queue_guard): ...the destructor of this new class.
14862         (dw2_do_instantiate_symtab): Create instance of the new class
14863         dwarf2_queue_guard, remove cleanup.
14864
14865 2018-02-09  Tom Tromey  <tom@tromey.com>
14866
14867         * source.c (find_source_lines): Don't reference past the end of
14868         the vector.
14869
14870 2018-02-09  Markus Metzger  <markus.t.metzger@intel.com>
14871
14872         * remote.c (remote_btrace_maybe_reopen): Change error message.
14873         * btrace.c (btrace_enable): Likewise.
14874         (parse_xml_btrace): Likewise.
14875         (parse_xml_btrace_conf): Likewise.
14876
14877 2018-02-09  Markus Metzger  <markus.t.metzger@intel.com>
14878
14879         * nat/linux-btrace.c (diagnose_perf_event_open_fail): New.
14880         (linux_enable_pt, linux_enable_bts): Call
14881         diagnose_perf_event_open_fail.
14882
14883 2018-02-09  Markus Metzger  <markus.t.metzger@intel.com>
14884
14885         * nat/linux-btrace.c (perf_event_pt_event_type): Improve error message.
14886         Remove parameter and change return type.  Update callers.  Move it.
14887         (linux_enable_bts, linux_enable_pt): Improve error message.
14888         (linux_enable_pt): Remove zero buffer size check.
14889         (linux_enable_btrace): Improve error messages.  Remove NULL return
14890         check.
14891
14892 2018-02-09  Markus Metzger  <markus.t.metzger@intel.com>
14893
14894         * btrace.c (btrace_enable): Remove target_supports_btrace call.
14895         * nat/linux-btrace.c (perf_event_pt_event_type): Move.
14896         (kernel_supports_bts, kernel_supports_pt, linux_supports_bts)
14897         (linux_supports_pt, linux_supports_btrace): Remove.
14898         (linux_enable_bts): Call cpu_supports_bts.
14899         * nat/linux-btrace.h (linux_supports_btrace): Remove.
14900         * remote.c (remote_supports_btrace): Remove.
14901         (init_remote_ops): Remove remote_supports_btrace.
14902         * target-delegates.c: Regenerated.
14903         * target.c (target_supports_btrace): Remove.
14904         * target.h (target_ops) <to_supports_btrace>: Remove
14905         (target_supports_btrace): Remove.
14906         * x86-linux-nat.c (x86_linux_create_target): Remove
14907         linux_supports_btrace.
14908
14909 2018-02-09  Markus Metzger  <markus.t.metzger@intel.com>
14910
14911         * nat/linux-btrace.c (linux_enable_btrace): Throw exception if enabling
14912         btrace failed.
14913         * x86-linux-nat.c (x86_linux_enable_btrace): Catch btrace enabling
14914         exception and use message in own exception.
14915
14916 2018-02-09  Markus Metzger  <markus.t.metzger@intel.com>
14917
14918         * nat/linux-btrace.c: Include scoped_fd.h and scoped_mmap.h.
14919         (perf_event_pt_event_type): Use gdb_file_up.
14920         (linux_enable_bts, linux_enable_pt): Use gdb::unique_xmalloc_ptr,
14921         scoped_fd, and scoped_mmap.
14922
14923 2018-02-09  Markus Metzger  <markus.t.metzger@intel.com>
14924
14925         * common/scoped_mmap.h: New.
14926         * unittests/scoped_mmap-selftest.c: New.
14927         * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
14928         unittests/scoped_mmap-selftest.c.
14929
14930 2018-02-09  Markus Metzger  <markus.t.metzger@intel.com>
14931
14932         * common/scoped_fd.h: New.
14933         * unittests/scoped_fd-selftest.c: New.
14934         * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
14935         unittests/scoped_fd-selftest.c.
14936
14937 2018-02-09  Tom Tromey  <tom@tromey.com>
14938
14939         * auto-load.c (auto_load_section_scripts): Use
14940         gdb::unique_xmalloc_ptr.
14941
14942 2018-02-09  Tom Tromey  <tom@tromey.com>
14943
14944         * auto-load.c (execute_script_contents): Use std::string.
14945
14946 2018-02-09  Joel Brobecker  <brobecker@adacore.com>
14947
14948         * NEWS <Changes in GDB 8.1>: Clarify that "rbreak" is a new
14949         Python function, rather than a new command.
14950
14951 2018-02-08  Tom Tromey  <tom@tromey.com>
14952
14953         * solib.c (solib_find_1): Use std::string.
14954         (solib_bfd_fopen): Use unique_xmalloc_ptr.
14955
14956 2018-02-08  Tom Tromey  <tom@tromey.com>
14957
14958         * build-id.c (build_id_to_debug_bfd): Use unique_xmalloc_ptr.
14959
14960 2018-02-08  Tom Tromey  <tom@tromey.com>
14961
14962         * source.c (find_source_lines): Use gdb::def_vector.
14963
14964 2018-02-08  Tom Tromey  <tom@tromey.com>
14965
14966         * macrocmd.c (struct temporary_macro_definition): New.
14967         (macro_define_command): Use temporary_macro_definition.  Remove
14968         cleanups.
14969         (free_macro_definition_ptr): Remove.
14970
14971 2018-02-08  Tom Tromey  <tom@tromey.com>
14972
14973         * macroexp.c (maybe_expand): Use std::string.
14974
14975 2018-02-08  Tom Tromey  <tom@tromey.com>
14976
14977         * macroexp.c (struct macro_buffer): Add initializers for some
14978         members.
14979         (init_buffer, init_shared_buffer, free_buffer)
14980         (free_buffer_return_text): Remove.
14981         (macro_buffer): New constructors.
14982         (~macro_buffer): New destructor.
14983         (macro_buffer::set_shared): New method.
14984         (macro_buffer::resize_buffer, macro_buffer::appendc)
14985         (macro_buffer::appendmem): Now methods, not free functions.
14986         (set_token, append_tokens_without_splicing, stringify)
14987         (macro_stringify): Update.
14988         (gather_arguments): Change return type.  Remove argc_p argument,
14989         add args_ptr argument.  Use std::vector.
14990         (substitute_args): Remove argc argument.  Accept std::vector.
14991         (expand): Update.  Use std::vector.
14992         (scan, macro_expand, macro_expand_next): Update.
14993
14994 2018-02-08  Tom Tromey  <tom@tromey.com>
14995
14996         * symtab.c (default_collect_symbol_completion_matches_break_on):
14997         Use unique_xmalloc_ptr.
14998         * macroscope.h: (sal_macro_scope, user_macro_scope)
14999         (default_macro_scope): Return unique_xmalloc_ptr.
15000         * macroscope.c (sal_macro_scope, user_macro_scope)
15001         (default_macro_scope): Return unique_xmalloc_ptr.
15002         * macroexp.h (macro_expand, macro_expand_once): Return
15003         unique_xmalloc_ptr.
15004         * macroexp.c (macro_expand, macro_expand_once): Return
15005         unique_xmalloc_ptr.
15006         * macrocmd.c (macro_expand_command, macro_expand_once_command)
15007         (info_macro_command, info_macros_command): Use
15008         unique_xmalloc_ptr.
15009         * compile/compile-c-support.c (write_macro_definitions): Use
15010         unique_xmalloc_ptr.
15011         * c-exp.y (c_parse): Use unique_xmalloc_ptr.
15012
15013 2018-02-07  Simon Marchi  <simon.marchi@ericsson.com>
15014
15015         * value.c (value_static_field): Assign field type instead of
15016         containing type when returning an optimized out value.
15017
15018 2018-02-06  Yao Qi  <yao.qi@linaro.org>
15019
15020         * ft32-tdep.c (ft32_read_pc): Remove.
15021         (ft32_write_pc): Remove.
15022         (ft32_gdbarch_init): Update.
15023         * m32r-tdep.c (m32r_read_pc): Remove.
15024         (m32r_gdbarch_init): Update.
15025         * mep-tdep.c (mep_read_pc): Remove.
15026         (mep_gdbarch_init): Update.
15027         * microblaze-tdep.c (microblaze_write_pc): Remove.
15028         (microblaze_gdbarch_init): Update.
15029         * mn10300-tdep.c (mn10300_read_pc): Remove.
15030         (mn10300_write_pc): Remove.
15031         (mn10300_gdbarch_init): Update.
15032         * moxie-tdep.c (moxie_read_pc): Remove.
15033         (moxie_write_pc): Remove.
15034         (moxie_gdbarch_init): Update.
15035
15036 2018-02-06  Yao Qi  <yao.qi@linaro.org>
15037
15038         * expprint.c (print_subexp_standard): Handle
15039         OP_F77_UNDETERMINED_ARGLIST.
15040         (dump_subexp_body_standard): Likewise.
15041
15042 2018-02-05  Alan Hayward  <alan.hayward@arm.com>
15043
15044         * target-descriptions.c (tdesc_element_visitor) Add empty
15045         implementations.
15046         (tdesc_type): Move make_gdb_type from here.
15047         (tdesc_type_builtin): Likewise.
15048         (tdesc_type_vector): Likewise.
15049         (tdesc_type_with_fields): Move make_gdb_type_ functions from here.
15050         (make_gdb_type_struct): Move from tdesc_type_with_fields.
15051         (make_gdb_type_union): Likewise.
15052         (make_gdb_type_flags): Likewise.
15053         (make_gdb_type_enum): Likewise.
15054         (make_gdb_type): New function.
15055         (tdesc_register_type): Use static make_gdb_type.
15056
15057 2018-02-05  Ruslan Kabatsayev <b7.10110111@gmail.com>
15058
15059         * infcmd.c (default_print_one_register_info): Align natural-format
15060         column values consistently one under another.
15061         (pad_to_column): New function.
15062
15063 2018-02-05  Joel Brobecker  <brobecker@adacore.com>
15064
15065         * dwarf2read.c (dwarf2_physname): Move commment.
15066
15067 2018-02-01  Leszek Swirski  <leszeks@google.com>
15068
15069         * varobj.c (varobj_formatted_print_options): Allow recursive
15070         pretty printing if pretty printing is enabled.
15071
15072 2018-02-01  Leszek Swirski  <leszeks@google.com>
15073
15074         * c-exp.y (lex_one_token, classify_name, yylex): Don't classify
15075         names after a structop as a filename.
15076
15077 2018-02-01  Yao Qi  <yao.qi@linaro.org>
15078
15079         * arm-tdep.c (arm_record_data_proc_misc_ld_str): Rewrite it.
15080         (arm_record_coproc_data_proc): Likewise.
15081
15082 2018-02-01  Yao Qi  <yao.qi@linaro.org>
15083
15084         * arm-tdep.c (arm_record_extension_space): Change ret to signed.
15085
15086 2018-01-31  Nikola Prica  <nikola.prica@rt-rk.com>
15087
15088         * rs6000-tdep.c (skip_prologue): Remove shifting for lr_reg and
15089         assign shifted lr_reg to fdata->lr_register when lr_reg is set.
15090
15091 2018-01-31  Pedro Alves  <palves@redhat.com>
15092
15093         * darwin-nat.c (darwin_interrupt): Remove ptid_t parameter.
15094         * inflow.c (child_terminal_save_inferior): Wrap reference to
15095         tcgetpgrp in HAVE_TERMIOS_H.
15096         (child_interrupt, child_pass_ctrlc): Wrap references to signal in
15097         _WIN32.
15098         * remote-sim.c (gdbsim_interrupt): Remove ptid_t parameter and
15099         always iterate over all inferiors.
15100         (gdbsim_cntrl_c): Adjust.
15101         * windows-nat.c (windows_interrupt): Remove 'ptid_t' parameter.
15102
15103 2018-01-31  Joel Brobecker  <brobecker@adacore.com>
15104
15105         * gdbtypes.c (lookup_array_range_type): Make sure the array's
15106         index type is objfile-owned if the element type is as well.
15107
15108 2018-01-31  Joel Brobecker  <brobecker@adacore.com>
15109
15110         GDB 8.1 released.
15111
15112 2018-01-30  Philipp Rudo  <prudo@linux.vnet.ibm.com>
15113
15114         * s390-linux-tdep.c: Remove includes "features/s390-linux32.c" and
15115         "features/s390x-linux64.c".
15116         (_initialize_s390_linux_tdep): Remove initialization of tdescs
15117         s390_linux32 and s390x_linux64.
15118         (s390_linux_init_abi_31, s390_linux_init_abi_64): Don't set
15119         default tdesc.
15120         * s390-tdep.c: Include "features/s390-linux32.c" and
15121         "features/s390x-linux64.c".
15122         (s390_tdesc_valid): Add check for tdesc_has_registers.
15123         (s390_gdbarch_init): Make sure there is always a valid tdesc.
15124         (_initialize_s390_tdep): Initialize tdesc_s390_linux32 and
15125         tdesc_s390x_linux64.
15126         * s390-linux-tdep.h: Move export of tdesc_s390_linux32 and
15127         tdesc_s390x_linux64 to...
15128         * s390-tdep.h: ...here.
15129
15130 2018-01-30  Pedro Alves  <palves@redhat.com>
15131
15132         PR gdb/13211
15133         * config.in, configure: Regenerate.
15134         * configure.ac: Check for getpgid.
15135         * go32-nat.c (go32_pass_ctrlc): New.
15136         (go32_target): Install it.
15137         * inf-child.c (inf_child_target): Install
15138         child_terminal_save_inferior, child_pass_ctrlc and
15139         child_interrupt.
15140         * inf-ptrace.c (inf_ptrace_interrupt): Delete.
15141         (inf_ptrace_target): No longer install it.
15142         * infcmd.c (interrupt_target_1): Adjust.
15143         * inferior.h (child_terminal_save_inferior, child_pass_ctrlc)
15144         (child_interrupt): Declare.
15145         (inferior::terminal_state): New.
15146         * inflow.c (struct terminal_info): Update comments.
15147         (inferior_process_group): Delete.
15148         (terminal_is_ours): Delete.
15149         (gdb_tty_state): New.
15150         (child_terminal_init): Adjust.
15151         (is_gdb_terminal, sharing_input_terminal_1)
15152         (sharing_input_terminal): New functions.
15153         (child_terminal_inferior): Adjust.  Use sharing_input_terminal.
15154         Set the process's actual process group in the foreground if
15155         possible.  Handle is_ours_for_output/is_ours distinction.  Don't
15156         mark terminal as the inferior's if not sharing GDB's terminal.
15157         Don't check attach_flag.
15158         (child_terminal_ours_for_output, child_terminal_ours): Adjust to
15159         pass down a target_terminal_state.
15160         (child_terminal_save_inferior): New, factored out from ...
15161         (child_terminal_ours_1): ... this.  Handle
15162         target_terminal_state::is_ours_for_output.
15163         (child_interrupt, child_pass_ctrlc): New.
15164         (inflow_inferior_exit): Clear the inferior's terminal_state.
15165         (copy_terminal_info): Copy the inferior's terminal state.
15166         (_initialize_inflow): Remove reference to terminal_is_ours.
15167         * inflow.h (inferior_process_group): Delete.
15168         * nto-procfs.c (nto_handle_sigint, procfs_interrupt): Adjust.
15169         * procfs.c (procfs_target): Don't install procfs_interrupt.
15170         (procfs_interrupt): Delete.
15171         * remote.c (remote_serial_quit_handler): Adjust.
15172         (remote_interrupt): Remove ptid parameter.  Adjust.
15173         * target-delegates.c: Regenerate.
15174         * target.c: Include "terminal.h".
15175         (target_terminal::terminal_state): Rename to ...
15176         (target_terminal::m_terminal_state): ... this.
15177         (target_terminal::init): Adjust.
15178         (target_terminal::inferior): Adjust to per-inferior
15179         terminal_state.
15180         (target_terminal::restore_inferior, target_terminal_is_ours_kind): New.
15181         (target_terminal::ours, target_terminal::ours_for_output): Use
15182         target_terminal_is_ours_kind.
15183         (target_interrupt): Remove ptid parameter.  Adjust.
15184         (default_target_pass_ctrlc): Adjust.
15185         * target.h (target_ops::to_terminal_save_inferior): New field.
15186         (target_ops::to_interrupt): Remove ptid_t parameter.
15187         (target_interrupt): Remove ptid_t parameter.  Update comment.
15188         (target_pass_ctrlc): Update comment.
15189         * target/target.h (target_terminal_state): New scoped enum,
15190         factored out of ...
15191         (target_terminal::terminal_state): ... here.
15192         (target_terminal::inferior): Update comments.
15193         (target_terminal::restore_inferior): New.
15194         (target_terminal::is_inferior, target_terminal::is_ours)
15195         (target_terminal::is_ours_for_output): Adjust.
15196         (target_terminal::scoped_restore_terminal_state): Adjust to
15197         rename, and call restore_inferior() instead of inferior().
15198         (target_terminal::scoped_restore_terminal_state::m_state): Change
15199         type.
15200         (target_terminal::terminal_state): Rename to ...
15201         (target_terminal::m_terminal_state): ... this and change type.
15202
15203 2018-01-30  Pedro Alves  <palves@redhat.com>
15204
15205         * linux-nat.c (wait_for_signal): New function.
15206         (wait_lwp, linux_nat_wait_1): Use it instead of calling sigsuspend
15207         directly.
15208         (async_terminal_is_ours)
15209         (linux_nat_terminal_inferior, linux_nat_terminal_ours): Delete.
15210         (linux_nat_add_target): Don't override
15211         to_terminal_inferior/to_terminal_ours.
15212
15213 2018-01-29  Sergio Durigan Junior  <sergiodj@redhat.com>
15214
15215         * remote.c (remote_follow_fork): Don't call "detach_inferior".
15216
15217 2018-01-28  Simon Marchi  <simon.marchi@ericsson.com>
15218
15219         * dwarf2read.c (free_dwo_files): Add forward-declaration.
15220         (dwarf2_per_objfile::~dwarf2_per_objfile): Move content from
15221         dwarf2_per_objfile_free here.
15222         (dwarf2_per_objfile_free): Remove.
15223         (_initialize_dwarf2_read): Don't register
15224         dwarf2_per_objfile_free as a registry cleanup.
15225
15226 2018-01-27  Eli Zaretskii  <eliz@gnu.org>
15227
15228         Avoid compilation errors in MinGW native builds
15229
15230         The error is triggered by including python-internal.h, and the
15231         error message is:
15232
15233              In file included from d:\usr\lib\gcc\mingw32\6.3.0\include\c++\math.h:36:0,
15234                       from build-gnulib/import/math.h:27,
15235                       from d:/usr/Python26/include/pyport.h:235,
15236                       from d:/usr/Python26/include/Python.h:58,
15237                       from python/python-internal.h:94,
15238                       from python/py-arch.c:24:
15239              d:\usr\lib\gcc\mingw32\6.3.0\include\c++\cmath:1157:11: error: '::hypot' has not been declared
15240         using ::hypot;
15241                 ^~~~~
15242
15243         This happens because Python headers define 'hypot' to expand t
15244         '_hypot' in the Windows builds.
15245         * python/python-internal.h (_hypot) [__MINGW32__]: Define back to
15246         'hypoth'.  This avoids a compilation error.
15247
15248 2018-01-26  Alan Hayward  <alan.hayward@arm.com>
15249
15250         * MAINTAINERS (Write After Approval): Fix ordering.
15251
15252 2018-01-26  Alan Hayward  <alan.hayward@arm.com>
15253
15254         * MAINTAINERS (Write After Approval): Add Alan Hayward.
15255
15256 2018-01-26  Alan Modra  <amodra@gmail.com>
15257
15258         * ppc-linux-tdep.c (powerpc32_plt_stub): Make const.
15259         (powerpc32_plt_stub_so_1): Rename from powerpc32_plt_stub_so.
15260         Remove nop.  Make const.  Comment.
15261         (powerpc32_plt_stub_so_2): New.
15262         (POWERPC32_PLT_CHECK_LEN): Rename from POWERPC32_PLT_STUB_LEN.
15263         Correct count.  Update uses.
15264         (ppc_skip_trampoline_code): Match powerpc32_plt_stub_so_2 too.
15265         Move common code reading PLT entry word.  Correct
15266         powerpc32_plt_stub PLT address calculation.
15267         * ppc64-tdep.c (ppc64_standard_linkage1): Make const.
15268         (ppc64_standard_linkage2, ppc64_standard_linkage3): Likewise.
15269         (ppc64_standard_linkage4, ppc64_standard_linkage5): Likewise.
15270         (ppc64_standard_linkage6, ppc64_standard_linkage7): Likewise.
15271         (ppc64_standard_linkage8): Likewise.
15272         * rs6000-tdep.c (ppc_insns_match_pattern): Make pattern const.
15273         Correct insns description.
15274         * ppc-tdep.h (ppc_insns_match_pattern): Update prototype.
15275
15276 2018-01-24  Pedro Alves  <palves@redhat.com>
15277
15278         GCC PR libstdc++/83906
15279         * gdbtypes.c (operator==(const dynamic_prop &,
15280         const dynamic_prop &)): New.
15281         (operator==(const range_bounds &, const range_bounds &)): New.
15282         (check_types_equal): Use them instead of memcmp.
15283         * gdbtypes.h (operator==(const dynamic_prop &,
15284         const dynamic_prop &)): Declare.
15285         (operator!=(const dynamic_prop &, const dynamic_prop &)): Declare.
15286         (operator==(const range_bounds &, const range_bounds &)): Declare.
15287         (operator!=(const range_bounds &, const range_bounds &)): Declare.
15288
15289 2018-01-23  Philipp Rudo  <prudo@linux.vnet.ibm.com>
15290
15291         * s390-linux-tdep.c (s390_record_address_mask)
15292         (s390_record_calc_disp_common, s390_record_calc_disp)
15293         (s390_record_calc_disp_vsce, s390_record_calc_rl, s390_popcnt)
15294         (s390_record_gpr_g, s390_record_gpr_h, s390_record_vr)
15295         (s390_process_record): Move to s390-tdep.c.
15296         (s390_linux_init_abi_any): Adjust.
15297         * s390-tdep.c (s390_record_address_mask)
15298         (s390_record_calc_disp_common, s390_record_calc_disp)
15299         (s390_record_calc_disp_vsce, s390_record_calc_rl, s390_popcnt)
15300         (s390_record_gpr_g, s390_record_gpr_h, s390_record_vr)
15301         (s390_process_record): Moved from s390-linux-tdep.c
15302         (s390_gdbarch_init): Adjust.
15303
15304 2018-01-23  Philipp Rudo  <prudo@linux.vnet.ibm.com>
15305
15306         * s390-linux-nat.c (s390-tdep.h): New include.
15307         * Makefile.in (ALL_TARGET_OBS): Add s390-tdep.o.
15308         (HFILES_NO_SRCDIR): Add s390-tdep.h.
15309         (ALLDEPFILES): Add s390-tdep.c.
15310         * configure.tgt (s390*-*-linux*): Add s390-tdep.o.
15311         * s390-linux-tdep.h (HWCAP_S390_*, S390_*_REGNUM): Move to...
15312         * s390-tdep.h: ...this.  New file.
15313         * s390-linux-tdep.c (s390-tdep.h): New include.
15314         (_initialize_s390_tdep): Rename to...
15315         (_initialize_s390_linux_tdep): ...this and adjust.
15316         (s390_abi_kind, s390_vector_abi_kind, gdbarch_tdep)
15317         (enum named opcodes, S390_NUM_GPRS, S390_NUM_FPRS): Move to
15318         s390-tdep.h.
15319         (s390_break_insn, s390_breakpoint, s390_readinstruction, is_ri)
15320         (is_ril, is_rr, is_rre, is_rs, is_rsy, is_rx, is_rxy)
15321         (s390_is_partial_instruction, s390_software_single_step)
15322         (is_non_branch_ril, s390_displaced_step_copy_insn)
15323         (s390_displaced_step_fixup, s390_displaced_step_hw_singlestep)
15324         (s390_prologue_data, s390_addr, s390_store, s390_load)
15325         (s390_check_for_saved, s390_analyze_prologue, s390_skip_prologue)
15326         (s390_register_call_saved, s390_guess_tracepoint_registers)
15327         (s390_register_name, s390_dwarf_regmap, s390_dwarf_reg_to_regnum)
15328         (regnum_is_gpr_full, regnum_is_vxr_full, s390_value_from_register)
15329         (s390_pseudo_register_name, s390_pseudo_register_type)
15330         (s390_pseudo_register_read, s390_pseudo_register_write)
15331         (s390_pseudo_register_reggroup_p, s390_ax_pseudo_register_collect)
15332         (s390_ax_pseudo_register_push_stack, s390_gen_return_address)
15333         (s390_addr_bits_remove, s390_address_class_type_flags)
15334         (s390_address_class_type_flags_to_name)
15335         (s390_address_class_name_to_type_flags, s390_effective_inner_type)
15336         (s390_function_arg_float, s390_function_arg_vector)
15337         (is_power_of_two, s390_function_arg_integer, s390_arg_state)
15338         (s390_handle_arg, s390_push_dummy_call, s390_dummy_id)
15339         (s390_frame_align, s390_register_return_value, s390_return_value)
15340         (s390_stack_frame_destroyed_p, s390_unwind_pc, s390_unwind_sp)
15341         (s390_unwind_pseudo_register, s390_adjust_frame_regnum)
15342         (s390_dwarf2_prev_register, s390_dwarf2_frame_init_reg)
15343         (s390_trad_frame_prev_register, s390_unwind_cache)
15344         (s390_prologue_frame_unwind_cache)
15345         (s390_backchain_frame_unwind_cache, s390_frame_unwind_cache)
15346         (s390_frame_this_id, s390_frame_prev_register, s390_frame_unwind)
15347         (s390_stub_unwind_cache, s390_stub_frame_unwind_cache)
15348         (s390_stub_frame_this_id, s390_stub_frame_prev_register)
15349         (s390_stub_frame_sniffer, s390_stub_frame_unwind)
15350         (s390_frame_base_address, s390_local_base_address)
15351         (s390_frame_base, s390_gcc_target_options)
15352         (s390_gnu_triplet_regexp, s390_stap_is_single_operand)
15353         (s390_validate_reg_range, s390_tdesc_valid)
15354         (s390_gdbarch_tdep_alloc, s390_gdbarch_init): Move to...
15355         * s390-tdep.c: ...this.  New file.
15356
15357 2018-01-23  Philipp Rudo  <prudo@linux.vnet.ibm.com>
15358
15359         * s390-linux-tdep.c (gdbarch_tdep.s390_syscall_record): New hook.
15360         (s390_process_record, s390_gdbarch_tdep_alloc)
15361         (s390_linux_init_abi_any): Use/set new hook.
15362
15363 2018-01-23  Philipp Rudo  <prudo@linux.vnet.ibm.com>
15364
15365         * s390-linux-tdep.c (osabi.h): New include.
15366         (s390_linux_init_abi_31, s390_linux_init_abi_64)
15367         (s390_linux_init_abi_any): New functions.
15368         (s390_gdbarch_init, _initialize_s390_tdep): Adjust.
15369
15370 2018-01-23  Philipp Rudo  <prudo@linux.vnet.ibm.com>
15371
15372         * s390-linux-tdep.c (s390_gdbarch_init): Use gdb_assert for
15373         tdesc_has_registers check
15374
15375 2018-01-23  Philipp Rudo  <prudo@linux.vnet.ibm.com>
15376
15377         * s390-linux-tdep.c (s390_tdesc_valid): New function.
15378         (s390_validate_reg_range): New macro.
15379         (s390_gdbarch_init): Adjust.
15380
15381 2018-01-23  Philipp Rudo  <prudo@linux.vnet.ibm.com>
15382
15383         * s390-linux-tdep.c (gdbarch_tdep) <tdesc>: New field.
15384         (s390_gdbarch_tdep_alloc): Adjust.
15385         (s390_gdbarch_init): Adjust.
15386
15387 2018-01-23  Philipp Rudo  <prudo@linux.vnet.ibm.com>
15388
15389         * s390-linux-tdep.c (gdbarch_tdep) <have_linux_v1, have_linux_v2>
15390         <have_tdb>: Change type to bool.
15391         (s390_gdbarch_tdep_alloc): Adjust.
15392         (s390_gdbarch_init): Adjust.
15393
15394 2018-01-23  Philipp Rudo  <prudo@linux.vnet.ibm.com>
15395
15396         * s390-linux-tdep (s390_abi_kind) <ABI_NONE>: New default field.
15397         (gdbarch_tdep) <have_upper, have_vx>: New fields.
15398         (s390_gdbarch_tdep_alloc): New function.
15399         (s390_gdbarch_init): Allocate tdep at start and use its fields
15400         instead of separate variables.
15401
15402 2018-01-23  Philipp Rudo  <prudo@linux.vnet.ibm.com>
15403
15404         * s390-linux-tdep.c (s390_gdbarch_init): Remove duplicate checks
15405         when looking for cached gdbarch and add comment for remaining.
15406
15407 2018-01-22  Pedro Alves  <palves@redhat.com>
15408             Sergio Durigan Junior  <sergiodj@redhat.com>
15409
15410         * typeprint.c (whatis_exp): Initialize "val" in the "whatis type"
15411         case.
15412
15413 2018-01-22  Maciej W. Rozycki  <macro@mips.com>
15414
15415         * MAINTAINERS: Update my company e-mail address.
15416
15417 2018-01-22  Yao Qi  <yao.qi@linaro.org>
15418
15419         * regcache.c (cooked_write_test): New function.
15420         (_initialize_regcache): Register the test.
15421
15422 2018-01-22  Yao Qi  <yao.qi@linaro.org>
15423
15424         * ia64-tdep.c (ia64_pseudo_register_read): Call
15425         regcache->cooked_read instead of regcache_cooked_read_unsigned.
15426         * m32c-tdep.c (m32c_cat_read): Likewise.
15427         (m32c_r3r2r1r0_read): Likewise.
15428         * m68hc11-tdep.c (m68hc11_pseudo_register_read): Likewise.
15429         * xtensa-tdep.c (xtensa_register_read_masked): Likewise.
15430
15431 2018-01-22  Yao Qi  <yao.qi@linaro.org>
15432
15433         * aarch64-tdep.c (aarch64_pseudo_read_value): Call regcache
15434         method raw_read instead of regcache_raw_read.
15435         * amd64-tdep.c (amd64_pseudo_register_read_value): Likewise.
15436         * arm-tdep.c (arm_neon_quad_read): Likewise.
15437         * avr-tdep.c (avr_pseudo_register_read): Likewise.
15438         * bfin-tdep.c (bfin_pseudo_register_read): Likewise.
15439         * frv-tdep.c (frv_pseudo_register_read): Likewise.
15440         * h8300-tdep.c (h8300_pseudo_register_read): Likewise.
15441         * i386-tdep.c (i386_mmx_regnum_to_fp_regnum): Likewise.
15442         (i386_pseudo_register_read_into_value): Likewise.
15443         * mep-tdep.c (mep_pseudo_cr32_read): Likewise.
15444         * msp430-tdep.c (msp430_pseudo_register_read): Likewise.
15445         * nds32-tdep.c (nds32_pseudo_register_read): Likewise.
15446         * rl78-tdep.c (rl78_pseudo_register_read): Likewise.
15447         * s390-linux-tdep.c (s390_pseudo_register_read): Likewise.
15448         * sparc-tdep.c (sparc32_pseudo_register_read):  Likewise.
15449         * sparc64-tdep.c (sparc64_pseudo_register_read): Likewise.
15450         * spu-tdep.c (spu_pseudo_register_read_spu):  Likewise.
15451         * xtensa-tdep.c (xtensa_pseudo_register_read): Likewise.
15452
15453 2018-01-22  Yao Qi  <yao.qi@linaro.org>
15454
15455         * Makefile.in (ALL_TARGET_OBS): Remove mt-tdep.o.
15456         * configure.tgt: Remove target mt.
15457         * mt-tdep.c: Remove.
15458         * regcache.c (cooked_read_test): Remove the check for mt.
15459
15460 2018-01-22  Yao Qi  <yao.qi@linaro.org>
15461
15462         * jit.c (jit_frame_prev_register): Call regcache::cooked_read
15463         instead of gdbarch_pseudo_register_read_value.
15464
15465 2018-01-22  Joel Brobecker  <brobecker@adacore.com>
15466
15467         * dwarf2read.c (need_gnat_info): Return nonzero if the cu's
15468         language is Ada.
15469
15470 2018-01-22  Joel Brobecker  <brobecker@adacore.com>
15471
15472         * linespec.c (create_sals_line_offset): Remove code that preserved
15473         the symtab_and_line's line number.
15474
15475 2018-01-21  Andrew Burgess  <andrew.burgess@embecosm.com>
15476
15477         * varobj.c (varobj_create): Don't set valid_block when creating a
15478         floating varobj.
15479
15480 2018-01-21  Andrew Burgess  <andrew.burgess@embecosm.com>
15481
15482         * varobj.c (varobj_create): Remove out of date comment.
15483
15484 2018-01-21  Andrew Burgess  <andrew.burgess@embecosm.com>
15485
15486         PR mi/20395
15487         * ada-exp.y (write_var_from_sym): Pass extra parameter when
15488         updating innermost block.
15489         * parse.c (innermost_block_tracker::update): Take extra type
15490         parameter, and check types match before updating innermost block.
15491         (write_dollar_variable): Update innermost block for registers.
15492         * parser-defs.h (enum innermost_block_tracker_type): New enum.
15493         (innermost_block_tracker::innermost_block_tracker): Initialise
15494         m_types member.
15495         (innermost_block_tracker::reset): Take type parameter.
15496         (innermost_block_tracker::update): Take type parameter, and pass
15497         type through as needed.
15498         (innermost_block_tracker::m_types): New member.
15499         * varobj.c (varobj_create): Pass type when reseting innermost
15500         block.
15501
15502 2018-01-21  Andrew Burgess  <andrew.burgess@embecosm.com>
15503
15504         * ada-exp.y (write_var_from_sym): Switch to innermost_block API.
15505         * ada-lang.c (resolve_subexp): Likewise.
15506         * breakpoint.c (set_breakpoint_condition) Likewise.
15507         (watch_command_1) Likewise.
15508         * c-exp.y (variable): Likewise.
15509         * d-exp.y (PrimaryExpression): Likewise.
15510         * f-exp.y (variable): Likewise.
15511         * go-exp.y (variable): Likewise.
15512         * m2-exp.y (variable): Likewise.
15513         * objfiles.c (objfile::~objfile): Likewise.
15514         * p-exp.y (variable): Likewise.
15515         * parse.c (innermost_block): Change type.
15516         * parser-defs.h (class innermost_block_tracker): New.
15517         (innermost_block): Change to innermost_block_tracker.
15518         * printcmd.c (display_command): Switch to innermost_block API.
15519         (do_one_display): Likewise.
15520         * rust-exp.y (do_one_display): Likewise.
15521         * symfile.c (clear_symtab_users): Likewise.
15522         * varobj.c (varobj_create): Switch to innermost_block API, replace
15523         use of innermost_block with block stored on varobj object.
15524
15525 2018-01-21  Andrew Burgess  <andrew.burgess@embecosm.com>
15526
15527         * expression.h (innermost_block): Remove declaration.
15528         * varobj.c: Add 'parser-defs.h' include.
15529
15530 2018-01-19  Tom Tromey  <tom@tromey.com>
15531
15532         * rust-lang.c (rust_lookup_symbol_nonlocal): Look up qualified
15533         symbols in the static and global blocks.
15534
15535 2018-01-19  James Clarke  <jrtc27@jrtc27.com>
15536
15537         * nat/linux-ptrace.c: Remove unnecessary reinclusion of
15538         gdb_ptrace.h, and move including gdb_wait.h ...
15539         * nat/linux-ptrace.h: ... to here.
15540
15541 2018-01-19  Simon Marchi  <simon.marchi@ericsson.com>
15542
15543         * inf-ptrace.c (inf_ptrace_detach): Adjust call to
15544         inf_ptrace_detach_success.
15545         (inf_ptrace_detach_success): Add inferior parameter, use it
15546         instead of inferior_ptid, pass it to detach_inferior.
15547         * inf-ptrace.h (inf_ptrace_detach_success): Add inferior
15548         parameter.
15549         * inferior.c (detach_inferior): Add overload that takes an
15550         inferior object.
15551         * inferior.h (detach_inferior): Likewise.
15552         * linux-nat.c (linux_nat_detach): Use the inf parameter, don't
15553         use inferior_ptid, adjust call to inf_ptrace_detach_success.
15554         * linux-thread-db.c (thread_db_detach): Use inf parameter.
15555
15556 2018-01-19  Simon Marchi  <simon.marchi@ericsson.com>
15557
15558         * target.h (struct target_ops) <to_detach>: Add inferior
15559         parameter.
15560         (target_detach): Likewise.
15561         * target.c (dispose_inferior): Pass inferior down.
15562         (target_detach): Pass inferior down.  Assert that it is equal to
15563         the current inferior.
15564         * aix-thread.c (aix_thread_detach): Pass inferior down.
15565         * corefile.c (core_file_command): Pass current_inferior() down.
15566         * corelow.c (core_detach): Add inferior parameter.
15567         * darwin-nat.c (darwin_detach): Likewise.
15568         * gnu-nat.c (gnu_detach): Likewise.
15569         * inf-ptrace.c (inf_ptrace_detach): Likewise.
15570         * infcmd.c (detach_command): Pass current_inferior() down to
15571         target_detach.
15572         * infrun.c (follow_fork_inferior): Pass parent_inf to
15573         target_detach.
15574         (handle_vfork_child_exec_or_exit): Pass inf->vfork_parent to
15575         target_detach.
15576         * linux-nat.c (linux_nat_detach): Add inferior parameter.
15577         * linux-thread-db.c (thread_db_detach): Likewise.
15578         * nto-procfs.c (procfs_detach): Likewise.
15579         * procfs.c (procfs_detach): Likewise.
15580         * record.c (record_detach): Likewise.
15581         * record.h (struct inferior): Forward-declare.
15582         (record_detach): Add inferior parameter.
15583         * remote-sim.c (gdbsim_detach): Likewise.
15584         * remote.c (remote_detach_1): Likewise.
15585         (remote_detach): Likewise.
15586         (extended_remote_detach): Likewise.
15587         * sol-thread.c (sol_thread_detach): Likewise.
15588         * target-debug.h (target_debug_print_inferior_p): New macro.
15589         * target-delegates.c: Re-generate.
15590         * top.c (kill_or_detach): Pass inferior down to target_detach.
15591         * windows-nat.c (windows_detach): Add inferior parameter.
15592
15593 2018-01-19  Simon Marchi  <simon.marchi@ericsson.com>
15594
15595         * target.h (struct target_ops) <to_detach>: Remove args
15596         parameter.
15597         (target_detach): Likewise.
15598         * target.c (dispose_inferior): Adjust.
15599         (target_detach): Remove args parameter, adjust.
15600         * aix-thread.c (aix_thread_detach): Adjust.
15601         * corefile.c (core_file_command): Adjust.
15602         * corelow.c (core_detach): Adjust.
15603         * darwin-nat.c (darwin_detach): Adjust.
15604         * gnu-nat.c (gnu_detach): Adjust.
15605         * inf-ptrace.c (inf_ptrace_detach): Adjust.
15606         * infcmd.c (detach_command): Adjust
15607         * infrun.c (follow_fork_inferior): Adjust.
15608         (handle_vfork_child_exec_or_exit): Adjust.
15609         * linux-fork.c (linux_fork_detach): Remove args parameter.
15610         * linux-fork.h (linux_fork_detach): Likewise.
15611         * linux-nat.c (linux_nat_detach): Likewise, and adjust.
15612         * linux-thread-db.c (thread_db_detach): Likewise.
15613         * nto-procfs.c (procfs_detach): Likewise.
15614         * procfs.c (procfs_detach): Likewise.
15615         (do_detach): Remove signo parameter.
15616         * record.c (record_detach): Remove args parameter.
15617         * record.h (record_detach): Likewise.
15618         * remote-sim.c (gdbsim_detach): Likewise.
15619         * remote.c (remote_detach_1): Likewise.
15620         (remote_detach): Likewise.
15621         (extended_remote_detach): Likewise.
15622         * sol-thread.c (sol_thread_detach): Likewise.
15623         * target-delegates.c: Re-generate.
15624         * top.c (struct qt_args) <args>: Remove field.
15625         (kill_or_detach): Don't pass args.
15626         (quit_force): Don't set args.
15627         * windows-nat.c (windows_detach): Remove args parameter.
15628
15629 2018-01-19  Yao Qi  <yao.qi@linaro.org>
15630
15631         * arm-linux-tdep.c (arm_linux_gcc_target_options): New function.
15632         (arm_linux_init_abi): Install it.
15633
15634 2018-01-19  Yao Qi  <yao.qi@linaro.org>
15635
15636         * osabi.c (gdb_osabi_names): Extend the regexp for
15637         arm-linux-gnueabihf.
15638
15639 2018-01-18  Yao Qi  <yao.qi@linaro.org>
15640
15641         * dwarf2read.c (abbrev_table) <abbrevs>: Rename it to
15642         m_abbrevs.
15643         (abbrev_table::add_abbrev): Update.
15644         (abbrev_table::lookup_abbrev): Update.
15645
15646 2018-01-18  Yao Qi  <yao.qi@linaro.org>
15647
15648         * ppc-linux-tdep.c (ppu2spu_prev_register): Call cooked_read.
15649
15650 2018-01-17  Sergio Durigan Junior  <sergiodj@redhat.com>
15651
15652         * compile/compile.c (compile_to_object): Convert "triplet_rx"
15653         to "std::string".
15654
15655 2018-01-17  Tom Tromey  <tom@tromey.com>
15656
15657         * dwarf2read.c (symbolp): Remove typedef.  Don't instantiate VEC.
15658
15659 2018-01-17  Tom Tromey  <tom@tromey.com>
15660
15661         * gdbtypes.h (add_dyn_prop): Remove objfile parameter.
15662         * gdbtypes.c (add_dyn_prop): Remove objfile parameter.
15663         (create_array_type_with_stride): Update.
15664         * dwarf2read.c (set_die_type): Update.
15665
15666 2018-01-17  Tom Tromey  <tom@tromey.com>
15667
15668         * dwarf2read.c (delayed_method_info): Remove typedef.
15669         (dwarf2_cu::method_info): Now a std::vector.
15670         (add_to_method_list): Update.
15671         (free_delayed_list): Remove.
15672         (compute_delayed_physnames): Update.
15673         (process_full_comp_unit, process_full_type_unit): Clear the method
15674         list.  Remove cleanups.
15675         (psymtab_include_file_name): Add name_holder parameter.  Use
15676         unique_xmalloc_ptr.
15677         (dwarf_decode_lines): Update.
15678
15679 2018-01-17  Tom Tromey  <tom@tromey.com>
15680             Simon Marchi  <simon.marchi@ericsson.com>
15681
15682         * dwarf2read.c (struct dwarf2_cu): Add constructor, destructor.
15683         (dwarf2_per_objfile::free_cached_comp_units)
15684         (init_tu_and_read_dwo_dies, init_cutu_and_read_dies)
15685         (init_cutu_and_read_dies_no_follow): Update.
15686         (dwarf2_cu::dwarf2_cu): Rename from init_one_comp_unit.
15687         (dwarf2_cu::~dwarf2_cu): New.
15688         (free_heap_comp_unit, free_stack_comp_unit): Remove.
15689         (age_cached_comp_units, free_one_cached_comp_unit): Update.
15690
15691 2018-01-17  Tom Tromey  <tom@tromey.com>
15692             Simon Marchi  <simon.marchi@ericsson.com>
15693
15694         * dwarf2read.c (struct dwarf2_cu) <abbrev_table>: Remove.
15695         (struct die_reader_specs) <abbrev_table>: New member.
15696         (struct abbrev_table): Add constructor.
15697         <alloc_abbrev, add_abbrev, lookup_abbrev>: Declare.
15698         <abbrev_obstack>: Now an auto_obstack.
15699         (abbrev_table_up): New typedef.
15700         (init_cu_die_reader): Add abbrev_table parameter.
15701         (read_cutu_die_from_dwo): Remove abbrev_table_provided parameter.
15702         Add result_dwo_abbrev_table.
15703         (init_tu_and_read_dwo_dies, init_cutu_and_read_dies)
15704         (init_cutu_and_read_dies_no_follow, build_type_psymtabs_1):
15705         Update.
15706         (peek_die_abbrev): Take die_reader_specs, not dwarf_cu as
15707         parameter.
15708         (skip_children): Update.
15709         (abbrev_table::alloc_abbrev): Rename from
15710         abbrev_table_alloc_abbrev.
15711         (abbrev_table::add_abbrev): Rename from abbrev_table_add_abbrev.
15712         (abbrev_table::lookup_abbrev): Rename from
15713         abbrev_table_lookup_abbrev.
15714         (abbrev_table_read_table): Return abbrev_table_up.
15715         (abbrev_table_free, abbrev_table_free_cleanup)
15716         (dwarf2_read_abbrevs, dwarf2_free_abbrev_table): Remove.
15717         (load_partial_dies): Update.
15718
15719 2018-01-17  Tom Tromey  <tom@tromey.com>
15720
15721         * dwarf2read.c (dwarf2_compute_name): Update comment.
15722         (read_func_scope, read_variable): Update.
15723         (new_symbol): Remove.
15724         (new_symbol_full): Rename to new_symbol.
15725
15726 2018-01-17  Mike Gulick  <mgulick@mathworks.com>
15727
15728         PR gdb/16577
15729         * gdb_bfd.c (gdb_bfd_map_section): If unable to read object file, issue
15730         a warning instead of throwing an error, set section size to 0 and return
15731         NULL.
15732         * gdb_bfd.h (gdb_bfd_map_section): Update description.
15733
15734 2018-01-17  Simon Marchi  <simon.marchi@ericsson.com>
15735
15736         * nat/linux-ptrace.h (linux_ptrace_attach_fail_reason): Return
15737         std::string.
15738         (linux_ptrace_attach_fail_reason_string): Likewise.
15739         * nat/linux-ptrace.c (linux_ptrace_attach_fail_reason):
15740         Likewise.
15741         (linux_ptrace_attach_fail_reason_string): Likewise.
15742         * linux-nat.c (attach_proc_task_lwp_callback): Adjust.
15743
15744 2018-01-17  Simon Marchi  <simon.marchi@ericsson.com>
15745
15746         * linux-nat.c (linux_nat_attach): Remove xstrdup.
15747
15748 2018-01-17  Eldar Abusalimov  <eldar.abusalimov@jetbrains.com>
15749
15750         PR gdb/21559
15751         * configure.ac: Include <sys/types.h> prior to <sys/user.h> when
15752         checking for fs_base/gs_base fields in struct user_regs_struct.
15753         * configure: Regenerate.
15754
15755 2018-01-17  Yao Qi  <yao.qi@linaro.org>
15756
15757         * aarch64-linux-tdep.c (aarch64_linux_gcc_target_options): New
15758         function.
15759         (aarch64_linux_init_abi): Install it to gdbarch hook
15760         gcc_target_options.
15761
15762 2018-01-15  Pedro Alves  <palves@redhat.com>
15763
15764         * common/signals-state-save-restore.c
15765         (save_original_signals_state): Fix typos.
15766
15767 2017-01-12  Tom Tromey  <tom@tromey.com>
15768             Sergio Durigan Junior  <sergiodj@redhat.com>
15769
15770         * Makefile.in (install-only): Install gdb-add-index.
15771
15772 2018-01-12  John Baldwin  <jhb@FreeBSD.org>
15773
15774         * fbsd-tdep.c (KVE_PROTECTION): Correct value.
15775
15776 2018-01-12  Andreas Arnez  <arnez@linux.vnet.ibm.com>
15777
15778         * infrun.c (keep_going_pass_signal): Clear step-over info when
15779         insert_breakpoints fails.
15780
15781 2018-01-11  Pedro Alves  <palves@redhat.com>
15782
15783         PR gdb/22583
15784         * infrun.c (resume): Rename to ...
15785         (resume_1): ... this.
15786         (resume): Reimplement as wrapper around resume_1.
15787
15788 2018-01-11  Pedro Alves  <palves@redhat.com>
15789
15790         PR remote/22597
15791         * remote.c (remote_parse_stop_reply): Default to the last-set
15792         general thread instead of to 'magic_null_ptid'.
15793
15794 2018-01-10  Pedro Alves  <palves@redhat.com>
15795
15796         * language.h (language_get_symbol_name_matcher): Rename ...
15797         (get_symbol_name_matcher): ... this.
15798         * language.c (language_get_symbol_name_matcher): Ditto.
15799         * dictionary.c, linespec.c, minsyms.c, psymtab.c, symtab.c: All
15800         callers adjusted.
15801
15802 2018-01-10  Pedro Alves  <palves@redhat.com>
15803
15804         PR gdb/22670
15805         * dwarf2read.c
15806         (gdb_index_symbol_name_matcher::gdb_index_symbol_name_matcher):
15807         Adjust to use language_get_symbol_name_matcher instead of
15808         language_defn::la_get_symbol_name_matcher.
15809         * language.c (language_get_symbol_name_matcher): If in Ada mode
15810         and the lookup name is a verbatim match, return Ada's matcher.
15811         * language.h (language_get_symbol_name_matcher): Adjust comment.
15812         (ada_lookup_name_info::verbatim_p):: New method.
15813
15814 2018-01-10  Pedro Alves  <palves@redhat.com>
15815
15816         PR gdb/22670
15817         * ada-lang.c (ada_collect_symbol_completion_matches): If the
15818         minsym's language is language_auto or language_cplus, pass down
15819         language_ada instead.
15820         * symtab.c (compare_symbol_name): Don't frob symbol language here.
15821
15822 2018-01-10  Pedro Alves  <palves@redhat.com>
15823
15824         PR gdb/22670
15825         * minsyms.c (linkage_name_str): New function.
15826         (iterate_over_minimal_symbols): Use it.
15827
15828 2018-01-09  John Baldwin  <jhb@FreeBSD.org>
15829
15830         * NEWS: Document that 'info proc' now works on FreeBSD.
15831
15832 2018-01-09  John Baldwin  <jhb@FreeBSD.org>
15833
15834         * configure.ac: Check for kinfo_getfile in libutil.
15835         * configure: Regenerate.
15836         * config.in: Regenerate.
15837         * fbsd-nat.c: Include "fbsd-tdep.h".
15838         (fbsd_fetch_cmdline): New.
15839         (fbsd_fetch_kinfo_proc): Move earlier and change to return a bool
15840         rather than calling error.
15841         (fbsd_info_proc): New.
15842         (fbsd_thread_name): Report error if fbsd_fetch_kinfo_proc fails.
15843         (fbsd_wait): Report warning if fbsd_fetch_kinfo_proc fails.
15844         (fbsd_nat_add_target): Set "to_info_proc" to "fbsd_info_proc".
15845
15846 2018-01-09  John Baldwin  <jhb@FreeBSD.org>
15847
15848         * fbsd-nat.c (struct free_deleter): Remove.
15849         (fbsd_find_memory_regions): Use gdb::unique_xmalloc_ptr<>.
15850
15851 2018-01-09  John Baldwin  <jhb@FreeBSD.org>
15852
15853         * fbsd-nat.c (fbsd_pid_to_exec_file) [KERN_PROC_PATHNAME]: Return
15854         NULL for an empty pathname.
15855
15856 2018-01-09  John Baldwin  <jhb@FreeBSD.org>
15857
15858         * fbsd-tdep.c (KVE_STRUCTSIZE, KVE_START, KVE_END, KVE_OFFSET)
15859         (KVE_FLAGS, KVE_PROTECTION, KVE_PATH, KINFO_VME_PROT_READ)
15860         (KINFO_VME_PROT_WRITE, KINFO_VME_PROT_EXEC, KINFO_VME_FLAG_COW)
15861         (KINFO_VME_FLAG_NEEDS_COPY, KINFO_VME_FLAG_NOCOREDUMP)
15862         (KINFO_VME_FLAG_SUPER, KINFO_VME_FLAG_GROWS_UP)
15863         (KINFO_VME_FLAG_GROWS_DOWN, KF_STRUCTSIZE, KF_TYPE, KF_FD)
15864         (KF_PATH, KINFO_FILE_TYPE_VNODE, KINFO_FILE_FD_TYPE_CWD)
15865         (KINFO_FILE_FD_TYPE_TEXT, SIG_WORDS, struct kinfo_proc_layout)
15866         (kinfo_proc_layout_32, kinfo_proc_layout_i386)
15867         (kinfo_proc_layout_64, fbsd_vm_map_entry_flags)
15868         (fbsd_core_info_proc_mappings, fbsd_core_vnode_path)
15869         (fbsd_core_fetch_timeval, fbsd_print_sigset)
15870         (fbsd_core_info_proc_status, fbsd_core_info_proc): New.
15871         (fbsd_init_abi):  Install gdbarch "core_info_proc" method.
15872         * fbsd-tdep.h (fbsd_vm_map_entry_flags): New.
15873
15874 2018-01-08  Samuel Thibault  <samuel.thibault@ens-lyon.org>
15875
15876         * gdb/gnu-nat.c: Include <elf.h> and <link.h>.
15877         (gnu_xfer_auxv): New function.
15878         (gnu_xfer_partial): Call gnu_xfer_auxv when `object' is
15879         TARGET_OBJECT_AUXV.
15880
15881 2018-01-08  Yao Qi  <yao.qi@linaro.org>
15882             Simon Marchi  <simon.marchi@ericsson.com>
15883
15884         * Makefile.in (COMMON_SFILES): Remove selftest-arch.c and
15885         common/selftest.c.
15886         (COMMON_OBS): Remove selftest.o.
15887         * configure.ac: Append selftest-arch.c and common/selftest.c to
15888         CONFIG_SRCS.  Append selftest-arch.o and selftest.o to COMMON_OBS.
15889         * configure: Re-generated.
15890         * maint.c (maintenance_selftest): Wrap selftests::run_tests with
15891         GDB_SELF_TEST.
15892         (maintenance_info_selftests): Likewise.
15893
15894 2018-01-08  Xavier Roirand  <roirand@adacore.com>
15895
15896         * ada-valprint.c (val_print_packed_array_elements): Use
15897         proper number of elements when printing an array indexed
15898         by an enumeration type.
15899
15900 2018-01-07  Simon Marchi  <simon.marchi@polymtl.ca>
15901
15902         * dwarf2read.c (struct dwarf2_cu) <dwarf2_per_objfile>: Remove.
15903         (dw2_get_file_names_reader): Adjust.
15904         (lookup_dwo_signatured_type): Adjust.
15905         (lookup_dwp_signatured_type): Adjust.
15906         (lookup_signatured_type): Adjust.
15907         (create_type_unit_group): Adjust.
15908         (get_type_unit_group): Adjust.
15909         (process_psymtab_comp_unit_reader): Adjust.
15910         (build_type_psymtabs_reader): Adjust.
15911         (scan_partial_symbols): Adjust.
15912         (add_partial_symbol): Adjust.
15913         (add_partial_subprogram): Adjust.
15914         (peek_die_abbrev): Adjust.
15915         (fixup_go_packaging): Adjust.
15916         (process_imported_unit_die): Adjust.
15917         (dwarf2_compute_name): Adjust.
15918         (dwarf2_physname): Adjust.
15919         (read_import_statement): Adjust.
15920         (handle_DW_AT_stmt_list): Adjust.
15921         (read_file_scope): Adjust.
15922         (read_func_scope): Adjust.
15923         (read_lexical_block_scope): Adjust.
15924         (read_call_site_scope): Adjust.
15925         (read_variable): Adjust.
15926         (dwarf2_rnglists_process): Adjust.
15927         (dwarf2_ranges_process): Adjust.
15928         (dwarf2_ranges_read): Adjust.
15929         (dwarf2_get_pc_bounds): Adjust.
15930         (dwarf2_record_block_ranges): Adjust.
15931         (dwarf2_add_field): Adjust.
15932         (dwarf2_add_member_fn): Adjust.
15933         (read_structure_type): Adjust.
15934         (process_structure_scope): Adjust.
15935         (read_enumeration_type): Adjust.
15936         (read_array_type): Adjust.
15937         (mark_common_block_symbol_computed): Adjust.
15938         (read_common_block): Adjust.
15939         (read_namespace_type): Adjust.
15940         (read_namespace): Adjust.
15941         (read_module_type): Adjust.
15942         (read_tag_pointer_type): Adjust.
15943         (read_tag_ptr_to_member_type): Adjust.
15944         (read_tag_string_type): Adjust.
15945         (read_subroutine_type): Adjust.
15946         (read_typedef): Adjust.
15947         (read_base_type): Adjust.
15948         (attr_to_dynamic_prop): Adjust.
15949         (read_subrange_type): Adjust.
15950         (read_unspecified_type): Adjust.
15951         (dwarf2_read_abbrevs): Adjust.
15952         (load_partial_dies): Adjust.
15953         (read_partial_die): Adjust.
15954         (find_partial_die): Adjust.
15955         (guess_partial_die_structure_name): Adjust.
15956         (fixup_partial_die): Adjust.
15957         (read_attribute_value): Adjust.
15958         (read_addr_index): Adjust.
15959         (read_addr_index_from_leb128): Adjust.
15960         (read_str_index): Adjust.
15961         (dwarf2_string_attr): Adjust.
15962         (get_debug_line_section): Adjust.
15963         (dwarf_decode_line_header): Adjust.
15964         (lnp_state_machine::check_line_address): Adjust.
15965         (dwarf_decode_lines_1): Adjust.
15966         (dwarf_decode_lines): Adjust.
15967         (dwarf2_start_symtab): Adjust.
15968         (var_decode_location): Adjust.
15969         (new_symbol_full): Adjust.
15970         (dwarf2_const_value_data): Adjust.
15971         (dwarf2_const_value_attr): Adjust.
15972         (dwarf2_const_value): Adjust.
15973         (die_type): Adjust.
15974         (die_containing_type): Adjust.
15975         (build_error_marker_type): Adjust.
15976         (lookup_die_type): Adjust.
15977         (guess_full_die_structure_name): Adjust.
15978         (anonymous_struct_prefix): Adjust.
15979         (determine_prefix): Adjust.
15980         (dwarf2_name): Adjust.
15981         (follow_die_ref_or_sig): Adjust.
15982         (follow_die_offset): Adjust.
15983         (follow_die_ref): Adjust.
15984         (follow_die_sig_1): Adjust.
15985         (follow_die_sig): Adjust.
15986         (get_signatured_type): Adjust.
15987         (get_DW_AT_signature_type): Adjust.
15988         (decode_locdesc): Adjust.
15989         (dwarf_decode_macros): Adjust.
15990         (cu_debug_loc_section): Adjust.
15991         (fill_in_loclist_baton): Adjust.
15992         (dwarf2_symbol_mark_computed): Adjust.
15993         (init_one_comp_unit): Don't assign
15994         dwarf2_cu::dwarf2_per_objfile.
15995         (set_die_type): Adjust.
15996
15997 2018-01-07  Simon Marchi  <simon.marchi@ericsson.com>
15998
15999         * dwarf2read.c (struct mapped_debug_names): Add constructor.
16000         <dwarf2_per_objfile>: New field.
16001         (dwarf2_per_objfile): Remove global.
16002         (get_dwarf2_per_objfile): New function.
16003         (set_dwarf2_per_objfile): New function.
16004         (dwarf2_build_psymtabs_hard): Change objfile parameter to
16005         dwarf2_per_objfile.
16006         (abbrev_table_read_table): Add dwarf2_per_objfile parameter.
16007         (read_abbrev_offset): Likewise.
16008         (read_indirect_string): Likewise.
16009         (read_indirect_line_string): Likewise.
16010         (read_indirect_string_at_offset): Likewise.
16011         (read_indirect_string_from_dwz): Likewise.
16012         (dwarf2_find_containing_comp_unit): Change objfile parameter to
16013         dwarf2_per_objfile.
16014         (age_cached_comp_units): Add dwarf2_per_objfile parameter.
16015         (create_all_comp_units): Change objfile parameter to
16016         dwarf2_per_objfile.
16017         (create_all_type_units): Likewise.
16018         (process_queue): Add dwarf2_per_objfile parameter.
16019         (read_and_check_comp_unit_head): Likewise.
16020         (lookup_dwo_unit_in_dwp): Likewise.
16021         (get_dwp_file): Likewise.
16022         (process_cu_includes): Likewise.
16023         (struct free_dwo_file_cleanup_data): New struct.
16024         (dwarf2_has_info): Use get_dwarf2_per_objfile and
16025         set_dwarf2_per_objfile.
16026         (dwarf2_get_dwz_file): Add dwarf2_per_objfile parameter.
16027         (dw2_do_instantiate_symtab): Get dwarf2_per_objfile from
16028         context, adjust calls.
16029         (dw2_instantiate_symtab): Likewise.
16030         (dw2_get_cutu): Add dwarf2_per_objfile parameter.
16031         (dw2_get_cu): Likewise.
16032         (create_cu_from_index_list): Change objfile parameter to
16033         dwarf2_per_objfile.
16034         (create_cus_from_index_list): Get dwarf2_per_objfile from
16035         context, adjust calls.
16036         (create_cus_from_index): Likewise.
16037         (create_signatured_type_table_from_index): Change objfile
16038         parameter to dwarf2_per_objfile.
16039         (create_signatured_type_table_from_debug_names): Change objfile
16040         parameter to dwarf2_per_objfile.
16041         (create_addrmap_from_index): Likewise.
16042         (create_addrmap_from_aranges): Likewise.
16043         (dwarf2_read_index): Use get_dwarf2_per_objfile, adjust calls.
16044         (dw2_setup): Remove.
16045         (dw2_get_file_names_reader): Get dwarf2_per_objfile from
16046         context.
16047         (dw2_find_last_source_symtab): Get dwarf2_per_objfile using
16048         get_dwarf2_per_objfile.
16049         (dw2_forget_cached_source_info): Likewise.
16050         (dw2_map_symtabs_matching_filename): Likewise.
16051         (struct dw2_symtab_iterator) <index>: Remove.
16052         <dwarf2_per_objfile>: New field.
16053         (dw2_symtab_iter_init): Replace index parameter with
16054         dwarf2_per_objfile.
16055         (dw2_symtab_iter_next): Use dwarf2_per_objfile from iter.
16056         (dw2_lookup_symbol): Use get_dwarf2_per_objfile and adjust.
16057         (dw2_print_stats): Likewise.
16058         (dw2_dump): Likewise.
16059         (dw2_expand_symtabs_for_function): Likewise.
16060         (dw2_expand_all_symtabs): Likewise.
16061         (dw2_expand_symtabs_with_fullname): Likewise.
16062         (dw2_expand_marked_cus): Replace index and objfile parameters
16063         with dwarf2_per_objfile.
16064         (dw_expand_symtabs_matching_file_matcher): Add
16065         dwarf2_per_objfile parameter and adjust calls.
16066         (dw2_expand_symtabs_matching): Use get_dwarf2_per_objfile and
16067         adjust calls.
16068         (dw2_find_pc_sect_compunit_symtab): Don't call dw2_setup.
16069         (dw2_map_symbol_filenames): Use get_dwarf2_per_objfile and
16070         adjust calls.
16071         (create_cus_from_debug_names_list): Replace objfile parameter
16072         with dwarf2_per_objfile and adjust calls.
16073         (create_cus_from_debug_names): Likewise.
16074         (dwarf2_read_debug_names): Likewise.
16075         (mapped_debug_names::namei_to_name): Adjust call.
16076         (dw2_debug_names_iterator::next): Likewise.
16077         (dw2_debug_names_iterator::find_vec_in_debug_names): Likewise.
16078         (dw2_debug_names_lookup_symbol): Use get_dwarf2_per_objfile.
16079         (dw2_debug_names_dump): Likewise.
16080         (dw2_debug_names_expand_symtabs_for_function): Likewise.
16081         (dw2_debug_names_expand_symtabs_matching): Likewise.
16082         (dwarf2_initialize_objfile): Likewise.
16083         (dwarf2_build_psymtabs): Likewise.
16084         (get_abbrev_section_for_cu): Get dwarf2_per_objfile from
16085         this_cu.
16086         (error_check_comp_unit_head): Add dwarf2_per_objfile parameter.
16087         (read_and_check_comp_unit_head): Likewise.
16088         (read_abbrev_offset): Likewise.
16089         (create_debug_type_hash_table): Likewise.
16090         (create_debug_types_hash_table): Likewise.
16091         (create_all_type_units): Replace objfile parameter with
16092         dwarf2_per_objfile.
16093         (add_type_unit): Add dwarf2_per_objfile parameter.
16094         (fill_in_sig_entry_from_dwo_entry): Replace objfile parameter
16095         with dwarf2_per_objfile.
16096         (lookup_dwo_signatured_type): Get dwarf2_per_objfile from cu.
16097         (lookup_dwp_signatured_type): Likewise.
16098         (lookup_signatured_type): Likewise.
16099         (read_cutu_die_from_dwo): Likewise.
16100         (init_tu_and_read_dwo_dies): Likewise.
16101         (init_cutu_and_read_dies): Likewise.
16102         (init_cutu_and_read_dies_no_follow): Likewise.
16103         (allocate_type_unit_groups_table): Add objfile parameter.
16104         (create_type_unit_group): Use dwarf2_per_objfile from cu.
16105         (get_type_unit_group): Likewise.
16106         (process_psymtab_comp_unit): Update call.
16107         (build_type_psymtabs_reader): Use dwarf2_per_objfile from cu.
16108         (build_type_psymtabs_1): Add dwarf2_per_objfile parameter.
16109         (print_tu_stats): Likewise.
16110         (build_type_psymtab_dependencies): Use dwarf2_per_objfile passed
16111         in void* parameter.
16112         (build_type_psymtabs): Change objfile parameter to
16113         dwarf2_per_objfile.
16114         (process_skeletonless_type_unit): Use dwarf2_per_objfile
16115         passed in void* parameter.
16116         (process_skeletonless_type_units): Change objfile parameter to
16117         dwarf2_per_objfile.
16118         (set_partial_user): Likewise.
16119         (dwarf2_build_psymtabs_hard): Likewise.
16120         (read_comp_units_from_section): Likewise.
16121         (create_all_comp_units): Likewise.
16122         (scan_partial_symbols): Update calls.
16123         (add_partial_symbol): Likewise.
16124         (dwarf2_read_symtab): Use get_dwarf2_per_objfile.
16125         (maybe_queue_comp_unit): Use dwarf2_read_symtab from cu.
16126         (process_queue): Add dwarf2_per_objfile parameter.
16127         (get_compunit_symtab): Use dwarf2_per_objfile from cu.
16128         (compute_compunit_symtab_includes): Likewise.
16129         (process_cu_includes): Add dwarf2_per_objfile parameter.
16130         (process_full_comp_unit): Use dwarf2_per_objfile from cu.
16131         (process_full_type_unit): Likewise.
16132         (process_imported_unit_die): Update call.
16133         (handle_DW_AT_stmt_list): Use dwarf2_per_objfile from cu.
16134         (read_file_scope): Likewise.
16135         (allocate_dwo_file_hash_table): Add objfile parameter.
16136         (lookup_dwo_file_slot): Add dwarf2_per_objfile parameter.
16137         (create_cus_hash_table): Likewise.
16138         (create_dwp_hash_table): Likewise.
16139         (create_dwo_unit_in_dwp_v1): Likewise.
16140         (create_dwp_v2_section): Likewise.
16141         (create_dwo_unit_in_dwp_v2): Likewise.
16142         (lookup_dwo_unit_in_dwp): Likewise.
16143         (try_open_dwop_file): Likewise.
16144         (open_dwo_file): Likewise. Use dwarf2_per_objfile from cu.
16145         (open_and_init_dwo_file): Use dwarf2_per_objfile from cu, update
16146         cleanup to include a reference to dwarf2_per_objfile.
16147         (open_dwp_file): Add dwarf2_per_objfile parameter.
16148         (open_and_init_dwp_file): Likewise.
16149         (get_dwp_file): Likewise.
16150         (lookup_dwo_cutu): Use dwarf2_per_objfile from cu.
16151         (queue_and_load_all_dwo_tus): Update call.
16152         (free_dwo_file_cleanup): Use dwarf2_per_objfile from cleanup
16153         data.
16154         (dwarf2_rnglists_process): Use dwarf2_per_objfile from cu.
16155         (dwarf2_ranges_process): Likewise.
16156         (dwarf2_get_pc_bounds): Likewise.
16157         (mark_common_block_symbol_computed): Likewise.
16158         (abbrev_table_read_table): Add dwarf2_per_objfile parameter.
16159         (dwarf2_read_abbrevs): Update call.
16160         (read_partial_die): Use dwarf2_per_objfile from cu.
16161         (find_partial_die): Likewise.
16162         (fixup_partial_die): Likewise.
16163         (read_attribute_value): Likewise.
16164         (read_indirect_string_at_offset_from): Add objfile parameter.
16165         (read_indirect_string_at_offset): Add dwarf2_per_objfile
16166         parameter.
16167         (read_indirect_string_from_dwz): Add objfile parameter.
16168         (read_indirect_string): Add objfile parameter.
16169         (read_addr_index_1): Add dwarf2_per_objfile parameter.
16170         (read_addr_index): Use dwarf2_per_objfile from cu.
16171         (dwarf2_read_addr_index): Use dwarf2_per_objfile from cu, don't
16172         call dw2_setup.
16173         (read_str_index): Use dwarf2_per_objfile from cu.
16174         (get_debug_line_section): Likewise.
16175         (read_formatted_entries): Add dwarf2_per_objfile parameter.
16176         (dwarf_decode_line_header): Use dwarf2_per_objfile from cu.
16177         (new_symbol_full): Use dwarf2_per_objfile from cu.
16178         (build_error_marker_type): Likewise.
16179         (lookup_die_type): Likewise.
16180         (determine_prefix): Likewise.
16181         (follow_die_offset): Likewise.
16182         (dwarf2_fetch_die_loc_sect_off): Use get_dwarf2_per_objfile.
16183         (dwarf2_fetch_constant_bytes): Don't call dw2_setup.
16184         (dwarf2_fetch_die_type_sect_off): Likewise.
16185         (dwarf2_get_die_type): Likewise.
16186         (follow_die_sig_1): Use dwarf2_per_objfile from cu.
16187         (get_signatured_type): Likewise.
16188         (get_DW_AT_signature_type): Likewise.
16189         (dwarf_decode_macro_bytes): Add dwarf2_per_objfile parameter.
16190         (dwarf_decode_macros): Use dwarf2_per_objfile from cu.
16191         (cu_debug_loc_section): Likewise.
16192         (fill_in_loclist_baton): Likewise.
16193         (dwarf2_symbol_mark_computed): Likewise.
16194         (dwarf2_find_containing_comp_unit): Change objfile parameter to
16195         dwarf2_per_objfile.
16196         (free_cached_comp_units): Use dwarf2_per_objfile passed in void*
16197         parameter.
16198         (age_cached_comp_units): Add dwarf2_per_objfile parameter.
16199         (free_one_cached_comp_unit): Use dwarf2_per_objfile from cu.
16200         (dwarf2_free_objfile): Use get_dwarf2_per_objfile.
16201         (set_die_type): Use dwarf2_free_objfile from cu.
16202         (get_die_type_at_offset): Likewise.
16203         (dwarf2_per_objfile_free): Don't assign global variable.
16204         (debug_names) <constructor>: Add dwarf2_per_objfile
16205         parameter, update m_debugstrlookup construction.
16206         (debug_names::debug_str_lookup): Add dwarf2_per_objfile
16207         parameter.
16208         <m_dwarf2_per_objfile>: New field.
16209         <lookup>: Use m_dwarf2_per_objfile.
16210         (check_dwarf64_offsets): Add dwarf2_per_objfile parameter.
16211         (psyms_seen_size): Likewise.
16212         (write_gdbindex): Replace objfile parameter with
16213         dwarf2_per_objfile.
16214         (write_debug_names): Likewise.
16215         (write_psymtabs_to_index): Likewise.
16216         (save_gdb_index_command): Use get_dwarf2_per_objfile, update
16217         calls.
16218
16219 2018-01-07  Simon Marchi  <simon.marchi@ericsson.com>
16220
16221         * dwarf2read.c (struct dwarf2_cu) <objfile>: Remove.
16222         <dwarf2_per_objfile>: New field.
16223         (struct dwarf2_per_cu_data) <objfile>: Remove.
16224         <dwarf2_per_objfile>: New field.
16225         (create_cu_from_index_list): Assign dwarf2_per_objfile instead
16226         of objfile.
16227         (create_signatured_type_table_from_index): Likewise.
16228         (create_debug_type_hash_table): Likewise.
16229         (fill_in_sig_entry_from_dwo_entry): Likewise.
16230         (lookup_dwo_unit): Access objfile through dwarf2_per_objfile.
16231         (create_type_unit_group): Assign dwarf2_per_objfile instead of
16232         objfile.
16233         (create_partial_symtab): Access objfile through
16234         dwarf2_per_objfile.
16235         (process_psymtab_comp_unit_reader): Likewise.
16236         (read_comp_units_from_section): Likewise.
16237         (scan_partial_symbols): Likewise.
16238         (add_partial_symbol): Likewise.
16239         (add_partial_subprogram): Likewise.
16240         (peek_die_abbrev): Likewise.
16241         (fixup_go_packaging): Likewise.
16242         (process_full_comp_unit): Likewise.
16243         (process_full_type_unit): Likewise.
16244         (process_imported_unit_die): Likewise.
16245         (dwarf2_compute_name): Likewise.
16246         (dwarf2_physname): Likewise.
16247         (read_import_statement): Likewise.
16248         (create_cus_hash_table): Assign dwarf2_physname instead of
16249         objfile.
16250         (read_func_scope): Access objfile through dwarf2_per_objfile.
16251         (read_lexical_block_scope): Likewise.
16252         (read_call_site_scope): Likewise.
16253         (read_variable): Likewise.
16254         (dwarf2_rnglists_process): Likewise.
16255         (dwarf2_ranges_process): Likewise.
16256         (dwarf2_ranges_read): Likewise.
16257         (dwarf2_record_block_ranges): Likewise.
16258         (dwarf2_add_field): Likewise.
16259         (dwarf2_add_member_fn): Likewise.
16260         (read_structure_type): Likewise.
16261         (process_structure_scope): Likewise.
16262         (read_enumeration_type): Likewise.
16263         (read_array_type): Likewise.
16264         (read_common_block): Likewise.
16265         (read_namespace_type): Likewise.
16266         (read_namespace): Likewise.
16267         (read_module_type): Likewise.
16268         (read_tag_pointer_type): Likewise.
16269         (read_tag_ptr_to_member_type): Likewise.
16270         (read_tag_string_type): Likewise.
16271         (read_subroutine_type): Likewise.
16272         (read_typedef): Likewise.
16273         (read_base_type): Likewise.
16274         (attr_to_dynamic_prop): Likewise.
16275         (read_subrange_type): Likewise.
16276         (read_unspecified_type): Likewise.
16277         (load_partial_dies): Likewise.
16278         (read_partial_die): Likewise.
16279         (find_partial_die): Likewise.
16280         (guess_partial_die_structure_name): Likewise.
16281         (fixup_partial_die): Likewise.
16282         (read_attribute_value): Likewise.
16283         (read_addr_index_from_leb128): Likewise.
16284         (dwarf2_read_addr_index): Likewise.
16285         (dwarf2_string_attr): Likewise.
16286         (lnp_state_machine::check_line_address): Likewise.
16287         (dwarf_decode_lines_1): Likewise.
16288         (dwarf_decode_lines): Likewise.
16289         (dwarf2_start_symtab): Likewise.
16290         (var_decode_location): Likewise.
16291         (new_symbol_full): Likewise.
16292         (dwarf2_const_value_data): Likewise.
16293         (dwarf2_const_value_attr): Likewise.
16294         (dwarf2_const_value): Likewise.
16295         (die_type): Likewise.
16296         (die_containing_type): Likewise.
16297         (lookup_die_type): Likewise.
16298         (guess_full_die_structure_name): Likewise.
16299         (anonymous_struct_prefix): Likewise.
16300         (dwarf2_name): Likewise.
16301         (follow_die_ref_or_sig): Likewise.
16302         (follow_die_offset): Likewise.
16303         (follow_die_ref): Likewise.
16304         (dwarf2_fetch_die_loc_sect_off): Likewise.
16305         (dwarf2_fetch_constant_bytes): Likewise.
16306         (dwarf2_fetch_die_type_sect_off): Likewise.
16307         (dwarf2_get_die_type): Likewise.
16308         (follow_die_sig): Likewise.
16309         (decode_locdesc): Likewise.
16310         (dwarf2_per_cu_objfile): Likewise.
16311         (dwarf2_per_cu_text_offset): Likewise.
16312         (init_one_comp_unit): Assign dwarf2_per_objfile instead of
16313         objfile.
16314         (set_die_type): Access objfile through
16315         dwarf2_per_objfile.
16316
16317 2018-01-07  Simon Marchi  <simon.marchi@ericsson.com>
16318
16319         * valprint.c (converted_character_d): Remove typedef.
16320         (DEF_VEC_O (converted_character_d)): Remove.
16321         (count_next_character): Use std::vector.
16322         (print_converted_chars_to_obstack): Likewise.
16323         (generic_printstr): Likewise.
16324
16325 2018-01-07  Simon Marchi  <simon.marchi@polymtl.ca>
16326
16327         * xml-support.h (struct gdb_xml_value): Add constructor.
16328         <value>: Change type to unique_xmalloc_ptr.
16329         (gdb_xml_value_s): Remove typedef.
16330         (DEF_VEC_O (gdb_xml_value_s)): Remove.
16331         (gdb_xml_element_start_handler): Change parameter type to
16332         std::vector.
16333         (xml_find_attribute): Likewise.
16334         * xml-support.c (xml_find_attribute): Change parameter type to
16335         std::vector and adjust.
16336         (gdb_xml_values_cleanup): Remove.
16337         (gdb_xml_parser::start_element): Adjust to std::vector.
16338         (xinclude_start_include): Change paraeter type to std::vector
16339         and adjust.
16340         * btrace.c (check_xml_btrace_version): Likewise.
16341         (parse_xml_btrace_block): Likewise.
16342         (parse_xml_btrace_pt_config_cpu): Likewise.
16343         (parse_xml_btrace_pt): Likewise.
16344         (parse_xml_btrace_conf_bts): Likewise.
16345         (parse_xml_btrace_conf_pt): Likewise.
16346         * memory-map.c (memory_map_start_memory): Likewise.
16347         (memory_map_start_property): Likewise.
16348         * osdata.c (osdata_start_osdata): Likewise.
16349         (osdata_start_item): Likewise.
16350         (osdata_start_column): Likewise.
16351         * remote.c (start_thread): Likewise.
16352         * solib-aix.c (library_list_start_library): Likewise.
16353         (library_list_start_list): Likewise.
16354         * solib-svr4.c (library_list_start_library): Likewise.
16355         (svr4_library_list_start_list): Likewise.
16356         * solib-target.c (library_list_start_segment): Likewise.
16357         (library_list_start_section): Likewise.
16358         (library_list_start_library): Likewise.
16359         (library_list_start_list): Likewise.
16360         * tracepoint.c (traceframe_info_start_memory): Likewise.
16361         (traceframe_info_start_tvar): Likewise.
16362         * xml-syscall.c (syscall_start_syscall): Likewise.
16363         * xml-tdesc.c (tdesc_start_target): Likewise.
16364         (tdesc_start_feature): Likewise.
16365         (tdesc_start_reg): Likewise.
16366         (tdesc_start_union): Likewise.
16367         (tdesc_start_struct): Likewise.
16368         (tdesc_start_flags): Likewise.
16369         (tdesc_start_enum): Likewise.
16370         (tdesc_start_field): Likewise.
16371         (tdesc_start_enum_value): Likewise.
16372         (tdesc_start_vector): Likewise.
16373
16374 2018-01-07  Simon Marchi  <simon.marchi@polymtl.ca>
16375
16376         * extension.h (struct xmethod_worker) <clone>: Remove.
16377         * python/py-xmethods.c (struct python_xmethod_worker) <clone>:
16378         Remove.
16379         (python_xmethod_worker::clone): Remove.
16380         * valops.c (find_overload_match): Use std::move instead of
16381         clone.
16382
16383 2018-01-07  Simon Marchi  <simon.marchi@polymtl.ca>
16384
16385         * extension-priv.h (enum ext_lang_rc): Remove, move to extension.h.
16386         (struct extension_language_ops) <clone_xmethod_worker_data>: Remove.
16387         <free_xmethod_worker_data>: Remove.
16388         <get_matching_xmethod_workers>: Chance VEC to std::vector.
16389         <get_xmethod_arg_types>: Remove.
16390         <get_xmethod_result_type>: Remove.
16391         <invoke_xmethod>: Remove.
16392         * extension.c (new_xmethod_worker): Remove.
16393         (clone_xmethod_worker): Remove.
16394         (get_matching_xmethod_workers): Return void, pass std::vector by
16395         pointer.
16396         (get_xmethod_arg_types): Rename to...
16397         (xmethod_worker::get_arg_types): ... this, and adjust.
16398         (get_xmethod_result_type): Rename to...
16399         (xmethod_worker::get_result_type): ... this, and adjust.
16400         (invoke_xmethod): Remove.
16401         (free_xmethod_worker): Remove.
16402         (free_xmethod_worker_vec): Remove.
16403         * extension.h (enum ext_lang_rc): Move here from
16404         extension-priv.h.
16405         (struct xmethod_worker): Add constructor and destructor.
16406         <data>: Remove.
16407         <value>: Remove.
16408         <invoke, clone, do_get_result_type, do_get_arg_types>: New
16409         virtual pure methods.
16410         <get_arg_types, get_result_type>: New methods.
16411         (xmethod_worker_ptr): Remove typedef.
16412         (DEF_VEC_P (xmethod_worker_ptr)): Remove.
16413         (xmethod_worker_vec): Remove typedef.
16414         (xmethod_worker_up): New typedef.
16415         (invoke_xmethod): Remove.
16416         (clone_xmethod_worker): Remove.
16417         (free_xmethod_worker): Remove.
16418         (free_xmethod_worker_vec): Remove.
16419         (get_xmethod_arg_types): Remove.
16420         (get_xmethod_result_type): Remove.
16421         * valops.c (find_method_list): Use std::vector, don't use
16422         intermediate vector.
16423         (value_find_oload_method_list): Use std::vector.
16424         (find_overload_match): Use std::vector.
16425         (find_oload_champ): Use std::vector.
16426         * value.c (value_free): Use operator delete.
16427         (value_of_xmethod): Rename to...
16428         (value_from_xmethod): ... this.  Don't assign
16429         xmethod_worker::value, take rvalue-reference.
16430         (result_type_of_xmethod): Adjust.
16431         (call_xmethod): Adjust.
16432         * value.h: Include extension.h.
16433         (struct xmethod_worker): Don't forward-declare.
16434         (value_of_xmethod): Rename to...
16435         (value_from_xmethod): ... this, take rvalue-reference.
16436         * python/py-xmethods.c (struct gdbpy_worker_data): Rename to...
16437         (struct python_xmethod_worker): ... this, add constructor and
16438         destructor.
16439         <invoke, clone, do_get_arg_types, do_get_result_type>: Implement.
16440         (gdbpy_free_xmethod_worker_data): Rename to...
16441         (python_xmethod_worker::~python_xmethod_worker): ... this and
16442         adjust.
16443         (gdbpy_clone_xmethod_worker_data): Rename to...
16444         (python_xmethod_worker::clone): ... this and adjust.
16445         (gdbpy_get_matching_xmethod_workers): Use std::vector, don't use
16446         temporary vector.
16447         (gdbpy_get_xmethod_arg_types): Rename to...
16448         (python_xmethod_worker::do_get_arg_types): ... this and adjust.
16449         (gdbpy_get_xmethod_result_type): Rename to...
16450         (python_xmethod_worker::do_get_result_type): ... this and
16451         adjust.
16452         (gdbpy_invoke_xmethod): Rename to...
16453         (python_xmethod_worker::invoke): ... this and adjust.
16454         (new_python_xmethod_worker): Rename to...
16455         (python_xmethod_worker::python_xmethod_worker): ... this and
16456         adjust.
16457         * python/python-internal.h (gdbpy_clone_xmethod_worker_data):
16458         Remove.
16459         (gdbpy_free_xmethod_worker_data): Remove.
16460         (gdbpy_get_matching_xmethod_workers): Use std::vector.
16461         (gdbpy_get_xmethod_arg_types): Remove.
16462         (gdbpy_get_xmethod_result_type): Remove.
16463         (gdbpy_invoke_xmethod): Remove.
16464         * python/python.c (python_extension_ops): Remove obsolete
16465         callbacks.
16466
16467 2018-01-05  Pedro Alves  <palves@redhat.com>
16468
16469         PR gdb/18653
16470         * common/signals-state-save-restore.c
16471         (save_original_signals_state): New parameter 'quiet'.  Warn if we
16472         find a custom handler preinstalled, instead of internal erroring.
16473         But only warn if !quiet.
16474         * common/signals-state-save-restore.h
16475         (save_original_signals_state): New parameter 'quiet'.
16476         * main.c (captured_main_1): Move save_original_signals_state call
16477         after option handling, and pass QUIET.
16478
16479 2018-01-05  Pedro Alves  <palves@redhat.com>
16480
16481         * spu-tdep.c (spu_catch_start): Pass
16482         symbol_name_match_type::SEARCH_NAME to block_lookup_symbol.
16483
16484 2018-01-05  Pedro Alves  <palves@redhat.com>
16485
16486         PR gdb/22670
16487         * ada-lang.c (literal_symbol_name_matcher): New function.
16488         (ada_get_symbol_name_matcher): Use it for
16489         symbol_name_match_type::SEARCH_NAME.
16490         * block.c (block_lookup_symbol): New parameter 'match_type'.  Pass
16491         it down instead of assuming symbol_name_match_type::FULL.
16492         * block.h (block_lookup_symbol): New parameter 'match_type'.
16493         * c-valprint.c (print_unpacked_pointer): Use
16494         lookup_symbol_search_name instead of lookup_symbol.
16495         * compile/compile-object-load.c (get_out_value_type): Pass down
16496         symbol_name_match_type::SEARCH_NAME.
16497         * cp-namespace.c (cp_basic_lookup_symbol): Pass down
16498         symbol_name_match_type::FULL.
16499         * cp-support.c (cp_get_symbol_name_matcher): Handle
16500         symbol_name_match_type::SEARCH_NAME.
16501         * infrun.c (insert_exception_resume_breakpoint): Use
16502         lookup_symbol_search_name.
16503         * p-valprint.c (pascal_val_print): Use lookup_symbol_search_name.
16504         * psymtab.c (maintenance_check_psymtabs): Use
16505         symbol_name_match_type::SEARCH_NAME and SYMBOL_SEARCH_NAME.
16506         * stack.c (print_frame_args): Use lookup_symbol_search_name and
16507         SYMBOL_SEARCH_NAME.
16508         * symtab.c (lookup_local_symbol): Don't demangle the lookup name
16509         if symbol_name_match_type::SEARCH_NAME.
16510         (lookup_symbol_in_language): Pass down
16511         symbol_name_match_type::FULL.
16512         (lookup_symbol_search_name): New.
16513         (lookup_language_this): Pass down
16514         symbol_name_match_type::SEARCH_NAME.
16515         (lookup_symbol_aux, lookup_local_symbol): New parameter
16516         'match_type'.  Pass it down.
16517         * symtab.h (symbol_name_match_type::SEARCH_NAME): New enumerator.
16518         (lookup_symbol_search_name): New declaration.
16519         (lookup_symbol_in_block): New 'match_type' parameter.
16520
16521 2018-01-05  Pedro Alves  <palves@redhat.com>
16522
16523         PR gdb/22670
16524         * ada-lang.c (ada_lookup_encoded_symbol): Reimplement in terms of
16525         ada_lookup_symbol.
16526         (ada_lookup_symbol): Reimplement in terms of
16527         ada_lookup_symbol_list, bits factored out from
16528         ada_lookup_encoded_symbol.
16529
16530 2018-01-05  Joel Brobecker  <brobecker@adacore.com>
16531
16532         * ada-exp.y (write_object_renaming): When subscripting an array
16533         using a symbol as the index, pass the block in call to
16534         ada_lookup_encoded_symbol when looking that symbol up.
16535
16536 2018-01-05  Jerome Guitton  <guitton@adacore.com>
16537
16538         * ada-lang.c (ada_array_length): Use ada_index_type instead of
16539         TYPE_INDEX_TYPE.
16540
16541 2018-01-05  Joel Brobecker  <brobecker@adacore.com>
16542
16543         * ada-lang.c (ada_to_fixed_value_create): Add handling of
16544         the case where VALUE_LVAL (val0) is not lval_memory.
16545
16546 2018-01-05  Xavier Roirand  <roirand@adacore.com>
16547
16548         * ada-valprint.c (print_optional_low_bound): Handle
16549         character-indexed array printing like boolean-indexed array
16550         printing.
16551
16552 2018-01-05  Joel Brobecker  <brobecker@adacore.com>
16553
16554         * NEWS: Create a new section for the next release branch.
16555         Rename the section of the current branch, now that it has
16556         been cut.
16557
16558 2018-01-05  Joel Brobecker  <brobecker@adacore.com>
16559
16560         GDB 8.1 branch created (5219ac6237c272b938c28517bf371429260c71e7):
16561         * version.in: Bump version to 8.1.50.DATE-git.
16562
16563 2018-01-03  Xavier Roirand  <roirand@adacore.com>
16564
16565         * ada-lang.h (ada_exception_catchpoint_kind) <ada_catch_handlers>:
16566         Add field.
16567         * ada-lang.c (struct exception_support_info) <catch_handlers_sym>:
16568         Add field.
16569         (default_exception_support_info) <catch_handlers_sym>: Add field.
16570         (exception_support_info_fallback) <catch_handlers_sym>: Add field.
16571         (ada_exception_name_addr_1): Add "catch handlers" handling.
16572         (ada_exception_catchpoint_cond_string) <ex>: New parameter.
16573         Update all callers.
16574         (create_excep_cond_exprs) <ex>: Add parameter.
16575         (re_set_exception): Update create_excep_cond_exprs call.
16576         (print_it_exception, print_one_exception, print_mention_exception)
16577         (print_recreate_exception): Add "catch handler" handling.
16578         (allocate_location_catch_handlers, re_set_catch_handlers)
16579         (check_status_catch_handlers, print_it_catch_handlers)
16580         (print_one_catch_handlers, print_mention_catch_handlers)
16581         (print_recreate_catch_handlers): New function.
16582         (catch_handlers_breakpoint_ops): New variable.
16583         (catch_ada_exception_command_split) <is_catch_handlers_cmd>:
16584         Add parameter.  Add "catch handler" handling.
16585         (ada_exception_sym_name, ada_exception_breakpoint_ops):
16586         Add "catch handler" handling.
16587         (ada_exception_catchpoint_cond_string): Add "catch handler"
16588         handling.
16589         (create_ada_exception_catchpoint): Update create_excep_cond_exprs
16590         call.
16591         (catch_ada_handlers_command): New function.
16592         (initialize_ada_catchpoint_ops): Initialize "catch handlers"
16593         operations structure.
16594         (_initialize_ada_language): Add "catch handlers" command entry.
16595         * NEWS: Document "catch handlers" feature.
16596
16597 2018-01-02  Joel Brobecker  <brobecker@adacore.com>
16598
16599         * ada-lang.c (ada_value_slice_from_ptr): Take array stride into
16600         account when creating the array type of the slice.
16601         (ada_value_slice): Likewise.
16602
16603 2018-01-02  Joel Brobecker  <brobecker@adacore.com>
16604
16605         * gdbtypes.h (enum dynamic_prop_node_kind) <DYN_PROP_BYTE_STRIDE>:
16606         New enum value.
16607         (create_array_type_with_stride): Add byte_stride_prop parameter.
16608         * gdbtypes.c (create_array_type_with_stride) <byte_stride_prop>:
16609         New parameter.  Update all callers in this file.
16610         (array_type_has_dynamic_stride): New function.
16611         (is_dynamic_type_internal, resolve_dynamic_array): Add handling
16612         of arrays with dynamic byte strides.
16613         * dwarf2read.c (read_array_type): Add support for dynamic
16614         DW_AT_byte_stride attributes.
16615
16616 2018-01-02  Joel Brobecker  <brobecker@adacore.com>
16617
16618         * dwarf2read.c (read_unspecified_type): Treat
16619         DW_TAG_enumeration_type DIEs from Ada units as stubs.
16620
16621 2018-01-01  Joel Brobecker  <brobecker@adacore.com>
16622
16623         Update copyright year range in all GDB files.
16624
16625 2018-01-01, 18  Joel Brobecker  <brobecker@adacore.com>
16626
16627         * copyright.py (BY_HAND): Remove gdb/testsuite/gdb.base/step-line.inp
16628         and gdb/testsuite/gdb.base/step-line.c.
16629
16630 2018-01-01  Joel Brobecker  <brobecker@adacore.com>
16631
16632         * copyright.py (main): Dump the contents of
16633         MULTIPLE_COPYRIGHT_HEADERS (separately) from BY_HAND,
16634         even if BY_HAND is empty.
16635
16636 2018-01-01  Joel Brobecker  <brobecker@adacore.com>
16637
16638         * top.c (print_gdb_version): Update Copyright year in version
16639         message.
16640
16641 2018-01-01  Joel Brobecker  <brobecker@adacore.com>
16642
16643         * config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2017.
16644
16645 For older changes see ChangeLog-2017.
16646 \f
16647 Local Variables:
16648 mode: change-log
16649 left-margin: 8
16650 fill-column: 74
16651 version-control: never
16652 coding: utf-8
16653 End: