4283cbb6b17d09ebb48b8921ced19ca5115c60e2
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2018-12-19 Dimitar Dimitrov <dimitar@dinux.eu>
2
3 * nat/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Remove
4 sp clobbers.
5
6 2018-12-17 Andrew Burgess <andrew.burgess@embecosm.com>
7
8 * dwarf2read.c (struct dwarf2_cu): Convert the fields 'mark',
9 'has_loclist', 'checked_producer', 'producer_is_gxx_lt_4_6',
10 'producer_is_gcc_lt_4_3', 'producer_is_icc_lt_14',
11 'processing_has_namespace_info' from unsigned int to bool. Update
12 comments.
13 (producer_is_icc_lt_14): Update return type.
14 (producer_is_gcc_lt_4_3): Likewise.
15 (producer_is_gxx_lt_4_6): Likewise.
16 (process_die): Write true instead of 1 into predicate fields.
17 (dwarf2_start_symtab): Likewise.
18 (var_decode_location): Likewise.
19 (dwarf2_mark_helper): Likewise.
20 (dwarf2_mark): Likewise.
21 (dwarf2_clear_marks): Write false instead of 0 into predicate
22 field.
23 (dwarf2_cu::dwarf2_cu): Initialise predicate fields to false, not
24 0.
25
26 2018-12-17 Szabolcs Nagy <szabolcs.nagy@arm.com>
27
28 * nat/aarch64-sve-linux-ptrace.h: Include signal.h instead of
29 asm/sigcontext.h.
30
31 2018-12-17 Philippe Waroquiers <philippe.waroquiers@skynet.be>
32
33 * nat/linux-ptrace.c (kill_child): Fix ARI warning by removing
34 warning trailing new line.
35
36 2018-12-16 Philippe Waroquiers <philippe.waroquiers@skynet.be>
37
38 * nat/linux-ptrace.c (kill_child): New function.
39 (linux_ptrace_test_ret_to_nx): Use kill_child instead of local code.
40 Add a call to kill_child in case of early return after fork.
41 (linux_check_ptrace_features): Use kill_child instead of local code.
42 (linux_test_for_tracefork): Likewise.
43
44 2018-12-14 Tom Tromey <tom@tromey.com>
45
46 * Makefile.in: Remove "alloca" comment.
47 (INFOFILES): Remove.
48 (local-maintainer-clean): Don't use INFOFILES.
49
50 2018-12-13 John Baldwin <jhb@FreeBSD.org>
51
52 * syscalls/update-freebsd.sh: New file.
53 * syscalls/freebsd.xml: Regenerate.
54
55 2018-12-13 John Baldwin <jhb@FreeBSD.org>
56
57 * NEWS: Add entry documenting system call aliases.
58 * break-catch-syscall.c (catch_syscall_split_args): Pass 'result'
59 to get_syscalls_by_name.
60 * gdbarch.sh (UNKNOWN_SYSCALL): Remove.
61 * gdbarch.h: Regenerate.
62 * syscalls/gdb-syscalls.dtd (syscall): Add alias attribute.
63 * xml-syscall.c [!HAVE_LIBEXPAT] (get_syscalls_by_name): Rename
64 from get_syscall_by_name. Now accepts a pointer to a vector of
65 integers and returns a bool.
66 [HAVE_LIBEXPAT] (struct syscall_desc): Add alias member.
67 (syscall_create_syscall_desc): Add alias parameter and pass it to
68 syscall_desc constructor.
69 (syscall_start_syscall): Handle alias attribute.
70 (syscall_attr): Add alias attribute.
71 (xml_get_syscalls_by_name): Rename from xml_get_syscall_number.
72 Now accepts a pointer to a vector of integers and returns a
73 bool. Add syscalls whose alias or name matches the requested
74 name.
75 (get_syscalls_by_name): Rename from get_syscall_by_name. Now
76 accepts a pointer to a vector of integers and returns a bool.
77 * xml-syscall.h (get_syscalls_by_name): Likewise.
78
79 2018-12-13 John Baldwin <jhb@FreeBSD.org>
80
81 * break-catch-syscall.c (catch_syscall_split_args): Pass 'result'
82 to get_syscalls_by_group.
83 * xml-syscall.c [!HAVE_LIBEXPAT] (get_syscalls_by_group): Return
84 false.
85 [HAVE_LIBEXPAT] (xml_list_syscalls_by_group): Append syscall
86 numbers to an existing vector of integers and return a bool.
87 (get_syscalls_by_group): Accept pointer to vector of integers
88 and change return type to bool.
89 * xml-syscall.h (get_syscalls_by_group): Likewise.
90
91 2018-12-13 Jim Wilson <jimw@sifive.com>
92
93 * riscv-tdep.c (riscv_print_one_register_info): For MSTATUS, add
94 comment for SD field, and correct xlen calculation. For MISA, add
95 comment for MXL field, add call to register_size, and correct base
96 calculation.
97
98 2018-12-13 Stafford Horne <shorne@gmail.com>
99
100 * NEWS(New targets): Add or1k*-*-linux*.
101
102 2018-12-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
103
104 * nat/linux-osdata.c (linux_xfer_osdata_info_os_types): Forward
105 declare on one line to fix ARI warning.
106
107 2018-12-12 Andrew Burgess <andrew.burgess@embecosm.com>
108
109 * infrun.c (infcall_suspend_state::infcall_suspend_state): New.
110 (infcall_suspend_state::registers): New.
111 (infcall_suspend_state::restore): New.
112 (infcall_suspend_state::thread_suspend): Rename to...
113 (infcall_suspend_state::m_thread_suspend): ...this.
114 (infcall_suspend_state::registers): Rename to...
115 (infcall_suspend_state::m_registers): ...this.
116 (infcall_suspend_state::siginfo_gdbarch): Rename to...
117 (infcall_suspend_state::m_siginfo_gdbarch): ...this.
118 (infcall_suspend_state::siginfo_data): Rename to...
119 (infcall_suspend_state::m_siginfo_data): ...this.
120 (save_infcall_suspend_state): Rewrite to use infcall_suspend_state
121 constructor.
122 (restore_infcall_suspend_state): Rewrite to use
123 infcall_suspend_state::restore method.
124 (get_infcall_suspend_state_regcache): Use
125 infcall_suspend_state::registers method.
126
127 2018-12-12 Andrew Burgess <andrew.burgess@embecosm.com>
128
129 * riscv-tdep.c (riscv_call_arg_scalar_float): Unnamed (variadic)
130 arguments are passed in integer registers.
131 (riscv_call_arg_complex_float): Likewise.
132
133 2018-12-11 Philippe Waroquiers <philippe.waroquiers@skynet.be>
134
135 * nat/linux-osdata.c (common_getter): New function.
136 (struct osdata_type): Change getter to take_snapshot.
137 Add LONGEST len_avail and struct buffer buffer.
138 Change all elements in the initializer.
139 Add an element for the list of types.
140 (linux_xfer_osdata_info_os_types): New function.
141 (linux_common_xfer_osdata): Use common_getter for the list of types.
142 Replace getter call by common_getter.
143 (linux_xfer_osdata_cpus): Remove args READBUF, OFFSET, LEN.
144 Add arg BUFFER. Only keep the code that adds data in BUFFER.
145 (linux_xfer_osdata_fds): Likewise.
146 (linux_xfer_osdata_modules): Likewise.
147 (linux_xfer_osdata_msg): Likewise.
148 (linux_xfer_osdata_processes): Likewise.
149 (linux_xfer_osdata_processgroups): Likewise.
150 (linux_xfer_osdata_sem): Likewise.
151 (linux_xfer_osdata_shm): Likewise.
152 (linux_xfer_osdata_isockets): Likewise.
153 (linux_xfer_osdata_threads): Likewise.
154
155 2018-12-11 Philippe Waroquiers <philippe.waroquiers@skynet.be>
156
157 * nat/linux-osdata.c: Removed various trailing spaces.
158
159 2018-12-10 Andrew Burgess <andrew.burgess@embecosm.com>
160
161 * riscv-tdep.c (riscv_register_name): Fix ARI warning by removing
162 leading whitespace before #include line.
163
164 2018-12-08 Simon Marchi <simon.marchi@ericsson.com>
165 Дилян Палаузов <dilyan.palauzov@aegee.org>
166
167 PR gdb/23950
168 * configure.ac: Search for tgetent in libtinfow.
169 * configure: Re-generate.
170
171 2018-12-08 Philippe Waroquiers <philippe.waroquiers@skynet.be>
172
173 * linux-thread-db.c (struct thread_db_info): Add td_ta_delete_p.
174 (thread_db_err_str): Forward declare.
175 (delete_thread_db_info): Call td_ta_delete_p if available.
176 (try_thread_db_load_1): Acquire td_ta_delete address.
177 * nat/gdb_thread_db.h (td_ta_delete_ftype): Declare.
178
179 2018-12-08 Pedro Alves <palves@redhat.com>
180
181 * source.c (forward_search_command): Rename to ...
182 (search_command_helper): ... this. Add 'forward' parameter.
183 Tweak to use a gdb::def_vector<char> instead of a xrealloc'ed
184 buffer. Handle backward searches too.
185 (forward_search_command, reverse_search_command): Reimplement by
186 calling search_command_helper.
187
188 2018-12-07 Andrew Burgess <andrew.burgess@embecosm.com>
189
190 * .dir-locals.el: Copy most of the settings from c-mode over to
191 c++-mode.
192
193 2018-12-08 Stafford Horne <shorne@gmail.com>
194
195 * Makefile.in (ALL_TARGET_OBS): Add or1k-linux-tdep.o.
196 * configure.tgt: Add or1k*-*-linux*.
197 * or1k-linux-tdep.c: New file.
198 * or1k-tdep.c (or1k_gdbarch_init): Call gdbarch_init_osabi.
199
200 2018-12-07 Pedro Alves <palves@redhat.com>
201
202 * dwarf2read.c (get_gdb_index_contents_from_section): Use
203 gdb::make_array_view.
204
205 2018-12-05 Philippe Waroquiers <philippe.waroquiers@skynet.be>
206
207 * language.c (_initialize_language): Fix leak by assigning
208 a static string to language. Same for range and case_sensitive,
209 even if no leak is detected for these variables.
210
211 2018-12-05 John Baldwin <jhb@FreeBSD.org>
212
213 * configure: Re-generate.
214 * configure.ac: Use separate sed expressions to escape variables
215 in auto-load directories.
216
217 2018-12-05 Andrew Burgess <andrew.burgess@embecosm.com>
218
219 * riscv-tdep.c (riscv_features_from_gdbarch_info): New function.
220 (riscv_find_default_target_description): Use new function to
221 extract feature from gdbarch_info.
222 (riscv_gdbarch_init): Add error checks for xlen and flen between
223 target description and bfd headers. Be smarter about when we
224 think the hardware floating point abi should be used.
225
226 2018-12-05 Alan Hayward <alan.hayward@arm.com>
227
228 * nat/aarch64-linux-hw-point.c
229 (aarch64_linux_any_set_debug_regs_state): New function.
230 * nat/aarch64-linux-hw-point.h
231 (aarch64_linux_any_set_debug_regs_state): New declaration.
232 * nat/aarch64-linux.c (aarch64_linux_new_thread): Check if any
233 BPs or WPs are set.
234
235 2018-11-30 John Baldwin <jhb@FreeBSD.org>
236
237 * common/filestuff.c [HAVE_KINFO_GETFILE]: Include headers.
238 (fdwalk) [HAVE_KINFO_GETFILE]: Use kinfo_getfile.
239
240 2018-11-30 Philippe Waroquiers <philippe.waroquiers@skynet.be>
241 Simon Marchi <simon.marchi@ericsson.com>
242
243 * linespec.c (symtab_vector_up): Remove.
244 (symtabs_from_filename): Change return type to std::vector.
245 (collect_symtabs_from_filename): Likewise.
246 (create_sals_line_offset): Assign return value of
247 collect_symtabs_from_filename to *ls->file_symtabs.
248 (convert_explicit_location_to_linespec): Remove call to release.
249 (parse_linespec): Likewise.
250 (symtab_collector) <symtab_collector>: Remove initialization of
251 m_symtabs.
252 <release_symtabs>: Change return type to std::vector<symtab *>.
253 <operator ()>: Adjust.
254
255 2018-11-30 John Baldwin <jhb@FreeBSD.org>
256
257 * fbsd-nat.c [__FreeBSD_version >= 700009] (USE_SIGINFO): Macro
258 defined.
259 (union sigval32, struct siginfo32, fbsd_siginfo_size)
260 (fbsd_convert_siginfo): Make conditional on USE_SIGINFO instead
261 of KERN_PROC_AUXV and PT_LWPINFO.
262 (fbsd_nat_target::xfer_partial): Define method unconditionally.
263 Make TARGET_OBJECT_SIGNAL_INFO conditional on USE_SIGINFO.
264 Make TARGET_OBJECT_AUXV conditional on KERN_PROC_AUXV.
265 Make TARGET_OBJECT_FREEBSD_VMMAP and
266 TARGET_OBJECT_FREEBSD_PS_STRINGS conditional on KERN_PROC_VMMAP
267 and KERN_PROC_PS_STRINGS.
268 * fbsd-nat.h: Include <sys/proc.h>.
269 (fbsd_nat_target::xfer_partial): Declare method unconditionally.
270
271 2018-11-30 Andrew Burgess <andrew.burgess@embecosm.com>
272
273 * riscv-linux-nat.c: Add 'inferior.h' and 'target-descriptions.h'
274 header files.
275 (riscv_linux_nat_target::read_description): New method.
276
277 2018-11-30 Andrew Burgess <andrew.burgess@embecosm.com>
278
279 * arch/riscv.h (riscv_gdbarch_features::hash): New method.
280 * arch/riscv.c (struct riscv_gdbarch_features_hasher): New.
281 (riscv_tdesc_cache): New global.
282 (riscv_create_target_description): Look in the cache before
283 creating a new target description.
284
285 2018-11-30 Andrew Burgess <andrew.burgess@embecosm.com>
286
287 * arch/riscv.h (riscv_gdb_features::operator==): New.
288 (riscv_gdb_features::operator!=): New.
289 * riscv-tdep.c (riscv_gdbarch_init): Make use of the inequality
290 operator.
291
292 2018-11-30 Andrew Burgess <andrew.burgess@embecosm.com>
293
294 * arch/riscv.h (riscv_create_target_description): Make return type
295 const.
296 * arch/riscv.c (riscv_create_target_description): Likewise.
297 * riscv-tdep.c (riscv_find_default_target_description): Likewise.
298
299 2018-11-30 Jan Kratochvil <jan.kratochvil@redhat.com>
300 Keith Seitz <keiths@redhat.com>
301 Tom Tromey <tom@tromey.com>
302 Sergio Durigan Junior <sergiodj@redhat.com>
303
304 https://bugzilla.redhat.com/show_bug.cgi?id=1613614
305 * dwarf2read.c (dwarf2_find_containing_comp_unit): Add
306 'mid_cu->length' to '*cu_off' when checking if 'sect_off' is
307 inside the CU.
308
309 2018-11-30 Pedro Alves <palves@redhat.com>
310
311 * aix-thread.c (aix_thread_target) <aix_thread_target>: Delete.
312 <stratum>: New override.
313 * bfd-target.c (aix_thread_target) <aix_thread_target>: Delete.
314 <stratum>: New override.
315 * bsd-uthread.c (bsd_uthread_target) <bsd_uthread_target>: Delete.
316 <stratum>: New override.
317 * exec.c (exec_target) <exec_target>: Delete.
318 <stratum>: New override.
319 * gdbarch-selftests.c (register_to_value_test): Adjust to use the
320 stratum method instead of the to_stratum field.
321 * linux-thread-db.c (thread_db_target) <thread_db_target>: Delete.
322 <stratum>: New override.
323 (thread_db_target::thread_db_target): Delete.
324 * make-target-delegates (print_class): Don't print a ctor
325 declaration. Print a stratum method override declaration.
326 * process-stratum-target.h (process_stratum_target)
327 <process_stratum_target>: Delete.
328 <stratum>: New override.
329 * ravenscar-thread.c (ravenscar_thread_target)
330 <ravenscar_thread_target>: Delete.
331 <stratum>: New override.
332 * record-btrace.c (record_btrace_target)
333 <record_btrace_target>: Delete.
334 <stratum>: New override.
335 * record-full.c (record_full_base_target)
336 <record_full_base_target>: Delete.
337 <stratum>: New override.
338 * record.c (record_disconnect, record_detach)
339 (record_mourn_inferior, record_kill): Adjust to use the stratum
340 method instead of the to_stratum field.
341 * regcache.c (cooked_read_test, cooked_write_test): Likewise.
342 * sol-thread.c (sol_thread_target)
343 <sol_thread_target>: Delete.
344 <stratum>: New override.
345 * spu-multiarch.c (spu_multiarch_target)
346 <spu_multiarch_target>: Delete.
347 <stratum>: New override.
348 * target-delegates.c: Regenerate.
349 * target.c (target_stack::push, target_stack::unpush)
350 (pop_all_targets_above, pop_all_targets_at_and_above)
351 (info_target_command, target_require_runnable)
352 (target_stack::find_beneath): Adjust to use the stratum method
353 instead of the to_stratum field.
354 (dummy_target::dummy_target): Delete.
355 (dummy_target::stratum): New.
356 (debug_target::debug_target): Delete.
357 (debug_target::stratum): New.
358 (maintenance_print_target_stack): Adjust to use the stratum method
359 instead of the to_stratum field.
360 * target.h (struct target_ops) <stratum>: New method.
361 <to_stratum>: Delete.
362 <is_pushed>: Adjust to use the stratum method
363 instead of the to_stratum field.
364
365 2018-11-30 Pedro Alves <palves@redhat.com>
366
367 * corelow.c (core_target) <has_all_memory, has_execution>: New
368 overrides.
369 * inf-child.c (inf_child_target::has_all_memory)
370 (inf_child_target::has_memory, inf_child_target::has_stack)
371 (inf_child_target::has_registers)
372 (inf_child_target::has_execution): Delete.
373 * inf-child.h (inf_child_target) <has_all_memory, has_memory,
374 has_stack, has_registers, has_execution>: Delete.
375 * process-stratum-target.c
376 (process_stratum_target::has_all_memory)
377 (process_stratum_target::has_memory)
378 (process_stratum_target::has_stack)
379 (process_stratum_target::has_registers)
380 (process_stratum_target::has_execution): New.
381 * process-stratum-target.h (process_stratum_target)
382 <has_all_memory, has_memory, has_stack, has_registers,
383 has_execution>: New method overrides.
384 * ravenscar-thread.c (ravenscar_thread_target) <has_all_memory,
385 has_memory, has_stack, has_registers, has_execution>: Delete.
386 * remote-sim.c (gdbsim_target) <has_stack, has_registers,
387 has_execution>: Delete.
388 * remote.c (remote_target) <has_all_memory, has_memory, has_stack,
389 has_registers, has_execution>: Delete.
390 * target.c (default_child_has_all_memory)
391 (default_child_has_memory, default_child_has_stack)
392 (default_child_has_registers, default_child_has_execution):
393 Delete.
394 * target.h (default_child_has_all_memory)
395 (default_child_has_memory, default_child_has_stack)
396 (default_child_has_registers, default_child_has_execution):
397 Delete.
398 * tracefile.h (tracefile_target) <has_execution>: New override.
399
400 2018-11-30 Pedro Alves <palves@redhat.com>
401
402 * Makefile.in (COMMON_SFILES): Add process-stratum-target.c.
403 * bsd-kvm.c: Include "process-stratum-target.h".
404 (bsd_kvm_target): Now inherits from process_stratum_target.
405 (bsd_kvm_target::bsd_kvm_target): Default it.
406 * corelow.c: Include "process-stratum-target.h".
407 (core_target): Now inherits from process_stratum_target.
408 (core_target::core_target): Don't set to_stratum here.
409 * inf-child.c (inf_child_target::inf_child_target): Delete.
410 * inf-child.h: Include "process-stratum-target.h".
411 (inf_child_target): Inherit from process_stratum_target.
412 (inf_child_target) <inf_child_target>: Default it.
413 <can_async_p, supports_non_stop, supports_disable_randomization>:
414 Delete overrides.
415 * process-stratum-target.c: New file.
416 * process-stratum-target.h: New file.
417 * remote-sim.c: Include "process-stratum-target.h".
418 (gdbsim_target): Inherit from process_stratum_target.
419 <gdbsim_target>: Default it.
420 * remote.c: Include "process-stratum-target.h".
421 (remote_target): Inherit from process_stratum_target.
422 <remote_target>: Default it.
423 * target.c (default_thread_address_space)
424 (default_thread_architecture): Delete.
425 * target.h (target_ops) <thread_architecture>: Now returns NULL by
426 default.
427 <thread_address_space>: Ditto.
428 * test-target.h: Include "process-stratum-target.h" instead of
429 "target.h".
430 (test_target_ops): Inherit from process_stratum_target.
431 <test_target_ops>: Default it.
432 * tracefile.c (tracefile_target::tracefile_target): Delete.
433 * tracefile.h: Include "process-stratum-target.h".
434 (tracefile_target): Inherit from process_stratum_target.
435 <tracefile_target>: Default it.
436 * target-delegates.c: Regenerate.
437
438 2018-11-30 Pedro Alves <palves@redhat.com>
439
440 * Makefile.in (COMMON_SFILES): Add test-target.c.
441 * gdbarch-selftests.c: Include "test-target.h".
442 * regcache.c: Include "test-target.h".
443 * target.c (test_target_info, test_target_ops::info): Move to ...
444 * test-target.c: ... this new file.
445 * target.h (test_target_ops): Move to ...
446 * test-target.h: ... this new file.
447
448 2018-11-29 Philippe Waroquiers <philippe.waroquiers@skynet.be>
449
450 * source.c (forward_search_command): Fix leak by using
451 xrealloc even for the first allocation in the loop, as buf
452 is static.
453
454 2018-11-29 Rajendra SY <rajendra.sy@gmail.com>
455
456 PR gdb/23093
457 * gdb/fbsd-tdep.c (fbsd_gdb_signal_from_target)
458 (fbsd_gdb_signal_to_target): New.
459 (fbsd_init_abi): Install gdbarch "signal_from_target" and
460 "signal_to_target" methods.
461
462 2018-11-29 Tom Tromey <tom@tromey.com>
463
464 * valarith.c (value_x_unop): Don't set argvec[3].
465
466 2018-11-26 Simon Marchi <simon.marchi@ericsson.com>
467
468 PR gdb/23917
469 * sparc-linux-nat.c (sparc_linux_nat_target): Remove extraneous
470 semicolon.
471
472 2018-11-26 Pedro Alves <palves@redhat.com>
473
474 * procfs.c (procfs_notice_thread): Replace uses of
475 in_thread_list/is_exited with find_thread_ptid/THREAD_EXITED.
476 * sol-thread.c (sol_thread_target::wait)
477 (sol_update_thread_list_callback): Likewise.
478
479 2018-11-25 Tom Tromey <tom@tromey.com>
480
481 * ui-out.c (ui_out::field_fmt): Remove comment.
482 * tui/tui-out.c (tui_ui_out::do_field_fmt): Remove comment.
483 * mi/mi-out.c (mi_ui_out::do_field_fmt): Remove comment.
484
485 2018-11-24 Philippe Waroquiers <philippe.waroquiers@skynet.be>
486
487 * source.c (open_source_file): Leak fixed in '8e6a5953e1d Fix 4K
488 leak in open_source_file' has been partially undone by '2179fbc36d23
489 Return scoped_fd from open_source_file'. Re-add the transfer of
490 current s->fullname to the unique_xmalloc_ptr fullname given
491 to find_and_open_source.
492
493 2018-11-23 Pedro Alves <palves@redhat.com>
494
495 * gdbthread.h (enum thread_state): Move comments here.
496 (is_running, is_stopped, is_exited): Remove declarations.
497
498 2018-11-22 Pedro Alves <palves@redhat.com>
499
500 * Makefile.in (COMMON_SFILES): Add thread-iter.c.
501 * breakpoint.c (breakpoints_should_be_inserted_now): Replace
502 ALL_NON_EXITED_THREADS with all_non_exited_threads.
503 (print_one_breakpoint_location): Replace ALL_INFERIORS with
504 all_inferiors.
505 * bsd-kvm.c: Include inferior.h.
506 * btrace.c (btrace_free_objfile): Replace ALL_NON_EXITED_THREADS
507 with all_non_exited_threads.
508 * common/filtered-iterator.h: New.
509 * common/safe-iterator.h: New.
510 * corelow.c (core_target_open): Don't call init_thread_list here.
511 * darwin-nat.c (thread_info_from_private_thread_info): Replace
512 ALL_THREADS with all_threads.
513 * fbsd-nat.c (fbsd_nat_target::resume): Replace
514 ALL_NON_EXITED_THREADS with inf->non_exited_threads.
515 * fbsd-tdep.c (fbsd_make_corefile_notes): Replace
516 ALL_NON_EXITED_THREADS with inf->non_exited_threads.
517 * fork-child.c (postfork_hook): Don't call init_thread_list here.
518 * gdbarch-selftests.c (register_to_value_test): Adjust.
519 * gdbthread.h: Don't include "inferior.h" here.
520 (struct inferior): Forward declare.
521 (enum step_over_calls_kind): Moved here from inferior.h.
522 (thread_info::deletable): Definition moved to thread.c.
523 (find_thread_ptid (inferior *, ptid_t)): Declare.
524 (ALL_THREADS, ALL_THREADS_BY_INFERIOR, ALL_THREADS_SAFE): Delete.
525 Include "thread-iter.h".
526 (all_threads, all_non_exited_threads, all_threads_safe): New.
527 (any_thread_p): Declare.
528 (thread_list): Delete.
529 * infcmd.c (signal_command): Replace ALL_NON_EXITED_THREADS with
530 all_non_exited_threads.
531 (proceed_after_attach_callback): Delete.
532 (proceed_after_attach): Take an inferior pointer instead of an
533 integer PID. Adjust to use range-for.
534 (attach_post_wait): Pass down inferior pointer instead of pid.
535 Use range-for instead of ALL_NON_EXITED_THREADS.
536 (detach_command): Remove init_thread_list call.
537 * inferior-iter.h: New.
538 * inferior.c (struct delete_thread_of_inferior_arg): Delete.
539 (delete_thread_of_inferior): Delete.
540 (delete_inferior, exit_inferior_1): Use range-for with
541 inf->threads_safe() instead of iterate_over_threads.
542 (inferior_appeared): Call init_thread_list here.
543 (discard_all_inferiors): Use all_non_exited_inferiors.
544 (find_inferior_id, find_inferior_pid): Use all_inferiors.
545 (iterate_over_inferiors): Use all_inferiors_safe.
546 (have_inferiors, number_of_live_inferiors): Use
547 all_non_exited_inferiors.
548 (number_of_inferiors): Use all_inferiors and std::distance.
549 (print_inferior): Use all_inferiors.
550 * inferior.h: Include gdbthread.h.
551 (enum step_over_calls_kind): Moved to gdbthread.h.
552 (struct inferior) <thread_list>: New field.
553 <threads, non_exited_threads, threads_safe>: New methods.
554 (ALL_INFERIORS): Delete.
555 Include "inferior-iter.h".
556 (ALL_NON_EXITED_INFERIORS): Delete.
557 (all_inferiors_safe, all_inferiors, all_non_exited_inferiors): New
558 functions.
559 * inflow.c (child_interrupt, child_pass_ctrlc): Replace
560 ALL_NON_EXITED_THREADS with all_non_exited_threads.
561 * infrun.c (follow_exec): Use all_threads_safe.
562 (clear_proceed_status, proceed): Use all_non_exited_threads.
563 (init_wait_for_inferior): Don't clear inline frame state here.
564 (infrun_thread_stop_requested, for_each_just_stopped_thread): Use
565 all_threads instead of ALL_NON_EXITED_THREADS.
566 (random_pending_event_thread): Use all_non_exited_threads instead
567 of ALL_NON_EXITED_THREADS. Use a lambda for repeated code.
568 (clean_up_just_stopped_threads_fsms): Use all_non_exited_threads
569 instead of ALL_NON_EXITED_THREADS.
570 (handle_no_resumed): Use all_non_exited_threads instead of
571 ALL_NON_EXITED_THREADS. Use all_inferiors instead of
572 ALL_INFERIORS.
573 (restart_threads, switch_back_to_stepped_thread): Use
574 all_non_exited_threads instead of ALL_NON_EXITED_THREADS.
575 * linux-nat.c (check_zombie_leaders): Replace ALL_INFERIORS with
576 all_inferiors.
577 (kill_unfollowed_fork_children): Use inf->non_exited_threads
578 instead of ALL_NON_EXITED_THREADS.
579 * linux-tdep.c (linux_make_corefile_notes): Use
580 inf->non_exited_threads instead of ALL_NON_EXITED_THREADS.
581 * linux-thread-db.c (thread_db_target::update_thread_list):
582 Replace ALL_INFERIORS with all_inferiors.
583 (thread_db_target::thread_handle_to_thread_info): Use
584 inf->non_exited_threads instead of ALL_NON_EXITED_THREADS.
585 * mi/mi-interp.c (multiple_inferiors_p): New.
586 (mi_on_resume_1): Simplify using all_non_exited_threads and
587 multiple_inferiors_p.
588 * mi/mi-main.c (mi_cmd_thread_list_ids): Use all_non_exited_threads
589 instead of ALL_NON_EXITED_THREADS.
590 * nto-procfs.c (nto_procfs_target::open): Don't call
591 init_thread_list here.
592 * record-btrace.c (record_btrace_target_open)
593 (record_btrace_target::stop_recording)
594 (record_btrace_target::close)
595 (record_btrace_target::record_is_replaying)
596 (record_btrace_target::resume, record_btrace_target::wait)
597 (record_btrace_target::record_stop_replaying): Use
598 all_non_exited_threads instead of ALL_NON_EXITED_THREADS.
599 * record-full.c (record_full_wait_1): Use all_non_exited_threads
600 instead of ALL_NON_EXITED_THREADS.
601 * regcache.c (cooked_read_test): Remove reference to global
602 thread_list.
603 * remote-sim.c (gdbsim_target::create_inferior): Don't call
604 init_thread_list here.
605 * remote.c (remote_target::update_thread_list): Use
606 all_threads_safe instead of ALL_NON_EXITED_THREADS.
607 (remote_target::process_initial_stop_replies): Replace
608 ALL_INFERIORS with all_non_exited_inferiors and use
609 all_non_exited_threads instead of ALL_NON_EXITED_THREADS.
610 (remote_target::open_1): Don't call init_thread_list here.
611 (remote_target::append_pending_thread_resumptions)
612 (remote_target::remote_resume_with_hc): Use all_non_exited_threads
613 instead of ALL_NON_EXITED_THREADS.
614 (remote_target::commit_resume)
615 (remote_target::remove_new_fork_children): Replace ALL_INFERIORS
616 with all_non_exited_inferiors and use all_non_exited_threads
617 instead of ALL_NON_EXITED_THREADS.
618 (remote_target::kill_new_fork_children): Use
619 all_non_exited_threads instead of ALL_NON_EXITED_THREADS. Remove
620 init_thread_list and init_wait_for_inferior calls.
621 (remote_target::remote_btrace_maybe_reopen)
622 (remote_target::thread_handle_to_thread_info): Use
623 all_non_exited_threads instead of ALL_NON_EXITED_THREADS.
624 * target.c (target_terminal::restore_inferior)
625 (target_terminal_is_ours_kind): Replace ALL_INFERIORS with
626 all_non_exited_inferiors.
627 * thread-iter.c: New file.
628 * thread-iter.h: New file.
629 * thread.c: Include "inline-frame.h".
630 (thread_list): Delete.
631 (clear_thread_inferior_resources): Call clear_inline_frame_state.
632 (init_thread_list): Use all_threads_safe instead of
633 ALL_THREADS_SAFE. Adjust to per-inferior thread lists.
634 (new_thread): Adjust to per-inferior thread lists.
635 (add_thread_silent): Pass inferior to find_thread_ptid.
636 (thread_info::deletable): New, moved from the header.
637 (delete_thread_1): Adjust to per-inferior thread lists.
638 (find_thread_global_id): Use inf->threads().
639 (find_thread_ptid): Use find_inferior_ptid and pass inferior to
640 find_thread_ptid.
641 (find_thread_ptid(inferior*, ptid_t)): New overload.
642 (iterate_over_threads): Use all_threads_safe.
643 (any_thread_p): New.
644 (thread_count): Use all_threads and std::distance.
645 (live_threads_count): Use all_non_exited_threads and
646 std::distance.
647 (valid_global_thread_id): Use all_threads.
648 (in_thread_list): Use find_thread_ptid.
649 (first_thread_of_inferior): Adjust to per-inferior thread lists.
650 (any_thread_of_inferior, any_live_thread_of_inferior): Use
651 inf->non_exited_threads().
652 (prune_threads, delete_exited_threads): Use all_threads_safe.
653 (thread_change_ptid): Pass inferior pointer to find_thread_ptid.
654 (set_resumed, set_running): Use all_non_exited_threads.
655 (is_thread_state, is_stopped, is_exited, is_running)
656 (is_executing): Delete.
657 (set_executing, set_stop_requested, finish_thread_state): Use
658 all_non_exited_threads.
659 (print_thread_info_1): Use all_inferiors and all_threads.
660 (thread_apply_all_command): Use all_non_exited_threads.
661 (thread_find_command): Use all_threads.
662 (update_threads_executing): Use all_non_exited_threads.
663 * tid-parse.c (parse_thread_id): Use inf->threads.
664 * x86-bsd-nat.c (x86bsd_dr_set): Use inf->non_exited_threads ().
665
666 2018-11-22 Pedro Alves <palves@redhat.com>
667
668 * infrun.c (follow_exec) <set follow-exec new>: Add thread and
669 switch to it before calling into try_open_exec_file.
670
671 2018-11-22 Pedro Alves <palves@redhat.com>
672
673 * cli/cli-interp.c (cli_on_user_selected_context_changed): Use
674 inferior_thread instead of find_thread_ptid, and only when
675 inferior_ptid is not null_ptid.
676 * inferior.c (add_inferior): Don't include target_pid_to_str
677 output when the inferior is not started.
678 * python/py-inferior.c (python_on_normal_stop): Don't use
679 find_thread_ptid.
680 (tui_on_user_selected_context_changed): Use inferior_thread
681 instead of find_thread_ptid, and only when inferior_ptid is not
682 null_ptid.
683
684 2018-11-21 Benno Fünfstück <benno.fuenfstueck@gmail.com>
685
686 PR python/23714
687 * gdb/python/python.c (execute_gdb_command): Call
688 prevent_dont_repeat earlier to avoid affecting dont_repeat.
689
690 2018-11-21 Andrew Burgess <andrew.burgess@embecosm.com>
691
692 * Makefile.in (ALL_TARGET_OBS): Add arch/riscv.o.
693 (HFILES_NO_SRCDIR): Add arch/riscv.h.
694 * arch/riscv.c: New file.
695 * arch/riscv.h: New file.
696 * configure.tgt: Add cpu_obs list of riscv, move riscv-tdep.o into
697 this list, and add arch/riscv.o.
698 * features/Makefile: Add riscv features.
699 * features/riscv/32bit-cpu.c: New file.
700 * features/riscv/32bit-cpu.xml: New file.
701 * features/riscv/32bit-csr.c: New file.
702 * features/riscv/32bit-csr.xml: New file.
703 * features/riscv/32bit-fpu.c: New file.
704 * features/riscv/32bit-fpu.xml: New file.
705 * features/riscv/64bit-cpu.c: New file.
706 * features/riscv/64bit-cpu.xml: New file.
707 * features/riscv/64bit-csr.c: New file.
708 * features/riscv/64bit-csr.xml: New file.
709 * features/riscv/64bit-fpu.c: New file.
710 * features/riscv/64bit-fpu.xml: New file.
711 * features/riscv/rebuild-csr-xml.sh: New file.
712 * riscv-tdep.c: Add 'arch/riscv.h' include.
713 (riscv_gdb_reg_names): Delete.
714 (csr_reggroup): New global.
715 (struct riscv_register_alias): Delete.
716 (struct riscv_register_feature): New structure.
717 (riscv_register_aliases): Delete.
718 (riscv_xreg_feature): New global.
719 (riscv_freg_feature): New global.
720 (riscv_virtual_feature): New global.
721 (riscv_csr_feature): New global.
722 (riscv_create_csr_aliases): New function.
723 (riscv_read_misa_reg): Delete.
724 (riscv_has_feature): Delete.
725 (riscv_isa_xlen): Simplify, just return cached xlen.
726 (riscv_isa_flen): Simplify, just return cached flen.
727 (riscv_has_fp_abi): Update for changes in struct gdbarch_tdep.
728 (riscv_register_name): Update to make use of tdesc_register_name.
729 Look up xreg and freg names in the new globals riscv_xreg_feature
730 and riscv_freg_feature. Don't supply csr aliases here.
731 (riscv_fpreg_q_type): Delete.
732 (riscv_register_type): Use tdesc_register_type in almost all
733 cases, override the returned type in a few specific cases only.
734 (riscv_print_one_register_info): Handle errors reading registers.
735 (riscv_register_reggroup_p): Use tdesc_register_in_reggroup_p for
736 registers that are otherwise unknown to GDB. Also check the
737 csr_reggroup.
738 (riscv_print_registers_info): Remove assert about upper register
739 number, and use gdbarch_register_reggroup_p instead of
740 short-cutting.
741 (riscv_find_default_target_description): New function.
742 (riscv_check_tdesc_feature): New function.
743 (riscv_add_reggroups): New function.
744 (riscv_setup_register_aliases): New function.
745 (riscv_init_reggroups): New function.
746 (_initialize_riscv_tdep): Add calls to setup CSR aliases, and
747 setup register groups. Register new riscv debug variable.
748 * riscv-tdep.h: Add 'arch/riscv.h' include.
749 (struct gdbarch_tdep): Remove abi union, and add
750 riscv_gdbarch_features field. Remove cached quad floating point
751 type, and provide initialisation for double type field.
752 * target-descriptions.c (maint_print_c_tdesc_cmd): Add riscv to
753 the list of targets using the feature based target descriptions.
754 * NEWS: Mention target description support.
755
756 2018-11-21 Pedro Alves <palves@redhat.com>
757
758 * valops.c (find_method_list, value_find_oload_method_list)
759 (find_overload_match, find_oload_champ): Rename parameters and
760 locals.
761
762 2018-11-21 Pedro Alves <palves@redhat.com>
763
764 * valops.c (find_method_list): Replace pointer and length
765 parameters with an gdb::array_view. Adjust.
766 (value_find_oload_method_list): Likewise.
767 (find_overload_match): Use gdb::array_view for methods list.
768 Adjust to find_oload_champ interface change.
769 (find_oload_champ): 'xm_worker_vec' parameter now a pointer/array.
770 'num_fns' parameter now a size_t. Eliminate 'fn_count' local.
771
772 2018-11-21 Pedro Alves <palves@redhat.com>
773
774 * gdbtypes.c (compare_badness): Change type of parameters to const
775 reference. Adjust to badness_vector being a std::vector now.
776 (rank_function): Adjust to badness_vector being a std::vector now.
777 * gdbtypes.h (badness_vector): Now a typedef to std::vector.
778 (LENGTH_MATCH): Delete.
779 (compare_badness): Change type of parameters to const reference.
780 (rank_function): Return a badness_vector by value now.
781 (find_overload_match): Adjust to badness_vector being a
782 std::vector now. Remove cleanups.
783 (find_oload_champ_namespace): 'oload_champ_bv' parameter now a
784 badness_vector pointer.
785 (find_oload_champ_namespace_loop): 'oload_champ_bv' parameter now
786 a badness_vector pointer. Adjust to badness_vector being a
787 std::vector now. Remove cleanups.
788 (find_oload_champ): 'oload_champ_bv' parameter now
789 a badness_vector pointer. Adjust to badness_vector being a
790 std::vector now. Remove cleanups.
791
792 2018-11-21 Pedro Alves <palves@redhat.com>
793
794 * cp-support.c (sym_return_val_size, sym_return_val_index)
795 (sym_return_val): Delete.
796 (overload_list_add_symbol): Add std::vector parameter. Adjust to
797 add to the vector.
798 (make_symbol_overload_list): Adjust to return a std::vector
799 instead of maintaining a global open coded vector.
800 (make_symbol_overload_list_block): Add std::vector parameter.
801 (make_symbol_overload_list_block): Rename to ...
802 (add_symbol_overload_list_block): ... this and add std::vector
803 parameter.
804 (make_symbol_overload_list_namespace): Rename to ...
805 (add_symbol_overload_list_namespace): ... this and add std::vector
806 parameter.
807 (make_symbol_overload_list_adl_namespace): Rename to ...
808 (add_symbol_overload_list_adl_namespace): ... this and add
809 std::vector parameter.
810 (make_symbol_overload_list_adl): Delete.
811 (add_symbol_overload_list_adl): New.
812 (make_symbol_overload_list_using): Rename to ...
813 (add_symbol_overload_list_using): ... this and add std::vector
814 parameter.
815 (make_symbol_overload_list_qualified): Rename to ...
816 (add_symbol_overload_list_qualified): ... this and add std::vector
817 parameter.
818 * cp-support.h: Include "common/array-view.h" and <vector>.
819 (make_symbol_overload_list): Change return type to std::vector.
820 (make_symbol_overload_list_adl): Delete declaration.
821 (add_symbol_overload_list_adl): New declaration.
822 * valops.c (find_overload_match): Local 'oload_syms' now a
823 std::vector.
824 (find_oload_champ_namespace): 'oload_syms' parameter now a
825 std::vector pointer.
826 (find_oload_champ_namespace_loop): 'oload_syms' parameter now a
827 std::vector pointer. Adjust to new make_symbol_overload_list
828 interface.
829
830 2018-11-21 Pedro Alves <palves@redhat.com>
831
832 * common/array-view.h (array_view::splice(size_type, size_t)): New.
833 (array_view::splice(size_type)): New.
834 * eval.c (eval_call, evaluate_funcall): Adjust to use array_view.
835 * extension.c (xmethod_worker::get_arg_types): Adjust to return an
836 std::vector.
837 (xmethod_worker::get_result_type): Adjust to use gdb::array_view.
838 * extension.h: Include "common/array-view.h".
839 (xmethod_worker::invoke): Adjust to use gdb::array_view.
840 (xmethod_worker::get_arg_types): Adjust to return an std::vector.
841 (xmethod_worker::get_result_type): Adjust to use gdb::array_view.
842 (xmethod_worker::do_get_arg_types): Adjust to use std::vector.
843 (xmethod_worker::do_get_result_type): Adjust to use
844 gdb::array_view.
845 * gdbtypes.c (rank_function): Adjust to use gdb::array_view.
846 * gdbtypes.h: Include "common/array-view.h".
847 (rank_function): Adjust to use gdb::array_view.
848 * python/py-xmethods.c (python_xmethod_worker::invoke)
849 (python_xmethod_worker::do_get_arg_types)
850 (python_xmethod_worker::do_get_result_type)
851 (python_xmethod_worker::invoke): Adjust to new interfaces.
852 * valarith.c (value_user_defined_cpp_op, value_user_defined_op)
853 (value_x_binop, value_x_unop): Adjust to use gdb::array_view.
854 * valops.c (find_overload_match, find_oload_champ_namespace)
855 (find_oload_champ_namespace_loop, find_oload_champ): Adjust to use
856 gdb:array_view and the new xmethod_worker interfaces.
857 * value.c (result_type_of_xmethod, call_xmethod): Adjust to use
858 gdb::array_view.
859 * value.h (find_overload_match, result_type_of_xmethod)
860 (call_xmethod): Adjust to use gdb::array_view.
861 * unittests/array-view-selftests.c: Add slicing tests.
862
863 2018-11-21 Pedro Alves <palves@redhat.com>
864
865 * ada-lang.c (ada_evaluate_subexp): Adjust to pass an array_view.
866 * common/array-view.h (make_array_view): New.
867 * compile/compile-object-run.c (compile_object_run): Adjust to
868 pass an array_view.
869 * elfread.c (elf_gnu_ifunc_resolve_addr): Adjust.
870 * eval.c (eval_call): Adjust to pass an array_view.
871 (evaluate_subexp_standard): Adjust to pass an array_view.
872 * gcore.c (call_target_sbrk): Adjust to pass an array_view.
873 * guile/scm-value.c (gdbscm_value_call): Likewise.
874 * infcall.c (push_dummy_code): Replace pointer + size parameters
875 with an array_view parameter.
876 (call_function_by_hand, call_function_by_hand_dummy): Likewise and
877 adjust.
878 * infcall.h: Include "common/array-view.h".
879 (call_function_by_hand, call_function_by_hand_dummy): Replace
880 pointer + size parameters with an array_view parameter.
881 * linux-fork.c (inferior_call_waitpid): Adjust to use array_view.
882 * linux-tdep.c (linux_infcall_mmap): Likewise.
883 * objc-lang.c (lookup_objc_class, lookup_child_selector)
884 (value_nsstring, print_object_command): Likewise.
885 * python/py-value.c (valpy_call): Likewise.
886 * rust-lang.c (rust_evaluate_funcall): Likewise.
887 * spu-tdep.c (flush_ea_cache): Likewise.
888 * valarith.c (value_x_binop, value_x_unop): Likewise.
889 * valops.c (value_allocate_space_in_inferior): Likewise.
890 * unittests/array-view-selftests.c (run_tests): Add
891 gdb::make_array_view test.
892
893 2018-11-20 Andrew Burgess <andrew.burgess@embecosm.com>
894
895 * cli-out.c (cli_ui_out::do_field_int): Use string_printf rather
896 than a fixed size buffer.
897
898 2018-11-20 Andrew Burgess <andrew.burgess@embecosm.com>
899
900 * breakpoint.c (print_one_breakpoint_location): Reduce whitespace,
901 and remove insertion of extra spaces in GDB's output.
902 * cli-out.c (cli_ui_out::do_field_fmt): Update header comment.
903 Layout field into a temporary buffer, and then output it as a
904 string field.
905
906 2018-11-20 Philippe Waroquiers <philippe.waroquiers@skynet.be>
907
908 * NEWS: Document the language choice done by
909 'info [types|functions|variables]|rbreak'.
910
911 2018-11-20 Philippe Waroquiers <philippe.waroquiers@skynet.be>
912
913 * symtab.c (treg_matches_sym_type_name): Use
914 scoped_switch_to_sym_language_if_auto instead of local logic.
915 (print_symbol_info): Use scoped_switch_to_sym_language_if_auto
916 to switch to SYM language when language mode is auto.
917
918 2018-11-20 Philippe Waroquiers <philippe.waroquiers@skynet.be>
919
920 * language.h (scoped_switch_to_sym_language_if_auto): New class.
921
922 2018-11-20 Philippe Waroquiers <philippe.waroquiers@skynet.be>
923
924 * symtab.c (search_symbols): Properly check absence of type regexp
925 before entering the loop scanning the minimal symbols.
926
927 2018-11-20 John Darrington <john@darrington.wattle.id.au>
928
929 * s12z-tdep.c (s12z_extract_return_value): New function.
930 (inv_reg_perm) New array.
931 (s12z_return_value): Populate readbuf if non-null.
932
933 2018-11-20 Eli Zaretskii <eliz@gnu.org>
934
935 * common/filestuff.c (gdb_fopen_cloexec): Disable use of "e" mode
936 with 'fopen' also if O_CLOEXEC is equal to O_NOINHERIT, to cater
937 to MinGW fixed by Gnulib.
938 (O_NOINHERIT): Define if not defined.
939
940 2018-11-19 John Darrington <john@darrington.wattle.id.au>
941
942 * s12z-tdep.c (s12z_frame_cache): Add an assertion.
943
944 2018-11-19 Simon Marchi <simon.marchi@polymtl.ca>
945
946 * infrun.c (displaced_step_inferior_state) <next>: Remove.
947
948 2018-11-19 Tom Tromey <tom@tromey.com>
949
950 * source.c (get_filename_and_charpos): Return void.
951
952 2018-11-19 Simon Marchi <simon.marchi@polymtl.ca>
953
954 * skip.c (_initialize_step_skip): Fix "info skip" help.
955
956 2018-11-16 Tom Tromey <tom@tromey.com>
957
958 PR rust/23625:
959 * rust-lang.c (rust_internal_print_type): Handle TYPE_CODE_PTR.
960
961 2018-11-19 Simon Marchi <simon.marchi@ericsson.com>
962
963 * infrun.c (displaced_step_inferior_states): Change type to
964 std::forward_list.
965 (get_displaced_stepping_state): Adjust.
966 (displaced_step_in_progress_any_inferior): Adjust.
967 (add_displaced_stepping_state): Adjust.
968 (remove_displaced_stepping_state): Adjust.
969
970 2018-11-18 Tom Tromey <tom@tromey.com>
971
972 PR build/23814:
973 * target-delegates.c: Rebuild.
974 * ia64-linux-nat.c (class ia64_linux_nat_target)
975 <have_steppable_watchpoint>: Use override. Return true, not 1.
976 (ia64_linux_nat_target::can_use_hw_breakpoint): Rename. Remove
977 "self" argument.
978 (ia64_linux_nat_target::low_new_thread): Rename.
979 (class ia64_linux_nat_target) <read_description>: Don't declare.
980 * target.h (struct target_ops) <have_steppable_watchpoint>: Return
981 bool.
982
983 2018-11-16 Alan Hayward <alan.hayward@arm.com>
984
985 PR gdb/22736:
986 * aarch64-tdep.c (aarch64_push_dummy_call): Remove
987 lang_struct_return code.
988
989 2018-11-16 Alan Hayward <alan.hayward@arm.com>
990
991 * aarch64-tdep.c (aarch64_push_dummy_call): Replace arg with
992 return_method.
993 * alpha-tdep.c (alpha_push_dummy_call): Likewise.
994 * amd64-tdep.c (amd64_push_arguments): Likewise.
995 (amd64_push_dummy_call): Likewise.
996 * amd64-windows-tdep.c (amd64_windows_push_arguments): Likewise.
997 * arc-tdep.c (arc_push_dummy_call): Likewise.
998 * arm-tdep.c (arm_push_dummy_call): Likewise.
999 * avr-tdep.c (avr_push_dummy_call): Likewise.
1000 * bfin-tdep.c (bfin_push_dummy_call): Likewise.
1001 * cris-tdep.c (cris_push_dummy_call): Likewise.
1002 * csky-tdep.c (csky_push_dummy_call): Likewise.
1003 * frv-tdep.c (frv_push_dummy_call): Likewise.
1004 * gdbarch.c: Regenerate.
1005 * gdbarch.h: Regenerate.
1006 * gdbarch.sh (gdbarch_push_dummy_call): Replace arg with
1007 return_method.
1008 * h8300-tdep.c (h8300_push_dummy_call): Likewise.
1009 * hppa-tdep.c (hppa32_push_dummy_call): Likewise.
1010 (hppa64_push_dummy_call): Likewise.
1011 * i386-darwin-tdep.c (i386_darwin_push_dummy_call): Likewise.
1012 * i386-tdep.c (i386_push_dummy_call): Likewise.
1013 * ia64-tdep.c (ia64_push_dummy_call): Likewise.
1014 * infcall.c (call_function_by_hand_dummy): Likewise.
1015 * iq2000-tdep.c (iq2000_push_dummy_call): Likewise.
1016 * lm32-tdep.c (lm32_push_dummy_call): Likewise.
1017 * m32c-tdep.c (m32c_push_dummy_call): Likewise.
1018 * m32r-tdep.c (m32r_push_dummy_call): Likewise.
1019 * m68hc11-tdep.c (m68hc11_push_dummy_call): Likewise.
1020 * m68k-tdep.c (m68k_push_dummy_call): Likewise.
1021 * mep-tdep.c (mep_push_dummy_call): Likewise.
1022 * mips-tdep.c (mips_eabi_push_dummy_call): Likewise.
1023 (mips_n32n64_push_dummy_call): Likewise.
1024 (mips_o32_push_dummy_call): Likewise.
1025 (mips_o64_push_dummy_call): Likewise.
1026 * mn10300-tdep.c (mn10300_push_dummy_call): Likewise.
1027 * msp430-tdep.c (msp430_push_dummy_call): Likewise.
1028 * nds32-tdep.c (nds32_push_dummy_call): Likewise.
1029 * nios2-tdep.c (nios2_push_dummy_call): Likewise.
1030 * or1k-tdep.c (or1k_push_dummy_call): Likewise.
1031 * ppc-sysv-tdep.c (ppc_sysv_abi_push_dummy_call): Likewise.
1032 (ppc64_sysv_abi_push_dummy_call): Likewise.
1033 * ppc-tdep.h (ppc_sysv_abi_push_dummy_call): Likewise.
1034 (ppc64_sysv_abi_push_dummy_call): Likewise.
1035 * riscv-tdep.c (riscv_push_dummy_call): Likewise.
1036 * rl78-tdep.c (rl78_push_dummy_call): Likewise.
1037 * rs6000-aix-tdep.c (rs6000_push_dummy_call): Likewise.
1038 * rs6000-lynx178-tdep.c (rs6000_lynx178_push_dummy_call): Likewise.
1039 * rx-tdep.c (rx_push_dummy_call): Likewise.
1040 * s390-tdep.c (s390_push_dummy_call): Likewise.
1041 * score-tdep.c (score_push_dummy_call): Likewise.
1042 * sh-tdep.c (sh_push_dummy_call_fpu): Likewise.
1043 (sh_push_dummy_call_nofpu): Likewise.
1044 * sparc-tdep.c (sparc32_store_arguments): Likewise.
1045 (sparc32_push_dummy_call): Likewise.
1046 * sparc64-tdep.c (sparc64_store_arguments): Likewise.
1047 (sparc64_push_dummy_call): Likewise.
1048 * spu-tdep.c (spu_push_dummy_call): Likewise.
1049 * tic6x-tdep.c (tic6x_push_dummy_call): Likewise.
1050 * tilegx-tdep.c (tilegx_push_dummy_call): Likewise.
1051 * v850-tdep.c (v850_push_dummy_call): Likewise.
1052 * vax-tdep.c (vax_push_dummy_call): Likewise.
1053 * xstormy16-tdep.c (xstormy16_push_dummy_call): Likewise.
1054 * xtensa-tdep.c (xtensa_push_dummy_call): Likewise.
1055
1056 2018-11-16 Alan Hayward <alan.hayward@arm.com>
1057
1058 * gdbarch.sh (enum function_call_return_method): Add enum.
1059 * gdbarch.h: Regenerate.
1060 * infcall.c (call_function_by_hand_dummy): Replace vars with enum.
1061
1062 2018-11-15 Joel Brobecker <brobecker@adacore.com>
1063
1064 * unittests/copy_bitwise-selftests.c: New file.
1065 * utils.c (selftests::bits_to_str, selftests::check_copy_bitwise)
1066 (selftests::copy_bitwise_tests): Delete, moving this code to
1067 unittests/copy_bitwise-selftests.c instead.
1068 (_initialize_utils): Do not register copy_bitwise tests.
1069 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
1070 unittests/copy_bitwise-selftests.c.
1071
1072 2018-11-14 Joel Brobecker <brobecker@adacore.com>
1073
1074 * ada-lang.c (move_bits): Delete. Update all callers to use
1075 copy_bitwise instead.
1076 * dwarf2loc.c (copy_bitwise, bits_to_str::bits_to_str)
1077 (selftests::check_copy_bitwise, selftests::copy_bitwise_tests):
1078 Move from here to utils.c.
1079 (_initialize_dwarf2loc): Remove call to register copy_bitwise
1080 selftests.
1081 * utils.h (copy_bitwise): Add declaration.
1082 * utils.c (copy_bitwise, bits_to_str::bits_to_str)
1083 (selftests::check_copy_bitwise, selftests::copy_bitwise_tests):
1084 Moved here from dwarf2loc.c.
1085 (_initialize_utils): Register copy_bitwise selftests.
1086
1087 2018-11-14 Jim Wilson <jimw@sifive.com>
1088
1089 * riscv-tdep.c (struct riscv_arg_info): New field is_unnamed.
1090 (riscv_call_arg_scalar_int): If unnamed arg with twice xlen alignment,
1091 then increment next_regnum if odd.
1092 (riscv_arg_location): New arg is_unnamed. Set ainfo->is_unnamed.
1093 (riscv_push_dummy_call): New local ftype. Call check_typedef to set
1094 function type. Pass new arg to riscv_arg_location based on function
1095 type.
1096 (riscv_return_value): Pass new arg to riscv_arg_location.
1097
1098 * riscv-tdep.c (BIGGEST_ALIGNMENT): New.
1099 (riscv_type_alignment) <TYPE_CODE_ARRAY>: If TYPE_VECTOR, return min
1100 of TYPE_LENGTH and BIGGEST_ALIGNMENT.
1101
1102 * riscv-tdep.c (riscv_call_arg_scalar_int): Use std::min when
1103 setting len. New local align, set to max of arg align and xlen,
1104 and pass to first riscv_assign_stack_location call.
1105
1106 2018-11-12 Simon Marchi <simon.marchi@polymtl.ca>
1107
1108 * skip.c (complete_skip_number): New function.
1109 (_initialize_step_skip): Add completers to some skip commands.
1110
1111 2018-11-09 Tom Tromey <tom@tromey.com>
1112
1113 * remote.c (remote_g_packet_guess_s): Remove typedef and DEF_VEC.
1114 (struct remote_g_packet_data): Derive from allocate_on_obstack.
1115 <guesses>: Now a std::vector.
1116 (remote_g_packet_data_init, register_remote_g_packet_guess):
1117 Update.
1118 (remote_read_description_p): Update. Return bool.
1119 (remote_target::read_description): Update.
1120 (struct remote_g_packet_guess): Add constructor.
1121
1122 2018-11-09 Tom Tromey <tom@tromey.com>
1123
1124 * common/scoped_fd.h (class scoped_fd): Add move constructor and
1125 move assignment operator.
1126 * psymtab.c (psymtab_to_fullname): Update.
1127 * source.h (open_source_file): Return scoped_fd.
1128 (find_and_open_source): Likewise.
1129 * source.c (open_source_file): Return scoped_fd.
1130 (get_filename_and_charpos): Update.
1131 (print_source_lines_base): Update. Use scoped_fd::to_file.
1132 (forward_search_command): Likewise.
1133 (reverse_search_command): Likewise.
1134 (find_and_open_source): Return scoped_fd.
1135 * tui/tui-source.c (tui_set_source_content): Update. Use
1136 gdb_file_up.
1137
1138 2018-11-09 John Baldwin <jhb@FreeBSD.org>
1139
1140 * minsyms.c (minimal_symbol_reader::install): Fix unsigned
1141 overflow.
1142
1143 2018-11-09 Hafiz Abid Qadeer <abidh@codesourcery.com>
1144
1145 * configure: Regenerate.
1146
1147 2018-11-09 Tom de Vries <tdevries@suse.de>
1148
1149 * symtab.c (symbol_set_names): Call symbol_find_demangled_name
1150 unconditionally, to set the language of the symbol. Manage freeing
1151 returned pointer using gdb::unique_xmalloc_ptr.
1152
1153 2018-11-08 Tom Tromey <tom@tromey.com>
1154
1155 * record.c (require_record_target): Upper-case "<TAB>".
1156
1157 2018-11-08 Tom Tromey <tom@tromey.com>
1158
1159 * python/lib/gdb/command/pretty_printers.py
1160 (InfoPrettyPrinter.invoke): Don't indent "objfile" heading.
1161
1162 2018-11-08 Tom Tromey <tom@tromey.com>
1163
1164 PR gdb/23555:
1165 PR gdb/23838:
1166 * target.h (target_supports_terminal_ours): Return bool.
1167 * target.c (target_supports_terminal_ours): Handle case where
1168 current_top_target returns nullptr. Return bool.
1169
1170 2018-11-08 Joel Brobecker <brobecker@adacore.com>
1171
1172 * aarch64-tdep.c (aapcs_is_vfp_call_or_return_candidate_1):
1173 return the correct count for potential HFAs.
1174
1175 2018-11-08 Jan Beulich <jbeulich@suse.com>
1176
1177 * i387-tdep.c (i387_supply_xsave): Split handling of
1178 X86_XSTATE_ZMM_H and X86_XSTATE_ZMM.
1179 (i387_collect_xsave): Likewise.
1180
1181 2018-11-08 Andrew Burgess <andrew.burgess@embecosm.com>
1182
1183 * riscv-tdep.c (riscv_insn::decode): Update header comment.
1184 (riscv_frame_this_id): Catch errors thrown while building the
1185 frame cache, leave the frame id as the default, which is the outer
1186 frame id.
1187
1188 2018-11-07 Joel Brobecker <brobecker@adacore.com>
1189
1190 * ada-lang.c (read_atcb): Only set task_info->called_task if
1191 task_info->state == Entry_Caller_Sleep.
1192 (print_ada_task_info): Do not check task_info->state before
1193 checking task_info->called_task.
1194 (info_task): Likewise.
1195
1196 2018-11-07 Joel Brobecker <brobecker@adacore.com>
1197
1198 * ada-tasks.c (read_atcb): Clear task_info before computing
1199 the value of each of its fields.
1200
1201 2018-11-07 Andrew Burgess <andrew.burgess@embecosm.com>
1202
1203 * dwarf2read.c (dwarf2_init_integer_type): Check for name being
1204 NULL before dereferencing it.
1205
1206 2018-11-06 Tom de Vries <tdevries@suse.de>
1207
1208 * linux-tdep.c (linux_vsyscall_range_raw): Use xmalloc to allocate
1209 program headers.
1210
1211 2018-11-06 Max Filippov <jcmvbkbc@gmail.com>
1212
1213 * configure.tgt (xtensa*-*-linux*): Change to xtensa*-*-*linux*
1214 so that it applies to uclinux as well.
1215
1216 2018-11-06 Marius Muench <marius.muench@eurecom.fr>
1217
1218 * arm-tdep.c (arm_scan_prologue): Don't dereference FP reg
1219 when on AAPCS.
1220
1221 2018-11-06 John Baldwin <jhb@FreeBSD.org>
1222
1223 * riscv-fbsd-nat.c (getregs_supplies): Return true for
1224 RISCV_CSR_SSTATUS_REGNUM.
1225
1226 2018-11-04 Philippe Waroquiers <philippe.waroquiers@skynet.be>
1227
1228 * source.c (open_source_file): Fix leak by transferring the
1229 current s->fullname to the unique_xmalloc_ptr fullname given
1230 to find_and_open_source.
1231
1232 2018-11-04 Tom Tromey <tom@tromey.com>
1233
1234 * varobj.c (install_default_visualizer): Update.
1235 * python/python-internal.h (gdbpy_get_varobj_pretty_printer):
1236 Return gdbpy_ref.
1237 * python/py-prettyprint.c (search_pp_list): Return gdbpy_ref.
1238 (find_pretty_printer_from_progspace)
1239 (find_pretty_printer_from_gdb, find_pretty_printer)
1240 (gdbpy_get_varobj_pretty_printer): Return gdbpy_ref.
1241 (gdbpy_get_varobj_pretty_printer, gdbpy_default_visualizer):
1242 Update.
1243
1244 2018-11-04 Tom Tromey <tom@tromey.com>
1245
1246 * python/python.c (gdbpy_parameter_value): Update.
1247 * python/python-internal.h (python_string_to_unicode)
1248 (python_string_to_target_python_string)
1249 (host_string_to_python_string): Return gdbpy_ref.
1250 * python/py-utils.c (python_string_to_unicode)
1251 (unicode_to_encoded_python_string)
1252 (unicode_to_target_python_string)
1253 (python_string_to_target_string)
1254 (python_string_to_target_python_string): Return gdbpy_ref.
1255 (python_string_to_host_string): Update.
1256 (host_string_to_python_string): Return gdbpy_ref.
1257 * python/py-symtab.c (stpy_get_filename, stpy_get_producer)
1258 (stpy_fullname): Update.
1259 * python/py-progspace.c (pspy_get_filename, pspy_solib_name):
1260 Update.
1261 * python/py-prettyprint.c (print_string_repr): Update.
1262 * python/py-objfile.c (objfpy_get_filename, objfpy_get_username)
1263 (objfpy_get_build_id): Update.
1264 * python/py-breakpoint.c (bppy_get_location)
1265 (bppy_get_expression, bppy_get_condition, bppy_get_commands):
1266 Update.
1267
1268 2018-11-04 Tom Tromey <tom@tromey.com>
1269
1270 * python/python-internal.h (gdb_py_object_from_longest)
1271 (gdb_py_object_from_ulongest): Return gdbpy_ref.
1272 * python/py-value.c (valpy_int): Update.
1273 * python/py-utils.c (gdb_py_object_from_longest): Return
1274 gdbpy_ref.
1275 (gdb_py_object_from_ulongest): Likewise.
1276 * python/py-type.c (typy_get_alignof): Update.
1277 * python/py-linetable.c (ltpy_get_all_source_lines)
1278 (ltpy_entry_get_line, ltpy_entry_get_pc): Update.
1279 * python/py-block.c (blpy_get_start, blpy_get_end): Update.
1280
1281 2018-11-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
1282
1283 * ada-lang.c (_initialize_ada_language): Fix typo.
1284
1285 2018-11-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
1286
1287 * language.c (type): Remove.
1288 (_initialize_language): Remove assignment to type.
1289
1290 2018-11-02 Joel Brobecker <brobecker@adacore.com>
1291
1292 * aarch64-ravenscar-thread.h, aarch64-ravenscar-thread.c: New files.
1293 * aarch64-tdep.c: #include "aarch64-ravenscar-thread.h".
1294 (aarch64_gdbarch_init): Add call to register_aarch64_ravenscar_ops.
1295 * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-ravenscar-thread.o.
1296 (HFILES_NO_SRCDIR): Add aarch64-ravenscar-thread.h.
1297 (ALLDEPFILES): Add aarch64-ravenscar-thread.c.
1298 * configure.tgt (cpu_obs) [aarch64*-*-*]: Add ravenscar-thread.o
1299 and aarch64-ravenscar-thread.o.
1300 * NEWS: Add entry documenting Ravenscar tasking support
1301 on AArch64 ELF.
1302
1303 2018-11-02 Matthew Malcomson <matthew.malcomson@arm.com>
1304
1305 * symtab.c (info_functions_command): Initialize quiet flag.
1306 * stack.c (info_args_command): Likewise.
1307
1308 2018-11-01 Jim Wilson <jimw@sifive.com>
1309
1310 * riscv-tdep.c (riscv_breakpoint_kind_from_pc): New local unaligned_p.
1311 Set if pcptr if unaligned. Return 2 if unaligned_p true. Update
1312 debugging messages.
1313
1314 2018-11-01 Joel Brobecker <brobecker@adacore.com>
1315
1316 * ada-lang.c (ada_watch_location_expression): New function.
1317 (ada_language_defn): Set la_watch_location_expression to
1318 ada_watch_location_expression.
1319
1320 2018-11-01 Joel Brobecker <brobecker@adacore.com>
1321
1322 * print-utils.c (int_string): Remove unnecessary trailing spaces.
1323
1324 2018-11-01 Joel Brobecker <brobecker@adacore.com>
1325
1326 * rs6000-tdep.c (skip_prologue): Fix potential negative left
1327 shifting.
1328
1329 2018-11-01 Jerome Guitton <guitton@adacore.com>
1330 Joel Brobecker <brobecker@adacore.com>
1331
1332 * defs.h (enum gdb_osabi): Add GDB_OSABI_PIKEOS.
1333 * osabi.c (gdb_osabi_names): Add name for GDB_OSABI_PIKEOS.
1334 * arm-pikeos-tdep.c: New file.
1335 * configure.tgt: Add arm-pikeos-tdep.o to the case of ARM
1336 embedded system.
1337 * Makefile.in (ALL_TARGET_OBS): Add arm-pikeos-tdep.o.
1338
1339 2018-11-01 Simon Marchi <simon.marchi@ericsson.com>
1340
1341 * common/pathstuff.c (get_standard_temp_dir): New.
1342 * common/pathstuff.h (get_standard_temp_dir): New.
1343 * config.in: Re-generate.
1344 * configure: Re-generate.
1345 * configure.ac: Don't check for mkdtemp.
1346 * gnulib/aclocal-m4-deps.mk: Re-generate.
1347 * gnulib/aclocal.m4: Re-generate.
1348 * gnulib/config.in: Re-generate.
1349 * gnulib/configure: Re-generate.
1350 * gnulib/import/Makefile.am: Re-generate.
1351 * gnulib/import/Makefile.in: Re-generate.
1352 * gnulib/import/m4/gnulib-cache.m4: Re-generate.
1353 * gnulib/import/m4/gnulib-comp.m4: Re-generate.
1354 * gnulib/import/m4/mkdtemp.m4: New file.
1355 * gnulib/import/mkdtemp.c: New file.
1356 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES):
1357 Add mkdtemp module.
1358 * unittests/mkdir-recursive-selftests.c (test): Use
1359 get_standard_temp_dir.
1360 (_initialize_mkdir_recursive_selftests): Remove HAVE_MKDTEMP
1361 ifdef.
1362 * compile/compile.c (get_compile_file_tempdir): Likewise.
1363
1364 2018-11-01 Sangamesh Mallayya <sangamesh.swamy@in.ibm.com>
1365
1366 * rs6000-aix-tdep.c: Include "trad-frame.h" and "frame-unwind.h".
1367 (SIG_FRAME_LR_OFFSET64): New define.
1368 (SIG_FRAME_FP_OFFSET64): New define.
1369 (aix_sighandle_frame_cache): New Function.
1370 (aix_sighandle_frame_this_id): New Function.
1371 (aix_sighandle_frame_prev_register): New Function.
1372 (aix_sighandle_frame_sniffer): New Function.
1373 (aix_sighandle_frame_unwind): New global variable.
1374 (rs6000_aix_init_osabi): Install new frame unwinder.
1375
1376 2018-10-31 Sergio Durigan Junior <sergiodj@redhat.com>
1377
1378 PR gdb/23835
1379 * common/common-defs.h: Don't redefine _FORTIFY_SOURCE if it's
1380 already defined.
1381
1382 2018-10-31 Pedro Franco de Carvalho <pedromfc@linux.ibm.com>
1383
1384 * ppc-linux-nat.c: Include nat/linux-ptrace.h.
1385
1386 2018-10-31 Andrew Burgess <andrew.burgess@embecosm.com>
1387
1388 * dwarf2read.c (struct dwarf2_cu): Add producer_is_icc field.
1389 (producer_is_icc): New function.
1390 (check_producer): Set producer_is_icc field on dwarf2_cu.
1391 (dwarf2_init_integer_type): New function.
1392 (read_base_type): Call dwarf2_init_integer_type instead of
1393 init_integer_type in all cases.
1394 (dwarf2_cu::dwarf2_cu): Initialise producer_is_icc field.
1395 * valprint.c (maybe_negate_by_bytes): Add an assertion that the
1396 LEN is greater than 0.
1397
1398 2018-10-30 Tom Tromey <tom@tromey.com>
1399
1400 * main.c (captured_main_1): Check return value of bfd_init.
1401
1402 2018-10-29 Sergio Durigan Junior <sergiodj@redhat.com>
1403
1404 * common/offset-type.h (DEFINE_OFFSET_REL_OP): Delete.
1405 Adjust comments.
1406
1407 2018-10-29 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
1408
1409 * procfs.c: Include common/pathstuff.h.
1410
1411 2018-10-28 Andrew Burgess <andrew.burgess@embecosm.com>
1412
1413 * riscv-linux-nat.c (riscv_linux_nat_target::fetch_registers):
1414 Add missing braces. No functional change.
1415
1416 2018-10-27 Philippe Waroquiers <philippe.waroquiers@skynet.be>
1417
1418 * macrocmd.c (info_macro_command): Use report_unrecognized_option_error
1419 to report a bad option and fix indentation.
1420 * demangle.c (demangle_command): Use report_unrecognized_option_error
1421 to report a bad option and correctly report the bad option.
1422
1423 2018-10-27 Tom Tromey <tom@tromey.com>
1424
1425 PR cli/23364:
1426 * darwin-nat.c (copied_shell): New global.
1427 (may_have_sip): Rename from should_disable_startup_with_shell.
1428 (copy_shell_to_cache, maybe_cache_shell): New functions.
1429 (darwin_nat_target::create_inferior): Update. Use
1430 copied_shell.
1431
1432 2018-10-27 Tom Tromey <tom@tromey.com>
1433
1434 * unittests/scoped_fd-selftests.c (test_to_file): New function.
1435 (run_tests): Call test_to_file.
1436 * dwarf-index-write.c (write_psymtabs_to_index): Do not reopen
1437 temporary files.
1438 * common/scoped_fd.h (scoped_fd::to_file): New method.
1439
1440 2018-10-27 Tom Tromey <tom@tromey.com>
1441
1442 * unittests/scoped_mmap-selftests.c (test_normal): Use
1443 gdb_mkostemp_cloexec.
1444 * unittests/scoped_fd-selftests.c (test_destroy, test_release):
1445 Use gdb_mkostemp_cloexec.
1446 * gnulib/aclocal-m4-deps.mk, gnulib/aclocal.m4,
1447 gnulib/config.in, gnulib/configure,
1448 gnulib/import/Makefile.am, gnulib/import/Makefile.in,
1449 gnulib/import/m4/gnulib-cache.m4,
1450 gnulib/import/m4/gnulib-comp.m4: Update.
1451 * gnulib/import/m4/mkostemp.m4: New file.
1452 * gnulib/import/m4/mkstemp.m4: Remove.
1453 * gnulib/import/mkostemp.c: New file.
1454 * gnulib/import/mkstemp.m4: Remove.
1455 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Remove
1456 mkstemp, add mkostemp. Apply new patch.
1457 * gnulib/import/stdlib.in.h: Apply patch.
1458 * gnulib/patches/0002-mkostemp-mkostemps-Fix-compilation-error-in-C-mode-o.patch:
1459 New file.
1460 * dwarf-index-write.c (write_psymtabs_to_index): Use
1461 gdb_mkostemp_cloexec.
1462 * common/filestuff.h (gdb_mkostemp_cloexec): New function.
1463
1464 2018-10-27 Tom Tromey <tom@tromey.com>
1465
1466 * unittests/mkdir-recursive-selftests.c: New file.
1467 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
1468 unittests/mkdir-recursive-selftests.c.
1469 * dwarf-index-cache.c (mkdir_recursive): Move to
1470 common/filestuff.c.
1471 (index_cache::store): Check return value of mkdir_recursive.
1472 (create_dir_and_check, test_mkdir_recursive): Move to new file.
1473 (_initialize_index_cache): Don't register test.
1474 * common/filestuff.h (mkdir_recursive): Declare.
1475 * common/filestuff.c (mkdir_recursive): Move from
1476 dwarf-index-cache.c. Return bool.
1477
1478 2018-10-27 Tom Tromey <tom@tromey.com>
1479
1480 * dwarf-index-write.c (write_psymtabs_to_index): Move
1481 make_temp_filename to common/pathstuff.c.
1482 * common/pathstuff.h (make_temp_filename): Declare.
1483 * common/pathstuff.c (make_temp_filename): New function, moved
1484 from dwarf-index-write.c.
1485
1486 2018-10-27 Tom Tromey <tom@tromey.com>
1487
1488 * procfs.c (procfs_target::create_inferior): Use get_shell.
1489 * cli/cli-cmds.c (shell_escape): Use get_shell.
1490 * windows-nat.c (windows_nat_target::create_inferior): Use
1491 get_shell.
1492 * common/pathstuff.c (get_shell): New function.
1493 * nat/fork-inferior.c (SHELL_FILE, get_startup_shell): Remove.
1494 (fork_inferior): Use get_shell.
1495 * common/pathstuff.h (get_shell): Declare.
1496
1497 2018-10-27 Philippe Waroquiers <philippe.waroquiers@skynet.be>
1498
1499 * NEWS: Mention changes to 'info [args|functions|locals|variables]'
1500
1501 2018-10-27 Philippe Waroquiers <philippe.waroquiers@skynet.be>
1502
1503 * stack.c (print_variable_and_value_data): Add preg and treg.
1504 (print_frame_local_vars): Add quiet, regexp and t_regexp arguments,
1505 and update callers.
1506 (print_frame_arg_vars): Likewise.
1507 (prepare_reg): New function.
1508 (info_locals_command): Extract info print args and use them.
1509 (info_args_command): Likewise.
1510 (_initialize_stack): Modify on-line help.
1511 * symtab.c (treg_matches_sym_type_name): New function.
1512 (search_symbols): New arg t_regexp.
1513 (symtab_symbol_info): New args quiet, regexp, t_regexp.
1514 (info_variables_command): Extract info print args and use them.
1515 (info_functions_command): Likewise.
1516 (info_types_command): Update call to symtab_symbol_info.
1517 (_initialize_symtab): Modify on-line help.
1518 * symtab.h (treg_matches_sym_type_name): New function.
1519 (search_symbols): New t_regexp arg.
1520
1521 2018-10-27 Philippe Waroquiers <philippe.waroquiers@skynet.be>
1522
1523 * cli-utils.c (extract_arg_maybe_quoted): New function.
1524 (extract_info_print_args): New function.
1525 (info_print_args_help): New function.
1526 (report_unrecognized_option_error): New function.
1527 * cli-utils.h (extract_arg_maybe_quoted): New function.
1528 (extract_info_print_args): New function.
1529 (info_print_args_help): New function.
1530 (report_unrecognized_option_error): New function.
1531
1532 2018-10-26 Tom Tromey <tom@tromey.com>
1533
1534 * dwarf2read.c (recursively_compute_inclusions): Use std::vector.
1535 (compute_compunit_symtab_includes): Update.
1536 * symtab.h: (symtab_ptr): Remove typedef. Don't define a VEC.
1537 (compunit_symtab_ptr): Likewise.
1538
1539 2018-10-26 John Baldwin <jhb@FreeBSD.org>
1540
1541 * fbsd-tdep.c (fbsd_print_auxv_entry): Only use
1542 default_print_auxv_entry for specific tag values.
1543
1544 2018-10-26 John Baldwin <jhb@FreeBSD.org>
1545
1546 * fbsd-tdep.c (fbsd_print_auxv_entry): Handle AT_FREEBSD_HWCAP2.
1547
1548 2018-10-26 Jim Wilson <jimw@sifive.com>
1549
1550 * riscv-linux-tdep.c: Include tramp-frame.h and trad-frame.h.
1551 (riscv_linux_sigframe_init): Declare.
1552 (RISCV_INST_LI_A7_SIGRETURN, RISCV_INT_ECALL): New.
1553 (riscv_linux_sigframe): New.
1554 (SIGFRAME_SIGINFO_SIZE, UCONTEXT_MCONTEXT_OFFSET): New.
1555 (riscv_linux_sigframe_init): Define.
1556 (riscv_linux_init_abi): Call tramp_frame_prepend_unwinder.
1557
1558 * riscv-tdep.c (riscv_isa_xlen): Refer to riscv-tdep.h comment.
1559 (riscv_isa_flen): Likewise. Drop static.
1560 * riscv-tdep.h (riscv_isa_xlen): Move riscv-tdep.c comment to here.
1561 (riscv_isa_flen): Likewise. Declare.
1562
1563 2018-10-26 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
1564 Pedro Franco de Carvalho <pedromfc@linux.ibm.com>
1565
1566 * arch/ppc-linux-tdesc.h (tdesc_powerpc_isa207_htm_vsx32l)
1567 (tdesc_powerpc_isa207_htm_vsx64l): Declare.
1568 * arch/ppc-linux-common.h (PPC_LINUX_SIZEOF_TM_SPRREGSET)
1569 (PPC32_LINUX_SIZEOF_CGPRREGSET, PPC64_LINUX_SIZEOF_CGPRREGSET)
1570 (PPC_LINUX_SIZEOF_CFPRREGSET, PPC_LINUX_SIZEOF_CVMXREGSET)
1571 (PPC_LINUX_SIZEOF_CVSXREGSET, PPC_LINUX_SIZEOF_CPPRREGSET)
1572 (PPC_LINUX_SIZEOF_CDSCRREGSET, PPC_LINUX_SIZEOF_CTARREGSET):
1573 Define.
1574 (struct ppc_linux_features) <htm>: New field.
1575 (ppc_linux_no_features): Add initializer for htm field.
1576 * arch/ppc-linux-common.c (ppc_linux_match_description): Return
1577 new tdescs.
1578 * nat/ppc-linux.h (PPC_FEATURE2_HTM, NT_PPC_TM_CGPR)
1579 (NT_PPC_TM_CFPR, NT_PPC_TM_CVMX, NT_PPC_TM_CVSX)
1580 (NT_PPC_TM_SPR, NT_PPC_TM_CTAR, NT_PPC_TM_CPPR, NT_PPC_TM_CDSCR):
1581 Define if not already defined.
1582 * features/Makefile (WHICH): Add rs6000/powerpc-isa207-htm-vsx32l
1583 and rs6000/powerpc-isa207-htm-vsx64l.
1584 (XMLTOC): Add rs6000/powerpc-isa207-htm-vsx32l.xml and
1585 rs6000/powerpc-isa207-htm-vsx64l.xml.
1586 * features/rs6000/power-htm-spr.xml: New file.
1587 * features/rs6000/power-htm-core.xml: New file.
1588 * features/rs6000/power64-htm-core.xml: New file.
1589 * features/rs6000/power-htm-fpu.xml: New file.
1590 * features/rs6000/power-htm-altivec.xml: New file.
1591 * features/rs6000/power-htm-vsx.xml: New file.
1592 * features/rs6000/power-htm-ppr.xml: New file.
1593 * features/rs6000/power-htm-dscr.xml: New file.
1594 * features/rs6000/power-htm-tar.xml: New file.
1595 * features/rs6000/powerpc-isa207-htm-vsx32l.xml: New file.
1596 * features/rs6000/powerpc-isa207-htm-vsx64l.xml: New file.
1597 * features/rs6000/powerpc-isa207-htm-vsx32l.c: Generate.
1598 * features/rs6000/powerpc-isa207-htm-vsx64l.c: Generate.
1599 * regformats/rs6000/powerpc-isa207-htm-vsx32l.dat: Generate.
1600 * regformats/rs6000/powerpc-isa207-htm-vsx64l.dat: Generate.
1601 * ppc-linux-nat.c (fetch_register, fetch_ppc_registers): Call
1602 fetch_regset with HTM regsets.
1603 (store_register, store_ppc_registers): Call store_regset with HTM
1604 regsets.
1605 (ppc_linux_nat_target::read_description): Set htm field in the
1606 features struct if needed.
1607 * ppc-linux-tdep.c: Include
1608 features/rs6000/powerpc-isa207-htm-vsx32l.c and
1609 features/rs6000/powerpc-isa207-htm-vsx64l.c.
1610 (ppc32_regmap_tm_spr, ppc32_regmap_cgpr, ppc64_le_regmap_cgpr)
1611 (ppc64_be_regmap_cgpr, ppc32_regmap_cfpr, ppc32_le_regmap_cvmx)
1612 (ppc32_be_regmap_cvmx, ppc32_regmap_cvsx, ppc32_regmap_cppr)
1613 (ppc32_regmap_cdscr, ppc32_regmap_ctar): New globals.
1614 (ppc32_linux_tm_sprregset, ppc32_linux_cgprregset)
1615 (ppc64_be_linux_cgprregset, ppc64_le_linux_cgprregset)
1616 (ppc32_linux_cfprregset, ppc32_le_linux_cvmxregset)
1617 (ppc32_be_linux_cvmxregset, ppc32_linux_cvsxregset)
1618 (ppc32_linux_cpprregset, ppc32_linux_cdscrregset)
1619 (ppc32_linux_ctarregset): New globals.
1620 (ppc_linux_cgprregset, ppc_linux_cvmxregset): New functions.
1621 (ppc_linux_collect_core_cpgrregset): New function.
1622 (ppc_linux_iterate_over_regset_sections): Call back with the htm
1623 regsets.
1624 (ppc_linux_core_read_description): Check if the tm spr section is
1625 present and set htm in the features struct.
1626 (_initialize_ppc_linux_tdep): Call
1627 initialize_tdesc_powerpc_isa207_htm_vsx32l and
1628 initialize_tdesc_powerpc_isa207_htm_vsx64l.
1629 * ppc-linux-tdep.h (ppc_linux_cgprregset, ppc_linux_cvmxregset):
1630 Declare.
1631 (ppc32_linux_tm_sprregset, ppc32_linux_cfprregset)
1632 (ppc32_linux_cvsxregset, ppc32_linux_cpprregset)
1633 (ppc32_linux_cdscrregset, ppc32_linux_ctarregset): Declare.
1634 * ppc-tdep.h (struct gdbarch_tdep) <have_htm_spr, have_htm_core>:
1635 New fields.
1636 <have_htm_fpu, have_htm_altivec, have_htm_vsx>:
1637 Likewise.
1638 <ppc_cppr_regnum, ppc_cdscr_regnum, ppc_ctar_regnum>: Likewise.
1639 <ppc_cdl0_regnum, ppc_cvsr0_regnum, ppc_cefpr0_regnum>: Likewise.
1640 (enum) <PPC_TFHAR_REGNUM, PPC_TEXASR_REGNUM, PPC_TFIAR_REGNUM>:
1641 New enum fields.
1642 <PPC_CR0_REGNUM, PPC_CCR_REGNUM, PPC_CXER_REGNUM>: Likewise.
1643 <PPC_CLR_REGNUM, PPC_CCTR_REGNUM, PPC_CF0_REGNUM>: Likewise.
1644 <PPC_CFPSCR_REGNUM, PPC_CVR0_REGNUM, PPC_CVSCR_REGNUM>: Likewise.
1645 <PPC_CVRSAVE_REGNUM, PPC_CVSR0_UPPER_REGNUM>: Likewise.
1646 <PPC_CPPR_REGNUM, PPC_CDSCR_REGNUM>: Likewise.
1647 <PPC_CTAR_REGNUM>: Likewise.
1648 (PPC_IS_TMSPR_REGNUM, PPC_IS_CKPTGP_REGNUM, PPC_IS_CKPTFP_REGNUM)
1649 (PPC_IS_CKPTVMX_REGNUM, PPC_IS_CKPTVSX_REGNUM): Define.
1650 * rs6000-tdep.c (IS_CDFP_PSEUDOREG, IS_CVSX_PSEUDOREG)
1651 (IS_CEFP_PSEUDOREG): Define.
1652 (rs6000_register_name): Hide the upper halves of checkpointed VSX
1653 registers. Return names for the checkpointed DFP, VSX, and EFP
1654 pseudo registers.
1655 (rs6000_pseudo_register_type): Remove initial assert and raise an
1656 internal error in the else clause instead. Return types for the
1657 checkpointed DFP, VSX, and EFP pseudo registers.
1658 (dfp_pseudo_register_read, dfp_pseudo_register_write): Handle
1659 checkpointed DFP pseudo registers.
1660 (vsx_pseudo_register_read, vsx_pseudo_register_write): Handle
1661 checkpointed VSX pseudo registers.
1662 (efp_pseudo_register_read, efp_pseudo_register_write): Rename
1663 from efpr_pseudo_register_read and
1664 efpr_pseudo_register_write. Handle checkpointed EFP pseudo
1665 registers.
1666 (rs6000_pseudo_register_read, rs6000_pseudo_register_write):
1667 Handle checkpointed DFP, VSX, and EFP registers.
1668 (dfp_ax_pseudo_register_collect, vsx_ax_pseudo_register_collect)
1669 (efp_ax_pseudo_register_collect): New functions.
1670 (rs6000_ax_pseudo_register_collect): Move DFP, VSX and EFP pseudo
1671 register logic to new functions. Handle checkpointed DFP, VSX,
1672 and EFP pseudo registers.
1673 (rs6000_gdbarch_init): Look for and validate the htm features.
1674 Include checkpointed DFP, VSX and EFP pseudo-registers.
1675 * NEWS: Mention access to PPR, DSCR, TAR, EBB/PMU registers and
1676 HTM registers.
1677
1678 2018-10-26 Pedro Franco de Carvalho <pedromfc@linux.ibm.com>
1679
1680 * rs6000-tdep.c (rs6000_gdbarch_init): Reject tdescs with vsx but
1681 without altivec or fpu.
1682
1683 2018-10-26 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
1684 Pedro Franco de Carvalho <pedromfc@linux.ibm.com>
1685
1686 * arch/ppc-linux-common.h (PPC_LINUX_SIZEOF_EBBREGSET)
1687 (PPC_LINUX_SIZEOF_PMUREGSET): Declare.
1688 * nat/ppc-linux.h (PPC_FEATURE2_EBB, NT_PPC_EBB, NT_PPC_PMU):
1689 Define if not already defined.
1690 * features/rs6000/power-ebb.xml: New file.
1691 * features/rs6000/power-linux-pmu.xml: New file.
1692 * features/rs6000/powerpc-isa207-vsx32l.xml: Include ebb and pmu
1693 features.
1694 * features/rs6000/powerpc-isa207-vsx64l.xml: Likewise.
1695 * features/rs6000/powerpc-isa207-vsx32l.c: Re-generate.
1696 * features/rs6000/powerpc-isa207-vsx64l.c: Re-generate.
1697 * regformats/rs6000/powerpc-isa207-vsx32l.dat: Re-generate.
1698 * regformats/rs6000/powerpc-isa207-vsx64l.dat: Re-generate.
1699 * ppc-linux-nat.c (fetch_register, fetch_ppc_registers): Call
1700 fetch_regset with ebb and pmu regsets.
1701 (store_register, store_ppc_registers): Call store_regset with ebb
1702 and pmu regsets.
1703 (ppc_linux_nat_target::read_description): Set isa207 field in the
1704 features struct if ebb and pmu are avaiable.
1705 * ppc-linux-tdep.c (ppc32_regmap_ebb, ppc32_regmap_pmu)
1706 (ppc32_linux_ebbregset, ppc32_linux_pmuregset): New globals.
1707 (ppc_linux_iterate_over_regset_sections): Call back with the ebb
1708 and pmu regsets.
1709 (ppc_linux_core_read_description): Check if the pmu section is
1710 present and set isa207 in the features struct.
1711 * ppc-linux-tdep.h (ppc32_linux_ebbregset)
1712 (ppc32_linux_pmuregset): Declare.
1713 * ppc-tdep.h (struct gdbarch_tdep) <ppc_mmcr0_regnum>: New field.
1714 <ppc_mmcr2_regnum, ppc_siar_regnum, ppc_sdar_regnum>: New fields.
1715 <ppc_sier_regnum>: New field.
1716 (enum): <PPC_BESCR_REGNUM, PPC_EBBHR_REGNUM, PPC_EBBRR_REGNUM>:
1717 New enum values.
1718 <PPC_MMCR0_REGNUM, PPC_MMCR2_REGNUM, PPC_SIAR_REGNUM>: New enum
1719 values.
1720 <PPC_SDAR_REGNUM, PPC_SIER_REGNUM>: New enum values.
1721 (PPC_IS_EBB_REGNUM, PPC_IS_PMU_REGNUM): Define.
1722 * rs6000-tdep.c (rs6000_gdbarch_init): Look for and validate the
1723 ebb and pmu features.
1724
1725 2018-10-26 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
1726 Pedro Franco de Carvalho <pedromfc@linux.ibm.com>
1727
1728 * arch/ppc-linux-tdesc.h (tdesc_powerpc_isa207_vsx32l)
1729 (tdesc_powerpc_isa207_vsx64l): Declare.
1730 * arch/ppc-linux-common.h (PPC_LINUX_SIZEOF_TARREGSET): Define.
1731 (struct ppc_linux_features) <isa207>: New field.
1732 (ppc_linux_no_features): Add initializer for isa207 field.
1733 * arch/ppc-linux-common.c (ppc_linux_match_description): Return
1734 new tdescs.
1735 * nat/ppc-linux.h (PPC_FEATURE2_ARCH_2_07, PPC_FEATURE2_TAR)
1736 (NT_PPC_TAR): Define if not already defined.
1737 * features/Makefile (WHICH): Add rs6000/powerpc-isa207-vsx32l and
1738 rs6000/powerpc-isa207-vsx64l.
1739 (XMLTOC): Add rs6000/powerpc-isa207-vsx32l.xml and
1740 rs6000/powerpc-isa207-vsx64l.xml.
1741 * features/rs6000/power-tar.xml: New file.
1742 * features/rs6000/powerpc-isa207-vsx32l.xml: New file.
1743 * features/rs6000/powerpc-isa207-vsx64l.xml: New file.
1744 * features/rs6000/powerpc-isa207-vsx32l.c: Generate.
1745 * features/rs6000/powerpc-isa207-vsx64l.c: Generate.
1746 * regformats/rs6000/powerpc-isa207-vsx32l.dat: Generate.
1747 * regformats/rs6000/powerpc-isa207-vsx64l.dat: Generate.
1748 * ppc-linux-nat.c (fetch_register, fetch_ppc_registers): Call
1749 fetch_regset with the TAR regset.
1750 (store_register, store_ppc_registers): Call store_regset with the
1751 TAR regset.
1752 (ppc_linux_nat_target::read_description): Set isa207 field in the
1753 features struct if needed.
1754 * ppc-linux-tdep.c: Include
1755 features/rs6000/powerpc-isa207-vsx32l.c and
1756 features/rs6000/powerpc-isa207-vsx64l.c.
1757 (ppc32_regmap_tar, ppc32_linux_tarregset): New globals.
1758 (ppc_linux_iterate_over_regset_sections): Call back with the tar
1759 regset.
1760 (ppc_linux_core_read_description): Check if the tar section is
1761 present and set isa207 in the features struct.
1762 (_initialize_ppc_linux_tdep): Call
1763 initialize_tdesc_powerpc_isa207_vsx32l and
1764 initialize_tdesc_powerpc_isa207_vsx64l.
1765 * ppc-linux-tdep.h (ppc32_linux_tarregset): Declare.
1766 * ppc-tdep.h (gdbarch_tdep) <ppc_tar_regnum>: New field.
1767 (enum) <PPC_TAR_REGNUM>: New enum value.
1768 * rs6000-tdep.c (rs6000_gdbarch_init): Look for and validate tar
1769 feature.
1770 (ppc_process_record_op31): Record changes to TAR.
1771
1772 2018-10-26 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
1773 Pedro Franco de Carvalho <pedromfc@linux.ibm.com>
1774
1775 * arch/ppc-linux-tdesc.h (tdesc_powerpc_isa205_ppr_dscr_vsx32l)
1776 (tdesc_powerpc_isa205_ppr_dscr_vsx64l): Declare.
1777 * arch/ppc-linux-common.h (PPC_LINUX_SIZEOF_PPRREGSET)
1778 (PPC_LINUX_SIZEOF_DSCRREGSET): Define.
1779 (struct ppc_linux_features) <ppr_dscr>: New field.
1780 (ppc_linux_no_features): Add initializer for ppr_dscr field.
1781 * arch/ppc-linux-common.c (ppc_linux_match_description): Return
1782 new tdescs.
1783 * nat/ppc-linux.h (PPC_FEATURE2_DSCR, NT_PPC_PPR, NT_PPC_DSCR):
1784 Define if not already defined.
1785 * features/Makefile (WHICH): Add
1786 rs6000/powerpc-isa205-ppr-dscr-vsx32l and
1787 rs6000/powerpc-isa205-ppr-dscr-vsx64l.
1788 (XMLTOC): Add rs6000/powerpc-isa205-ppr-dscr-vsx32l.xml and
1789 rs6000/powerpc-isa205-ppr-dscr-vsx64l.xml.
1790 * features/rs6000/power-dscr.xml: New file.
1791 * features/rs6000/power-ppr.xml: New file.
1792 * features/rs6000/powerpc-isa205-ppr-dscr-vsx32l.xml: New file.
1793 * features/rs6000/powerpc-isa205-ppr-dscr-vsx64l.xml: New file.
1794 * features/rs6000/powerpc-isa205-ppr-dscr-vsx32l.c: Generate.
1795 * features/rs6000/powerpc-isa205-ppr-dscr-vsx64l.c: Generate.
1796 * regformats/rs6000/powerpc-isa205-ppr-dscr-vsx32l.dat: Generate.
1797 * regformats/rs6000/powerpc-isa205-ppr-dscr-vsx64l.dat: Generate.
1798 * ppc-linux-nat.c: Include <sys/uio.h>.
1799 (fetch_regset, store_regset, check_regset): New functions.
1800 (fetch_register, fetch_ppc_registers): Call fetch_regset with
1801 DSCR and PPR regsets.
1802 (store_register, store_ppc_registers): Call store_regset with
1803 DSCR and PPR regsets.
1804 (ppc_linux_get_hwcap2): New function.
1805 (ppc_linux_nat_target::read_description): Call
1806 ppc_linux_get_hwcap2 and check_regset, set ppr_dscr field in the
1807 features struct if needed.
1808 * ppc-linux-tdep.c: Include
1809 features/rs6000/powerpc-isa205-ppr-dscr-vsx32l.c and
1810 features/rs6000/powerpc-isa205-ppr-dscr-vsx64l.c.
1811 (ppc32_regmap_ppr, ppc32_regmap_dscr, ppc32_linux_pprregset)
1812 (ppc32_linux_dscrregset): New globals.
1813 (ppc_linux_iterate_over_regset_sections): Call back with the ppr
1814 and dscr regsets.
1815 (ppc_linux_core_read_description): Check if the ppr and dscr
1816 sections are present and set ppr_dscr in the features struct.
1817 (_initialize_ppc_linux_tdep): Call
1818 initialize_tdesc_powerpc_isa205_ppr_dscr_vsx32l and
1819 initialize_tdesc_powerpc_isa205_ppr_dscr_vsx64l.
1820 * ppc-linux-tdep.h (ppc32_linux_pprregset)
1821 (ppc32_linux_dscrregset): Declare.
1822 * ppc-tdep.h (struct gdbarch_tdep) <ppc_ppr_regnum>: New field.
1823 <ppc_dscr_regnum>: New field.
1824 (enum) <PPC_PPR_REGNUM, PPC_DSCR_REGNUM>: New enum values.
1825 * rs6000-tdep.c (rs6000_gdbarch_init): Look for and validate ppr
1826 and dscr features.
1827 (ppc_process_record_op31): Record changes to PPR and DSCR.
1828
1829 2018-10-26 Pedro Franco de Carvalho <pedromfc@linux.ibm.com>
1830
1831 * rs6000-tdep.c (rs6000_gdbarch_init): Replace line wrapping by a
1832 second initializer line for the have_* variables. Initialize
1833 have_fpu to 0 instead of 1.
1834
1835 2018-10-26 Pedro Franco de Carvalho <pedromfc@linux.ibm.com>
1836
1837 * arch/ppc-linux-common.c (ppc_linux_match_description):
1838 Parenthesize tdesc assignements and indent them properly.
1839
1840 2018-10-26 Pedro Franco de Carvalho <pedromfc@linux.ibm.com>
1841
1842 * ppc-linux-nat.c (fetch_register): Change if statement to else
1843 if.
1844 (store_register): Likewise.
1845
1846 2018-10-26 Pedro Franco de Carvalho <pedromfc@linux.ibm.com>
1847
1848 * rs6000-tdep.c: Remove reggroups.h include.
1849 (rs6000_pseudo_register_reggroup_p): Remove.
1850 (rs6000_gdbarch_init): Remove call to
1851 set_tdesc_pseudo_register_reggroup_p.
1852
1853 2018-10-26 Pedro Franco de Carvalho <pedromfc@linux.ibm.com>
1854
1855 * reggroups.c (default_register_reggroup_p): Return true for
1856 decfloat registers and float_reggroup.
1857
1858 2018-10-26 Pedro Franco de Carvalho <pedromfc@linux.ibm.com>
1859
1860 * ppc-linux-tdep.c (ppc_linux_collect_vrregset): Remove.
1861 (ppc32_le_linux_vrregset, ppc32_be_linux_vrregset): Replace
1862 ppc_linux_collect_vrregset by regcache_collect_regset.
1863
1864 2018-10-26 Pedro Franco de Carvalho <pedromfc@linux.ibm.com>
1865
1866 * linux-tdep.c (linux_collect_regset_section_cb): Use
1867 std::vector<gdb_byte> instead of char * and malloc for buf.
1868 Remove xfree.
1869
1870 2018-10-26 Sangamesh Mallayya <sangamesh.swamy@in.ibm.com>
1871
1872 * xcoffread.c (read_xcoff_symtab): Pass deduced language to
1873 symtab_start instead of always using language_unknown.
1874
1875 2018-10-26 Andrew Burgess <andrew.burgess@embecosm.com>
1876
1877 * riscv-tdep.c (riscv_read_misa_reg): Update comment, remove
1878 READ_P parameter, catch and ignore register access errors from
1879 either the old or new MISA location.
1880 (riscv_has_feature): Update call to riscv_read_misa_reg.
1881
1882 2018-10-25 Andrew Burgess <andrew.burgess@embecosm.com>
1883
1884 * python/py-function.c (convert_values_to_python): Return
1885 gdbpy_ref<>. Add header comment.
1886 (fnpy_call): Adjust.
1887
1888 2018-10-25 Andrew Burgess <andrew.burgess@embecosm.com>
1889
1890 * python/py-cmd.c (cmdpy_completer_helper): Return gdbpy_ref<>.
1891 (cmdpy_completer_handle_brkchars): Adjust.
1892 (cmdpy_completer): Adjust.
1893
1894 2018-10-25 Andrew Burgess <andrew.burgess@embecosm.com>
1895
1896 * riscv-linux-nat.c (riscv_linux_nat_target::fetch_registers):
1897 Pass correct regnum to raw_supply_zeroed.
1898
1899 2018-10-23 Hafiz Abid Qadeer <abidh@codesourcery.com>
1900
1901 * regcache.c (cooked_read_test): Add CSKY to the list of
1902 architectures with a save_reggroup
1903
1904 2018-10-23 Simon Marchi <simon.marchi@polymtl.ca>
1905
1906 PR gdb/23368
1907 * infrun.c (follow_exec): In the follow_exec_mode_new case,
1908 transfer terminal state from old new new inferior.
1909 * terminal.h (swap_terminal_info): New function.
1910 * inflow.c (swap_terminal_info): New function.
1911
1912 2018-10-23 Tom Tromey <tom@tromey.com>
1913
1914 * record-btrace.c (get_thread_current_frame_id): Rename from
1915 get_thread_current_frame. Return a frame_id.
1916 (record_btrace_start_replaying): Update.
1917
1918 2018-10-23 Andrew Burgess <andrew.burgess@embecosm.com>
1919
1920 * riscv-tdep.c (riscv_register_name): Use the user-friendly names
1921 for CSRs.
1922
1923 2018-10-23 Joel Brobecker <brobecker@adacore.com>
1924
1925 * riscv-tdep.c (riscv_gdbarch_init): Set the gdbarch's
1926 have_nonsteppable_watchpoint attribute to 1.
1927
1928 2018-10-23 Andrew Burgess <andrew.burgess@embecosm.com>
1929
1930 * riscv-tdep.c (riscv_gdb_reg_names): Update comment, and all
1931 register names.
1932 (struct register_alias): Rename to...
1933 (struct riscv_register_alias): ...this, and update comment.
1934 (riscv_register_aliases): Update type, and alias names. Remove
1935 CSR names from this list.
1936 (riscv_register_name): Use riscv_gdb_reg_names for int and float
1937 register names. Add an extra assertion.
1938 (riscv_is_regnum_a_named_csr): New function.
1939 (riscv_register_reggroup_p): Use riscv_is_regnum_a_named_csr.
1940
1941 2018-10-23 John Darrington <john@darrington.wattle.id.au>
1942
1943 * configure.tgt: Add configuration for s12z.
1944 * s12z-tdep.c: New file.
1945 * NEWS: Mention new target.
1946
1947 2018-10-22 Jim Wilson <jimw@sifive.com>
1948
1949 * riscv-tdep.c (riscv_push_dummy_call) <in_reg>: Check for value in
1950 FP reg smaller than FP reg size, and fill with -1 instead of 0.
1951
1952 * riscv-tdep.c (riscv_fpreg_d_type, riscv_fpreg_q_type): New.
1953 (riscv_register_type): Use them.
1954 (riscv_print_one_register_info): Handle union of floats same as float.
1955 * riscv-tdep.h (struct gdbarch_tdep): Add riscv_fpreg_d_type and
1956 riscv_fpreg_q_type fields.
1957
1958 2018-10-21 Simon Marchi <simon.marchi@ericsson.com>
1959
1960 * gdbarch.sh (gdbarch_num_cooked_regs): New.
1961 * gdbarch.h: Re-generate.
1962 * ax-gdb.c (gen_expr): Use gdbarch_num_cooked_regs.
1963 * dwarf2-frame.c (dwarf2_frame_cache): Likewise.
1964 * eval.c (evaluate_subexp_standard): Likewise.
1965 * findvar.c (value_of_register): Likewise.
1966 (value_of_register_lazy): Likewise.
1967 (address_from_register): Likewise.
1968 * frame.c (get_frame_register_bytes): Likewise.
1969 * gdbarch-selftests.c (register_to_value_test): Likewise.
1970 * h8300-tdep.c (h8300_register_type): Likewise.
1971 * i386-tdep.c (i386_dbx_reg_to_regnum): Likewise.
1972 (i386_svr4_reg_to_regnum): Likewise.
1973 * infcmd.c (default_print_registers_info): Likewise.
1974 (registers_info): Likewise.
1975 (print_vector_info): Likewise.
1976 (default_print_float_info): Likewise.
1977 * m68hc11-tdep.c (m68hc11_frame_unwind_cache): Likewise.
1978 * mdebugread.c (mdebug_reg_to_regnum): Likewise.
1979 * mi/mi-main.c (mi_cmd_data_list_register_names): Likewise.
1980 (mi_cmd_data_list_changed_registers): Likewise.
1981 (mi_cmd_data_list_register_values): Likewise.
1982 (mi_cmd_data_write_register_values): Likewise.
1983 (mi_cmd_trace_frame_collected): Likewise.
1984 * mips-tdep.c (print_gp_register_row): Likewise.
1985 (mips_print_registers_info): Likewise.
1986 * nds32-tdep.c (nds32_gdbarch_init): Likewise.
1987 * regcache.c (init_regcache_descr): Likewise.
1988 (register_size): Likewise.
1989 (register_dump::dump): Likewise.
1990 (cooked_read_test): Likewise.
1991 (cooked_write_test): Likewise.
1992 * rs6000-tdep.c (rs6000_register_sim_regno): Likewise.
1993 (rs6000_gdbarch_init): Likewise.
1994 * stabsread.c (stab_reg_to_regnum): Likewise.
1995 * stack.c (info_frame_command): Likewise.
1996 * target-descriptions.c (tdesc_register_name): Likewise.
1997 * trad-frame.c (trad_frame_alloc_saved_regs): Likewise.
1998 * tui/tui-regs.c (tui_show_register_group): Likewise.
1999 * user-regs.c (user_reg_map_name_to_regnum): Likewise.
2000 (user_reg_map_regnum_to_name): Likewise.
2001 (value_of_user_reg): Likewise.
2002 (maintenance_print_user_registers): Likewise.
2003 * xtensa-tdep.c (xtensa_find_register_by_name): Likewise.
2004 (xtensa_register_name): Likewise.
2005 (xtensa_register_type): Likewise.
2006 (xtensa_reg_to_regnum): Likewise.
2007 (xtensa_pseudo_register_read): Likewise.
2008 (xtensa_pseudo_register_write): Likewise.
2009
2010 2018-10-21 Simon Marchi <simon.marchi@polymtl.ca>
2011
2012 * amd64-tdep.c (amd64_pseudo_register_read_value): Use
2013 correctly-sized buffer with raw_read.
2014 (amd64_pseudo_register_write): Use correctly-sized buffer for
2015 raw_read/raw_write.
2016
2017 2018-10-19 Philippe Waroquiers <philippe.waroquiers@skynet.be>
2018
2019 * typeprint.c (_initialize_typeprint): Fix wrong prefixname arg
2020 in add_prefix_cmd of set print type.
2021
2022 2018-10-19 Tom Tromey <tom@tromey.com>
2023
2024 PR tui/18388:
2025 * NEWS: Mention tabset deprecation.
2026 * tui/tui-win.c (tui_tab_width, internal_tab_width): New globals.
2027 (update_tab_width): New function.
2028 (tui_set_tab_width, tui_show_tab_width): New functions.
2029 (tui_set_tab_width_command): Use update_tab_width.
2030 (_initialize_tui_win): Move to end of file. Deprecate "tabset".
2031 Add new "set tui tab-width" command.
2032 * tui/tui-source.c (tui_set_source_content): Update.
2033 * tui/tui-disasm.c (tui_set_disassem_content): Update.
2034 * tui/tui-data.h (tui_default_tab_len, tui_set_default_tab_len):
2035 Don't declare.
2036 (tui_tab_width): Declare.
2037 * tui/tui-data.c (default_tab_len, tui_default_tab_len)
2038 (tui_set_default_tab_len): Remove.
2039
2040 2018-10-19 Tom Tromey <tom@tromey.com>
2041
2042 * tui/tui-io.h (key_is_start_sequence, key_is_end_sequence)
2043 (key_is_backspace, tui_getc): Don't declare.
2044 * tui/tui-io.c (key_is_start_sequence): Now static.
2045 (key_is_end_sequence, key_is_backspace): Remove.
2046 (tui_getc): Now static.
2047
2048 2018-10-19 Tom Tromey <tom@tromey.com>
2049
2050 * symfile.c (reread_symbols): Clear "static_links".
2051
2052 2018-10-19 Alan Hayward <alan.hayward@arm.com>
2053
2054 * aarch64-linux-tdep.c (AARCH64_SIGCONTEXT_RESERVED_SIZE): New
2055 define.
2056 (aarch64_linux_sigframe_init): Extra boundary checks.
2057
2058 2018-10-19 Andreas Arnez <arnez@linux.ibm.com>
2059
2060 * s390-tdep.c (s390_pseudo_register_type): For v0-v15 don't yield
2061 the possibly non-existent tdesc type 'vec128', but the type of raw
2062 register v16 instead.
2063
2064 2018-10-19 Gary Benson <gbenson@redhat.com>
2065
2066 * cli/cli-interp.c (cli_interp::~cli_interp): New function.
2067
2068 2018-10-18 Sergio Durigan Junior <sergiodj@redhat.com>
2069
2070 PR cli/23785
2071 * cli/cli-dump.c (restore_binary_file): Check if "file" is
2072 NULL.
2073
2074 2018-10-17 Paul Koning <paul_koning@dell.com>
2075
2076 * charset.c (convert_between_encodings): Fix unsigned overflow.
2077
2078 2018-10-17 John Baldwin <jhb@FreeBSD.org>
2079
2080 * fbsd-nat.c (fbsd_nat_target::info_proc) Use
2081 fbsd_info_proc_mappings_header and fbsd_info_proc_mappings_entry.
2082 * fbsd-tdep.c (fbsd_vm_map_entry_flags): Mark static.
2083 (fbsd_info_proc_mappings_header, fbsd_info_proc_mappings_entry):
2084 New functions.
2085 (fbsd_core_info_proc_mappings): Use fbsd_info_proc_mappings_header
2086 and fbsd_info_proc_mappings_header.
2087 * fbsd-tdep.h (fbsd_vm_map_entry_flags): Remove.
2088 (fbsd_info_proc_mappings_header, fbsd_info_proc_mappings_entry):
2089 New.
2090
2091 2018-10-17 Joel Brobecker <brobecker@adacore.com>
2092
2093 * MAINTAINERS (Responsible Maintainers): Add Rainer Orth as
2094 Solaris Maintainer.
2095
2096 2018-10-15 Tom Tromey <tom@tromey.com>
2097
2098 * tui/tui.c (strcat_to_buf): Remove casts.
2099 * tui/tui-winsource.c (tui_show_source_line)
2100 (tui_set_is_exec_point_at, tui_line_is_displayed): Remove casts.
2101 * tui/tui-wingeneral.c (tui_refresh_win, box_win): Remove casts.
2102 * tui/tui-windata.c (tui_first_data_item_displayed)
2103 (tui_delete_data_content_windows, tui_erase_data_content)
2104 (tui_display_all_data, tui_display_data_from)
2105 (tui_refresh_data_win, tui_vertical_data_scroll): Remove casts.
2106 * tui/tui-win.c (tui_set_win_height)
2107 (make_invisible_and_set_new_height, parse_scrolling_args): Remove
2108 casts.
2109 * tui/tui-win.c (tui_resize_all): Remove casts.
2110 (tui_scroll_backward_command, tui_set_focus)
2111 (tui_set_tab_width_command): Likewise.
2112 * tui/tui-source.c (tui_vertical_source_scroll): Remove cast.
2113 * tui/tui-regs.c (tui_show_register_group): Remove cast.
2114 * tui/tui-layout.c (tui_set_layout_by_name): Remove cast.
2115 * tui/tui-disasm.c (tui_vertical_disassem_scroll): Remove cast.
2116 * tui/tui-data.c (tui_partial_win_by_name, tui_free_win_content):
2117 Remove casts.
2118
2119 2018-10-15 Simon Marchi <simon.marchi@ericsson.com>
2120
2121 * MAINTAINERS (Responsible Maintainers): Add Alan Hayward as
2122 AArch64/ARM maintainer.
2123
2124 2018-10-11 Gary Benson <gbenson@redhat.com>
2125
2126 * interps.h (interp::m_name): Make private and mutable.
2127 * interps.c (interp::~interp): Free m_name.
2128
2129 2018-10-10 Sergio Durigan Junior <sergiodj@redhat.com>
2130 Simon Marchi <simark@simark.ca>
2131
2132 * README (`configure' options): Add documentation for new
2133 "--enable-unit-tests" option.
2134 * acinclude.m4: Include "selftest.m4".
2135 * configure: Regenerate.
2136 * configure.ac: Use "GDB_AC_SELFTEST".
2137 * maint.c (maintenance_selftest): Update message informing
2138 that selftests have been disabled.
2139 (maintenance_info_selftests): Likewise.
2140 * selftest.m4: New file.
2141
2142 2018-10-10 Gary Benson <gbenson@redhat.com>
2143
2144 * remote.c (remote_target::remote_send_printf): Add
2145 missing va_end found by Coverity.
2146
2147 2018-10-10 Markus Metzger <markus.t.metzger@intel.com>
2148
2149 * btrace.c (ftrace_update_function): Add indirect jump heuristic.
2150
2151 2018-10-09 Tom Tromey <tom@tromey.com>
2152
2153 * configure: Rebuild.
2154 * sanitize.m4 (AM_GDB_UBSAN): Default to no.
2155 * NEWS: Update --enable-ubsan documentation.
2156
2157 2018-10-09 Gary Benson <gbenson@redhat.com>
2158
2159 * dwarf2read.c (create_dwp_hash_table): Fix buffer overrun
2160 found by Coverity.
2161
2162 2018-10-08 Tom Tromey <tom@tromey.com>
2163
2164 * riscv-fbsd-tdep.c (riscv_fbsd_sigframe_init): Remove unused
2165 variable.
2166 (riscv_fbsd_init_abi): Likewise.
2167
2168 2018-10-08 Weimin Pan <weimin.pan@oracle.com>
2169 * valops.c (value_struct_elt_for_reference): Rename local variable
2170 to work around the shadowing a previous local warning.
2171
2172 2018-10-08 John Baldwin <jhb@FreeBSD.org>
2173
2174 * Makefile.in (ALLDEPFILES): Add riscv-fbsd-nat.c.
2175 * NEWS: Mention new FreeBSD/riscv native configuration.
2176 * configure.host: Add riscv*-*-freebsd*.
2177 * configure.nat: Likewise.
2178 * riscv-fbsd-nat.c: New file.
2179
2180 2018-10-08 John Baldwin <jhb@FreeBSD.org>
2181
2182 * Makefile.in (ALL_TARGET_OBS): Add riscv-fbsd-tdep.o.
2183 (HFILES_NO_SRCDIR): Add riscv-fbsd-tdep.h.
2184 (ALLDEPFILES): Add riscv-fbsd-tdep.c.
2185 * NEWS: Mention new FreeBSD/riscv target.
2186 * configure.tgt: Add riscv*-*-freebsd*.
2187 * riscv-fbsd-tdep.c: New file.
2188 * riscv-fbsd-tdep.h: New file.
2189
2190 2018-10-08 John Baldwin <jhb@FreeBSD.org>
2191
2192 * regcache.h (struct regcache_map_entry): Note that this type can
2193 be used with traditional frame caches.
2194 * trad-frame.c (trad_frame_set_reg_regmap): New.
2195 * trad-frame.h (trad_frame_set_reg_regmap): New.
2196
2197 2018-10-08 Weimin Pan <weimin.pan@oracle.com>
2198
2199 PR c++/16841
2200 * valops.c (get_virtual_base_offset): New function.
2201 (value_struct_elt_for_reference): Use it to get virtual base offset
2202 and add it in calculating class member address.
2203
2204 2018-10-08 John Darrington <john@darrington.wattle.id.au>
2205
2206 * dwarf2read.c (dwarf2_cu) <producer_is_codewarrior>: New field.
2207 (check_producer): Check if the producer is codewarrior.
2208 (producer_is_codewarrior): New function.
2209 (lnp_state_machine::record_line): Ignore is_stmt flag for records
2210 produced by codewarrior.
2211 (dwarf2_cu::dwarf2_cu): Initialize producer_is_codewarrior.
2212
2213 2018-10-06 Tom Tromey <tom@tromey.com>
2214
2215 PR python/19399:
2216 * python/py-inferior.c: Add "architecture" entry.
2217 (infpy_architecture): New function.
2218
2219 2018-10-06 Tom Tromey <tom@tromey.com>
2220
2221 PR python/21765:
2222 * python/py-symbol.c (gdbpy_initialize_symbols): Redefine
2223 SYMBOL_VARIABLES_DOMAIN, SYMBOL_FUNCTIONS_DOMAIN,
2224 SYMBOL_TYPES_DOMAIN. Define SYMBOL_MODULE_DOMAIN,
2225 SYMBOL_COMMON_BLOCK_DOMAIN, SYMBOL_LOC_COMMON_BLOCK.
2226
2227 2018-10-06 Tom Tromey <tom@tromey.com>
2228
2229 PR build/17077:
2230 * Makefile.in (OPCODES_CFLAGS): Remove "-I$(OPCODES_SRC)/..".
2231 * arc-tdep.c, frv-tdep.c, lm32-tdep.c, mep-tdep.c,
2232 microblaze-tdep.c, or1k-tdep.h: Use ../opcodes, not opcodes, in
2233 #include.
2234
2235 2018-10-06 Tom Tromey <tom@tromey.com>
2236
2237 * python/py-breakpoint.c (bppy_get_location): Handle a
2238 bp_breakpoint without a location.
2239
2240 2018-10-06 Tom Tromey <tom@tromey.com>
2241
2242 * python/lib/gdb/function/strfns.py (_MemEq, _StrLen, _StrEq)
2243 (_RegEx): Reformat help text.
2244 * python/lib/gdb/function/caller_is.py (CallerIs, CallerMatches)
2245 (AnyCallerIs, AnyCallerMatches): Reformat help text.
2246 * python/lib/gdb/function/as_string.py (_AsString): Reformat help
2247 text.
2248 * python/lib/gdb/command/xmethods.py (InfoXMethod)
2249 (EnableXMethod, DisableXMethod): Remove help indentation.
2250 Capitalize meta-syntactic variables.
2251 * python/lib/gdb/command/unwinders.py (InfoUnwinder)
2252 (EnableUnwinder, DisableUnwinder): Remove help indentation.
2253 Capitalize meta-syntactic variables.
2254 * python/lib/gdb/command/explore.py (ExploreCommand)
2255 (ExploreValueCommand, ExploreTypeCommand): Reformat help text.
2256 * python/lib/gdb/command/type_printers.py (InfoTypePrinter)
2257 (EnableTypePrinter, DisableTypePrinter): Remove help indentation.
2258 * python/lib/gdb/command/pretty_printers.py (InfoPrettyPrinter):
2259 Remove help indentation.
2260 (EnablePrettyPrinter, DisablePrettyPrinter): Likewise.
2261 * python/lib/gdb/command/frame_filters.py (EnableFrameFilter)
2262 (DisableFrameFilter, SetFrameFilterPriority)
2263 (ShowFrameFilterPriority, InfoFrameFilter): Reword help text.
2264
2265 2018-10-06 Tom Tromey <tom@tromey.com>
2266
2267 PR tui/28819:
2268 * tui/tui-io.c (gdb_wgetch): New function.
2269 (tui_mld_getc, tui_getc): Use it.
2270
2271 2018-10-05 Tom Tromey <tom@tromey.com>
2272
2273 * sol-thread.c (sol_thread_target::wait): Rename inner
2274 "save_ptid".
2275
2276 2018-10-04 Tom Tromey <tom@tromey.com>
2277
2278 * configure: Rebuild.
2279 * warning.m4 (AM_GDB_WARNINGS): Add -Wshadow=local.
2280
2281 2018-10-04 Tom Tromey <tom@tromey.com>
2282
2283 * guile/scm-frame.c (gdbscm_frame_read_var): Remove inner
2284 declaration of "block".
2285
2286 2018-10-04 Tom Tromey <tom@tromey.com>
2287
2288 * common/filestuff.c (fdwalk): Remove inner declaration of
2289 "result".
2290
2291 2018-10-04 Tom Tromey <tom@tromey.com>
2292
2293 * msp430-tdep.c (msp430_push_dummy_call): Rename inner
2294 "structs_addr" and hoist declaration.
2295
2296 2018-10-04 Tom Tromey <tom@tromey.com>
2297
2298 * linux-tdep.c (linux_make_mappings_corefile_notes): Introduce new
2299 variable "size".
2300
2301 2018-10-04 Tom Tromey <tom@tromey.com>
2302
2303 * mdebugread.c (parse_partial_symbols): Use std::string.
2304
2305 2018-10-04 Tom Tromey <tom@tromey.com>
2306
2307 * ctf.c (SET_ARRAY_FIELD): Rename "u32".
2308 * p-valprint.c (pascal_val_print): Split inner "i" variable.
2309 * xtensa-tdep.c (xtensa_push_dummy_call): Declare "i" in loop
2310 header.
2311 * xstormy16-tdep.c (xstormy16_push_dummy_call): Declare "val" in
2312 more inner scope.
2313 * xcoffread.c (read_xcoff_symtab): Rename inner "symbol".
2314 * varobj.c (varobj_update): Rename inner "newobj",
2315 "type_changed".
2316 * valprint.c (generic_emit_char): Rename inner "buf".
2317 * valops.c (find_overload_match): Rename inner "temp".
2318 (value_struct_elt_for_reference): Declare "v" in more inner
2319 scope.
2320 * v850-tdep.c (v850_push_dummy_call): Rename "len".
2321 * unittests/array-view-selftests.c (run_tests): Rename inner
2322 "vec".
2323 * tui/tui-stack.c (tui_show_frame_info): Declare "i" in loop
2324 header.
2325 * tracepoint.c (merge_uploaded_trace_state_variables): Declare
2326 "tsv" in more inner scope.
2327 (print_one_static_tracepoint_marker): Rename inner
2328 "tuple_emitter".
2329 * tic6x-tdep.c (tic6x_analyze_prologue): Declare "inst" lower.
2330 (tic6x_push_dummy_call): Don't redeclare "addr".
2331 * target-float.c: Declare "dto" lower.
2332 * symtab.c (lookup_local_symbol): Rename inner "sym".
2333 (find_pc_sect_line): Rename inner "pc".
2334 * stack.c (print_frame): Don't redeclare "gdbarch".
2335 (return_command): Rename inner "gdbarch".
2336 * s390-tdep.c (s390_prologue_frame_unwind_cache): Renam inner
2337 "sp".
2338 * rust-lang.c (rust_internal_print_type): Declare "i" in loop
2339 header.
2340 * rs6000-tdep.c (ppc_process_record): Rename inner "addr".
2341 * riscv-tdep.c (riscv_push_dummy_call): Declare "info" in inner
2342 scope.
2343 * remote.c (remote_target::update_thread_list): Don't redeclare
2344 "tp".
2345 (remote_target::process_initial_stop_replies): Rename inner
2346 "thread".
2347 (remote_target::remote_parse_stop_reply): Don't redeclare "p".
2348 (remote_target::wait_as): Don't redeclare "stop_reply".
2349 (remote_target::get_thread_local_address): Rename inner
2350 "result".
2351 (remote_target::get_tib_address): Likewise.
2352
2353 * regcache.c (cooked_read_test): Rename "regnum".
2354 * record-btrace.c (cmd_record_btrace_start): Rename inner
2355 "exception".
2356 * ppc-sysv-tdep.c (ppc64_sysv_abi_return_value): Declare "i" in
2357 loop header.
2358 * ppc-linux-tdep.c (ppc_linux_syscall_record): Declare "i" in loop
2359 header.
2360 (ppu2spu_sniffer): Rename inner "buf".
2361 * parse.c (operator_check_standard): Rename inner "type",
2362 "objfile".
2363 * p-valprint.c (pascal_val_print): Introduce new scope for
2364 "low_bound", "high_bound".
2365 * p-exp.y (yylex): Declare "i" in loop header.
2366 * objfiles.c (objfile_relocate1): Declare "i" in loop header.
2367 Lower declaration of "s".
2368 * nios2-tdep.c (nios2_analyze_prologue): Declare "i" in loop
2369 header.
2370 (nios2_push_dummy_call): Rename "len".
2371 * nat/linux-osdata.c (linux_xfer_osdata_cpus): Rename static
2372 "buf".
2373 (linux_xfer_osdata_fds, linux_xfer_osdata_shm)
2374 (linux_xfer_osdata_sem, linux_xfer_osdata_msg)
2375 (linux_xfer_osdata_modules): Likewise.
2376 * mips-tdep.c (mips_eabi_push_dummy_call): Rename outer "len".
2377 (mips_n32n64_push_dummy_call, mips_o32_push_dummy_call)
2378 (mips_o64_push_dummy_call): Likewise.
2379 * microblaze-tdep.c (microblaze_analyze_prologue): Rename inner
2380 "op".
2381 * mi/mi-main.c (list_available_thread_groups): Rename inner
2382 "tuple_emitter".
2383 (mi_cmd_data_read_memory): Rename inner "opts".
2384 * mi/mi-cmd-var.c (varobj_update_one): Rename inner
2385 "tuple_emitter".
2386 * mep-tdep.c (mep_analyze_prologue): Declare "rn" in loop header.
2387 * mdebugread.c (parse_symbol): Rename inner "b". Declare "f" in
2388 more inner scope.
2389 (parse_partial_symbols): Rename inner "pst", "p", "name"
2390 * main.c (captured_main_1): Rename inner "i"s.
2391 * machoread.c (macho_symfile_read_all_oso): Don't redeclare
2392 "oso2".
2393 * linux-tdep.c (linux_info_proc): Rename inner "filename".
2394 * linespec.c (linespec_lexer_lex_string): Rename inner "p".
2395 * infrun.c (handle_no_resumed): Don't redeclare "thread".
2396 (handle_signal_stop): Rename inner "gdbarch".
2397 (handle_command): Declare "signum" in loop header.
2398 * ia64-tdep.c (ia64_pseudo_register_read): Don't redeclare
2399 "status".
2400 (examine_prologue): Rename inner "sol" and "sof".
2401 (ia64_extract_return_value): Rename inner "val". Declare another
2402 "val" in a more inner scope.
2403 * hppa-bsd-tdep.c (hppabsd_find_global_pointer): Declare "buf" in
2404 inner scope.
2405 * guile/scm-symbol.c (gdbscm_lookup_symbol): Rename inner
2406 "except".
2407 * findvar.c (default_read_var_value): Don't redeclare "addr".
2408 * f-exp.y (yylex): Declare "i" in loop header.
2409 * eval.c (evaluate_subexp_standard): Don't redeclare "type".
2410 Rename inner "type", "expect_type".
2411 (evaluate_subexp_for_sizeof): Rename inner "pc".
2412 * elfread.c (elf_symfile_read): Rename inner "abfd".
2413 * dwarf2read.c (read_debug_names_from_section): Don't redeclare
2414 "bytes_read".
2415 (process_psymtab_comp_unit_reader): Don't redeclare "gdbarch".
2416 (add_partial_subprogram): Rename inner "lowpc" and "highpc".
2417 (dwarf_decode_line_header): Rename inner "lh".
2418 * dwarf2loc.c (dwarf2_compile_expr_to_ax): Don't redeclare
2419 "offset". Declare "i" in loop header.
2420 (disassemble_dwarf_expression): Rename inner "addr_size".
2421 * dwarf2expr.c (dwarf_expr_context::execute_stack_op): Rename
2422 inner "result".
2423 (dwarf_expr_context::execute_stack_op): Rename inner "offset".
2424 * dwarf2-frame.c (decode_frame_entry_1): Rename inner "length"s.
2425 * disasm.c (do_mixed_source_and_assembly_deprecated): Rename inner
2426 "inner_list_emitter".
2427 (do_mixed_source_and_assembly): Rename inner "tuple_emitter".
2428 * disasm-selftests.c (print_one_insn_test): Wrap "bplen"
2429 declaration in a block.
2430 * csky-tdep.c (csky_analyze_prologue): Declare "offset" lower.
2431 * cp-valprint.c (cp_print_value_fields): Don't redeclare
2432 "obstack_final_size".
2433 * cp-support.c (inspect_type): Declare "i" in loop header.
2434 * compile/compile.c (compile_instance::insert_symbol_error):
2435 Rename inner "e".
2436 * common/agent.c (agent_run_command): Remove inner "ret"
2437 declaration.
2438 * coffread.c (coff_symfile_read): Rename inner "name".
2439 (coff_symfile_read): Rename inner "abfd".
2440 * cli/cli-utils.c (get_number_trailer): Rename inner "val".
2441 * cli/cli-cmds.c (print_disassembly): Rename inner "low" and
2442 "high".
2443 * c-exp.y (lex_one_token): Move "len" declaration lower.
2444 * breakpoint.c (create_longjmp_master_breakpoint): Don't redeclare
2445 "gdbarch".
2446 (create_exception_master_breakpoint): Likewise. Don't redeclare
2447 "b".
2448 (watch_command_1): Declare "mark" later.
2449 (clear_command): Don't shadow "a" or "b".
2450 (delete_command): Rename inner "b".
2451 (delete_trace_command): Likewise.
2452 * arm-tdep.c (thumb_process_displaced_32bit_insn): Rename inner
2453 "op".
2454 (arm_gdbarch_init): Remove inner "e_flags".
2455 * arch/arm-get-next-pcs.c (thumb_get_next_pcs_raw): Declare
2456 "offset" in inner blocks.
2457
2458 2018-10-04 Simon Marchi <simon.marchi@ericsson.com>
2459
2460 * dwarf-index-write.c (file_write): Don't write if the vector is
2461 empty.
2462
2463 2018-10-05 Tom de Vries <tdevries@suse.de>
2464
2465 * python/py-progspace.c (pspy_solib_name): Fix type mismatch in
2466 PyArg_ParseTuple call.
2467
2468 2018-10-05 Tom de Vries <tdevries@suse.de>
2469
2470 * python/py-record-btrace.c (recpy_bt_goto): Fix type mismatch in
2471 PyArg_ParseTuple call.
2472
2473 2018-10-04 Joel Brobecker <brobecker@adacore.com>
2474
2475 * psymtab.c (recursively_search_psymtabs): Reformat parameters
2476 to avoid exceeding 80 characters per line limit.
2477
2478 2018-10-04 Tom Tromey <tom@tromey.com>
2479
2480 * symfile.c (syms_from_objfile_1, finish_new_objfile)
2481 (reread_symbols): Update.
2482 * complaints.h (clear_complaints): Remove argument.
2483 * complaints.c (enum complaint_series): Remove.
2484 (series): Remove global.
2485 (complaint_internal): Update.
2486 (clear_complaints): Remove argument.
2487
2488 2018-10-04 Tom Tromey <tom@tromey.com>
2489
2490 * symfile.c (symbol_file_add_with_addrs): Do not print "no
2491 debugging symbols" message if there is a separate debug objfile.
2492
2493 2018-10-04 Tom Tromey <tom@tromey.com>
2494
2495 PR cli/19551:
2496 * symfile.c (symbol_file_add_with_addrs): Update output.
2497 * psymtab.c (require_partial_symbols): Update output.
2498
2499 2018-10-04 Tom Tromey <tom@tromey.com>
2500
2501 PR cli/22234:
2502 * complaints.c: Emit \n.
2503
2504 2018-10-04 Tom Tromey <tom@tromey.com>
2505
2506 * symfile.c (symbol_file_add_with_addrs, symbol_file_clear)
2507 (separate_debug_file_exists, find_separate_debug_file)
2508 (add_symbol_file_command, reread_symbols, allocate_symtab)
2509 (allocate_compunit_symtab): Use filtered printing, not
2510 unfiltered.
2511 * psymtab.c (require_partial_symbols, dump_psymtab)
2512 (allocate_psymtab): Use filtered printing, not unfiltered.
2513
2514 2018-10-04 Tom Tromey <tom@tromey.com>
2515
2516 * complaints.c (complaint_internal): Correctly check complaint
2517 count.
2518
2519 2018-10-04 Tom Tromey <tom@tromey.com>
2520
2521 * complaints.h (struct complaints): Remove declaration.
2522 * complaints.c (clear_complaints): Remove an unused variable.
2523
2524 2018-10-04 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2525
2526 * MAINTAINERS (Write After Approval): Add self.
2527
2528 2018-10-03 Tom Tromey <tom@tromey.com>
2529
2530 * guile/scm-value.c (gdbscm_value_to_string): Initialize
2531 "buffer_contents".
2532 * coffread.c (coff_symtab_read): Initialize "newobj".
2533
2534 2018-10-03 Simon Marchi <simon.marchi@polymtl.ca>
2535
2536 * dwarf2read.c (read_func_scope): Remove struct keyword in
2537 range-based for.
2538
2539 2018-10-03 Tom Tromey <tom@tromey.com>
2540
2541 * README: Mention --enable-ubsan.
2542 * NEWS: Mention --enable-ubsan.
2543 * acinclude.m4: Include sanitize.m4.
2544 * configure: Rebuild.
2545 * configure.ac: Call AM_GDB_UBSAN.
2546 * sanitize.m4: New file.
2547
2548 2018-10-03 Tom Tromey <tom@tromey.com>
2549
2550 * expression.h (enum exp_opcode): Use uint8_t as base type.
2551 * expprint.c (op_name): Handle invalid opcodes.
2552
2553 2018-10-03 Tom Tromey <tom@tromey.com>
2554
2555 * parse.c (prefixify_expression): Add assert.
2556 (parse_exp_in_context_1): Throw exception if the expression is
2557 empty.
2558
2559 2018-10-03 Tom Tromey <tom@tromey.com>
2560
2561 * dwarf2read.c (read_signed_leb128): Work in ULONGEST.
2562
2563 2018-10-03 Tom Tromey <tom@tromey.com>
2564
2565 * c-exp.y (parse_number): Work in unsigned. Remove casts.
2566
2567 2018-10-03 Tom Tromey <tom@tromey.com>
2568
2569 * dwarf2read.c (read_subrange_type): Make "negative_mask"
2570 unsigned.
2571
2572 2018-10-03 Tom Tromey <tom@tromey.com>
2573
2574 * findvar.c (extract_integer): Do work in an unsigned type.
2575
2576 2018-10-03 Tom Tromey <tom@tromey.com>
2577
2578 * common/enum-flags.h (enum_flags::operator~): Add static assert.
2579 * symfile-add-flags.h (enum symfile_add_flag): Use unsigned as
2580 base type.
2581 * objfile-flags.h (enum objfile_flag): Use unsigned as base type.
2582 * gdbtypes.h (enum type_instance_flag_value): Use unsigned as base
2583 type.
2584 * c-lang.h (enum c_string_type_values): Use unsigned as base
2585 type.
2586 * btrace.h (enum btrace_thread_flag): Use unsigned as base type.
2587
2588 2018-10-03 Tom Tromey <tom@tromey.com>
2589
2590 * dwarf2-frame.h (dwarf2_frame_state_reg_info)
2591 <~dwarf2_frame_state_reg_info>: Update.
2592 <dwarf2_frame_state_reg_info>: Update.
2593 <alloc_regs>: Add assertion. Update.
2594 <reg>: Now a std::vector.
2595 <num_regs>: Remove.
2596 <swap>: Update.
2597 * dwarf2-frame.c (dwarf2_restore_rule, execute_cfa_program)
2598 (execute_cfa_program_test, dwarf2_frame_cache): Update.
2599
2600 2018-10-03 Tom Tromey <tom@tromey.com>
2601
2602 * namespace.c (add_using_directive): Don't pass NULL to memcpy.
2603
2604 2018-10-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
2605
2606 * tid-parse.c (tid_is_in_list): Fix wrong 'See' comment.
2607
2608 2018-10-02 Tom Tromey <tom@tromey.com>
2609
2610 * aarch64-linux-tdep.c (aarch64_linux_sigframe_init): Use pulongest.
2611
2612 2018-10-02 John Darrington <john@darrington.wattle.id.au>
2613
2614 * NEWS: Mention changed commands.
2615 * ser-uds.c: New file.
2616 * configure.ac (SER_HARDWIRE): Add ser-uds.o.
2617 * configure: Regenerate.
2618 * Makefile.in: Add new file.
2619 * serial.c (serial_open): Check if filename is a socket
2620 and lookup the appropriate interface accordingly.
2621
2622 2018-10-01 Alan Hayward <alan.hayward@arm.com>
2623
2624 * aarch64-linux-tdep.c (AARCH64_SIGCONTEXT_RESERVED_OFFSET): Add
2625 define.
2626 (AARCH64_EXTRA_MAGIC): Likewise.
2627 (AARCH64_FPSIMD_MAGIC): Likewise.
2628 (AARCH64_SVE_MAGIC): Likewise.
2629 (AARCH64_EXTRA_DATAP_OFFSET): Likewise.
2630 (AARCH64_FPSIMD_FPSR_OFFSET): Likewise.
2631 (AARCH64_FPSIMD_FPCR_OFFSET): Likewise.
2632 (AARCH64_FPSIMD_V0_OFFSET): Likewise.
2633 (AARCH64_FPSIMD_VREG_SIZE): Likewise.
2634 (AARCH64_SVE_CONTEXT_VL_OFFSET): Likewise.
2635 (AARCH64_SVE_CONTEXT_REGS_OFFSET): Likewise.
2636 (AARCH64_SVE_CONTEXT_P_REGS_OFFSET): Likewise.
2637 (AARCH64_SVE_CONTEXT_FFR_OFFSET): Likewise.
2638 (AARCH64_SVE_CONTEXT_SIZE): Likewise.
2639 (read_aarch64_ctx): Add function.
2640 (aarch64_linux_sigframe_init): Detect FP registers.
2641
2642 2018-10-01 Alan Hayward <alan.hayward@arm.com>
2643
2644 * aarch64-tdep.c (AARCH64_Q0_REGNUM): Move to here.
2645 (AARCH64_D0_REGNUM): Likewise.
2646 (AARCH64_S0_REGNUM): Likewise.
2647 (AARCH64_H0_REGNUM): Likewise.
2648 (AARCH64_B0_REGNUM): Likewise.
2649 (AARCH64_SVE_V0_REGNUM): Likewise.
2650 * arch/aarch64.h (AARCH64_Q0_REGNUM): Move from here.
2651 (AARCH64_D0_REGNUM): Likewise.
2652 (AARCH64_S0_REGNUM): Likewise.
2653 (AARCH64_H0_REGNUM): Likewise.
2654 (AARCH64_B0_REGNUM): Likewise.
2655 (AARCH64_SVE_V0_REGNUM): Likewise.
2656
2657 2018-10-01 Gary Benson <gbenson@redhat.com>
2658
2659 * gdb_proc_service.h (gdb_prfpregset_t): Remove typedef.
2660 * proc-service.c (ps_lgetfpregs, ps_lsetfpregs): Use
2661 prfpregset_t instead of gdb_prfpregset_t.
2662 * configure.ac (PRFPREGSET_T_BROKEN): Remove check.
2663 * configure, config.in: Rebuild.
2664
2665 2018-10-01 Gary Benson <gbenson@redhat.com>
2666
2667 * common/gdb_proc_service.h: New file, factored out from...
2668 * gdb_proc_service.h: Moved common code to the above file.
2669 * Makefile.in (HFILES_NO_SRCDIR): Add the above new file.
2670
2671 2018-10-01 Gary Benson <gbenson@redhat.com>
2672
2673 * gdb_proc_service.h: Use elf_gregset_t if prgregset_t is
2674 undefined. Use elf_fpregset_t if prfpregset_t is undefined.
2675
2676 2018-10-01 Gary Benson <gbenson@redhat.com>
2677
2678 * configure.ac: Check if sys/procfs.h defines elf_fpregset_t.
2679 (AC_CHECK_HEADERS): Check for linux/elf.h.
2680 * configure, config.in: Rebuild.
2681 * gdb_proc_service.h: Include linux/elf.h if sys/procfs.h
2682 doesn't define elf_fpregset_t.
2683
2684 2018-10-01 Gary Benson <gbenson@redhat.com>
2685
2686 * gdb_proc_service.h: Whitespace change.
2687
2688 2018-10-01 Tom Tromey <tom@tromey.com>
2689
2690 * unittests/scoped_mmap-selftests.c: Don't check HAVE_UNISTD_H.
2691 * unittests/scoped_fd-selftests.c: Don't check HAVE_UNISTD_H.
2692 * common/scoped_fd.h: Don't check HAVE_UNISTD_H.
2693
2694 2018-10-01 Tom Tromey <tom@tromey.com>
2695
2696 * README: Minor change.
2697
2698 2018-09-30 Pedro Alves <palves@redhat.com>
2699
2700 * darwin-nat-info.c (darwin_debug_regions_recurse)
2701 (info_mach_exceptions_command): Remove unused local variables.
2702 * darwin-nat.c (darwin_decode_notify_message)
2703 (darwin_nat_target::resume, darwin_nat_target::mourn_inferior)
2704 (darwin_stop_inferior, darwin_setup_exceptions)
2705 (darwin_nat_target::kill, darwin_attach_pid, darwin_ptrace_him)
2706 (darwin_nat_target::attach, darwin_nat_target::detach)
2707 (darwin_read_write_inferior, darwin_read_dyld_info): Remove unused
2708 local variables.
2709 * i386-darwin-nat.c (i386_darwin_dr_set): Remove unused local
2710 variables.
2711
2712 2018-09-29 Tom Tromey <tom@tromey.com>
2713
2714 * README: Remove some leftover text.
2715
2716 2018-09-29 Tom Tromey <tom@tromey.com>
2717
2718 * PROBLEMS: Rewrite.
2719 * README: Update.
2720
2721 2018-09-28 John Baldwin <jhb@FreeBSD.org>
2722
2723 * disasm-selftests.c (print_one_insn_test): Add bfd_arch_riscv to
2724 case with explicit breakpoint kind.
2725 * riscv-tdep.c (show_use_compressed_breakpoints): Remove
2726 'additional_info' and related logic.
2727 (riscv_debug_breakpoints): New variable.
2728 (riscv_breakpoint_kind_from_pc): Use the length of the existing
2729 instruction to determine the breakpoint kind.
2730 (_initialize_riscv_tdep): Add 'set/show debug riscv breakpoints'
2731 flag. Update description of 'set/show riscv
2732 use-compressed-breakpoints' flag.
2733
2734 2018-09-28 Andrew Burgess <andrew.burgess@embecosm.com>
2735
2736 (NEWS): Mention changes to frame related commands.
2737 * cli/cli-decode.c (add_cmd_suppress_notification): New function.
2738 (add_prefix_cmd_suppress_notification): New function.
2739 (add_com_suppress_notification): Call
2740 add_cmd_suppress_notification.
2741 * command.h (add_cmd_suppress_notification): Declare.
2742 (add_prefix_cmd_suppress_notification): Declare.
2743 * mi/mi-cmd-stack.c: Add 'safe-ctype.h' include.
2744 (parse_frame_specification): Moved from stack.c, with
2745 simplification to handle a single argument.
2746 (mi_cmd_stack_select_frame): Use parse_frame_specification, the
2747 switch to the selected frame. Add a header comment.
2748 * stack.c: Remove 'safe-ctype.h' include.
2749 (find_frame_for_function): Add declaration.
2750 (find_frame_for_address): New function.
2751 (parse_frame_specification): Moved into mi/mi-cmd-stack.c.
2752 (frame_selection_by_function_completer): New function.
2753 (info_frame_command): Rename to...
2754 (info_frame_command_core): ...this, and update parameter types.
2755 (select_frame_command): Rename to...
2756 (select_frame_command_core): ...this, and update parameter types.
2757 (frame_command): Rename to...
2758 (frame_command_core): ...this, and update parameter types.
2759 (class frame_command_helper): New class to wrap implementations of
2760 frame related sub-commands.
2761 (frame_apply_cmd_list): New static global.
2762 (frame_cmd_list): Make static.
2763 (select_frame_cmd_list): New global for sub-commands.
2764 (info_frame_cmd_list): New global for sub-commands.
2765 (_initialize_stack): Register sub-commands for 'frame',
2766 'select-frame', and 'info frame'. Update 'frame apply' commands
2767 to use frame_apply_cmd_list. Move function local static
2768 frame_apply_list to file static frame_apply_cmd_list for
2769 consistency.
2770 * stack.h (select_frame_command): Delete declarationn.
2771 (select_frame_for_mi): Declare new function.
2772
2773 2018-09-26 Andrew Burgess <andrew.burgess@embecosm.com>
2774
2775 * riscv-tdep.c (riscv_insn::decode): Decode c.lui.
2776 (riscv_scan_prologue): Split handling of AUIPC, LUI, ADD, ADDI,
2777 and NOP.
2778
2779 2018-09-26 Simon Marchi <simon.marchi@ericsson.com>
2780
2781 * elf32-nds32.c (elf32_nds32_allocate_dynrelocs): Remove.
2782
2783 2018-09-26 Tom Tromey <tom@tromey.com>
2784
2785 * valops.c (auto_abandon): Remove dead code.
2786
2787 2018-09-26 Tom Tromey <tom@tromey.com>
2788
2789 * tui/tui-win.c (WIN_HEIGHT_USAGE): Remove extra ">"s.
2790
2791 2018-09-24 Tom Tromey <tom@tromey.com>
2792
2793 * common/pathstuff.c (get_standard_cache_dir): Make
2794 "xdg_cache_home" and "home" const.
2795 * top.c (init_history): Make "tmpenv" const.
2796 * main.c (get_init_files): Make "homedir" const.
2797
2798 2018-09-23 Tom Tromey <tom@tromey.com>
2799
2800 PR python/18852:
2801 * python/py-param.c (get_set_value): Use gdbpy_handle_exception.
2802
2803 2018-09-23 Tom Tromey <tom@tromey.com>
2804
2805 * python/py-function.c (fnpy_call): Use gdbpy_handle_exception.
2806 * python/py-cmd.c (cmdpy_function): Use gdbpy_handle_exception.
2807 * python/python-internal.h (gdbpy_handle_exception): Declare.
2808 * python/py-utils.c (gdbpy_handle_exception): New function.
2809
2810 2018-09-23 Tom Tromey <tom@tromey.com>
2811
2812 PR python/17284:
2813 * python/py-type.c (typy_template_argument): Check for negative
2814 argument number.
2815
2816 2018-09-23 Tom Tromey <tom@tromey.com>
2817
2818 PR python/14062:
2819 * python/python.c (gdbpy_run_events): Do not ignore exceptions.
2820
2821 2018-09-23 Tom Tromey <tom@tromey.com>
2822
2823 PR python/18170:
2824 * python/py-value.c (valpy_int): Allow conversion from pointer
2825 type.
2826
2827 2018-09-23 Tom Tromey <tom@tromey.com>
2828
2829 PR python/20126:
2830 * python/py-value.c (valpy_int): Respect type sign.
2831
2832 2018-09-23 Tom Tromey <tom@tromey.com>
2833
2834 PR python/18352;
2835 * python/py-value.c (valpy_float): Allow conversions from int or
2836 char.
2837 (valpy_int, valpy_long): Allow conversions from float.
2838
2839 2018-09-23 Tom Tromey <tom@tromey.com>
2840
2841 * ctf.c (ctf_start): Use gdb_fopen_cloexec.
2842 * common/scoped_mmap.c (mmap_file): Use gdb_open_cloexec.
2843
2844 2018-09-23 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2845
2846 * amd64-sol2-tdep.c (amd64_sol2_sigtramp_p): Also recognize
2847 __sighndlr.
2848 * i386-sol2-tdep.c (i386_sol2_sigtramp_p): Likewise.
2849
2850 2018-08-02 Jon Turney <jon.turney@dronecode.org.uk>
2851
2852 * windows-nat.c (windows_nat_target::wait): Remove a spurious
2853 target_terminal::ours().
2854
2855 2018-09-23 Simon Marchi <simon.marchi@ericsson.com>
2856
2857 * aarch64-linux-tdep.c (aarch64_linux_supply_sve_regset): Change type
2858 of vl to ULONGEST.
2859
2860 2018-09-21 Yacov Simhony <ysimhony@gmail.com>
2861
2862 * breakpoint.c (update_inserted_breakpoint_locations): Remove
2863 redundant condition.
2864
2865 2018-09-20 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2866
2867 * proc-utils.h (PROC_CTL_WORD_TYPE): Remove.
2868
2869 * procfs.c: Don't check for PR_MODEL_NATIVE definition.
2870 * sparc-sol2-nat.c: Likewise. Remove Linux, __arch64__ references.
2871 * sol-thread.c (ps_pdmodel): Don't guard definition.
2872
2873 * procfs.c: Fix formatting.
2874
2875 * procfs.c (sysset_t_alloc): Remove.
2876 (create_procinfo): Use XNEW instead of sysset_t_alloc.
2877 (procfs_debug_inferior): Likewise.
2878 (procfs_set_exec_trap): Likewise.
2879 (proc_set_traced_sysentry): Don't allocate argp dynamically.
2880 (proc_set_traced_sysexit): Likewise.
2881
2882 * procfs.c (create_procinfo): Use xsnprintf to fix ARI warning.
2883 (dead_procinfo): Likewise.
2884 (proc_warn): Likewise.
2885 (proc_error): Likewise.
2886 (proc_get_LDT_entry): Likewise.
2887 (do_attach): Likewise.
2888 (procfs_target::pid_to_str): Likewise.
2889 (iterate_over_mappings): Likewise.
2890
2891 * procfs.c (create_procinfo): Fix ARI warning.
2892 (proc_get_status): Likewise.
2893 (proc_stop_process): Likewise.
2894 (proc_run_process): Likewise.
2895 (proc_kill): Likewise.
2896 (proc_get_LDT_entry): Likewise.
2897 (procfs_find_LDT_entry): Likewise.
2898 (proc_update_threads): Likewise.
2899 (proc_iterate_over_threads): Likewise.
2900 (do_attach): Likewise.
2901 (procfs_xfer_memory): Likewise.
2902 (invalidate_cache): Likewise.
2903 (procfs_target::resume): Likewise.
2904 (procfs_init_inferior): Likewise.
2905 (procfs_set_exec_trap): Likewise.
2906 (procfs_target::thread_alive): Likewise.
2907 (procfs_target::pid_to_exec_file): Likewise.
2908 (iterate_over_mappings): Likewise.
2909 (procfs_target::make_corefile_notes): Likewise.
2910 * sol-thread.c (sol_thread_target::thread_alive): Likewise.
2911
2912 * procfs.c (procfs_find_LDT_entry): Silence ARI warning.
2913 (procfs_find_LDT_entry): Likewise.
2914 * sol-thread.c (ps_lgetLDT): Likewise.
2915
2916 2018-09-20 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2917
2918 PR tdep/17903
2919 * procfs.c (procfs_target): Declare pid_to_exec_file.
2920 (procfs_target::pid_to_exec_file): New.
2921
2922 2018-09-20 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2923
2924 * auxv.c (default_print_auxv_entry): Reflect AT_SUN_CAP_HW1
2925 renaming.
2926 Handle AT_SUN_EMULATOR, AT_SUN_BRANDNAME, AT_SUN_BRAND_AUX1,
2927 AT_SUN_BRAND_AUX2, AT_SUN_BRAND_AUX3, AT_SUN_CAP_HW2.
2928
2929 2018-09-20 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2930
2931 * i386-v4-nat.c (regmap, supply_gregset, fill_gregset)
2932 (supply_fpregset, fill_fpregset): Move ...
2933 * i386-sol2-nat.c [PR_MODEL_NATIVE != PR_MODEL_LP64]: ... here.
2934 Remove HAVE_GREGSET_T, HAVE_FPREGET_T guards.
2935 Remove references to ioctl-based procfs.
2936 Include <sys/reg.h>.
2937 Remove PR_MODEL_NATIVE guards.
2938 * configure.nat <sol2, i386> (NATDEPFILES): Remove i386-v4-nat.o.
2939 * Makefile.in (ALLDEPFILES): Remove i386-v4-nat.c.
2940
2941 2018-09-19 Xavier Roirand <roirand@adacore.com>
2942
2943 PR gdb/20981:
2944 * solib-darwin.c (darwin_get_dyld_bfd): New function.
2945 (darwin_solib_get_all_image_info_addr_at_init): Update call.
2946 (darwin_solib_create_inferior_hook): Handle unrelocated dyld.
2947
2948 2018-09-19 John Baldwin <jhb@FreeBSD.org>
2949
2950 * fbsd-tdep.c (fbsd_print_sockaddr_in): Style fix.
2951 (fbsd_print_sockaddr_in6): Likewise.
2952
2953 2018-09-19 Richard Bunt <richard.bunt@arm.com>
2954 Chris January <chris.january@arm.com>
2955
2956 * eval.c (skip_undetermined_arglist): Skip argument list helper.
2957 (evaluate_subexp_standard): Return a dummy type when
2958 honoring EVAL_SKIP in OP_VAR_VALUE and handle skipping in the
2959 OP_F77_UNDETERMINED_ARGLIST case.
2960 * expression.h (enum noside): Update comment.
2961
2962 2018-09-19 George Vasick <george.vasick@oracle.com>
2963
2964 * solib-svr4.c (svr4_same_1): Also handle amd64 ld.so.1.
2965
2966 2018-09-19 Stefan Teleman <stefan.teleman@oracle.com>
2967 April Chin <april.chin@oracle.com>
2968 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2969
2970 * procfs.c (MAX_PROC_NAME_SIZE): Allow for 6-digit PID_MAX and
2971 uint_t lwpid_t.
2972 (create_procinfo): Print pids in /proc without leading zeros.
2973
2974 2018-09-18 Sandra Loosemore <sandra@codesourcery.com>
2975
2976 * nios2-tdep.c (nios2_gcc_target_options): New.
2977 (nios2_gdb_arch_init): Install new hook.
2978
2979 2018-09-18 Simon Marchi <simon.marchi@ericsson.com>
2980
2981 * patches/0001-Fix-PR-gdb-23558-Use-system-s-getcwd-when-cross-comp.patch:
2982 New file.
2983 * update-gnulib.sh: Apply patch.
2984 * configure: Re-generate.
2985
2986 2018-09-18 John Baldwin <jhb@FreeBSD.org>
2987
2988 * infcmd.c (_initialize_infcmd): Remove "running" from "info proc"
2989 description. Make "info proc" command descriptions more
2990 consistent.
2991
2992 2018-09-18 John Baldwin <jhb@FreeBSD.org>
2993
2994 * NEWS: Mention 'info proc files' command.
2995
2996 2018-09-18 John Baldwin <jhb@FreeBSD.org>
2997
2998 * fbsd-nat.c (fbsd_nat_target::info_proc): List open file
2999 descriptors for IP_FILES and IP_ALL.
3000
3001 2018-09-18 John Baldwin <jhb@FreeBSD.org>
3002
3003 * fbsd-tdep.c (KF_FLAGS, KF_OFFSET, KF_VNODE_TYPE, KF_SOCK_DOMAIN)
3004 (KF_SOCK_TYPE, KF_SOCK_PROTOCOL, KF_SA_LOCAL, KF_SA_PEER)
3005 (KINFO_FILE_TYPE_SOCKET, KINFO_FILE_TYPE_PIPE)
3006 (KINFO_FILE_TYPE_FIFO, KINFO_FILE_TYPE_KQUEUE)
3007 (KINFO_FILE_TYPE_CRYPTO, KINFO_FILE_TYPE_MQUEUE)
3008 (KINFO_FILE_TYPE_SHM, KINFO_FILE_TYPE_SEM, KINFO_FILE_TYPE_PTS)
3009 (KINFO_FILE_TYPE_PROCDESC, KINFO_FILE_FD_TYPE_ROOT)
3010 (KINFO_FILE_FD_TYPE_JAIL, KINFO_FILE_FD_TYPE_TRACE)
3011 (KINFO_FILE_FD_TYPE_CTTY, KINFO_FILE_FLAG_READ)
3012 (KINFO_FILE_FLAG_WRITE, KINFO_FILE_FLAG_APPEND)
3013 (KINFO_FILE_FLAG_ASYNC, KINFO_FILE_FLAG_FSYNC)
3014 (KINFO_FILE_FLAG_NONBLOCK, KINFO_FILE_FLAG_DIRECT)
3015 (KINFO_FILE_FLAG_HASLOCK, KINFO_FILE_FLAG_EXEC)
3016 (KINFO_FILE_VTYPE_VREG, KINFO_FILE_VTYPE_VDIR)
3017 (KINFO_FILE_VTYPE_VCHR, KINFO_FILE_VTYPE_VLNK)
3018 (KINFO_FILE_VTYPE_VSOCK, KINFO_FILE_VTYPE_VFIFO, FBSD_AF_UNIX)
3019 (FBSD_AF_INET, FBSD_AF_INET6, FBSD_SOCK_STREAM, FBSD_SOCK_DGRAM)
3020 (FBSD_SOCK_SEQPACKET, FBSD_IPPROTO_ICMP, FBSD_IPPROTO_TCP)
3021 (FBSD_IPPROTO_UDP, FBSD_IPPROTO_SCTP): New defines.
3022 (struct fbsd_sockaddr_in, struct fbsd_sockaddr_in6)
3023 (struct fbsd_sockaddr_un): New types.
3024 (fbsd_file_fd, fbsd_file_type, fbsd_file_flags, fbsd_ipproto)
3025 (fbsd_print_sockaddr_in, fbsd_print_sockaddr_in6)
3026 (fbsd_info_proc_files_header, fbsd_info_proc_files_entry)
3027 (fbsd_core_info_proc_files): New functions.
3028 (fbsd_core_info_proc): List open file descriptors for IP_FILES and
3029 IP_ALL.
3030 * fbsd-tdep.h (fbsd_info_proc_files_header)
3031 (fbsd_info_proc_files_entry): New.
3032
3033 2018-09-18 John Baldwin <jhb@FreeBSD.org>
3034
3035 * defs.h (enum info_proc_what) [IP_FILES]: New value.
3036 * infcmd.c (info_proc_cmd_files): New function.
3037 (_initialize_infcmd): Register 'info proc files' command.
3038
3039 2018-09-18 John Baldwin <jhb@FreeBSD.org>
3040
3041 * gnulib/aclocal-m4-deps.mk: Re-generate.
3042 * gnulib/aclocal.m4: Re-generate.
3043 * gnulib/config.in: Re-generate.
3044 * gnulib/configure: Re-generate.
3045 * gnulib/import/Makefile.am: Re-generate.
3046 * gnulib/import/Makefile.in: Re-generate.
3047 * gnulib/import/m4/gnulib-cache.m4: Re-generate.
3048 * gnulib/import/m4/gnulib-comp.m4: Re-generate.
3049 * gnulib/import/arpa_inet.in.h: New file.
3050 * gnulib/import/inet_ntop.c: New file.
3051 * gnulib/import/m4/arpa_inet_h.m4: New file.
3052 * gnulib/import/m4/inet_ntop.m4: New file.
3053 * gnulib/import/m4/netinet_in_h.m4: New file.
3054 * gnulib/import/m4/socklen.m4: New file.
3055 * gnulib/import/m4/sockpfaf.m4: New file.
3056 * gnulib/import/m4/stdalign.m4: New file.
3057 * gnulib/import/m4/sys_uio_h.m4: New file.
3058 * gnulib/import/netinet_in.in.h: New file.
3059 * gnulib/import/stdalign.in.h: New file.
3060 * gnulib/import/sys_socket.c: New file.
3061 * gnulib/import/sys_socket.in.h: New file.
3062 * gnulib/import/sys_uio.in.h: New file.
3063 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add inet_ntop
3064 module.
3065
3066 2018-09-18 John Baldwin <jhb@FreeBSD.org>
3067
3068 * gnulib/aclocal-m4-deps.mk: New file.
3069 * gnulib/update-gnulib.sh: Generate "aclocal-m4-deps.mk"
3070 deterministically.
3071
3072 2018-09-18 John Baldwin <jhb@FreeBSD.org>
3073
3074 * fbsd-tdep.c (fbsd_core_vnode_path): Use KF_PATH instead of
3075 KVE_PATH.
3076
3077 2018-09-18 Tom Tromey <tom@tromey.com>
3078
3079 * compile/compile-object-load.c (struct
3080 link_hash_table_cleanup_data): Add constructor and destructor.
3081 Use DISABLE_COPY_AND_ASSIGN.
3082 (~link_hash_table_cleanup_data): Rename from
3083 link_hash_table_free. Now a destructor.
3084 (copy_sections): Use gdb::unique_xmalloc_ptr. Remove cleanups.
3085
3086 2018-09-18 Tom Tromey <tom@tromey.com>
3087
3088 * compile/compile-object-run.c (do_module_cleanup): Use delete.
3089 * compile/compile-object-load.c (struct munmap_list): Move to
3090 header file.
3091 (munmap_list::add): Rename from munmap_list_add; rewrite.
3092 (munmap_list::~munmap_list): Rename from munmap_list_free.
3093 (munmap_listp_free_cleanup): Remove.
3094 (compile_object_load): Update.
3095 * compile/compile-object-load.h (struct munmap_list): Move from
3096 compile-object-load.c. Rewrite.
3097
3098 2018-09-18 Alan Hayward <alan.hayward@arm.com>
3099
3100 * aarch64-tdep.c (pass_in_v): Use register size.
3101 (aarch64_extract_return_value): Likewise.
3102 (aarch64_store_return_value): Likewise.
3103
3104 2018-09-18 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
3105
3106 * utils.c (dump_core) [HAVE_SETRLIMIT]: Cast RLIM_INFINITY to
3107 rlim_t.
3108
3109 2018-09-17 Philippe Waroquiers <philippe.waroquiers@skynet.be>
3110
3111 * python/lib/gdb/command/frame_filters.py (EnableFrameFilter):
3112 Fix short help line.
3113
3114 2018-09-17 Tom Tromey <tom@tromey.com>
3115
3116 PR python/20445:
3117 * configure: Rebuild.
3118 * configure.ac: Conditionally use -DNDEBUG for Python.
3119
3120 2018-09-17 Tom Tromey <tom@tromey.com>
3121
3122 * configure: Rebuild.
3123 * configure.ac: Use gmp as a library dependency when checking for
3124 mpfr.
3125
3126 2018-09-17 Pedro Alves <palves@redhat.com>
3127
3128 * python/py-inferior.c (find_inferior_object): Delete.
3129
3130 2018-09-17 Simon Marchi <simon.marchi@ericsson.com>
3131
3132 * compile/compile-cplus-types.c
3133 (compile_cplus_instance::enter_scope): Don't use new_scope after
3134 std::move.
3135
3136 2018-09-17 Tom Tromey <tom@tromey.com>
3137
3138 * common/pathstuff.c (get_standard_cache_dir): Use
3139 ~/Library/Caches on macOS.
3140 * common/pathstuff.h (get_standard_cache_dir): Update comment.
3141
3142 2018-09-17 Simon Marchi <simon.marchi@polymtl.ca>
3143
3144 PR python/23669
3145 * breakpoint.c (commands_cmd_element): New.
3146 (_initialize_breakpoint): Assign commands_cmd_element.
3147 * breakpoint.h (commands_cmd_element): New.
3148 * cli/cli-script.c (while_cmd_element, if_command,
3149 define_cmd_element): New.
3150 (command_name_equals): Remove.
3151 (process_next_line): Compare commands by pointer, not by name.
3152 (_initialize_cli_script): Assign the various cmd_list_element
3153 variables.
3154 * compile/compile.c (compile_cmd_element): New.
3155 (_initialize_compile): Assign compile_cmd_element.
3156 * compile/compile.h (compile_cmd_element): New.
3157 * guile/guile.c (guile_cmd_element): New.
3158 (install_gdb_commands): Assign guile_cmd_element.
3159 * guile/guile.h (guile_cmd_element): New.
3160 * python/python.c (python_cmd_element): New.
3161 (_initialize_python): Assign python_cmd_element.
3162 * python/python.h (python_cmd_element): New.
3163 * tracepoint.c (while_stepping_cmd_element): New.
3164 (_initialize_tracepoint): Assign while_stepping_cmd_element.
3165 * tracepoint.h (while_stepping_cmd_element): New.
3166
3167 2018-09-17 Tom Tromey <tom@tromey.com>
3168
3169 * infrun.c (save_infcall_suspend_state): Return
3170 infcall_suspend_state_up.
3171 (save_infcall_control_state): Return infcall_control_state_up.
3172 * inferior.h (save_infcall_suspend_state)
3173 (save_infcall_control_state): Declare later. Return unique
3174 pointers.
3175
3176 2018-09-17 Tom Tromey <tom@tromey.com>
3177
3178 * infrun.c (struct stop_context): Declare constructor,
3179 destructor, "changed" method.
3180 (stop_context::stop_context): Rename from save_stop_context.
3181 (stop_context::~stop_context): Rename from
3182 release_stop_context_cleanup.
3183 (normal_stop): Update.
3184 (stop_context::changed): Rename from stop_context_changed. Return
3185 bool.
3186
3187 2018-09-17 Tom Tromey <tom@tromey.com>
3188
3189 * inferior.h (struct infcall_suspend_state_deleter): New.
3190 (infcall_suspend_state_up): New typedef.
3191 (struct infcall_control_state_deleter): New.
3192 (infcall_control_state_up): New typedef.
3193 (make_cleanup_restore_infcall_suspend_state)
3194 (make_cleanup_restore_infcall_control_state): Don't declare.
3195 * infcall.c (call_function_by_hand_dummy): Update.
3196 * infrun.c (do_restore_infcall_suspend_state_cleanup)
3197 (make_cleanup_restore_infcall_suspend_state): Remove.
3198 (do_restore_infcall_control_state_cleanup)
3199 (make_cleanup_restore_infcall_control_state): Remove.
3200
3201 2018-09-17 Tom Tromey <tom@tromey.com>
3202
3203 * gdbthread.h (struct thread_control_state): Add initializer.
3204 (class thread_info) <control>: Remove initializer.
3205 * inferior.h (struct inferior_control_state): Add initializer.
3206 (class inferior) <control>: Remove initializer.
3207 (exit_inferior_1): Update.
3208 * infrun.c (struct infcall_control_state): Add constructors.
3209 (save_infcall_control_state): Use new.
3210 (restore_infcall_control_state, discard_infcall_control_state):
3211 Use delete.
3212
3213 2018-09-17 Tom Tromey <tom@tromey.com>
3214
3215 * infrun.c (struct infcall_suspend_state) <registers>: Now a
3216 unique_ptr.
3217 <siginfo_data>: Now a unique_xmalloc_ptr.
3218 (save_infcall_suspend_state, restore_infcall_suspend_state)
3219 (discard_infcall_suspend_state)
3220 (get_infcall_suspend_state_regcache): Update.
3221
3222 2018-09-17 Tom Tromey <tom@tromey.com>
3223
3224 * gdbthread.h (struct thread_suspend_state): Add initializers.
3225 (class thread_info) <suspend>: Remove initializer.
3226 * infrun.c (struct infcall_suspend_state): Add initializers.
3227 (save_infcall_suspend_state): Use new.
3228 (discard_infcall_suspend_state): Use delete.
3229
3230 2018-09-16 Tom Tromey <tom@tromey.com>
3231
3232 * python/python-internal.h (CPYCHECKER_STEALS_REFERENCE_TO_ARG):
3233 Remove.
3234 * python/py-varobj.c (py_varobj_iter_ctor): Change pyiter to
3235 rvalue reference. Remove CPYCHECKER_STEALS_REFERENCE_TO_ARG.
3236 (py_varobj_iter_new): Likewise.
3237 (py_varobj_get_iterator): Use gdbpy_ref.
3238
3239 2018-09-16 Tom Tromey <tom@tromey.com>
3240
3241 * python/py-threadevent.c (py_get_event_thread): Simplify.
3242 * python/py-inferior.c (infpy_thread_from_thread_handle):
3243 Return immediately after calling thread_to_thread_object. Use
3244 Py_RETURN_NONE.
3245 (thread_to_thread_object): Set the exception on a NULL return.
3246
3247 2018-09-16 Simon Marchi <simon.marchi@polymtl.ca>
3248
3249 * Makefile.in (LIBGDB_OBS): Sort COMMON_OBS.
3250
3251 2018-09-16 Tom Tromey <tom@tromey.com>
3252
3253 * python/python-internal.h (CPYCHECKER_RETURNS_BORROWED_REF):
3254 Remove.
3255
3256 2018-09-16 Tom Tromey <tom@tromey.com>
3257
3258 * python/python-internal.h (thread_to_thread_object): Change
3259 return type.
3260 * python/py-inferior.c (thread_to_thread_object): Return a new
3261 reference.
3262 (infpy_thread_from_thread_handle): Update.
3263 * python/py-infthread.c (gdbpy_selected_thread): Update.
3264 * python/py-stopevent.c (create_stop_event_object): Update.
3265 * python/py-threadevent.c (py_get_event_thread): Return a new
3266 reference.
3267 (py_get_event_thread): Update.
3268 * python/py-event.h (py_get_event_thread): Change return type.
3269 * python/py-continueevent.c (create_continue_event_object):
3270 Update.
3271
3272 2018-09-16 Tom Tromey <tom@tromey.com>
3273
3274 * python/py-progspace.c (pspy_get_objfiles): Update.
3275 * python/python-internal.h (objfile_to_objfile_object): Change
3276 return type.
3277 * python/py-newobjfileevent.c (create_new_objfile_event_object):
3278 Update.
3279 * python/py-xmethods.c (gdbpy_get_matching_xmethod_workers):
3280 Update.
3281 * python/python.c (gdbpy_get_current_objfile): Update.
3282 (gdbpy_objfiles): Update.
3283 * python/py-objfile.c (objfpy_get_owner, gdbpy_lookup_objfile):
3284 Update.
3285 (objfile_to_objfile_object): Return a new reference.
3286 * python/py-symtab.c (stpy_get_objfile): Update.
3287 * python/py-prettyprint.c (find_pretty_printer_from_objfiles):
3288 Update.
3289
3290 2018-09-16 Tom Tromey <tom@tromey.com>
3291
3292 * python/py-inferior.c (infpy_get_progspace): Update.
3293 * python/python-internal.h (pspace_to_pspace_object): Change
3294 return type.
3295 * python/py-newobjfileevent.c
3296 (create_clear_objfiles_event_object): Update.
3297 * python/py-xmethods.c (gdbpy_get_matching_xmethod_workers):
3298 Update.
3299 * python/python.c (gdbpy_get_current_progspace): Update.
3300 (gdbpy_progspaces): Update.
3301 * python/py-progspace.c (pspace_to_pspace_object): Return a new
3302 reference.
3303 * python/py-objfile.c (objfpy_get_progspace): Update.
3304 * python/py-prettyprint.c (find_pretty_printer_from_progspace):
3305 Update.
3306
3307 2018-09-16 Tom Tromey <tom@tromey.com>
3308
3309 * python/lib/gdb/__init__.py (current_progspace, objfiles)
3310 (solib_name, block_for_pc, find_pc_line): New functions.
3311 (execute_unwinders): Update.
3312 * python/py-block.c (gdbpy_block_for_pc): Remove.
3313 * python/py-inferior.c (infpy_get_progspace): New function.
3314 (inferior_object_getset) <progspace>: Add.
3315 * python/py-progspace.c (pspy_objfiles): Rewrite.
3316 (pspy_solib_name, pspy_block_for_pc)
3317 (pspy_find_pc_line, pspy_is_valid): New functions.
3318 (progspace_object_methods): Add entries for solib_name,
3319 block_for_pc, find_pc_line, is_valid.
3320 * python/python-internal.h (gdbpy_block_for_pc)
3321 (build_objfiles_list): Don't declare.
3322 * python/python.c: Don't include solib.h.
3323 (gdbpy_solib_name, gdbpy_find_pc_line)
3324 (gdbpy_get_current_progspace, build_objfiles_list)
3325 (gdbpy_objfiles): Remove.
3326 (GdbMethods) <current_progspace, objfiles, block_for_pc,
3327 solib_name, find_pc_line>: Remove entries.
3328
3329 2018-09-16 Tom Tromey <tom@tromey.com>
3330
3331 * top.c (new_ui_command): Use GNU style for metasyntactic
3332 variables.
3333 * breakpoint.c (stopat_command): Use GNU style for metasyntactic
3334 variables.
3335 * maint.c (maintenance_translate_address): Remove "<>" around
3336 text.
3337 * interps.c (interpreter_exec_cmd): Use GNU style for
3338 metasyntactic variables.
3339 * nto-procfs.c (nto_procfs_target_info): Use GNU style for
3340 metasyntactic variables.
3341 * tracepoint.c (tfind_range_command): Use GNU style for
3342 metasyntactic variables.
3343 (tfind_outside_command): Likewise.
3344 (_initialize_tracepoint): Likewise.
3345 * remote.c (extended_remote_target::create_inferior): Use GNU
3346 style for metasyntactic variables.
3347 * sparc64-tdep.c (adi_examine_command): Use GNU style for
3348 metasyntactic variables.
3349 (adi_assign_command): Likewise.
3350
3351 2018-09-16 Tom Tromey <tom@tromey.com>
3352
3353 * disasm.c (show_disassembler_options_sfunc): Use GNU style for
3354 metasyntactic variables. Print message if no disassembler options
3355 are available.
3356
3357 2018-09-15 Tom Tromey <tom@tromey.com>
3358
3359 * infcmd.c (get_inferior_args): Return const char *.
3360 * inferior.h (get_inferior_args): Return type now const.
3361 * linux-tdep.c (linux_fill_prpsinfo): Update.
3362 * procfs.c (procfs_target::make_corefile_notes): Update.
3363
3364 2018-09-07 Tom Tromey <tom@tromey.com>
3365
3366 * python/python.c (execute_gdb_command): Call bpstat_do_actions
3367 inside the TRY.
3368
3369 2018-09-14 Sandra Loosemore <sandra@codesourcery.com>
3370
3371 * nios2-tdep.c (nios2_type_align): New.
3372 (nios2_gdb_arch_init): Install type_align hook.
3373
3374 2018-09-10 Andrew Burgess <andrew.burgess@embecosm.com>
3375
3376 * eval.c (fake_method::fake_method): Call xzalloc directly for a
3377 type that is neither object file owned, nor gdbarch owned.
3378 * gdbtypes.c (get_type_gdbarch): Add an assert that returned
3379 gdbarch is non-NULL.
3380 (alloc_type_instance): Allocate non-objfile owned types on the
3381 gdbarch obstack.
3382 (copy_type_recursive): Allocate TYPE_FIELDS and TYPE_RANGE_DATA
3383 using TYPE_ALLOC to ensure memory is allocated on the correct
3384 obstack.
3385 * gdbtypes.h (TYPE_ALLOC): Allocate space on either the objfile
3386 obstack, or the gdbarch obstack.
3387 (TYPE_ZALLOC): Rewrite using TYPE_ALLOC.
3388
3389 2018-09-14 Tom Tromey <tom@tromey.com>
3390
3391 * infcall.c (call_function_by_hand_dummy): Remove unnecessary
3392 block.
3393
3394 2018-09-14 Tom Tromey <tom@tromey.com>
3395
3396 * nat/fork-inferior.c (get_startup_shell): Remove "static".
3397
3398 2018-09-13 Tom Tromey <tom@tromey.com>
3399
3400 * python/py-inferior.c (infpy_thread_from_thread_handle): Now
3401 static.
3402
3403 2018-09-13 Tom Tromey <tom@tromey.com>
3404
3405 * exec.c (try_open_exec_file): Use std::string.
3406
3407 2018-09-13 Tom Tromey <tom@tromey.com>
3408
3409 * utils.h (gdb_bfd_errmsg): Return std::string.
3410 * exec.c (exec_file_attach): Update.
3411 * compile/compile-object-load.c (compile_object_load): Update.
3412 * utils.c (gdb_bfd_errmsg): Return std::string.
3413
3414 2018-09-13 Tom Tromey <tom@tromey.com>
3415
3416 * procfs.c (struct procinfo_deleter): New.
3417 (procinfo_up): New typedef.
3418 (do_destroy_procinfo_cleanup): Remove.
3419 (procfs_target::info_proc): Use procinfo_up. Remove cleanups.
3420
3421 2018-09-13 Tom Tromey <tom@tromey.com>
3422
3423 * source.c (add_path): Use gdb::unique_xmalloc_ptr.
3424
3425 2018-09-13 Simon Marchi <simon.marchi@ericsson.com>
3426 2018-09-13 Tom Tromey <tom@tromey.com>
3427
3428 * python/py-progspace.c (PSPY_REQUIRE_VALID): New macro.
3429 (pspy_get_objfiles): New function.
3430 (progspace_object_methods): New.
3431 (pspace_object_type): Add tp_methods callback.
3432 * python/python-internal.h (build_objfiles_list): New
3433 declaration.
3434 * python/python.c (build_objfiles_list): New function.
3435 (gdbpy_objfiles): Implement using build_objfiles_list.
3436 * NEWS: Mention the Progspace.objfiles method.
3437
3438 2018-09-13 Simon Marchi <simon.marchi@ericsson.com>
3439
3440 * python/py-inferior.c (infpy_get_progspace): New function.
3441 (inferior_object_getset): Add progspace property.
3442 * NEWS: Mention the new property.
3443
3444 2018-09-13 Tom Tromey <tom@tromey.com>
3445
3446 PR rust/23650:
3447 * rust-lang.c (rust_evaluate_subexp): Use field name, not "foo".
3448
3449 2018-09-13 Tom Tromey <tom@tromey.com>
3450
3451 PR rust/23626:
3452 * rust-lang.c (rust_enum_variant): Now static.
3453 (rust_empty_enum_p): New function.
3454 (rust_print_enum, rust_evaluate_subexp, rust_print_struct_def):
3455 Handle empty enum.
3456
3457 2018-09-13 Simon Marchi <simon.marchi@ericsson.com>
3458
3459 * python/py-inferior.c (infpy_repr): New.
3460 (inferior_object_type): Register infpy_repr.
3461 * python/py-objfile.c (objfpy_repr): New.
3462 (objfile_object_type): Register objfpy_repr.
3463
3464 2018-09-12 John Baldwin <jhb@FreeBSD.org>
3465
3466 * fbsd-nat.c (fbsd_nat_target::info_proc): Remove unused variable.
3467
3468 2018-09-12 John Baldwin <jhb@FreeBSD.org>
3469
3470 * aarch64-fbsd-tdep.h (AARCH64_FBSD_SIZEOF_GREGSET): Fix comment
3471 typo.
3472
3473 2018-09-12 Sergio Durigan Junior <sergiodj@redhat.com>
3474
3475 * common/common-utils.c: Don't include '<sys/stat.h>'.
3476 (is_regular_file): Move to...
3477 * common/filestuff.c (is_regular_file): ... here.
3478 * common/common-utils.h (is_regular_file): Move to...
3479 * common/filestuff.h (is_regular_file): ... here.
3480
3481 2018-09-12 Simon Marchi <simon.marchi@ericsson.com>
3482
3483 * skip.c (debug_skip): New variable.
3484 (skiplist_entry::do_skip_file_p): Add debug output.
3485 (skiplist_entry::do_skip_gfile_p): Likewise.
3486 (skiplist_entry::skip_function_p): Likewise.
3487 (_initialize_step_skip): Create debug command.
3488 * NEWS: Mention set/show debug skip.
3489
3490 2018-09-11 Xavier Roirand <roirand@adacore.com>
3491
3492 * darwin-nat.c (should_disable_startup_with_shell):
3493 New function.
3494 (darwin_nat_target::create_inferior): Add call.
3495
3496 2018-09-11 Xavier Roirand <roirand@adacore.com>
3497
3498 * darwin-nat.h (struct darwin_thread_info) <gdb_port,
3499 inf_port, msg_state>: Initialize.
3500 (struct darwin_thread_info) <signaled, single_step>: Change
3501 type and initialize.
3502 (struct darwin_thread_info) <event>: Initialize.
3503
3504 2018-09-10 Sergio Durigan Junior <sergiodj@redhat.com>
3505
3506 PR gdb/23555
3507 PR gdb/23558
3508 * gnulib/import/m4/getcwd-path-max.m4: Add cross-compilation
3509 guesses.
3510
3511 2018-09-10 Sergio Durigan Junior <sergiodj@redhat.com>
3512
3513 Revert:
3514 2018-08-29 Sergio Durigan Junior <sergiodj@redhat.com>
3515
3516 PR gdb/23555
3517 PR gdb/23558
3518 * gnulib/aclocal.m4: Regenerate.
3519 * gnulib/config.in: Regenerate.
3520 * gnulib/configure: Regenerate.
3521 * gnulib/import/Makefile.am: Update.
3522 * gnulib/import/Makefile.in: Update.
3523 * gnulib/import/extra/snippet/_Noreturn.h: Rename to...
3524 * gnulib/import/_Noreturn.h: ... this.
3525 * gnulib/import/alloca.in.h: Update.
3526 * gnulib/import/extra/snippet/arg-nonnull.h: Rename to...
3527 * gnulib/import/arg-nonnull.h: ... this.
3528 * gnulib/import/assure.h: Update.
3529 * gnulib/import/at-func.c: Update.
3530 * gnulib/import/basename-lgpl.c: Update.
3531 * gnulib/import/extra/snippet/c++defs.h: Rename to...
3532 * gnulib/import/c++defs.h: ... this.
3533 * gnulib/import/canonicalize-lgpl.c: Update.
3534 * gnulib/import/cdefs.h: Update.
3535 * gnulib/import/chdir-long.c: Update.
3536 * gnulib/import/chdir-long.h: Update.
3537 * gnulib/import/cloexec.c: Update.
3538 * gnulib/import/cloexec.h: Update.
3539 * gnulib/import/close.c: Update.
3540 * gnulib/import/closedir.c: Update.
3541 * gnulib/import/config.charset: Update.
3542 * gnulib/import/dirent-private.h: Update.
3543 * gnulib/import/dirent.in.h: Update.
3544 * gnulib/import/dirfd.c: Update.
3545 * gnulib/import/dirname-lgpl.c: Update.
3546 * gnulib/import/dirname.h: Update.
3547 * gnulib/import/dosname.h: Update.
3548 * gnulib/import/dup-safer-flag.c: Update.
3549 * gnulib/import/dup-safer.c: Update.
3550 * gnulib/import/dup.c: Update.
3551 * gnulib/import/dup2.c: Update.
3552 * gnulib/import/errno.in.h: Update.
3553 * gnulib/import/error.c: Update.
3554 * gnulib/import/error.h: Update.
3555 * gnulib/import/exitfail.c: Update.
3556 * gnulib/import/exitfail.h: Update.
3557 * gnulib/import/extra/update-copyright: Update.
3558 * gnulib/import/fchdir.c: Update.
3559 * gnulib/import/fcntl.c: Update.
3560 * gnulib/import/fcntl.in.h: Update.
3561 * gnulib/import/fd-hook.c: Update.
3562 * gnulib/import/fd-hook.h: Update.
3563 * gnulib/import/fd-safer-flag.c: Update.
3564 * gnulib/import/fd-safer.c: Update.
3565 * gnulib/import/fdopendir.c: Update.
3566 * gnulib/import/filename.h: Update.
3567 * gnulib/import/filenamecat-lgpl.c: Update.
3568 * gnulib/import/filenamecat.h: Update.
3569 * gnulib/import/flexmember.h: Update.
3570 * gnulib/import/float+.h: Update.
3571 * gnulib/import/float.c: Update.
3572 * gnulib/import/float.in.h: Update.
3573 * gnulib/import/fnmatch.c: Update.
3574 * gnulib/import/fnmatch.in.h: Update.
3575 * gnulib/import/fnmatch_loop.c: Update.
3576 * gnulib/import/fpucw.h: Update.
3577 * gnulib/import/frexp.c: Update.
3578 * gnulib/import/frexpl.c: Update.
3579 * gnulib/import/fstat.c: Update.
3580 * gnulib/import/fstatat.c: Update.
3581 * gnulib/import/getcwd-lgpl.c: Update.
3582 * gnulib/import/getcwd.c: Update.
3583 * gnulib/import/getdtablesize.c: Update.
3584 * gnulib/import/getlogin_r.c: Update.
3585 * gnulib/import/getprogname.c: Update.
3586 * gnulib/import/getprogname.h: Update.
3587 * gnulib/import/gettext.h: Update.
3588 * gnulib/import/gettimeofday.c: Update.
3589 * gnulib/import/glob-libc.h: Update.
3590 * gnulib/import/glob.c: Update.
3591 * gnulib/import/glob.in.h: Update.
3592 * gnulib/import/glob_internal.h: Update.
3593 * gnulib/import/glob_pattern_p.c: Update.
3594 * gnulib/import/globfree.c: Update.
3595 * gnulib/import/hard-locale.c: Update.
3596 * gnulib/import/hard-locale.h: Update.
3597 * gnulib/import/intprops.h: Update.
3598 * gnulib/import/inttypes.in.h: Update.
3599 * gnulib/import/isnan.c: Update.
3600 * gnulib/import/isnand-nolibm.h: Update.
3601 * gnulib/import/isnand.c: Update.
3602 * gnulib/import/isnanl-nolibm.h: Update.
3603 * gnulib/import/isnanl.c: Update.
3604 * gnulib/import/itold.c: Update.
3605 * gnulib/import/libc-config.h: Update.
3606 * gnulib/import/limits.in.h: Update.
3607 * gnulib/import/localcharset.c: Update.
3608 * gnulib/import/localcharset.h: Update.
3609 * gnulib/import/localtime-buffer.c: Update.
3610 * gnulib/import/localtime-buffer.h: Update.
3611 * gnulib/import/lstat.c: Update.
3612 * gnulib/import/m4/00gnulib.m4: Update.
3613 * gnulib/import/m4/__inline.m4: Update.
3614 * gnulib/import/m4/absolute-header.m4: Update.
3615 * gnulib/import/m4/alloca.m4: Update.
3616 * gnulib/import/m4/builtin-expect.m4: Update.
3617 * gnulib/import/m4/canonicalize.m4: Update.
3618 * gnulib/import/m4/chdir-long.m4: Update.
3619 * gnulib/import/m4/close.m4: Update.
3620 * gnulib/import/m4/closedir.m4: Update.
3621 * gnulib/import/m4/configmake.m4: Update.
3622 * gnulib/import/m4/d-ino.m4: Update.
3623 * gnulib/import/m4/d-type.m4: Update.
3624 * gnulib/import/m4/dirent_h.m4: Update.
3625 * gnulib/import/m4/dirfd.m4: Update.
3626 * gnulib/import/m4/dirname.m4: Update.
3627 * gnulib/import/m4/double-slash-root.m4: Update.
3628 * gnulib/import/m4/dup.m4: Update.
3629 * gnulib/import/m4/dup2.m4: Update.
3630 * gnulib/import/m4/eealloc.m4: Update.
3631 * gnulib/import/m4/environ.m4: Update.
3632 * gnulib/import/m4/errno_h.m4: Update.
3633 * gnulib/import/m4/error.m4: Update.
3634 * gnulib/import/m4/exponentd.m4: Update.
3635 * gnulib/import/m4/exponentl.m4: Update.
3636 * gnulib/import/m4/extensions.m4: Update.
3637 * gnulib/import/m4/extern-inline.m4: Update.
3638 * gnulib/import/m4/fchdir.m4: Update.
3639 * gnulib/import/m4/fcntl-o.m4: Update.
3640 * gnulib/import/m4/fcntl.m4: Update.
3641 * gnulib/import/m4/fcntl_h.m4: Update.
3642 * gnulib/import/m4/fdopendir.m4: Update.
3643 * gnulib/import/m4/filenamecat.m4: Update.
3644 * gnulib/import/m4/flexmember.m4: Update.
3645 * gnulib/import/m4/float_h.m4: Update.
3646 * gnulib/import/m4/fnmatch.m4: Update.
3647 * gnulib/import/m4/fnmatch_h.m4: Update.
3648 * gnulib/import/m4/fpieee.m4: Update.
3649 * gnulib/import/m4/frexp.m4: Update.
3650 * gnulib/import/m4/frexpl.m4: Update.
3651 * gnulib/import/m4/fstat.m4: Update.
3652 * gnulib/import/m4/fstatat.m4: Update.
3653 * gnulib/import/m4/getcwd-abort-bug.m4: Update.
3654 * gnulib/import/m4/getcwd-path-max.m4: Update.
3655 * gnulib/import/m4/getcwd.m4: Update.
3656 * gnulib/import/m4/getdtablesize.m4: Update.
3657 * gnulib/import/m4/getlogin.m4: Update.
3658 * gnulib/import/m4/getlogin_r.m4: Update.
3659 * gnulib/import/m4/getpagesize.m4: Update.
3660 * gnulib/import/m4/getprogname.m4: Update.
3661 * gnulib/import/m4/gettimeofday.m4: Update.
3662 * gnulib/import/m4/glibc21.m4: Update.
3663 * gnulib/import/m4/glob.m4: Update.
3664 * gnulib/import/m4/glob_h.m4: Update.
3665 * gnulib/import/m4/gnulib-cache.m4: Update.
3666 * gnulib/import/m4/gnulib-common.m4: Update.
3667 * gnulib/import/m4/gnulib-comp.m4: Update.
3668 * gnulib/import/m4/gnulib-tool.m4: Update.
3669 * gnulib/import/m4/hard-locale.m4: Update.
3670 * gnulib/import/m4/include_next.m4: Update.
3671 * gnulib/import/m4/inttypes-pri.m4: Update.
3672 * gnulib/import/m4/inttypes.m4: Update.
3673 * gnulib/import/m4/isnand.m4: Update.
3674 * gnulib/import/m4/isnanl.m4: Update.
3675 * gnulib/import/m4/largefile.m4: Update.
3676 * gnulib/import/m4/limits-h.m4: Update.
3677 * gnulib/import/m4/localcharset.m4: Update.
3678 * gnulib/import/m4/locale-fr.m4: Update.
3679 * gnulib/import/m4/locale-ja.m4: Update.
3680 * gnulib/import/m4/locale-zh.m4: Update.
3681 * gnulib/import/m4/localtime-buffer.m4: Update.
3682 * gnulib/import/m4/longlong.m4: Update.
3683 * gnulib/import/m4/lstat.m4: Update.
3684 * gnulib/import/m4/malloc.m4: Update.
3685 * gnulib/import/m4/malloca.m4: Update.
3686 * gnulib/import/m4/math_h.m4: Update.
3687 * gnulib/import/m4/mbrtowc.m4: Update.
3688 * gnulib/import/m4/mbsinit.m4: Update.
3689 * gnulib/import/m4/mbsrtowcs.m4: Update.
3690 * gnulib/import/m4/mbstate_t.m4: Update.
3691 * gnulib/import/m4/memchr.m4: Update.
3692 * gnulib/import/m4/memmem.m4: Update.
3693 * gnulib/import/m4/mempcpy.m4: Update.
3694 * gnulib/import/m4/memrchr.m4: Update.
3695 * gnulib/import/m4/mkdir.m4: Update.
3696 * gnulib/import/m4/mkstemp.m4: Update.
3697 * gnulib/import/m4/mmap-anon.m4: Update.
3698 * gnulib/import/m4/mode_t.m4: Update.
3699 * gnulib/import/m4/msvc-inval.m4: Update.
3700 * gnulib/import/m4/msvc-nothrow.m4: Update.
3701 * gnulib/import/m4/multiarch.m4: Update.
3702 * gnulib/import/m4/nocrash.m4: Update.
3703 * gnulib/import/m4/off_t.m4: Update.
3704 * gnulib/import/m4/onceonly.m4: Update.
3705 * gnulib/import/m4/open-cloexec.m4: Update.
3706 * gnulib/import/m4/open.m4: Update.
3707 * gnulib/import/m4/openat.m4: Update.
3708 * gnulib/import/m4/opendir.m4: Update.
3709 * gnulib/import/m4/pathmax.m4: Update.
3710 * gnulib/import/m4/rawmemchr.m4: Update.
3711 * gnulib/import/m4/readdir.m4: Update.
3712 * gnulib/import/m4/readlink.m4: Update.
3713 * gnulib/import/m4/realloc.m4: Update.
3714 * gnulib/import/m4/rename.m4: Update.
3715 * gnulib/import/m4/rewinddir.m4: Update.
3716 * gnulib/import/m4/rmdir.m4: Update.
3717 * gnulib/import/m4/save-cwd.m4: Update.
3718 * gnulib/import/m4/secure_getenv.m4: Update.
3719 * gnulib/import/m4/setenv.m4: Update.
3720 * gnulib/import/m4/signal_h.m4: Update.
3721 * gnulib/import/m4/ssize_t.m4: Update.
3722 * gnulib/import/m4/stat-time.m4: Update.
3723 * gnulib/import/m4/stat.m4: Update.
3724 * gnulib/import/m4/std-gnu11.m4: Update.
3725 * gnulib/import/m4/stdbool.m4: Update.
3726 * gnulib/import/m4/stddef_h.m4: Update.
3727 * gnulib/import/m4/stdint.m4: Update.
3728 * gnulib/import/m4/stdio_h.m4: Update.
3729 * gnulib/import/m4/stdlib_h.m4: Update.
3730 * gnulib/import/m4/strchrnul.m4: Update.
3731 * gnulib/import/m4/strdup.m4: Update.
3732 * gnulib/import/m4/strerror.m4: Update.
3733 * gnulib/import/m4/string_h.m4: Update.
3734 * gnulib/import/m4/strstr.m4: Update.
3735 * gnulib/import/m4/strtok_r.m4: Update.
3736 * gnulib/import/m4/sys_socket_h.m4: Update.
3737 * gnulib/import/m4/sys_stat_h.m4: Update.
3738 * gnulib/import/m4/sys_time_h.m4: Update.
3739 * gnulib/import/m4/sys_types_h.m4: Update.
3740 * gnulib/import/m4/tempname.m4: Update.
3741 * gnulib/import/m4/time_h.m4: Update.
3742 * gnulib/import/m4/unistd-safer.m4: Update.
3743 * gnulib/import/m4/unistd_h.m4: Update.
3744 * gnulib/import/m4/warn-on-use.m4: Update.
3745 * gnulib/import/m4/wchar_h.m4: Update.
3746 * gnulib/import/m4/wchar_t.m4: Update.
3747 * gnulib/import/m4/wctype_h.m4: Update.
3748 * gnulib/import/m4/wint_t.m4: Update.
3749 * gnulib/import/malloc.c: Update.
3750 * gnulib/import/malloc/scratch_buffer.h: Update.
3751 * gnulib/import/malloc/scratch_buffer_grow.c: Update.
3752 * gnulib/import/malloc/scratch_buffer_grow_preserve.c: Update.
3753 * gnulib/import/malloc/scratch_buffer_set_array_size.c: Update.
3754 * gnulib/import/malloca.c: Update.
3755 * gnulib/import/malloca.h: Update.
3756 * gnulib/import/malloca.valgrind: Update.
3757 * gnulib/import/math.in.h: Update.
3758 * gnulib/import/mbrtowc.c: Update.
3759 * gnulib/import/mbsinit.c: Update.
3760 * gnulib/import/mbsrtowcs-impl.h: Update.
3761 * gnulib/import/mbsrtowcs-state.c: Update.
3762 * gnulib/import/mbsrtowcs.c: Update.
3763 * gnulib/import/memchr.c: Update.
3764 * gnulib/import/memmem.c: Update.
3765 * gnulib/import/mempcpy.c: Update.
3766 * gnulib/import/memrchr.c: Update.
3767 * gnulib/import/mkdir.c: Update.
3768 * gnulib/import/mkstemp.c: Update.
3769 * gnulib/import/msvc-inval.c: Update.
3770 * gnulib/import/msvc-inval.h: Update.
3771 * gnulib/import/msvc-nothrow.c: Update.
3772 * gnulib/import/msvc-nothrow.h: Update.
3773 * gnulib/import/open.c: Update.
3774 * gnulib/import/openat-die.c: Update.
3775 * gnulib/import/openat-priv.h: Update.
3776 * gnulib/import/openat-proc.c: Update.
3777 * gnulib/import/openat.c: Update.
3778 * gnulib/import/openat.h: Update.
3779 * gnulib/import/opendir.c: Update.
3780 * gnulib/import/pathmax.h: Update.
3781 * gnulib/import/pipe-safer.c: Update.
3782 * gnulib/import/rawmemchr.c: Update.
3783 * gnulib/import/readdir.c: Update.
3784 * gnulib/import/readlink.c: Update.
3785 * gnulib/import/realloc.c: Update.
3786 * gnulib/import/ref-add.sin: Update.
3787 * gnulib/import/ref-del.sin: Update.
3788 * gnulib/import/rename.c: Update.
3789 * gnulib/import/rewinddir.c: Update.
3790 * gnulib/import/rmdir.c: Update.
3791 * gnulib/import/same-inode.h: Update.
3792 * gnulib/import/save-cwd.c: Update.
3793 * gnulib/import/save-cwd.h: Update.
3794 * gnulib/import/scratch_buffer.h: Update.
3795 * gnulib/import/secure_getenv.c: Update.
3796 * gnulib/import/setenv.c: Update.
3797 * gnulib/import/signal.in.h: Update.
3798 * gnulib/import/stat-time.c: Update.
3799 * gnulib/import/stat-time.h: Update.
3800 * gnulib/import/stat-w32.c: Update.
3801 * gnulib/import/stat-w32.h: Update.
3802 * gnulib/import/stat.c: Update.
3803 * gnulib/import/stdbool.in.h: Update.
3804 * gnulib/import/stddef.in.h: Update.
3805 * gnulib/import/stdint.in.h: Update.
3806 * gnulib/import/stdio.in.h: Update.
3807 * gnulib/import/stdlib.in.h: Update.
3808 * gnulib/import/str-two-way.h: Update.
3809 * gnulib/import/strchrnul.c: Update.
3810 * gnulib/import/strdup.c: Update.
3811 * gnulib/import/streq.h: Update.
3812 * gnulib/import/strerror-override.c: Update.
3813 * gnulib/import/strerror-override.h: Update.
3814 * gnulib/import/strerror.c: Update.
3815 * gnulib/import/string.in.h: Update.
3816 * gnulib/import/stripslash.c: Update.
3817 * gnulib/import/strnlen1.c: Update.
3818 * gnulib/import/strnlen1.h: Update.
3819 * gnulib/import/strstr.c: Update.
3820 * gnulib/import/strtok_r.c: Update.
3821 * gnulib/import/sys_stat.in.h: Update.
3822 * gnulib/import/sys_time.in.h: Update.
3823 * gnulib/import/sys_types.in.h: Update.
3824 * gnulib/import/tempname.c: Update.
3825 * gnulib/import/tempname.h: Update.
3826 * gnulib/import/time.in.h: Update.
3827 * gnulib/import/unistd--.h: Update.
3828 * gnulib/import/unistd-safer.h: Update.
3829 * gnulib/import/unistd.in.h: Update.
3830 * gnulib/import/unsetenv.c: Update.
3831 * gnulib/import/verify.h: Update.
3832 * gnulib/import/extra/snippet/warn-on-use.h: Update.
3833 * gnulib/import/wchar.in.h: Update.
3834 * gnulib/import/wctype.in.h: Update.
3835 * gnulib/import/xalloc-oversized.h: Update.
3836 * gnulib/update-gnulib.sh (GNULIB_COMMIT_SHA1): Set to
3837 "53e2c179f26a890fa6685af4b6c1397ee370433b".
3838
3839 2018-09-10 Simon Marchi <simon.marchi@ericsson.com>
3840
3841 * record-btrace.c (get_thread_current_frame): Remove
3842 old_inferior_ptid.
3843
3844 2018-09-10 Jerome Guitton <guitton@adacore.com>
3845
3846 * ada-lang.c (ada_value_struct_elt): Call ada_to_fixed_type
3847 with check_tag to 1 if and only if the type is tagged and the
3848 component being searched cannot been found in the current
3849 view. Otherwise, always call ada_to_fixed_type with
3850 check_tag to 0.
3851
3852 2018-09-10 Xavier Roirand <roirand@adacore.com>
3853
3854 * ada-lang.c (ada_is_access_to_unconstrained_array): Remove static
3855 declaration.
3856 * ada-lang.h: add ada_is_access_to_unconstrained_array prototype.
3857 * ada-varobj.c (ada_varobj_get_number_of_children,
3858 ada_varobj_describe_child, ada_value_is_changeable_p): Cleanup code.
3859
3860 2018-09-10 Xavier Roirand <roirand@adacore.com>
3861
3862 * ada-valprint.c (ada_value_print): Use type instead of
3863 enclosing type.
3864
3865 2018-09-10 Xavier Roirand <roirand@adacore.com>
3866
3867 * ada-lang.c (ada_value_subscript): Handle case when parameter is
3868 an array of access to unconstrained array.
3869
3870 2018-09-10 Xavier Roirand <roirand@adacore.com>
3871
3872 * ada-lang.c (ada_is_access_to_unconstrained_array): New function.
3873 (ada_check_typedef): Use it.
3874
3875 2018-09-10 Xavier Roirand <roirand@adacore.com>
3876
3877 * ada-varobj.c (ada_varobj_describe_struct_child)
3878 (ada_varobj_describe_child): Handle union case like struct one.
3879
3880 2018-09-10 Tom Tromey <tom@tromey.com>
3881
3882 PR python/18380:
3883 * python/python.c (_initialize_python): Make example in "python"
3884 help work in Python 3.
3885
3886 2018-09-10 Eli Zaretskii <eliz@gnu.org>
3887
3888 * Makefile.in (transformed_name): Use INSTALL_SCRIPT instead of
3889 INSTALL_PROGRAM to install gdb-add-index.sh. Don't append
3890 $(EXEEXT) to the script, as it is not a program.
3891
3892 2018-09-09 Simon Marchi <simon.marchi@ericsson.com>
3893
3894 * python/py-prettyprint.c (pretty_print_one_value): Return
3895 gdbpy_ref<>.
3896 (print_string_repr): Adjust.
3897 (apply_varobj_pretty_printer): Return gdbpy_ref<>.
3898 * python/python-internal.h (apply_varobj_pretty_printer): Return
3899 gdbpy_ref<>.
3900 * varobj.c (varobj_value_get_print_value): Adjust.
3901
3902 2018-09-08 Tom Tromey <tom@tromey.com>
3903
3904 PR python/16047:
3905 * python/py-prettyprint.c (pretty_print_one_value): Check for
3906 to_string method.
3907
3908 2018-09-08 Joel Brobecker <brobecker@adacore.com>
3909
3910 * ada-lang.c (resolve_subexp): Pass correct OPLEN in call to
3911 replace_operator_with_call.
3912
3913 2018-09-08 Joel Brobecker <brobecker@adacore.com>
3914
3915 * ada-lang.c (ada_value_cast): Remove unnecessary parentheses.
3916
3917 2018-09-08 Joel Brobecker <brobecker@adacore.com>
3918
3919 * ada-typeprint.c (print_range): Print the bounds using TYPE
3920 rather than its TYPE_TARGET_TYPE.
3921
3922 2018-09-08 Joel Brobecker <brobecker@adacore.com>
3923
3924 * ada-lang.c (ada_to_fixed_value): Minor reformatting in
3925 call to ada_to_fixed_value_create.
3926
3927 2018-09-08 Jerome Guitton <guitton@adacore.com>
3928
3929 * ada-lang.c (ada_decode): strip dot prefix in symbol name.
3930
3931 2018-09-08 Joel Brobecker <brobecker@adacore.com>
3932
3933 * ada-lang.c (ada_exception_sal): Replace gdb_assert calls
3934 by calls to error.
3935
3936 2018-09-08 Joel Brobecker <brobecker@adacore.com>
3937
3938 * ada-lang.c (ada_unhandled_exception_name_addr_from_raise):
3939 Move update of loop variable "fi".
3940
3941 2018-09-08 Joel Brobecker <brobecker@adacore.com>
3942
3943 * ada-lang.c (value_assign_to_component): In the case of
3944 big-endian targets, extract the bits of the given VAL
3945 using an src_offset of zero if container is not a scalar.
3946
3947 2018-09-06 Simon Ser <contact@emersion.fr>
3948
3949 PR gdb/23105
3950 * fbsd-nat.c (fbsd_nat_target::xfer_partial): Add support for
3951 TARGET_OBJECT_FREEBSD_VMMAP and TARGET_OBJECT_FREEBSD_PS_STRINGS.
3952 * fbsd-tdep.c (fbsd_make_note_desc): New.
3953 (fbsd_make_corefile_notes): Write NT_PROCSTAT_AUXV,
3954 NT_PROCSTAT_VMMAP and NT_PROCSTAT_PS_STRINGS notes.
3955 * target.h (enum target_object) Add FreeBSD-specific
3956 TARGET_OBJECT_FREEBSD_VMMAP and TARGET_OBJECT_FREEBSD_PS_STRINGS.
3957
3958 2018-09-06 Simon Marchi <simon.marchi@ericsson.com>
3959
3960 * compile/compile-c.h (generate_c_for_variable_locations):
3961 Change reference to pointer.
3962 * compile/compile-c-support.c (compile_program) <compute>:
3963 Likewise.
3964 * compile/compile-c-symbols.c (generate_vla_size): Likewise.
3965 (generate_c_for_for_one_variable): Likewise
3966 (generate_c_for_variable_locations): Likewise
3967 * compile/compile-c-types.c (compile_c_instance::convert_type):
3968 Likewise
3969 * compile/compile-cplus-symbols.c (convert_one_symbol):
3970 std::move the scope passed to enter_scope.
3971 * compile/compile-cplus-types.c
3972 (compile_cplus_instance::enter_scope): Make parameter
3973 rvalue-reference.
3974 (compile_cplus_instance::new_scope): Change reference to
3975 pointer.
3976 (compile_cplus_instance::convert_type): Likewise
3977 (compile_cplus_convert_typedef): std::move the scope passed to
3978 enter_scope.
3979 (compile_cplus_convert_struct_or_union): Likewise.
3980 (compile_cplus_convert_enum): Likewise.
3981 (compile_cplus_convert_namespace): Likewise.
3982 * compile/compile-cplus.h (compile_cplus_instance)
3983 <enter_scope>: Make parameter rvalue-reference.
3984 * compile/compile-internal.h (compile_instance)
3985 <get_cached_type>: Likewise
3986 * compile/compile-loc2c.c (push): Likewise
3987 (pushf): Likewise
3988 (unary): Likewise
3989 (binary): Likewise
3990 (print_label): Likewise
3991 (pushf_register_address): Likewise
3992 (pushf_register): Likewise
3993 (do_compile_dwarf_expr_to_c): Likewise
3994 (compile_dwarf_expr_to_c): Likewise
3995 (compile_dwarf_bounds_to_c): Likewise
3996 * compile/compile.c (compile_instance::get_cached_type):
3997 Likewise
3998 * compile/compile.h (compile_dwarf_expr_to_c): Likewise.
3999 (compile_dwarf_bounds_to_c): Likewise
4000 * dwarf2loc.c (locexpr_generate_c_location): Likewise.
4001 (dwarf2_compile_property_to_c): Likewise
4002 * dwarf2loc.h (dwarf2_compile_property_to_c): Likewise
4003 * symtab.h (struct symbol_computed_ops) <generate_c_location>:
4004 Likewise
4005
4006 2018-09-06 Simon Marchi <simon.marchi@ericsson.com>
4007
4008 * tui/tui-data.h (struct tui_win_element) <highlight>: Remove.
4009 * tui/tui-data.c (init_content_element): Don't initialize it.
4010
4011 2018-09-06 Simon Marchi <simon.marchi@ericsson.com>
4012
4013 * tui/tui-data.h (struct tui_win_info)
4014 <detail::opaque>: Remove.
4015 * tui/tui-data.c (init_win_info): Remove assignment.
4016
4017 2018-09-05 Tom Tromey <tom@tromey.com>
4018
4019 * warning.m4 (AM_GDB_WARNINGS): Add -Wformat when testing
4020 -Wformat-nonliteral.
4021 * target-float.c (host_float_ops<T>::to_string)
4022 (host_float_ops<T>::from_string): Use
4023 DIAGNOSTIC_IGNORE_FORMAT_NONLITERAL.
4024 * configure: Rebuild.
4025
4026 2018-09-05 Simon Marchi <simon.marchi@ericsson.com>
4027
4028 * printcmd.c (printf_c_string): Use
4029 DIAGNOSTIC_IGNORE_FORMAT_NONLITERAL.
4030 (printf_wide_c_string, printf_pointer, ui_printf): Likewise.
4031
4032 2018-09-05 Tom Tromey <tom@tromey.com>
4033
4034 * cli/cli-cmds.c (shell_escape, edit_command): Remove cast.
4035
4036 2018-09-05 Tom de Vries <tdevries@suse.de>
4037
4038 * dwarf2loc.c (sect_variable_value): Call indirect_synthetic_pointer
4039 with resolve_abstract_p == true.
4040 (indirect_synthetic_pointer): Add resolve_abstract_p parameter,
4041 defaulting to false. Propagate resolve_abstract_p to
4042 dwarf2_fetch_die_loc_sect_off.
4043 * dwarf2loc.h (dwarf2_fetch_die_loc_sect_off): Add resolve_abstract_p
4044 parameter, defaulting to false.
4045 * dwarf2read.c (read_variable): Add variable to abstract_to_concrete.
4046 (dwarf2_fetch_die_loc_sect_off): Add and handle resolve_abstract_p
4047 parameter.
4048 * dwarf2read.h (struct die_info): Forward-declare.
4049 (die_info_ptr): New typedef.
4050 (struct dwarf2_per_objfile): Add abstract_to_concrete field.
4051
4052 2018-09-05 Joel Brobecker <brobecker@adacore.com>
4053
4054 GDB 8.2 released.
4055
4056 2018-09-04 Sergio Durigan Junior <sergiodj@redhat.com>
4057 Pedro Alves <palves@redhat.com>
4058
4059 * gnulib/Makefile.in (aclocal_m4_deps): Move to
4060 "aclocal-m4-deps.mk". Include file here.
4061 $(srcdir)/aclocal.m4: Add "configure.ac".
4062 * gnulib/aclocal-m4-deps.mk: New file.
4063 * gnulib/update-gnulib.sh: Automatically update
4064 "aclocal-m4-deps.mk".
4065
4066 2018-09-04 Tom Tromey <tom@tromey.com>
4067
4068 * configure: Rebuild.
4069 * configure.ac: Remove multi-ice code.
4070
4071 2018-09-04 Tom Tromey <tom@tromey.com>
4072
4073 * Makefile.in (GDB_WARN_CFLAGS_NO_DEFS): Remove.
4074 (ada-exp.o): Update.
4075
4076 2018-09-04 Tom Tromey <tom@tromey.com>
4077
4078 * Makefile.in (printcmd.o, target-float.o): Remove.
4079 (GDB_WARN_CFLAGS_NO_FORMAT): Remove.
4080
4081 2018-09-04 Tom Tromey <tom@tromey.com>
4082
4083 * gnulib/Makefile.in: Remove obsolete comment.
4084 * Makefile.in: Remove obsolete comment.
4085
4086 2018-09-04 Andrew Burgess <andrew.burgess@embecosm.com>
4087
4088 * riscv-tdep.c (riscv_frame_cache): Fix ARI warning, don't end a
4089 line with '+'.
4090
4091 2018-09-03 Andrew Burgess <andrew.burgess@embecosm.com>
4092
4093 * riscv-tdep.c: Add 'prologue-value.h' include.
4094 (struct riscv_unwind_cache): New struct.
4095 (riscv_debug_unwinder): New global.
4096 (riscv_scan_prologue): Update arguments, capture register details
4097 from prologue scan.
4098 (riscv_skip_prologue): Reformat arguments line, move end of
4099 prologue calculation into riscv_scan_prologue.
4100 (riscv_frame_cache): Update return type, create
4101 riscv_unwind_cache, scan the prologue, and fill in remaining cache
4102 details.
4103 (riscv_frame_this_id): Use frame id computed in riscv_frame_cache.
4104 (riscv_frame_prev_register): Use the trad_frame within the
4105 riscv_unwind_cache.
4106 (_initialize_riscv_tdep): Add 'set/show debug riscv unwinder'
4107 flag.
4108
4109 2018-09-03 Andrew Burgess <andrew.burgess@embecosm.com>
4110
4111 * trad-frame.h (trad_frame_set_realreg): Declare.
4112 (trad_frame_set_addr): Declare.
4113 * trad-frame.c (trad_frame_set_realreg): Define new function.
4114 (trad_frame_set_addr): Define new function.
4115 (trad_frame_set_reg_realreg): Use new function.
4116 (trad_frame_set_reg_addr): Use new function.
4117
4118 2018-09-01 Keith Seitz <keiths@redhat.com>
4119
4120 * compile/compile-cplus-types.c (compile_cplus_debug_output_1): Use
4121 pulongest instead of "%lld".
4122 * compile/compile-cplus-symbols.c (gcc_cplus_convert_symbol): Remove
4123 ATTRIBUTE_UNUSED.
4124
4125 2018-08-31 Tom Tromey <tom@tromey.com>
4126
4127 * dwarf2read.c (dwarf2_add_field): Set the TYPE_LENGTH of the
4128 variant part type.
4129
4130 2018-08-31 Pedro Alves <palves@redhat.com>
4131
4132 * gdbarch.h: Regenerate.
4133
4134 2018-08-31 Pedro Alves <palves@redhat.com>
4135
4136 * gdbarch.sh (have_nonsteppable_watchpoint): Add comment.
4137 * target.h (Hardware watchpoint interfaces): Describe
4138 continuable/steppable/non-steppable watchpoints.
4139 * gdbarch.h, gdbarch.c: Regenerate.
4140
4141 2018-08-31 Pedro Alves <palves@redhat.com>
4142
4143 * nto-procfs.c (nto_procfs_target::have_continuable_watchpoint):
4144 Delete.
4145 * s390-linux-nat.c
4146 (s390_linux_nat_target::have_continuable_watchpoint): Delete.
4147 * target.h (target_ops::have_continuable_watchpoint): Delete.
4148 (target_have_continuable_watchpoint): Delete.
4149 * x86-nat.h (x86_nat_target::have_continuable_watchpoint): Delete.
4150 * target-delegates.c: Regenerate.
4151
4152 2018-08-31 Sergio Durigan Junior <sergiodj@redhat.com>
4153
4154 * gnulib/Makefile.in (aclocal_m4_deps): Update according to
4155 the files present in "gnulib/import/m4/".
4156
4157 2018-08-30 Andrew Burgess <andrew.burgess@embecosm.com>
4158
4159 * riscv-tdep.c (riscv_insn::decode): Decode c.addi4spn, c.sd,
4160 c.sw, c.swsp, and c.sdsp.
4161
4162 2018-08-30 Andrew Burgess <andrew.burgess@embecosm.com>
4163
4164 * riscv-tdep.c (struct riscv_inferior_data): Delete.
4165 (riscv_read_misa_reg): Don't cache value read into inferior data.
4166 (riscv_new_inferior_data): Delete.
4167 (riscv_inferior_data_cleanup): Delete.
4168 (riscv_inferior_data): Delete.
4169 (riscv_invalidate_inferior_data): Delete.
4170 (_initialize_riscv_tdep): Remove initialisation of inferior data.
4171
4172 2018-08-30 Simon Marchi <simon.marchi@ericsson.com>
4173
4174 * compile/compile-cplus-types.c
4175 (compile_cplus_instance::leave_scope): Take the address of scope
4176 object.
4177 (compile_cplus_instance::convert_qualified_base): Compare quals
4178 to 0.
4179
4180 2018-08-30 Keith Seitz <keiths@redhat.com>
4181
4182 * compile/compile-cplus-types.c (compile_cplus_instance::enter_scope):
4183 Use "%s" and host_address_to_string instead of "%p" in printf.
4184
4185 2018-08-29 Keith Seitz <keiths@redhat.com>
4186
4187 * Makefile.in (SUBDIR_GCC_COMPILE_SRCS): Add compile-cplus-symbols.c
4188 and compile-cplus-types.c.
4189 (HFILES_NO_SRCDIR): Add gcc-cp-plugin.h.
4190 * c-lang.c (cplus_language_defn): Set C++ compile functions.
4191 * c-lang.h (cplus_get_compile_context, cplus_compute_program):
4192 Declare.
4193 * compile/compile-c-support.c: Include compile-cplus.h.
4194 (load_libcompile): Templatize.
4195 (get_compile_context): "New" function.
4196 (c_get_compile_context): Use get_compile_context.
4197 (cplus_get_compile_context): New function.
4198 (cplus_push_user_expression, cplus_pop_user_expression)
4199 (cplus_add_code_header, cplus_add_input, cplus_compile_program)
4200 (cplus_compute_program): Define new structs/functions.
4201 * compile/compile-cplus-symmbols.c: New file.
4202 * compile/compile-cplus-types.c: New file.
4203 * compile/compile-cplus.h: New file.
4204 * compile/compile-internal.h (debug_compile_oracle, GCC_TYPE_NONE):
4205 Declare.
4206 * compile/compile-object-load.c (get_out_value_type): Use
4207 strncmp_iw when comparing symbol names.
4208 (compile_object_load): Add mst_bss and mst_data.
4209 * compile/compile.c (_initialize_compile): Remove
4210 -Wno-implicit-function-declaration from `compile_args'.
4211 * compile/gcc-cp-plugin.h: New file.
4212 * NEWS: Mention C++ compile support and new debug options.
4213
4214 2018-08-29 Keith Seitz <keiths@redhat.com>
4215
4216 * linespec.c (collect_info::add_symbol): Make virtual.
4217 (struct symbol_searcher_collect_info): New struct.
4218 (symbol_searcher::find_all_symbols): New method.
4219 * symtab.h (class symbol_searcher): New class.
4220
4221 2018-08-29 Keith Seitz <keiths@redhat.com>
4222
4223 * linespec.c (struct linespec) <function_symbols, label_symbols>:
4224 Change to vector of block_symbol. Update all users.
4225 (struct collect_info) <symbols>: Likewise.
4226 (collect_info::add_symbol): Take block_symbol as argument.
4227 Update all callers.
4228 (decode_compound_collector) <m_symbols>: Change type to vector
4229 of block_symbol. Update all users.
4230 (decode_compound_collector::operator ()): Change parameter type
4231 to block_symbol.
4232 (find_method, find_function_symbols, find_linespec_symbols)
4233 (find_label_symbols_in_block, find_label_symbols): Change symbol
4234 vectors to block_symbol vectors.
4235 * symtab.h (symbol_found_callback_ftype): Change parameter type to
4236 block_symbol.
4237
4238 2018-08-29 Keith Seitz <keiths@redhat.com>
4239
4240 * linespec.c (symbolp): Remove typedef and VEC definitions.
4241 (bound_minimal_symbol_d): Likewise.
4242
4243 2018-08-29 Keith Seitz <keiths@redhat.com>
4244
4245 * linespec.c (decode_compound_collector::decode_compound_collector):
4246 Remove initialization for `m_symtabs'.
4247 (decode_compound_collector::release_symbols): Change return type
4248 to std::vector. Update all callers.
4249 (class decode_compound_collector) <m_symbols>: Change type to
4250 std::vector.
4251 (lookup_prefix_sym): Change return type to std::vector. Update all
4252 callers.
4253 (compare_symbols): Remove.
4254 (std_compare_symbols): Rename to `compare_symbols'.
4255 (find_method): Change `sym_classes' parameter to std::vector.
4256 Update all callers. Use std::sort to sort sym_classes.
4257 (find_linespec_symbols): Remove cleanup.
4258
4259 2018-08-29 Keith Seitz <keiths@redhat.com>
4260
4261 * linespec.c (struct linespec) <minimal_symbols>: Change type to
4262 std::vector. Update all users.
4263 (convert_linespec_to_sals): Use std::sort to sort minimal symbols.
4264 (struct collect_info) <minimal_symbols>: Likewise.
4265 (compare_msymbols): Return bool. Change parameters to const
4266 bound_minimal_symbol references.
4267 (find_method, find_function_symbols, find_linespec_symbols): Change
4268 `minsyms' parameter to std::vector. Update all callers.
4269
4270 2018-08-29 Keith Seitz <keiths@redhat.com>
4271
4272 * linespec.c (struct linespec) <label_symbols>: Change type to
4273 std::vector. Update all users.
4274 (find_label_symbols_in_block): Change `result' parameter to
4275 std::vector. Update all callers.
4276 (find_label_symbols): Return std::vector. Update all callers.
4277
4278 2018-08-29 Keith Seitz <keiths@redhat.com>
4279
4280 * linespec.c (struct linespec) <function_symbols>: Change type to
4281 std::vector. Update all users.
4282 (struct collect_info) <function_symbols>: Likewise.
4283 (convert_linespec_to_sals): Use std::sort to sort function_symbols.
4284 (std_compare_symbols): New function.
4285 (find_method, find_function_symbols, find_linespec_symbols)
4286 (find_label_symbols_in_block): Change `symbols' parameter to
4287 std::vector. Update all callers.
4288 (find_label_symbols): Likewise for `function_symbols' and
4289 `label_funcs_ret'.
4290
4291 2018-08-29 Keith Seitz <keiths@redhat.com>
4292
4293 * linespec.c (symtab_vector_up): Define.
4294 (struct linespec) <file_symtabs>: Change type to std::vector *.
4295 Update all uses.
4296 (struct collect_info) <file_symtabs>: Likewise.
4297 (collect_symtabs_from_filename): Return symtab_vector_up.
4298 Update all callers.
4299 (decode_objc): Remove cleanup.
4300 (symtab_collector::symtab_collector): Initialize `m_symtabs'.
4301 (symtab_collector::release_symtabs): Return symtab_vector_up.
4302 Update all callers.
4303 (class symtab_collector) <m_symtabs>: Change type to symtab_vector_up.
4304 Update all users.
4305 (collect_symtabs_from_filename, symtabs_from_filename): Return
4306 symtab_vector_up. Update all callers.
4307
4308 2018-08-29 Tom Tromey <tom@tromey.com>
4309
4310 * csky-tdep.c (csky_analyze_prologue): Use
4311 core_addr_to_string_nz.
4312
4313 2018-08-29 Tom Tromey <tom@tromey.com>
4314
4315 * windows-nat.c (struct xlate_exception) <them>: Change type to
4316 DWORD.
4317 (xlate): Fix formatting. Remove last entry.
4318 (struct xlate_exception, xlate): Comment out.
4319 (windows_nat_target::resume): Use ranged for.
4320
4321 2018-08-29 Jim Wilson <jimw@sifive.com>
4322
4323 * riscv-linux-nat.c: Include elf/common.h instead of elf.h.
4324 (riscv_linux_nat_target::fetch_registers): Use NT_FPREGSET instead
4325 of NT_PRFPREG.
4326 (riscv_linux_nat_target::store_registers): Likewise.
4327
4328 2018-08-29 Sergio Durigan Junior <sergiodj@redhat.com>
4329
4330 PR gdb/23555
4331 PR gdb/23558
4332 * gnulib/aclocal.m4: Regenerate.
4333 * gnulib/config.in: Regenerate.
4334 * gnulib/configure: Regenerate.
4335 * gnulib/import/Makefile.am: Update.
4336 * gnulib/import/Makefile.in: Update.
4337 * gnulib/import/extra/snippet/_Noreturn.h: Rename to...
4338 * gnulib/import/_Noreturn.h: ... this.
4339 * gnulib/import/alloca.in.h: Update.
4340 * gnulib/import/extra/snippet/arg-nonnull.h: Rename to...
4341 * gnulib/import/arg-nonnull.h: ... this.
4342 * gnulib/import/assure.h: Update.
4343 * gnulib/import/at-func.c: Update.
4344 * gnulib/import/basename-lgpl.c: Update.
4345 * gnulib/import/extra/snippet/c++defs.h: Rename to...
4346 * gnulib/import/c++defs.h: ... this.
4347 * gnulib/import/canonicalize-lgpl.c: Update.
4348 * gnulib/import/cdefs.h: Update.
4349 * gnulib/import/chdir-long.c: Update.
4350 * gnulib/import/chdir-long.h: Update.
4351 * gnulib/import/cloexec.c: Update.
4352 * gnulib/import/cloexec.h: Update.
4353 * gnulib/import/close.c: Update.
4354 * gnulib/import/closedir.c: Update.
4355 * gnulib/import/config.charset: Update.
4356 * gnulib/import/dirent-private.h: Update.
4357 * gnulib/import/dirent.in.h: Update.
4358 * gnulib/import/dirfd.c: Update.
4359 * gnulib/import/dirname-lgpl.c: Update.
4360 * gnulib/import/dirname.h: Update.
4361 * gnulib/import/dosname.h: Update.
4362 * gnulib/import/dup-safer-flag.c: Update.
4363 * gnulib/import/dup-safer.c: Update.
4364 * gnulib/import/dup.c: Update.
4365 * gnulib/import/dup2.c: Update.
4366 * gnulib/import/errno.in.h: Update.
4367 * gnulib/import/error.c: Update.
4368 * gnulib/import/error.h: Update.
4369 * gnulib/import/exitfail.c: Update.
4370 * gnulib/import/exitfail.h: Update.
4371 * gnulib/import/extra/update-copyright: Update.
4372 * gnulib/import/fchdir.c: Update.
4373 * gnulib/import/fcntl.c: Update.
4374 * gnulib/import/fcntl.in.h: Update.
4375 * gnulib/import/fd-hook.c: Update.
4376 * gnulib/import/fd-hook.h: Update.
4377 * gnulib/import/fd-safer-flag.c: Update.
4378 * gnulib/import/fd-safer.c: Update.
4379 * gnulib/import/fdopendir.c: Update.
4380 * gnulib/import/filename.h: Update.
4381 * gnulib/import/filenamecat-lgpl.c: Update.
4382 * gnulib/import/filenamecat.h: Update.
4383 * gnulib/import/flexmember.h: Update.
4384 * gnulib/import/float+.h: Update.
4385 * gnulib/import/float.c: Update.
4386 * gnulib/import/float.in.h: Update.
4387 * gnulib/import/fnmatch.c: Update.
4388 * gnulib/import/fnmatch.in.h: Update.
4389 * gnulib/import/fnmatch_loop.c: Update.
4390 * gnulib/import/fpucw.h: Update.
4391 * gnulib/import/frexp.c: Update.
4392 * gnulib/import/frexpl.c: Update.
4393 * gnulib/import/fstat.c: Update.
4394 * gnulib/import/fstatat.c: Update.
4395 * gnulib/import/getcwd-lgpl.c: Update.
4396 * gnulib/import/getcwd.c: Update.
4397 * gnulib/import/getdtablesize.c: Update.
4398 * gnulib/import/getlogin_r.c: Update.
4399 * gnulib/import/getprogname.c: Update.
4400 * gnulib/import/getprogname.h: Update.
4401 * gnulib/import/gettext.h: Update.
4402 * gnulib/import/gettimeofday.c: Update.
4403 * gnulib/import/glob-libc.h: Update.
4404 * gnulib/import/glob.c: Update.
4405 * gnulib/import/glob.in.h: Update.
4406 * gnulib/import/glob_internal.h: Update.
4407 * gnulib/import/glob_pattern_p.c: Update.
4408 * gnulib/import/globfree.c: Update.
4409 * gnulib/import/hard-locale.c: Update.
4410 * gnulib/import/hard-locale.h: Update.
4411 * gnulib/import/intprops.h: Update.
4412 * gnulib/import/inttypes.in.h: Update.
4413 * gnulib/import/isnan.c: Update.
4414 * gnulib/import/isnand-nolibm.h: Update.
4415 * gnulib/import/isnand.c: Update.
4416 * gnulib/import/isnanl-nolibm.h: Update.
4417 * gnulib/import/isnanl.c: Update.
4418 * gnulib/import/itold.c: Update.
4419 * gnulib/import/libc-config.h: Update.
4420 * gnulib/import/limits.in.h: Update.
4421 * gnulib/import/localcharset.c: Update.
4422 * gnulib/import/localcharset.h: Update.
4423 * gnulib/import/localtime-buffer.c: Update.
4424 * gnulib/import/localtime-buffer.h: Update.
4425 * gnulib/import/lstat.c: Update.
4426 * gnulib/import/m4/00gnulib.m4: Update.
4427 * gnulib/import/m4/__inline.m4: Update.
4428 * gnulib/import/m4/absolute-header.m4: Update.
4429 * gnulib/import/m4/alloca.m4: Update.
4430 * gnulib/import/m4/builtin-expect.m4: Update.
4431 * gnulib/import/m4/canonicalize.m4: Update.
4432 * gnulib/import/m4/chdir-long.m4: Update.
4433 * gnulib/import/m4/close.m4: Update.
4434 * gnulib/import/m4/closedir.m4: Update.
4435 * gnulib/import/m4/configmake.m4: Update.
4436 * gnulib/import/m4/d-ino.m4: Update.
4437 * gnulib/import/m4/d-type.m4: Update.
4438 * gnulib/import/m4/dirent_h.m4: Update.
4439 * gnulib/import/m4/dirfd.m4: Update.
4440 * gnulib/import/m4/dirname.m4: Update.
4441 * gnulib/import/m4/double-slash-root.m4: Update.
4442 * gnulib/import/m4/dup.m4: Update.
4443 * gnulib/import/m4/dup2.m4: Update.
4444 * gnulib/import/m4/eealloc.m4: Update.
4445 * gnulib/import/m4/environ.m4: Update.
4446 * gnulib/import/m4/errno_h.m4: Update.
4447 * gnulib/import/m4/error.m4: Update.
4448 * gnulib/import/m4/exponentd.m4: Update.
4449 * gnulib/import/m4/exponentl.m4: Update.
4450 * gnulib/import/m4/extensions.m4: Update.
4451 * gnulib/import/m4/extern-inline.m4: Update.
4452 * gnulib/import/m4/fchdir.m4: Update.
4453 * gnulib/import/m4/fcntl-o.m4: Update.
4454 * gnulib/import/m4/fcntl.m4: Update.
4455 * gnulib/import/m4/fcntl_h.m4: Update.
4456 * gnulib/import/m4/fdopendir.m4: Update.
4457 * gnulib/import/m4/filenamecat.m4: Update.
4458 * gnulib/import/m4/flexmember.m4: Update.
4459 * gnulib/import/m4/float_h.m4: Update.
4460 * gnulib/import/m4/fnmatch.m4: Update.
4461 * gnulib/import/m4/fnmatch_h.m4: Update.
4462 * gnulib/import/m4/fpieee.m4: Update.
4463 * gnulib/import/m4/frexp.m4: Update.
4464 * gnulib/import/m4/frexpl.m4: Update.
4465 * gnulib/import/m4/fstat.m4: Update.
4466 * gnulib/import/m4/fstatat.m4: Update.
4467 * gnulib/import/m4/getcwd-abort-bug.m4: Update.
4468 * gnulib/import/m4/getcwd-path-max.m4: Update.
4469 * gnulib/import/m4/getcwd.m4: Update.
4470 * gnulib/import/m4/getdtablesize.m4: Update.
4471 * gnulib/import/m4/getlogin.m4: Update.
4472 * gnulib/import/m4/getlogin_r.m4: Update.
4473 * gnulib/import/m4/getpagesize.m4: Update.
4474 * gnulib/import/m4/getprogname.m4: Update.
4475 * gnulib/import/m4/gettimeofday.m4: Update.
4476 * gnulib/import/m4/glibc21.m4: Update.
4477 * gnulib/import/m4/glob.m4: Update.
4478 * gnulib/import/m4/glob_h.m4: Update.
4479 * gnulib/import/m4/gnulib-cache.m4: Update.
4480 * gnulib/import/m4/gnulib-common.m4: Update.
4481 * gnulib/import/m4/gnulib-comp.m4: Update.
4482 * gnulib/import/m4/gnulib-tool.m4: Update.
4483 * gnulib/import/m4/hard-locale.m4: Update.
4484 * gnulib/import/m4/include_next.m4: Update.
4485 * gnulib/import/m4/inttypes-pri.m4: Update.
4486 * gnulib/import/m4/inttypes.m4: Update.
4487 * gnulib/import/m4/isnand.m4: Update.
4488 * gnulib/import/m4/isnanl.m4: Update.
4489 * gnulib/import/m4/largefile.m4: Update.
4490 * gnulib/import/m4/limits-h.m4: Update.
4491 * gnulib/import/m4/localcharset.m4: Update.
4492 * gnulib/import/m4/locale-fr.m4: Update.
4493 * gnulib/import/m4/locale-ja.m4: Update.
4494 * gnulib/import/m4/locale-zh.m4: Update.
4495 * gnulib/import/m4/localtime-buffer.m4: Update.
4496 * gnulib/import/m4/longlong.m4: Update.
4497 * gnulib/import/m4/lstat.m4: Update.
4498 * gnulib/import/m4/malloc.m4: Update.
4499 * gnulib/import/m4/malloca.m4: Update.
4500 * gnulib/import/m4/math_h.m4: Update.
4501 * gnulib/import/m4/mbrtowc.m4: Update.
4502 * gnulib/import/m4/mbsinit.m4: Update.
4503 * gnulib/import/m4/mbsrtowcs.m4: Update.
4504 * gnulib/import/m4/mbstate_t.m4: Update.
4505 * gnulib/import/m4/memchr.m4: Update.
4506 * gnulib/import/m4/memmem.m4: Update.
4507 * gnulib/import/m4/mempcpy.m4: Update.
4508 * gnulib/import/m4/memrchr.m4: Update.
4509 * gnulib/import/m4/mkdir.m4: Update.
4510 * gnulib/import/m4/mkstemp.m4: Update.
4511 * gnulib/import/m4/mmap-anon.m4: Update.
4512 * gnulib/import/m4/mode_t.m4: Update.
4513 * gnulib/import/m4/msvc-inval.m4: Update.
4514 * gnulib/import/m4/msvc-nothrow.m4: Update.
4515 * gnulib/import/m4/multiarch.m4: Update.
4516 * gnulib/import/m4/nocrash.m4: Update.
4517 * gnulib/import/m4/off_t.m4: Update.
4518 * gnulib/import/m4/onceonly.m4: Update.
4519 * gnulib/import/m4/open-cloexec.m4: Update.
4520 * gnulib/import/m4/open.m4: Update.
4521 * gnulib/import/m4/openat.m4: Update.
4522 * gnulib/import/m4/opendir.m4: Update.
4523 * gnulib/import/m4/pathmax.m4: Update.
4524 * gnulib/import/m4/rawmemchr.m4: Update.
4525 * gnulib/import/m4/readdir.m4: Update.
4526 * gnulib/import/m4/readlink.m4: Update.
4527 * gnulib/import/m4/realloc.m4: Update.
4528 * gnulib/import/m4/rename.m4: Update.
4529 * gnulib/import/m4/rewinddir.m4: Update.
4530 * gnulib/import/m4/rmdir.m4: Update.
4531 * gnulib/import/m4/save-cwd.m4: Update.
4532 * gnulib/import/m4/secure_getenv.m4: Update.
4533 * gnulib/import/m4/setenv.m4: Update.
4534 * gnulib/import/m4/signal_h.m4: Update.
4535 * gnulib/import/m4/ssize_t.m4: Update.
4536 * gnulib/import/m4/stat-time.m4: Update.
4537 * gnulib/import/m4/stat.m4: Update.
4538 * gnulib/import/m4/std-gnu11.m4: Update.
4539 * gnulib/import/m4/stdbool.m4: Update.
4540 * gnulib/import/m4/stddef_h.m4: Update.
4541 * gnulib/import/m4/stdint.m4: Update.
4542 * gnulib/import/m4/stdio_h.m4: Update.
4543 * gnulib/import/m4/stdlib_h.m4: Update.
4544 * gnulib/import/m4/strchrnul.m4: Update.
4545 * gnulib/import/m4/strdup.m4: Update.
4546 * gnulib/import/m4/strerror.m4: Update.
4547 * gnulib/import/m4/string_h.m4: Update.
4548 * gnulib/import/m4/strstr.m4: Update.
4549 * gnulib/import/m4/strtok_r.m4: Update.
4550 * gnulib/import/m4/sys_socket_h.m4: Update.
4551 * gnulib/import/m4/sys_stat_h.m4: Update.
4552 * gnulib/import/m4/sys_time_h.m4: Update.
4553 * gnulib/import/m4/sys_types_h.m4: Update.
4554 * gnulib/import/m4/tempname.m4: Update.
4555 * gnulib/import/m4/time_h.m4: Update.
4556 * gnulib/import/m4/unistd-safer.m4: Update.
4557 * gnulib/import/m4/unistd_h.m4: Update.
4558 * gnulib/import/m4/warn-on-use.m4: Update.
4559 * gnulib/import/m4/wchar_h.m4: Update.
4560 * gnulib/import/m4/wchar_t.m4: Update.
4561 * gnulib/import/m4/wctype_h.m4: Update.
4562 * gnulib/import/m4/wint_t.m4: Update.
4563 * gnulib/import/malloc.c: Update.
4564 * gnulib/import/malloc/scratch_buffer.h: Update.
4565 * gnulib/import/malloc/scratch_buffer_grow.c: Update.
4566 * gnulib/import/malloc/scratch_buffer_grow_preserve.c: Update.
4567 * gnulib/import/malloc/scratch_buffer_set_array_size.c: Update.
4568 * gnulib/import/malloca.c: Update.
4569 * gnulib/import/malloca.h: Update.
4570 * gnulib/import/malloca.valgrind: Update.
4571 * gnulib/import/math.in.h: Update.
4572 * gnulib/import/mbrtowc.c: Update.
4573 * gnulib/import/mbsinit.c: Update.
4574 * gnulib/import/mbsrtowcs-impl.h: Update.
4575 * gnulib/import/mbsrtowcs-state.c: Update.
4576 * gnulib/import/mbsrtowcs.c: Update.
4577 * gnulib/import/memchr.c: Update.
4578 * gnulib/import/memmem.c: Update.
4579 * gnulib/import/mempcpy.c: Update.
4580 * gnulib/import/memrchr.c: Update.
4581 * gnulib/import/mkdir.c: Update.
4582 * gnulib/import/mkstemp.c: Update.
4583 * gnulib/import/msvc-inval.c: Update.
4584 * gnulib/import/msvc-inval.h: Update.
4585 * gnulib/import/msvc-nothrow.c: Update.
4586 * gnulib/import/msvc-nothrow.h: Update.
4587 * gnulib/import/open.c: Update.
4588 * gnulib/import/openat-die.c: Update.
4589 * gnulib/import/openat-priv.h: Update.
4590 * gnulib/import/openat-proc.c: Update.
4591 * gnulib/import/openat.c: Update.
4592 * gnulib/import/openat.h: Update.
4593 * gnulib/import/opendir.c: Update.
4594 * gnulib/import/pathmax.h: Update.
4595 * gnulib/import/pipe-safer.c: Update.
4596 * gnulib/import/rawmemchr.c: Update.
4597 * gnulib/import/readdir.c: Update.
4598 * gnulib/import/readlink.c: Update.
4599 * gnulib/import/realloc.c: Update.
4600 * gnulib/import/ref-add.sin: Update.
4601 * gnulib/import/ref-del.sin: Update.
4602 * gnulib/import/rename.c: Update.
4603 * gnulib/import/rewinddir.c: Update.
4604 * gnulib/import/rmdir.c: Update.
4605 * gnulib/import/same-inode.h: Update.
4606 * gnulib/import/save-cwd.c: Update.
4607 * gnulib/import/save-cwd.h: Update.
4608 * gnulib/import/scratch_buffer.h: Update.
4609 * gnulib/import/secure_getenv.c: Update.
4610 * gnulib/import/setenv.c: Update.
4611 * gnulib/import/signal.in.h: Update.
4612 * gnulib/import/stat-time.c: Update.
4613 * gnulib/import/stat-time.h: Update.
4614 * gnulib/import/stat-w32.c: Update.
4615 * gnulib/import/stat-w32.h: Update.
4616 * gnulib/import/stat.c: Update.
4617 * gnulib/import/stdbool.in.h: Update.
4618 * gnulib/import/stddef.in.h: Update.
4619 * gnulib/import/stdint.in.h: Update.
4620 * gnulib/import/stdio.in.h: Update.
4621 * gnulib/import/stdlib.in.h: Update.
4622 * gnulib/import/str-two-way.h: Update.
4623 * gnulib/import/strchrnul.c: Update.
4624 * gnulib/import/strdup.c: Update.
4625 * gnulib/import/streq.h: Update.
4626 * gnulib/import/strerror-override.c: Update.
4627 * gnulib/import/strerror-override.h: Update.
4628 * gnulib/import/strerror.c: Update.
4629 * gnulib/import/string.in.h: Update.
4630 * gnulib/import/stripslash.c: Update.
4631 * gnulib/import/strnlen1.c: Update.
4632 * gnulib/import/strnlen1.h: Update.
4633 * gnulib/import/strstr.c: Update.
4634 * gnulib/import/strtok_r.c: Update.
4635 * gnulib/import/sys_stat.in.h: Update.
4636 * gnulib/import/sys_time.in.h: Update.
4637 * gnulib/import/sys_types.in.h: Update.
4638 * gnulib/import/tempname.c: Update.
4639 * gnulib/import/tempname.h: Update.
4640 * gnulib/import/time.in.h: Update.
4641 * gnulib/import/unistd--.h: Update.
4642 * gnulib/import/unistd-safer.h: Update.
4643 * gnulib/import/unistd.in.h: Update.
4644 * gnulib/import/unsetenv.c: Update.
4645 * gnulib/import/verify.h: Update.
4646 * gnulib/import/extra/snippet/warn-on-use.h: Update.
4647 * gnulib/import/wchar.in.h: Update.
4648 * gnulib/import/wctype.in.h: Update.
4649 * gnulib/import/xalloc-oversized.h: Update.
4650 * gnulib/update-gnulib.sh (GNULIB_COMMIT_SHA1): Set to
4651 "53e2c179f26a890fa6685af4b6c1397ee370433b".
4652
4653 2018-08-16 Gary Benson <gbenson@redhat.com>
4654
4655 PR gdb/13000:
4656 * gdb/main.c (captured_main_1): Exit with nonzero status
4657 in batch mode if the last command to be executed failed.
4658 * NEWS: Mention the above.
4659
4660 2018-08-29 Simon Marchi <simon.marchi@ericsson.com>
4661
4662 * csky-tdep.c (csky_memory_insert_breakpoint): Remove newline at
4663 end of warning message.
4664
4665 2018-08-29 Alan Hayward <alan.hayward@arm.com>
4666
4667 PR gdb/22943:
4668 * aarch64-tdep.c (is_hfa_or_hva): Remove function.
4669 (aarch64_extract_return_value): Use
4670 aapcs_is_vfp_call_or_return_candidate.
4671 (aarch64_return_in_memory): Likewise.
4672 (aarch64_store_return_value): Likewise.
4673
4674 2018-08-29 Alan Hayward <alan.hayward@arm.com>
4675
4676 * aarch64-tdep.c
4677 (aapcs_is_vfp_call_or_return_candidate): Make static
4678 (pass_in_v_or_stack): Remove function.
4679 (pass_in_v_vfp_candidate): New function.
4680 (aarch64_push_dummy_call): Check for float register candidates.
4681
4682 2018-08-29 Alan Hayward <alan.hayward@arm.com>
4683
4684 * aarch64-tdep.c (HA_MAX_NUM_FLDS): New macro.
4685 (aapcs_is_vfp_call_or_return_candidate_1): New function.
4686 (aapcs_is_vfp_call_or_return_candidate): Likewise.
4687
4688 2018-08-28 Simon Marchi <simon.marchi@polymtl.ca>
4689
4690 PR build/23399
4691 * common/agent.c (IPA_SYM_STRUCT_NAME): Define.
4692 (struct ipa_sym_addresses): Rename to...
4693 (struct ipa_sym_addresses_common): ... this.
4694 * common/agent.h (IPA_SYM): Use IPA_SYM_STRUCT_NAME.
4695
4696 2018-08-28 Tom Tromey <tom@tromey.com>
4697
4698 * c-exp.y (struct token_and_value): Remove typedef and DEF_VEC.
4699 (token_fifo): Now a std::vector.
4700 (yylex, c_parse): Update.
4701 * d-exp.y (struct token_and_value): Remove typedef and DEF_VEC.
4702 (token_fifo): Now a std::vector.
4703 (yylex, d_parse): Update.
4704 * go-exp.y (struct token_and_value): Remove typedef and DEF_VEC.
4705 (token_fifo): Now a std::vector.
4706 (yylex, go_parse): Update.
4707
4708 2018-08-28 Simon Marchi <simon.marchi@ericsson.com>
4709
4710 * parser-defs.h (struct type_stack) <elements>: Change type to
4711 std::vector<union type_stack_elt>.
4712 <depth, size>: Remove.
4713 * parse.c (parse_exp_in_context_1): Adjust.
4714 (type_stack_reserve): Remove.
4715 (check_type_stack_depth): Remove.
4716 (insert_into_type_stack): Adjust to std::vector.
4717 (insert_type): Likewise.
4718 (push_type): Likewise.
4719 (push_type_int): Likewise.
4720 (insert_type_address_space): Likewise.
4721 (pop_type): Likewise.
4722 (pop_type_int): Likewise.
4723 (pop_typelist): Likewise.
4724 (pop_type_stack): Likewise.
4725 (append_type_stack): Likewise.
4726 (push_type_stack): Likewise.
4727 (get_type_stack): Likewise.
4728 (type_stack_cleanup): Likewise.
4729 (push_typelist): Likewise.
4730 (follow_types): Likewise.
4731 (_initialize_parse): Likewise.
4732
4733 2018-08-28 Hafiz Abid Qadeer <abidh@codesourcery.com>
4734
4735 * NEWS: Mention csky target.
4736
4737 2018-08-28 Jiangshuai Li <jiangshuai_li@c-sky.com>
4738 Hafiz Abid Qadeer <abidh@codesourcery.com>
4739 Don Breazeal <donb@codesourcery.com>
4740
4741 * csky-linux-tdep.c: New file.
4742 * csky-tdep.c: Likewise.
4743 * csky-tdep.h: Likewise.
4744 * Makefile.in (ALL_TARGET_OBS): Add csky-linux-tdep.o and
4745 csky-tdep.o.
4746 (HFILES_NO_SRCDIR): Add csky-tdep.h.
4747 (ALLDEPFILES): Add csky-linux-tdep.c and csky-tdep.c
4748 * configure.tgt: Add csky support.
4749
4750 2018-08-27 Jan Vrany <jan.vrany@fit.cvut.cz>
4751
4752 * python/py-framefilter.c (py_print_frame): Print frame architecture
4753 when printing on an MI output.
4754
4755 2018-08-27 Tom Tromey <tom@tromey.com>
4756
4757 PR build/23087:
4758 * configure: Rebuild.
4759 * warning.m4 (AM_GDB_WARNINGS): Remove -Wno-narrowing.
4760
4761 2018-08-27 Tom Tromey <tom@tromey.com>
4762
4763 * aarch64-linux-tdep.c
4764 (aarch64_linux_iterate_over_regset_sections) <sve_regmap>: Add
4765 casts to int.
4766
4767 2018-08-27 Tom Tromey <tom@tromey.com>
4768
4769 * ppc64-tdep.c (insn_d, insn_ds, insn_xfx): Add casts to
4770 unsigned.
4771 (ppc64_standard_linkage1, ppc64_standard_linkage2)
4772 (ppc64_standard_linkage3, ppc64_standard_linkage4)
4773 (ppc64_standard_linkage5, ppc64_standard_linkage6)
4774 (ppc64_standard_linkage7, ppc64_standard_linkage8): Add casts to
4775 unsigned.
4776
4777 2018-08-27 Tom Tromey <tom@tromey.com>
4778
4779 * xtensa-tdep.h (XTREG_END): Add cast to unsigned.
4780 (XTENSA_GDBARCH_TDEP_INSTANTIATE): Likewise.
4781
4782 2018-08-27 Tom Tromey <tom@tromey.com>
4783
4784 * tramp-frame.h (TRAMP_SENTINEL_INSN): Redefine.
4785 * tilegx-linux-tdep.c (tilegx_linux_rt_sigframe): Use
4786 ULONGEST_MAX.
4787 * tic6x-linux-tdep.c (tic6x_linux_rt_sigreturn_tramp_frame): Use
4788 ULONGEST_MAX.
4789 * sparc64-linux-tdep.c (sparc64_linux_rt_sigframe): Use
4790 ULONGEST_MAX.
4791 * sparc-linux-tdep.c (sparc32_linux_sigframe)
4792 (sparc32_linux_rt_sigframe): Use ULONGEST_MAX.
4793 * ppc-nbsd-tdep.c (ppcnbsd_sigtramp, ppcnbsd2_sigtramp): Use
4794 ULONGEST_MAX.
4795 * ppc-linux-tdep.c (ppc32_linux_sigaction_tramp_frame)
4796 (ppc64_linux_sigaction_tramp_frame)
4797 (ppc32_linux_sighandler_tramp_frame)
4798 (ppc64_linux_sighandler_tramp_frame): Use ULONGEST_MAX.
4799 * nios2-linux-tdep.c (nios2_r1_linux_rt_sigreturn_tramp_frame)
4800 (nios2_r2_linux_rt_sigreturn_tramp_frame): Use ULONGEST_MAX.
4801 * mn10300-linux-tdep.c (am33_linux_sigframe)
4802 (am33_linux_rt_sigframe): Use ULONGEST_MAX.
4803 * mips64-obsd-tdep.c (mips64obsd_sigframe): Use ULONGEST_MAX.
4804 * mips-linux-tdep.c (mips_linux_o32_sigframe)
4805 (mips_linux_o32_rt_sigframe, mips_linux_n32_rt_sigframe)
4806 (mips_linux_n64_rt_sigframe, micromips_linux_o32_sigframe)
4807 (micromips_linux_o32_rt_sigframe, micromips_linux_n32_rt_sigframe)
4808 (micromips_linux_n64_rt_sigframe): Use ULONGEST_MAX.
4809 * mips-fbsd-tdep.c (mips_fbsd_sigframe, mipsn32_fbsd_sigframe)
4810 (mips64_fbsd_sigframe): Use ULONGEST_MAX.
4811 * microblaze-linux-tdep.c
4812 (microblaze_linux_sighandler_tramp_frame): Use ULONGEST_MAX.
4813 * i386-nbsd-tdep.c (i386nbsd_sigtramp_sc16, i386nbsd_sigtramp_sc2)
4814 (i386nbsd_sigtramp_si2, i386nbsd_sigtramp_si31)
4815 (i386nbsd_sigtramp_si4): Use ULONGEST_MAX.
4816 * hppa-nbsd-tdep.c (hppanbsd_sigtramp_si4): Use ULONGEST_MAX.
4817 * common/common-types.h (ULONGEST_MAX): New define.
4818 (CORE_ADDR_MAX): Fix formatting.
4819 * bfin-linux-tdep.c (bfin_linux_sigframe): Use ULONGEST_MAX.
4820 * arm-obsd-tdep.c (armobsd_sigframe): Use ULONGEST_MAX.
4821 * arm-linux-tdep.c (arm_linux_sigreturn_tramp_frame)
4822 (arm_linux_rt_sigreturn_tramp_frame)
4823 (arm_eabi_linux_sigreturn_tramp_frame)
4824 (arm_eabi_linux_rt_sigreturn_tramp_frame)
4825 (thumb2_eabi_linux_sigreturn_tramp_frame)
4826 (thumb2_eabi_linux_rt_sigreturn_tramp_frame)
4827 (arm_linux_restart_syscall_tramp_frame)
4828 (arm_kernel_linux_restart_syscall_tramp_frame): Use ULONGEST_MAX.
4829 * arm-fbsd-tdep.c (arm_fbsd_sigframe): Use ULONGEST_MAX.
4830 * aarch64-linux-tdep.c (aarch64_linux_rt_sigframe): Use
4831 ULONGEST_MAX.
4832 * aarch64-fbsd-tdep.c (aarch64_fbsd_sigframe): Use ULONGEST_MAX.
4833
4834 2018-08-27 Tom Tromey <tom@tromey.com>
4835
4836 * rs6000-tdep.c (ppc_deal_with_atomic_sequence): Use
4837 CORE_ADDR_MAX.
4838 * mips-tdep.c (mips_deal_with_atomic_sequence)
4839 (micromips_deal_with_atomic_sequence): Use CORE_ADDR_MAX.
4840 * arch/arm-get-next-pcs.c (thumb_deal_with_atomic_sequence_raw)
4841 (arm_deal_with_atomic_sequence_raw): Use CORE_ADDR_MAX.
4842 * alpha-tdep.c (alpha_deal_with_atomic_sequence): Use
4843 CORE_ADDR_MAX.
4844 * aarch64-tdep.c (aarch64_software_single_step): Use
4845 CORE_ADDR_MAX.
4846
4847 2018-08-27 Tom Tromey <tom@tromey.com>
4848
4849 * linespec.c (complete_linespec_component): Add cast to "char".
4850 * completer.c (completion_tracker::build_completion_result): Add
4851 cast to "char".
4852
4853 2018-08-26 Simon Marchi <simon.marchi@polymtl.ca>
4854
4855 * solist.h (struct solist, struct target_so_ops): Fix
4856 indentation.
4857
4858 2018-08-26 Simon Marchi <simon.marchi@polymtl.ca>
4859
4860 * ada-tasks.c (ada_task_info_s): Remove typedef.
4861 (DEF_VEC_O(ada_task_info_s)): Remove.
4862 (struct ada_tasks_inferior_data): Initialize fields.
4863 <task_list>: Make an std::vector.
4864 (get_ada_tasks_inferior_data): Allocate with new.
4865 (ada_get_task_number): Adjust.
4866 (get_task_number_from_id): Likewise.
4867 (valid_task_id): Likewise.
4868 (ada_get_task_info_from_ptid): Likewise.
4869 (iterate_over_live_ada_tasks): Likewise.
4870 (add_ada_task): Likewise.
4871 (read_known_tasks): Likewise.
4872 (ada_build_task_list): Likewise.
4873 (print_ada_task_info): Likewise.
4874 (info_task): Likewise.
4875 (task_command_1): Likewise.
4876
4877 2018-08-26 Simon Marchi <simon.marchi@polymtl.ca>
4878
4879 * ada-lang.c (add_angle_brackets): Return std::string.
4880
4881 2018-08-25 Simon Marchi <simon.marchi@polymtl.ca>
4882
4883 * python/py-threadevent.c (py_get_event_thread): Initialize
4884 pythread.
4885
4886 2018-08-24 Pedro Alves <palves@redhat.com>
4887
4888 * python/py-bpevent.c (create_breakpoint_event_object): Use
4889 copy-initialization.
4890 * python/py-continueevent.c (emit_continue_event): Use
4891 copy-initialization.
4892 * python/py-exitedevent.c (create_exited_event_object): Return a
4893 gdbpy_ref<>.
4894 (emit_exited_event): Use copy-initialization.
4895 * python/py-inferior.c (python_new_inferior)
4896 (python_inferior_deleted, add_thread_object): Use
4897 copy-initialization.
4898 * python/py-infevents.c (create_inferior_call_event_object)
4899 (create_register_changed_event_object)
4900 (create_memory_changed_event_object): Return a gdbpy_ref<>.
4901 (emit_inferior_call_event, emit_memory_changed_event)
4902 (emit_register_changed_event): Use copy-initialization.
4903 * python/py-newobjfileevent.c (create_new_objfile_event_object):
4904 Return a gdbpy_ref<>.
4905 (emit_new_objfile_event): Use copy-initialization.
4906 (create_clear_objfiles_event_object): Return a gdbpy_ref<>.
4907 (emit_clear_objfiles_event): Use copy-initialization.
4908 * python/py-signalevent.c (create_signal_event_object): Use
4909 copy-initialization.
4910 * python/py-threadevent.c (create_thread_event_object): Use
4911 copy-initialization.
4912
4913 2018-08-24 Pedro Alves <palves@redhat.com>
4914 Simon Marchi <simon.marchi@ericsson.com>
4915
4916 PR gdb/23379
4917 * python/py-continueevent.c: Include "gdbthread.h".
4918 (create_continue_event_object): Add intro comment. Add 'ptid'
4919 parameter. Use it to find thread to pass to
4920 create_thread_event_object.
4921 (emit_continue_event): Pass PTID down to
4922 create_continue_event_object.
4923 * python/py-event.h (py_get_event_thread): Declare.
4924 (create_thread_event_object): Remove default from 'thread'
4925 parameter.
4926 * python/py-stopevent.c (create_stop_event_object): Use
4927 py_get_event_thread.
4928 * python/py-threadevent.c (get_event_thread): Rename to ...
4929 (py_get_event_thread): ... this, make extern, add 'ptid' parameter
4930 and use it to find the thread.
4931 (create_thread_event_object): Assert that THREAD isn't null.
4932 Don't find the event thread here.
4933
4934 2018-08-23 Kevin Buettner <kevinb@redhat.com>
4935
4936 * block.h (blockrange, blockranges): New struct declarations.
4937 (struct block): Add new field named `ranges'.
4938 (BLOCK_RANGES, BLOCK_NRANGES, BLOCK_RANGE, BLOCK_CONTIGUOUS_P)
4939 (BLOCK_RANGE_START, BLOCK_RANGE_END, BLOCK_ENTRY_PC): New
4940 macros for accessing ranges in struct block.
4941 (make_blockranges): New declaration.
4942 block.c (make_blockranges): New function.
4943 * dwarf2read.c (dwarf2_record_block_ranges): Fill in BLOCK_RANGES
4944 for block.
4945 * symtab.h (find_pc_partial_function): Add new parameter `block'.
4946 * blockframe.c (cache_pc_function_block): New static global.
4947 (clear_pc_function_cache): Clear cache_pc_function_block.
4948 (find_pc_partial_function): Move comment to symtab.h. Add
4949 support for non-contiguous blocks.
4950 * cli/cli-cmds.c (block.h): Include.
4951 (print_disassembly): Handle printing of non-contiguous blocks.
4952 (disassemble_current_function): Likewise.
4953 (disassemble_command): Likewise.
4954
4955 * ax-gdb.c (gen_var_ref): Use BLOCK_ENTRY_PC in place of
4956 BLOCK_START.
4957 * blockframe.c (get_pc_function_start): Likewise.
4958 * compile/compile-c-symbols.c (convert_one_symbol): Likewise.
4959 (gcc_symbol_address): Likewise.
4960 * compile/compile-object-run.c (compile_object_run): Likewise.
4961 * compile/compile.c (get_expr_block_and_pc): Likewise.
4962 * dwarf2loc.c (dwarf2_find_location_expression): Likewise.
4963 (func_addr_to_tail_call_list): Likewise.
4964 * findvar.c (default_read_var_value): Likewise.
4965 * inline-frame.c (inline_frame_this_id): Likewise.
4966 (skip-inline_frames): Likewise.
4967 * infcmd.c (until_next_command): Likewise.
4968 * linespec.c (convert_linespec_to_sals): Likewise.
4969 * parse.c (parse_exp_in_context_1): Likewise.
4970 * printcmd.c (build_address_symbolic): likewise.
4971 (info_address_command): Likewise.
4972 symtab.c (find_function_start_sal): Likewise.
4973 (skip_prologue_sal): Likewise.
4974 (find_function_alias_target): Likewise.
4975 (find_gnu_ifunc): Likewise.
4976 * stack.c (find_frame_funname): Likewise.
4977 * symtab.c (fixup_symbol_section): Likewise.
4978 (find_function_start_sal): Likewise.
4979 (skip_prologue_sal): Likewsie.
4980 (find_function_alias_target): Likewise.
4981 (find_gnu_ifunc): Likewise.
4982 * tracepoint.c (info_scope_command): Likewise.
4983 * value.c (value_fn_field): Likewise.
4984
4985 * infrun.c (fill_in_stop_func): Use find_function_entry_range_from_pc
4986 in place of find_pc_partial_function.
4987 * blockframe.c (find_function_entry_range_from_pc): New function.
4988 * symtab.h (find_function_entry_range_from_pc): Declare and document.
4989 * objfiles.c (objfile_relocate1): Relocate start and end addresses
4990 for each range in a block.
4991
4992
4993 2018-08-23 Xavier Roirand <roirand@adacore.com>
4994
4995 * machoread.c (macho_symfile_read_all_oso): Remove uneeded
4996 incrementation.
4997
4998 2018-08-22 Simon Marchi <simon.marchi@polymtl.ca>
4999
5000 * solib-svr4.c (read_program_headers_from_bfd): Return
5001 gdb::optional<gdb::byte_vector>.
5002 (svr4_exec_displacement): Adjust.
5003
5004 2018-08-22 Simon Marchi <simon.marchi@polymtl.ca>
5005
5006 * solib-svr4.c (read_program_header): Return
5007 gdb::optional<gdb::byte_vector>, remove p_sect_size param.
5008 (find_program_interpreter): Return
5009 gdb::optional<gdb::byte_vector>.
5010 (scan_dyntag_auxv): Adjust.
5011 (enable_break): Adjust.
5012 (svr4_exec_displacement): Adjust.
5013
5014 2018-08-22 Simon Marchi <simon.marchi@polymtl.ca>
5015
5016 * inf-child.h (inf_child_target) <terminal_save_inferior>: New.
5017 * inf-child.c (inf_child_target::terminal_save_inferior): New.
5018
5019 2018-08-22 Simon Marchi <simon.marchi@polymtl.ca>
5020
5021 * guile/scm-string.c (gdbscm_scm_from_printf): Use
5022 string_vprintf.
5023 * guile/scm-utils.c (gdbscm_printf): Likewise.
5024 * serial.c (serial_printf): Likewise.
5025 * xml-support.c (gdb_xml_parser::vdebug): Likewise.
5026
5027 2018-08-22 Jan Vrany <jan.vrany@fit.cvut.cz>
5028
5029 * stack.c (print_frame): Print frame architecture when printing on
5030 an MI output.
5031 * NEWS: Mention new "arch" attribute in frame output.
5032
5033 2018-08-21 Alan Hayward <alan.hayward@arm.com>
5034
5035 * arch/aarch64.h (aarch64_regnum): Update comment.
5036
5037 2018-08-21 Alan Hayward <alan.hayward@arm.com>
5038
5039 * NEWS: Add SVE to 8.2 section.
5040
5041 2018-08-21 Pedro Alves <palves@redhat.com>
5042
5043 * guile/scm-utils.c (gdbscm_parse_function_args_1): New, factored
5044 out from gdbscm_parse_function_args.
5045 (gdbscm_parse_function_args): Rework to use gdbscm_wrap and
5046 gdbscm_parse_function_args_1.
5047
5048 2018-08-21 Simon Marchi <simon.marchi@ericsson.com>
5049
5050 PR gdb/17816
5051 * m32c-tdep.c (m32c_decode_srcdest4): Remove unnecessary ternary
5052 operator.
5053
5054 2018-08-19 Simon Marchi <simon.marchi@polymtl.ca>
5055
5056 * solib-svr4.c (svr4_exec_displacement): Fix formatting.
5057
5058 2018-08-19 Michael Spang <spang@google.com>
5059
5060 PR gdb/11786
5061 * solib-svr4.c (svr4_exec_displacement): Ignore memsz fields
5062 for PT_TLS segments.
5063
5064 2018-08-18 Kevin Buettner <kevinb@redhat.com>
5065
5066 * dwarf2expr.h (struct dwarf_expr_context): Add virtual method
5067 dwarf_variable_value.
5068 * dwarf2-frame.c (class dwarf_expr_executor):
5069 Add override for dwarf_variable_value.
5070 * dwarf2loc.c (class dwarf_evaluate_loc_desc): Likewise.
5071 (class symbol_needs_eval_context): Likewise.
5072 (indirect_synthetic_pointer): Add forward declaration.
5073 (sect_variable_value): New function.
5074 (dwarf2_compile_expr_to_ax): Add case for DW_OP_GNU_variable_value.
5075 * dwarf2expr.c (dwarf_expr_context::execute_stack_op): Add case
5076 for DW_OP_GNU_variable_value.
5077
5078 2018-08-16 Tom Tromey <tom@tromey.com>
5079
5080 * top.c (read_command_file): Update.
5081 (command_line_input): Remove "repeat" argument.
5082 * ada-lang.c (get_selections): Update.
5083 * linespec.c (decode_line_2): Update.
5084 * defs.h (command_line_input): Remove argument.
5085 * cli/cli-script.c (read_next_line): Update.
5086 * python/py-gdb-readline.c: Update.
5087
5088 2018-08-17 Tom Tromey <tom@tromey.com>
5089
5090 * cli/cli-script.c (read_next_line): Pass 0 as repeat argument to
5091 command_line_input.
5092
5093 2018-08-15 Tom Tromey <tom@tromey.com>
5094
5095 * aarch64-linux-tdep.c (aarch64_linux_core_read_vq): Use pulongest.
5096
5097 2018-08-14 Jan Vrany <jan.vrany@fit.cvut.cz>
5098
5099 * mi/mi-cmd-disas.c (mi_cmd_disassemble): Add -a option.
5100 If used, use find_pc_partial_function to find address range
5101 to disassemble.
5102 * mi/mi-main.c (mi_cmd_list_features): Report
5103 "data-disassemble-a-option" feature.
5104 * NEWS: Mention new -data-disassemble option -a.
5105
5106 2018-08-13 Tom Tromey <tom@tromey.com>
5107
5108 * common/common-defs.h (_FORTIFY_SOURCE): Define.
5109
5110 2018-08-13 Alan Hayward <alan.hayward@arm.com>
5111
5112 * aarch64-linux-tdep.c (aarch64_linux_supply_sve_regset): New function.
5113 (aarch64_linux_collect_sve_regset): Likewise.
5114 (aarch64_linux_iterate_over_regset_sections): Check for SVE.
5115 * regcache.h (regcache_map_entry_size): New function.
5116
5117 2018-08-13 Alan Hayward <alan.hayward@arm.com>
5118
5119 * aarch64-linux-tdep.c (SVE_HEADER_SIZE_LENGTH): Add define.
5120 (SVE_HEADER_MAX_SIZE_LENGTH): Likewise.
5121 (SVE_HEADER_VL_LENGTH): Likewise.
5122 (SVE_HEADER_MAX_VL_LENGTH): Likewise.
5123 (SVE_HEADER_FLAGS_LENGTH): Likewise.
5124 (SVE_HEADER_RESERVED_LENGTH): Likewise.
5125 (SVE_HEADER_SIZE_OFFSET): Likewise.
5126 (SVE_HEADER_MAX_SIZE_OFFSET): Likewise.
5127 (SVE_HEADER_VL_OFFSET): Likewise.
5128 (SVE_HEADER_MAX_VL_OFFSET): Likewise.
5129 (SVE_HEADER_FLAGS_OFFSET): Likewise.
5130 (SVE_HEADER_RESERVED_OFFSET): Likewise.
5131 (SVE_HEADER_SIZE): Likewise.
5132 (aarch64_linux_core_read_vq): Add function.
5133 (aarch64_linux_core_read_description): Check for SVE section.
5134
5135 2018-08-13 Alan Hayward <alan.hayward@arm.com>
5136
5137 * aarch64-fbsd-tdep.c
5138 (aarch64_fbsd_iterate_over_regset_sections): Add supply_size and
5139 collect_size.
5140 * aarch64-linux-tdep.c
5141 (aarch64_linux_iterate_over_regset_sections): Likewise.
5142 * alpha-linux-tdep.c
5143 (alpha_linux_iterate_over_regset_sections):
5144 * alpha-nbsd-tdep.c
5145 (alphanbsd_iterate_over_regset_sections): Likewise.
5146 * amd64-fbsd-tdep.c
5147 (amd64fbsd_iterate_over_regset_sections): Likewise.
5148 * amd64-linux-tdep.c
5149 (amd64_linux_iterate_over_regset_sections): Likewise.
5150 * arm-bsd-tdep.c
5151 (armbsd_iterate_over_regset_sections): Likewise.
5152 * arm-fbsd-tdep.c
5153 (arm_fbsd_iterate_over_regset_sections): Likewise.
5154 * arm-linux-tdep.c
5155 (arm_linux_iterate_over_regset_sections): Likewise.
5156 * corelow.c (get_core_registers_cb): Likewise.
5157 (core_target::fetch_registers): Likewise.
5158 * fbsd-tdep.c (fbsd_collect_regset_section_cb): Likewise.
5159 * frv-linux-tdep.c (frv_linux_iterate_over_regset_sections): Likewise.
5160 * gdbarch.h (void): Regenerate.
5161 * gdbarch.sh: Add supply_size and collect_size.
5162 * hppa-linux-tdep.c (hppa_linux_iterate_over_regset_sections): Likewise.
5163 * hppa-nbsd-tdep.c (hppanbsd_iterate_over_regset_sections): Likewise.
5164 * hppa-obsd-tdep.c (hppaobsd_iterate_over_regset_sections): Likewise.
5165 * i386-fbsd-tdep.c (i386fbsd_iterate_over_regset_sections): Likewise.
5166 * i386-linux-tdep.c (i386_linux_iterate_over_regset_sections): Likewise.
5167 * i386-tdep.c (i386_iterate_over_regset_sections): Likewise.
5168 * ia64-linux-tdep.c (ia64_linux_iterate_over_regset_sections): Likewise.
5169 * linux-tdep.c (linux_collect_regset_section_cb): Likewise.
5170 * m32r-linux-tdep.c (m32r_linux_iterate_over_regset_sections): Likewise.
5171 * m68k-bsd-tdep.c (m68kbsd_iterate_over_regset_sections): Likewise.
5172 * m68k-linux-tdep.c (m68k_linux_iterate_over_regset_sections): Likewise.
5173 * mips-fbsd-tdep.c (mips_fbsd_iterate_over_regset_sections): Likewise.
5174 * mips-linux-tdep.c (mips_linux_iterate_over_regset_sections): Likewise.
5175 * mips-nbsd-tdep.c (mipsnbsd_iterate_over_regset_sections): Likewise.
5176 * mips64-obsd-tdep.c (mips64obsd_iterate_over_regset_sections):
5177 Likewise.
5178 * mn10300-linux-tdep.c (am33_iterate_over_regset_sections): Likewise.
5179 * nios2-linux-tdep.c (nios2_iterate_over_regset_sections): Likewise.
5180 * ppc-fbsd-tdep.c (ppcfbsd_iterate_over_regset_sections): Likewise.
5181 * ppc-linux-tdep.c (ppc_linux_iterate_over_regset_sections): Likewise.
5182 * ppc-nbsd-tdep.c (ppcnbsd_iterate_over_regset_sections): Likewise.
5183 * ppc-obsd-tdep.c (ppcobsd_iterate_over_regset_sections): Likewise.
5184 * riscv-linux-tdep.c (riscv_linux_iterate_over_regset_sections):
5185 Likewise.
5186 * rs6000-aix-tdep.c (rs6000_aix_iterate_over_regset_sections): Likewise.
5187 * s390-linux-tdep.c (s390_iterate_over_regset_sections): Likewise.
5188 * score-tdep.c (score7_linux_iterate_over_regset_sections): Likewise.
5189 * sh-tdep.c (sh_iterate_over_regset_sections): Likewise.
5190 * sparc-tdep.c (sparc_iterate_over_regset_sections): Likewise.
5191 * tilegx-linux-tdep.c (tilegx_iterate_over_regset_sections): Likewise.
5192 * vax-tdep.c (vax_iterate_over_regset_sections): Likewise.
5193 * xtensa-tdep.c (xtensa_iterate_over_regset_sections): Likewise.
5194
5195 2018-08-10 Simon Marchi <simon.marchi@ericsson.com>
5196
5197 * nat/linux-osdata.c (commandline_from_pid): Replace xstrprintf
5198 with string_printf.
5199
5200 2018-08-10 Keith Seitz <keiths@redhat.com>
5201
5202 * compile/compile-c-support.c (add_code_header, add_code_footer):
5203 Move into policy class.
5204 (c_push_user_expression, pop_user_expression_nop)
5205 (c_add_code_header, c_add_code_footer, c_add_input): New policy class.
5206 (compile_program): New host class.
5207 (c_compile_program): New typedef.
5208 (c_compute_porgram): Use c_compile_program.
5209
5210 2018-08-10 Keith Seitz <keiths@redhat.com>
5211
5212 * compile/compile-internal.h (compile_instance::~compile_instance):
5213 Remove calls to htab_delete.
5214 <m_type_map, m_symbol_err_map>: Switch type to htab_up.
5215 * compile.c (compile_instance::compile_instance): Initialize
5216 htab unique pointers.
5217 (compile_instance::get_cached_type, compile_instance::insert_type)
5218 (compile_instance::error_symbol_once): Update for unique_ptr.
5219
5220 2018-08-10 Keith Seitz <keiths@redhat.com>
5221
5222 * compile/compile-c-symbols.c (struct symbol_error)
5223 (hash_symbol_error, eq_symbol_error, del_symbol_error)
5224 (compile_instance::insert_symbol_error)
5225 (compile_instance::error_symbol_once): Move to ...
5226 * compile/compile.c: ... here.
5227
5228 2018-08-10 Keith Seitz <keiths@redhat.com>
5229
5230 * compile/compile-c-support.c (c_get_compile_context): Use `new'
5231 instead of `new_compile_instance'.
5232 * compile/compile-c-symbols.c (compile_instance::insert_symbol_error):
5233 Update description.
5234 If the symbol error map is not initialized, create it.
5235 (generate_c_for_for_one_symbol): Do not check/initialize
5236 the symbol error map.
5237 * compile/compile-c-types.c (compile_c_instance): Make a class.
5238 Update all callers.
5239 (compile_instance::compile_instance): Initialize the type cache.
5240 (get_cached_type): New function.
5241 (insert_type): Update description.
5242 (compile_c_instance::m_default_cflags): Define.
5243 (convert_type): Update description. Use get_cached_type.
5244 (delete_instance): Moved to destructor.
5245 (new_compile_instance): Moved to constructor.
5246 * compile/compile-c.h (compile_c_instance): Make class inheriting
5247 from compile_instance.
5248 <base>: Remove field.
5249 <type_map, symbol_err_map>: Move to base class.
5250 <c_plugin>: Rename to `m_plugin' and remove pointer type.
5251 * compile/compile-internal.h (compile_instance): Make class.
5252 <type_map_t, symbol_err_map_t>: Define.
5253 <fe>: Rename to `m_gcc_fe'.
5254 <scope, block, gcc_target_options>: Add `m_' prefix.
5255 <m_type_map, m_symbol_err_map>: New fields, moved from
5256 compile_c_instance.
5257 <destroy>: Remove.
5258 (convert_type, new_compile_instance): Remove.
5259 * compile/compile.c (cleanup_compile_instance): Remove.
5260 (compile_to_object): Use unique_ptr to eliminate cleanups.
5261 (compile_instance::set_print_callback, compile_instance::version)
5262 (compile_instance::set_verbose)
5263 (compile_instance::set_driver_filename)
5264 (compile_instance::set_triplet_regexp)
5265 (compile_instance::set_arguments)
5266 (compile_instance::set_source_file)
5267 (compile_instance::compile): Define.
5268
5269 2018-08-10 Keith Seitz <keiths@redhat.com>
5270
5271 * Makefile.in (HFILES_NO_SRCDIR): Add compile/gcc-c-plugin.h.
5272 * compile/compile-c-types.c: Define GCC_METHODN macros and include
5273 gcc-c-fe.def to define C plugin.
5274 (delete_instance): Delete `c_plugin'.
5275 (new_compile_instance): Initialize `c_plugin'.
5276 * compile/compile-c.h: Include gcc_c_plugin.h.
5277 (struct compile_c_instance) <c_plugin>: New member.
5278 * gcc-c-plugin.h: New file.
5279 Update all callers with API change.
5280
5281 2018-08-10 Keith Seitz <keiths@redhat.com>
5282
5283 * Makefile.in (SUBDIR_GCC_COMPILE_SRCS): Move header files ...
5284 (HFILES_NO_SRCDIR): ... to here.
5285 Add compile-internal.h and compile-c.h.
5286 * compile/compile-c-support.c: Include compile-c.h.
5287 * compile/compile-c-symbols.c: Include compile-c.h.
5288 (generate_c_for_variable_locations): Update comment.
5289 * compile/compile-c-types.c: Include compile-c.h.
5290 * compile/compile-c.h: New file -- moved C language declarations
5291 from other files here.
5292 * compile/compile-internal.h: Do not include hashtab.h or
5293 common/enum-flags.h.
5294 (gcc_qualifiers_flags, struct compile_c_instance, C_CTX)
5295 (gcc_convert_symbol, gcc_symbol_address)
5296 (generate_c_for_variable_locations, c_get_mode_for_size)
5297 (c_get_range_decl_name): Definitions moved to compile-c.h.
5298 * compile/compile-loc2c.c: Include compile-c.h.
5299
5300 2018-08-10 Keith Seitz <keiths@redhat.com>
5301
5302 * compile/compile-c-symbols.c (symbol_substitution_name): Rename to ...
5303 (c_symbol_substitution_name): ... this.
5304 Update all callers.
5305
5306 2018-08-10 Keith Seitz <keiths@redhat.com>
5307
5308 * compile/compile-c-support.c (c_compute_program): Use
5309 unique_xmalloc_ptr to eliminate cleanup.
5310 * compile/compile-c-symbols.c (generate_c_for_variable_locations):
5311 Return a unique_xmalloc_ptr and eliminate cleanup.
5312 * compile/compile-internal.h (generate_c_for_variable_locations):
5313 Return unique_xmalloc_ptr and update description.
5314
5315 2018-08-10 Alan Hayward <alan.hayward@arm.com>
5316
5317 * corelow.c (core_target::get_core_register_section): Rename
5318 min_size to section_min_size.
5319
5320 2018-08-09 Jim Wilson <jimw@sifive.com>
5321
5322 * Makefile.in (ALL_TARGET_OBS): Add riscv-linux-tdep.c.
5323 (ALLDEPFILES): Add riscv-linux-nat.c, and riscv-linux-tdep.c.
5324 * NEWS: Mention new GNU/Linux RISC-V target.
5325 * configure.host: Add riscv*-*-linux*.
5326 * configure.nat: Add riscv*.
5327 * configure.tgt: Add riscv*-*-linux*.
5328 * riscv-linux-nat.c: New file.
5329 * riscv-linux-tdep.c: New file.
5330
5331 2018-08-09 Andrew Burgess <andrew.burgess@embecosm.com>
5332
5333 * infrun.c (resume): Make static, add forward declaration.
5334 (proceed): Update header comment.
5335 * infrun.h (resume): Delete declaration.
5336
5337 2018-08-09 Tom Tromey <tom@tromey.com>
5338
5339 * riscv-tdep.h: Minor formatting fixes.
5340
5341 2018-08-09 Simon Marchi <simon.marchi@ericsson.com>
5342
5343 * common/scoped_mmap.c (mmap_file): Silence ARI warning.
5344 * dwarf-index-cache.c (create_dir_and_check): Likewise.
5345 (test_mkdir_recursive): Likewise.
5346 * dwarf-index-write.c (write_psymtabs_to_index): Likewise.
5347
5348 2018-08-09 Andrew Burgess <andrew.burgess@embecosm.com>
5349
5350 * valarith.c (value_subscripted_rvalue): If an array is not in
5351 memory, and we don't know the upper bound, then we can't know that
5352 the requested element exists or not.
5353
5354 2018-08-08 Simon Marchi <simon.marchi@ericsson.com>
5355
5356 * target.c (str_comma_list_concat_elem): Fix typo in comment.
5357 (target_options_to_string): Add comment.
5358
5359 2018-08-08 Tom Tromey <tom@tromey.com>
5360
5361 * unittests/scoped_mmap-selftests.c: Check result of "write".
5362
5363 2018-08-08 Jim Wilson <jimw@sifive.com>
5364
5365 * riscv-tdep.c (enum opcode): Add jump, branch, lr, and sc opcodes.
5366 (decode_register_index_short): New.
5367 (decode_j_type_insn, decode_cj_type_insn): New.
5368 (decode_b_type_insn, decode_cb_type_insn): New.
5369 (riscv_insn::decode): Add support for jumps, branches, lr, and sc. New
5370 local xlen. Check xlen when decoding ambiguous compressed insns. In
5371 compressed decode, use is_c_lui_insn instead of is_lui_insn, and
5372 is_c_sw_insn instead of is_sw_insn.
5373 (riscv_next_pc, riscv_next_pc_atomic_sequence): New.
5374 (riscv_software_single_step): New.
5375 * riscv-tdep.h (riscv_software_single_step): Declare.
5376
5377 * riscv-tdep.c (riscv_isa_xlen): Drop static.
5378 * riscv-tdep.h (riscv_isa_xlen): Add extern declaration.
5379
5380 2018-08-08 Andrew Burgess <andrew.burgess@embecosm.com>
5381
5382 PR gdb/18050:
5383 * target.c (dispose_inferior): Don't dispose of inferiors that are
5384 already killed.
5385
5386 2018-08-08 Szabolcs Nagy <szabolcs.nagy@arm.com>
5387
5388 * remote.c (remote_target::download_tracepoint): Change char* to
5389 const char*.
5390
5391 2018-08-07 Simon Marchi <simon.marchi@polymtl.ca>
5392
5393 * target.h (target_options_to_string): Return an std::string.
5394 * target.c (str_comma_list_concat_elem): Return void, use
5395 std::string.
5396 (do_option): Likewise.
5397 (target_options_to_string): Return an std::string.
5398 * linux-nat.c (linux_nat_target::wait): Adjust.
5399 * target-debug.h (target_debug_print_options): Adjust.
5400
5401 2018-08-07 Tom Tromey <tom@tromey.com>
5402
5403 * Makefile.in (CPPFLAGS): New variable.
5404 (INTERNAL_CPPFLAGS): Use it.
5405
5406 2018-08-07 Simon Marchi <simon.marchi@ericsson.com>
5407
5408 * NEWS: Mention the index cache.
5409
5410 2018-08-07 Simon Marchi <simon.marchi@ericsson.com>
5411
5412 * common/pathstuff.h (get_standard_cache_dir): New.
5413 * common/pathstuff.c (get_standard_cache_dir): New.
5414 * build-id.h (build_id_to_string): New.
5415 * dwarf-index-common.h (INDEX4_SUFFIX, INDEX5_SUFFIX,
5416 DEBUG_STR_SUFFIX): Move to here.
5417 * dwarf-index-write.c (INDEX4_SUFFIX, INDEX5_SUFFIX,
5418 DEBUG_STR_SUFFIX): Move from there.
5419 (write_psymtabs_to_index): Make non-static, add basename
5420 parameter. Write to temporary files, rename when done.
5421 (save_gdb_index_command): Adjust call to
5422 write_psymtabs_to_index.
5423 * dwarf2read.h (dwarf2_per_objfile) <index_cache_res>: New
5424 field.
5425 * dwarf2read.c (dwz_file) <index_cache_res>: New field.
5426 (get_gdb_index_contents_from_cache): New.
5427 (get_gdb_index_contents_from_cache_dwz): New.
5428 (dwarf2_initialize_objfile): Read index from cache.
5429 (dwarf2_build_psymtabs): Save to index.
5430 * dwarf-index-cache.h: New file.
5431 * dwarf-index-cache.c: New file.
5432 * dwarf-index-write.h: New file.
5433
5434 2018-08-07 Simon Marchi <simon.marchi@ericsson.com>
5435
5436 * gnulib/aclocal.m4: Re-generate.
5437 * gnulib/config.in: Re-generate.
5438 * gnulib/configure: Re-generate.
5439 * gnulib/import/Makefile.am: Re-generate.
5440 * gnulib/import/Makefile.in: Re-generate.
5441 * gnulib/import/m4/gnulib-cache.m4: Re-generate.
5442 * gnulib/import/m4/gnulib-comp.m4: Re-generate.
5443 * gnulib/import/m4/mkdir.m4: New file.
5444 * gnulib/import/mkdir.c: New file.
5445 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add mkdir
5446 module.
5447
5448 2018-08-07 Simon Marchi <simon.marchi@ericsson.com>
5449
5450 * Makefile.in (COMMON_SFILES): Add common/scoped_mmap.c.
5451 * common/scoped_mmap.c: New file.
5452 * common/scoped_mmap.h (destroy): New method.
5453 (~scoped_mmap, reset): Use destroy.
5454 (scoped_mmap): New move constructor.
5455 (mmap_file): New declaration.
5456 * unittests/scoped_mmap-selftests.c (test_normal,
5457 test_invalid_filename, run_tests): New functions.
5458 (_initialize_scoped_mmap_selftests): Register selftest.
5459
5460 2018-08-07 Simon Marchi <simon.marchi@ericsson.com>
5461
5462 * dwarf2read.c (read_gdb_index_from_section): Rename to...
5463 (read_gdb_index_from_buffer): ... this. Remove section
5464 parameter, add buffer parameter.
5465 (get_gdb_index_contents_ftype,
5466 get_gdb_index_contents_dwz_ftype): New typedefs.
5467 (dwarf2_read_gdb_index): Add callback parameters to get the
5468 index contents.
5469 (get_gdb_index_contents_from_section): New.
5470 (dwarf2_initialize_objfile): Update call to
5471 dwarf2_read_gdb_index.
5472
5473 2018-08-07 Simon Marchi <simon.marchi@ericsson.com>
5474
5475 * common/filestuff.h (gdb_fopen_cloexec): New overload.
5476 (gdb_open_cloexec): Likewise.
5477 * nat/linux-osdata.c (command_from_pid): Use string_printf.
5478 (commandline_from_pid): Likewise.
5479 (linux_xfer_osdata_threads): Likewise.
5480 (linux_xfer_osdata_fds): Likewise.
5481 * ada-lang.c (is_package_name): Likewise.
5482 * auxv.c (procfs_xfer_auxv): Likewise.
5483 * breakpoint.c (print_one_breakpoint_location): Use
5484 uiout::field_fmt.
5485 (print_one_catch_solib): Use string_printf.
5486 * coff-pe-read.c (add_pe_exported_sym): Likewise.
5487 (add_pe_forwarded_sym): Likewise.
5488 * dwarf2read.c (create_type_unit_group): Likewise.
5489 (build_error_marker_type): Likewise.
5490 * infcall.c (get_function_name): Likewise.
5491 * valprint.c (print_converted_chars_to_obstack): Likewise.
5492 * xtensa-tdep.c (xtensa_register_type): Likewise.
5493
5494 2018-08-06 Simon Marchi <simon.marchi@ericsson.com>
5495
5496 * remote.c (remote_target::download_tracepoint): Fix format
5497 string errors.
5498
5499 2018-08-06 Pedro Franco de Carvalho <pedromfc@linux.ibm.com>
5500
5501 * tracefile.c: Include common/byte-vector.h.
5502 (trace_save): Change type of buf to gdb::byte_vector. Initialize
5503 with trace_regblock_size if needed. Update uses of buf.
5504
5505 2018-08-06 Pedro Franco de Carvalho <pedromfc@linux.ibm.com>
5506
5507 * tracepoint.h (collection_list) <m_regs_mask>: Change type to
5508 std::vector<unsigned char>.
5509 * tracepoint.c (collection_list::collection_list): Remove
5510 m_regs_mask initializer from initializer list. Resize
5511 m_regs_mask using the largest remote register number.
5512 (collection_list::add_remote_register): Remove size check on
5513 m_regs_mask. Use at to access element.
5514 (collection_list::stringify): Change type of temp_buf to
5515 gdb::char_vector. Update uses of temp_buf. Resize if needed to
5516 stringify the register mask. Use pack_hex_byte for the register
5517 mask.
5518
5519 2018-08-06 Pedro Franco de Carvalho <pedromfc@linux.ibm.com>
5520
5521 * tracepoint.h (class collection_list) <add_register>: Remove.
5522 <add_remote_register, add_ax_registers, add_local_register>:
5523 Declare.
5524 <add_memrange>: Add scope parameter.
5525 * tracepoint.c (encode_actions_1): Likewise.
5526 (collection_list::add_register): Rename to ...
5527 (collection_list::add_remote_register): ... this. Update
5528 comment.
5529 (collection_list::add_ax_registers, add_local_register): New
5530 methods.
5531 (collection_list::add_memrange): Add scope parameter. Call
5532 add_local_register instead of add_register.
5533 (finalize_tracepoint_aexpr): New function.
5534 (collection_list::collect_symbol): Update calls to add_memrange.
5535 Call add_local_register instead of add_register. Call
5536 add_ax_registers. Call finalize_tracepoint_aexpr.
5537 (encode_actions_1): Get remote regnos for $reg action. Call
5538 add_remote_register, add_ax_registers, and add_local_register.
5539 Update call to add_memrange. Call finalize_tracepoint_aexpr.
5540 (validate_actionline): Call finalize_tracepoint_aexpr.
5541
5542 2018-08-06 Pedro Franco de Carvalho <pedromfc@linux.ibm.com>
5543
5544 * remote.c (remote_target::download_tracepoint): Remove BUF_SIZE.
5545 Replace array buf with gdb::char_vector buf, of size
5546 get_remote_packet_size (). Replace references to buf and
5547 BUF_SIZE to buf.data () and buf.size (). Replace strcpy, strcat
5548 and xsnprintf with snprintf. Raise errors if the buffer is too
5549 small.
5550
5551 2018-08-06 Pedro Franco de Carvalho <pedromfc@linux.ibm.com>
5552
5553 * remote.c (remote_target::download_tracepoint): Fix the has_more
5554 predicate in the QTDP action list iteration.
5555
5556 2018-08-06 Pedro Franco de Carvalho <pedromfc@linux.ibm.com>
5557
5558 * remote.c (remote_target::download_tracepoint): Fix indentation
5559 in for block.
5560
5561 2018-08-06 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
5562
5563 * proc-api.c (_initialize_proc_api): Remove c, unused.
5564 * procfs.c (procfs_init_inferior): Remove signals, unused.
5565 (procfs_target::make_corefile_notes): Remove old_chain, fpregs,
5566 unused.
5567
5568 2018-08-06 Sergey Korolev <s.korolev@ndmsystems.com>
5569 Andrew Burgess <andrew.burgess@embecosm.com>
5570
5571 * linux-nat.c (linux_nat_target::follow_fork): Avoid using
5572 'W_STOPCODE (0)' as this could be ambiguous.
5573
5574 2018-08-03 Sergio Durigan Junior <sergiodj@redhat.com>
5575
5576 * ser-tcp.c (net_open): Fix thinko when deciding whether to
5577 disable TCP's Nagle algorithm (use "ai_protocol" instead of
5578 "ai_socktype").
5579
5580 2018-08-02 Tom Tromey <tom@tromey.com>
5581
5582 PR symtab/16842.
5583 * dwarf2read.c (read_func_scope): Set symtab on template parameter
5584 symbols.
5585 (process_structure_scope): Likewise.
5586
5587 2018-08-02 Xavier Roirand <roirand@adacore.com>
5588
5589 PR gdb/22629:
5590 * darwin-nat.c (darwin_kill_inferior): Fix handling of
5591 kill inferior.
5592
5593 2018-08-02 Tom Tromey <tom@tromey.com>
5594
5595 * darwin-nat.c (find_inferior_task_it, darwin_find_thread)
5596 (darwin_suspend_inferior, darwin_resume_inferior)
5597 (darwin_decode_notify_message, darwin_resume_inferior_threads)
5598 (darwin_check_new_threads): Check result of get_darwin_inferior.
5599
5600 2018-07-31 Joel Brobecker <brobecker@adacore.com>
5601
5602 GDB 8.1.1 released.
5603
5604 2018-07-31 Jan Vrany <jan.vrany@fit.cvut.cz>
5605
5606 * varobj.c (varobj_get_path_expr_parent): Report an error if
5607 parent is a dynamic varobj.
5608
5609 2018-07-31 Simon Marchi <simon.marchi@ericsson.com>
5610
5611 * gnulib/aclocal.m4: Re-generate.
5612 * gnulib/config.in: Re-generate.
5613 * gnulib/configure: Re-generate.
5614 * gnulib/import/Makefile.in: Re-generate.
5615 * gnulib/import/m4/gnulib-comp.m4: Re-generate.
5616 * gnulib/import/m4/onceonly.m4: Re-generate.
5617
5618 2018-07-31 Simon Marchi <simon.marchi@ericsson.com>
5619
5620 * target-descriptions.c (struct xml_test_tdesc): New.
5621 (xml_tdesc): Change type to std::vector<xml_test_tdesc>.
5622 (record_xml_tdesc): Update.
5623 (maintenance_check_xml_descriptions): Update.
5624 * target-descriptions.h (record_xml_tdesc): Update comment.
5625
5626 2018-07-30 Andrew Burgess <andrew.burgess@embecosm.com>
5627
5628 * eval.c (evaluate_subexp_for_sizeof): Check for array type before
5629 checking array bounds are defined.
5630
5631 2018-07-30 Tom Tromey <tom@tromey.com>
5632
5633 * nat/linux-osdata.c (pid_pgid_entry::operator<): Fix
5634 irreflexivity violation.
5635
5636 2018-07-30 Tom Tromey <tom@tromey.com>
5637
5638 * cli/cli-decode.c (lookup_cmd): Remove lint code.
5639 * value.c (unpack_long): Remove lint code.
5640 * valops.c (value_ind): Remove lint code.
5641 * valarith.c (value_x_binop, value_x_unop, value_equal)
5642 (value_pos): Remove lint code.
5643
5644 2018-07-28 Tom de Vries <tdevries@suse.de>
5645
5646 * eval.c (evaluate_subexp_for_sizeof): Interpret size of dynamic type
5647 with undefined upper bound as <optimized out>.
5648
5649 2018-07-27 Sergio Durigan Junior <sergiodj@redhat.com>
5650
5651 * gcore.in: Rename variable "name" to "prefix". Expand
5652 "usage" text.
5653
5654 2018-07-14 Jon Turney <jon.turney@dronecode.org.uk>
5655
5656 * windows-nat.c (windows_nat_target::create_inferior): Update to
5657 call close() in global namespace.
5658
5659 2018-07-26 Tom Tromey <tom@tromey.com>
5660
5661 * dwarf-index-write.c (add_address_entry): Don't add objfile
5662 offsets.
5663 * dbxread.c (find_stab_function): Rename from
5664 find_stab_function_addr. Return a bound_minimal_symbol.
5665 (read_dbx_symtab): Use raw_text_low, raw_text_high.
5666 Don't add objfile offsets.
5667 (end_psymtab): Use raw_text_low, raw_text_high,
5668 MSYMBOL_VALUE_RAW_ADDRESS.
5669 (read_ofile_symtab): Update.
5670 (process_one_symbol): Update.
5671 * dwarf2read.c (create_addrmap_from_index): Don't add objfile
5672 offsets.
5673 (dw2_relocate): Remove.
5674 (dw2_find_pc_sect_symtab): Bias PC by the text offset before
5675 searching addrmap.
5676 (dwarf2_gdb_index_functions, dwarf2_debug_names_functions):
5677 Update.
5678 (process_psymtab_comp_unit_reader, add_partial_symbol)
5679 (add_partial_subprogram, dwarf2_ranges_read): Update.
5680 (load_partial_dies): Update.
5681 (add_address_entry): Don't add objfile offsets.
5682 (dwarf2_build_include_psymtabs): Update.
5683 (create_addrmap_from_aranges): Don't add objfile offsets.
5684 (dw2_find_pc_sect_compunit_symtab): Update.
5685 * mdebugread.c (parse_symbol): Don't add objfile offsets.
5686 (parse_lines): Remove 'pst' parameter, replace with 'textlow'.
5687 Update.
5688 (parse_partial_symbols): Don't add objfile offsets. Use
5689 raw_text_low, raw_text_high. Update.
5690 (handle_psymbol_enumerators, psymtab_to_symtab_1): Update.
5691 * objfiles.c (objfile_relocate1): Don't relocate psymtabs_addrmap
5692 or call 'relocate' quick function. Clear psymbol_map.
5693 * psympriv.h (struct partial_symbol) <address>: Add section
5694 offset.
5695 <set_unrelocated_address>: Rename from set_address.
5696 <raw_text_low, raw_text_high>: New methods.
5697 <text_low, text_high>: Add objfile parameter.
5698 (add_psymbol_to_bcache): Add 'section' parameter. Call
5699 set_unrelocated_address.
5700 * psymtab.c (find_pc_sect_psymtab_closer, find_pc_sect_psymtab)
5701 (find_pc_psymbol): Update.
5702 (fixup_psymbol_section, relocate_psymtabs): Remove.
5703 (dump_psymtab, psym_functions): Update.
5704 (add_psymbol_to_bcache, add_psymbol_to_list): Add 'section'
5705 parameter.
5706 (maintenance_info_psymtabs, maintenance_check_psymtabs): Update.
5707 (start_psymtab_common): Update.
5708 * symfile-debug.c (debug_qf_relocate): Remove.
5709 (debug_sym_quick_functions): Update.
5710 * symfile.h (struct quick_symbol_functions) <relocate>: Remove.
5711 * xcoffread.c (scan_xcoff_symtab): Don't add objfile offsets.
5712 Update.
5713
5714 2018-07-26 Tom Tromey <tromey@redhat.com>
5715
5716 * dbxread.c (end_psymtab): Use text_high_valid and
5717 text_low_valid.
5718 * mdebugread.c (parse_partial_symbols): Use text_low_valid.
5719 (psymtab_to_symtab_1): Use text_high_valid and text_low_valid.
5720 * psympriv.h (struct partial_symtab) <m_text_low, m_text_high>:
5721 Update comment.
5722 <text_low_valid, text_high_valid>: New fields.
5723 <set_text_low, set_text_high>: Update.
5724 * xcoffread.c (scan_xcoff_symtab): Use text_low_valid.
5725
5726 2018-07-26 Tom Tromey <tom@tromey.com>
5727
5728 * dbxread.c (read_dbx_symtab, end_psymtab, read_ofile_symtab):
5729 Update.
5730 * dwarf2read.c (dwarf2_create_include_psymtab): Don't initialize
5731 textlow and texthigh fields.
5732 (process_psymtab_comp_unit_reader, dwarf2_build_include_psymtabs):
5733 Update.
5734 * mdebugread.c (parse_lines, parse_partial_symbols)
5735 (psymtab_to_symtab_1): Update.
5736 * psympriv.h (struct partial_symtab) <m_text_low, m_text_high>:
5737 Rename fields. Update comment. Now private.
5738 <text_low, text_high, set_text_low, set_text_high>: New methods.
5739 * psymtab.c (find_pc_sect_psymtab_closer, find_pc_sect_psymtab)
5740 (find_pc_sect_psymbol, relocate_psymtabs, dump_psymtab)
5741 (start_psymtab_common, maintenance_info_psymtabs)
5742 (maintenance_check_psymtabs): Update.
5743 * xcoffread.c (xcoff_end_psymtab): Don't initialize textlow and
5744 texthigh fields.
5745 (scan_xcoff_symtab): Update.
5746
5747 2018-07-26 Tom Tromey <tromey@redhat.com>
5748
5749 * psympriv.h (struct partial_symbol) <unrelocated_address,
5750 address, set_address>: New methods.
5751 * psymtab.c (find_pc_sect_psymtab_closer, find_pc_sect_psymbol)
5752 (fixup_psymbol_section, relocate_psymtabs): Update.
5753 (print_partial_symbols): Add 'objfile' parameter. Update.
5754 (dump_psymtab, add_psymbol_to_bcache, psym_fill_psymbol_map):
5755 Update.
5756
5757 2018-07-26 Tom Tromey <tom@tromey.com>
5758
5759 * dwarf-index-write.c (write_psymbols, debug_names::insert)
5760 (debug_names::write_psymbols): Update.
5761 * psympriv.h (struct partial_symbol): Derive from
5762 general_symbol_info.
5763 <obj_section>: New method.
5764 (PSYMBOL_DOMAIN, PSYMBOL_CLASS): Remove.n
5765 * psymtab.c (find_pc_sect_psymtab_closer, find_pc_sect_psymtab)
5766 (find_pc_sect_psymbol, fixup_psymbol_section)
5767 (match_partial_symbol, lookup_partial_symbol, relocate_psymtabs)
5768 (print_partial_symbols, recursively_search_psymtabs)
5769 (compare_psymbols, psymbol_hash, psymbol_compare)
5770 (add_psymbol_to_bcache, maintenance_check_psymtabs)
5771 (psymbol_name_matches, psym_fill_psymbol_map): Update.
5772
5773 2018-07-26 Tom Tromey <tromey@redhat.com>
5774
5775 * dbxread.c (end_psymtab): Remove dead code.
5776
5777 2018-07-26 Andrew Burgess <andrew.burgess@embecosm.com>
5778
5779 * dwarf2-frame-tailcall.c (tailcall_frame_sniffer): Exit early if
5780 DWARF unwinders are disabled.
5781 * dwarf2-frame.c: Add dwarf2read.h include.
5782 (dwarf2_frame_sniffer): Exit early if DWARF unwinders are
5783 disabled.
5784 (dwarf2_frame_unwinders_enabled_p): Define.
5785 (show_dwarf_unwinders_enabled_p): New function.
5786 (_initialize_dwarf2_frame): Register switch to control DWARF
5787 unwinder use.
5788 * dwarf2-frame.h (dwarf2_frame_unwinders_enabled_p): Declare.
5789 * dwarf2read.c (set_dwarf_cmdlist): Remove static keyword.
5790 (show_dwarf_cmdlist): Remove static keyword.
5791 * dwarf2read.h (set_dwarf_cmdlist): Declare.
5792 (show_dwarf_cmdlist): Declare.
5793 * NEWS: Document new feature.
5794
5795 2018-07-26 Tom de Vries <tdevries@suse.de>
5796
5797 PR breakpoints/23366
5798 * infcmd.c (info_program_command): Handle ptid == minus_one_ptid.
5799
5800 2018-07-26 Tom de Vries <tdevries@suse.de>
5801
5802 * dwarf2read.c (read_subrange_type): Warn if DW_AT_upper_bound or
5803 DW_AT_count can't be translated to a dynamic prop.
5804
5805 2018-07-25 Tom de Vries <tdevries@suse.de>
5806
5807 * dwarf2loc.c (dwarf2_locexpr_baton_eval): Wrap ctx.eval call in
5808 try/catch.
5809
5810 2018-07-25 Jan Vrany <jan.vrany@fit.cvut.cz>
5811
5812 * breakpoint.c (enable_disable_bp_num_loc): Notify observers.
5813
5814 2018-07-25 Joel Brobecker <brobecker@adacore.com>
5815
5816 * MAINTAINERS (Global Maintainers): Add Tom Tromey.
5817
5818 2018-07-24 Keith Seitz <keiths@redhat.comt
5819
5820 PR symtab/23010
5821 * dwarf2read.c (dw2_add_symbol_to_list): New function.
5822 (fixup_go_packaging, new_symbol): Use dw2_add_symbol_to_list
5823 instead of add_symbol_to_list.
5824 (read_file_scope): Call prepare_one_comp_unit before reading
5825 any other DIEs.
5826
5827 2018-07-24 Simon Marchi <simon.marchi@ericsson.com>
5828
5829 * common/scoped_mmap.h (class scoped_mmap): Fix indentation.
5830
5831 2018-07-24 Tom Tromey <tom@tromey.com>
5832
5833 * utils.c (malloc, realloc, free): Don't declare.
5834 * configure, config.in: Rebuild.
5835 * configure.ac: Don't check for declarations of free, malloc, or
5836 realloc.
5837
5838 2018-07-22 Simon Marchi <simon.marchi@polymtl.ca>
5839
5840 * aarch64-linux-nat.c
5841 (aarch64_linux_nat_target::stopped_data_address): Remove unused
5842 variable.
5843 * arm-linux-nat.c (fetch_regs): Likewise.
5844 (store_regs): Likewise.
5845 (fetch_vfp_regs): Likewise.
5846 (store_vfp_regs): Likewise.
5847 (arm_linux_nat_target::insert_hw_breakpoint): Likewise.
5848 (arm_linux_nat_target::remove_hw_breakpoint): Likewise.
5849 (arm_linux_nat_target::insert_watchpoint): Likewise.
5850 (arm_linux_nat_target::remove_watchpoint): Likewise.
5851 * mips-linux-nat.c (mips_linux_nat_target::insert_watchpoint):
5852 Likewise.
5853 * nat/aarch64-sve-linux-ptrace.c (aarch64_sve_get_sveregs):
5854 Likewise.
5855 * ppc-linux-nat.c (fetch_register): Likewise.
5856 (fetch_all_gp_regs): Likewise.
5857 (fetch_ppc_registers): Likewise.
5858 (store_all_gp_regs): Likewise.
5859 (store_ppc_registers): Likewise.
5860 (hwdebug_insert_point): Likewise.
5861 (can_use_watchpoint_cond_accel): Likewise.
5862 * remote-sim.c (gdb_os_write_stdout): Likewise.
5863
5864 2018-07-22 Simon Marchi <simon.marchi@polymtl.ca>
5865 Tom Tromey <tom@tromey.com>
5866
5867 * warning.m4 (AM_GDB_WARNINGS): Add -Wunused-variable and special
5868 test for it.
5869 * configure: Rebuild.
5870
5871 2018-07-22 Tom Tromey <tom@tromey.com>
5872
5873 * regformats/regdat.sh: Define xmltarget_${name} inside
5874 #ifndef IN_PROCESS_AGENT.
5875
5876 2018-07-22 Tom Tromey <tom@tromey.com>
5877
5878 * value.c (value_fetch_lazy_bitfield): Remove unused variable.
5879
5880 2018-07-22 Tom Tromey <tom@tromey.com>
5881
5882 * symfile.c (reread_symbols): Notify iter, not objfile.
5883
5884 2018-07-22 Tom Tromey <tom@tromey.com>
5885
5886 * ravenscar-thread.c (ravenscar_thread_target::store_registers):
5887 Use arch_ops.
5888 (ravenscar_thread_target::prepare_to_store): Likewise.
5889
5890 2018-07-22 Tom Tromey <tom@tromey.com>
5891
5892 * python/py-prettyprint.c (gdbpy_apply_val_pretty_printer): Remove
5893 unused variable. Call value_fetch_lazy when needed.
5894 * guile/scm-pretty-print.c (gdbscm_apply_val_pretty_printer):
5895 Remove unused variable. Call value_fetch_lazy when needed.
5896
5897 2018-07-22 Tom Tromey <tom@tromey.com>
5898
5899 * m32c-tdep.c (mark_dma): Return void.
5900 (make_regs): Remove unused declarations.
5901
5902 2018-07-22 Tom Tromey <tom@tromey.com>
5903
5904 * guile/scm-cmd.c (gdbscm_dont_repeat): Call
5905 cmdscm_get_valid_command_smob_arg_unsafe for effect.
5906 * guile/scm-block.c (gdbscm_make_block_syms_iter): Call
5907 bkscm_get_valid_block_smob_arg_unsafe for effect.
5908
5909 2018-07-22 Tom Tromey <tom@tromey.com>
5910
5911 * bfin-tdep.c (bfin_push_dummy_call): Use arg_type, not
5912 value_type.
5913
5914 2018-07-22 Tom Tromey <tom@tromey.com>
5915
5916 * windows-nat.c (saved_context): Conditionally define.
5917 * remote.c (remote_target::remote_btrace_maybe_reopen):
5918 Conditionally declare "warned".
5919 * inflow.c (sigquit_ours): Conditionally define.
5920 (new_tty): Move "tty" declaration inside #if.
5921 * guile/guile.c (guile_datadir): Conditionally define.
5922 * charset.c (set_be_le_names): Move some declarations inside #if.
5923 * btrace.c (parse_xml_btrace): Move "errcode" declaration inside
5924 #if.
5925 (parse_xml_btrace_conf): Likewise.
5926
5927 2018-07-22 Tom Tromey <tom@tromey.com>
5928
5929 * spu-tdep.c (spu_get_overlay_table): Remove unused variable.
5930
5931 2018-07-22 Tom Tromey <tom@tromey.com>
5932
5933 * guile/scm-value.c (gdbscm_value_call): Remove unused variables.
5934 * guile/scm-math.c (vlscm_unop_gdbthrow, vlscm_binop_gdbthrow)
5935 (vlscm_convert_typed_value_from_scheme): Remove unused variable.
5936 * buildsym-legacy.c (get_macro_table): Remove unused variable.
5937 * stack.c (frame_apply_level_command): Remove unused variable.
5938 * tic6x-tdep.c (tic6x_push_dummy_call): Remove unused variable.
5939 * sparc64-tdep.c (adi_examine_command): Remove unused variable.
5940 * rs6000-lynx178-tdep.c (rs6000_lynx178_push_dummy_call): Remove
5941 unused variable.
5942 * nios2-tdep.c (nios2_push_dummy_call): Remove unused variable.
5943 * mep-tdep.c (mep_push_dummy_call): Remove unused variable.
5944 * ada-lang.c (ada_lookup_symbol_list_worker): Remove unused
5945 variable.
5946 * amd64-tdep.c (amd64_supply_xsave): Remove unused variable.
5947 * arm-tdep.c (arm_record_data_proc_misc_ld_str): Remove unused
5948 variable.
5949 * breakpoint.c (check_no_tracepoint_commands, update_watchpoint):
5950 Remove unused variable.
5951 * cli/cli-script.c (recurse_read_control_structure): Remove unused
5952 variable.
5953 * common/tdesc.c (print_xml_feature::visit): Remove unused
5954 variable.
5955 * compile/compile-object-load.c (store_regs): Remove unused
5956 variables.
5957 * complaints.c (clear_complaints): Remove unused variable.
5958 * corelow.c (core_target_open): Remove unused variable.
5959 * fbsd-tdep.c (fbsd_core_info_proc_status): Remove unused
5960 variable.
5961 * guile/scm-frame.c (gdbscm_frame_read_var): Remove unused
5962 variable.
5963 * guile/scm-symtab.c (stscm_print_sal_smob): Remove unused
5964 variable.
5965 * guile/scm-type.c (gdbscm_field_baseclass_p): Remove unused
5966 variable.
5967 * guile/scm-utils.c (gdbscm_parse_function_args): Remove unused
5968 variable.
5969 * hppa-tdep.c (hppa_stub_frame_unwind_cache): Remove unused
5970 variable.
5971 * ia64-tdep.c (examine_prologue): Remove unused variable.
5972 * infcall.c (run_inferior_call): Remove unused variable.
5973 * inferior.c (exit_inferior): Remove unused variable.
5974 * infrun.c (infrun_thread_ptid_changed): Remove unused variable.
5975 * linespec.c (decode_line_2): Remove unused variable.
5976 * linux-nat.c (super_close): Remove.
5977 * linux-tdep.c (linux_info_proc): Remove unused variable.
5978 * mi/mi-main.c (mi_execute_command): Remove unused variable.
5979 * microblaze-linux-tdep.c (microblaze_linux_sigtramp_cache):
5980 Remove unused variable.
5981 * parse.c (find_minsym_type_and_address): Remove unused variable.
5982 * printcmd.c (info_symbol_command, printf_floating): Remove unused
5983 variable.
5984 * python/py-breakpoint.c (bppy_set_commands): Remove unused
5985 variable.
5986 * python/py-unwind.c (unwind_infopy_dealloc): Remove unused
5987 variables.
5988 * record-btrace.c (record_btrace_target::store_registers): Remove
5989 unused variable.
5990 (cmd_show_record_btrace_cpu): Remove unused variable.
5991 * riscv-tdep.c (riscv_register_reggroup_p)
5992 (riscv_push_dummy_call, riscv_return_value): Remove unused
5993 variable.
5994 * rust-exp.y (literal): Remove unused variable.
5995 * rust-lang.c (rust_evaluate_subexp) <OP_RUST_ARARAY>: Remove
5996 unused variable.
5997 <STRUCTOP_ANONYMOUS>: Likewise.
5998 * s390-linux-tdep.c (s390_linux_init_abi_31)
5999 (s390_linux_init_abi_64): Remove unused variable.
6000 * ser-ming2.c (ser_windows_read_prim, pipe_select_thread)
6001 (file_select_thread, net_windows_open, _initialize_ser_windows):
6002 Remove unused variables.
6003 * symtab.c (find_pc_sect_line): Remove unused variable.
6004 * target-memory.c (compute_garbled_blocks): Remove unused
6005 variable.
6006 (target_write_memory_blocks): Remove unused variable.
6007 * target.c (target_stack::unpush): Remove unused variables.
6008 * tracepoint.c (start_tracing, all_tracepoint_actions)
6009 (merge_uploaded_trace_state_variables)
6010 (print_one_static_tracepoint_marker): Remove unused variable.
6011 * unittests/basic_string_view/element_access/char/1.cc (test01):
6012 Remove unused variable.
6013 * windows-nat.c (windows_continue, windows_add_all_dlls)
6014 (do_initial_windows_stuff, windows_nat_target::create_inferior):
6015 Remove unused variables.
6016
6017 2018-07-21 Simon Marchi <simon.marchi@polymtl.ca>
6018
6019 * arm-tdep.c (arm_gdbarch_init): Declare attr_arch and
6020 attr_profile in HAVE_ELF.
6021 * rs6000-tdep.c (bfd_uses_spe_extensions): Declare vector_abi in
6022 HAVE_ELF.
6023
6024 2018-07-20 Simon Marchi <simon.marchi@polymtl.ca>
6025
6026 * frame.c (frame_register_unwind): Change parameter name.
6027 (frame_unwind_register): Likewise.
6028 (frame_unwind_register_value): Likewise.
6029 (frame_unwind_register_signed): Likewise.
6030 (frame_unwind_register_unsigned): Likewise.
6031 * frame.h (frame_register_unwind): Likewise.
6032 (frame_unwind_register): Likewise.
6033 (frame_unwind_register_value): Likewise.
6034 (frame_unwind_register_signed): Likewise.
6035 (frame_unwind_register_unsigned): Likewise.
6036 (frame_unwind_arch): Likewise.
6037
6038 2018-07-20 Maciej W. Rozycki <macro@mips.com>
6039
6040 * MAINTAINERS: Update my e-mail address, downgrade to MIPS I-IV
6041 ISA maintenance.
6042
6043 2018-07-20 Maciej W. Rozycki <macro@mips.com>
6044
6045 * mips-linux-nat.c (mips_linux_nat_target::read_description):
6046 Call `get_ptrace_pid' rather than extracting the ptrace PID by
6047 hand.
6048
6049 2018-07-20 Keith Seitz <keiths@redhat.com>
6050
6051 * buildsym.h (struct buildsym_compunit) <m_objfile, m_subfiles,
6052 m_main_subfile, m_comp_dir, m_producer, m_debugformat,
6053 m_compunit_symtab, m_language>: Add "m_" prefix.
6054 Update all uses.
6055 * buildsym.c: Update all uses.
6056
6057 2018-07-20 Tom Tromey <tom@tromey.com>
6058
6059 * buildsym-legacy.h (record_line): Don't use record_line_ftype.
6060 * buildsym.h (record_line_ftype): Remove typedef.
6061
6062 2018-07-20 Tom Tromey <tom@tromey.com>
6063
6064 * buildsym-legacy.h (augment_type_symtab): Don't declare.
6065 (end_expandable_symtab): Likewise.
6066 (end_symtab_get_static_block): Likewise.
6067 (end_symtab_from_static_block): Likewise.
6068 * buildsym-legacy.c (augment_type_symtab): Remove.
6069 (end_expandable_symtab): Remove.
6070 (end_symtab_get_static_block): Remove.
6071 (end_symtab_from_static_block): Remove.
6072
6073 2018-07-20 Tom Tromey <tom@tromey.com>
6074
6075 * dwarf2read.c: Include buildsym.h.
6076 (struct dwarf2_cu) <builder>: New method.
6077 (fixup_go_packaging): Update.
6078 (process_full_comp_unit, process_full_type_unit): Update. Don't
6079 use scoped_free_pendings.
6080 (using_directives): Add "cu" parameter, remove "language".
6081 (read_import_statement, setup_type_unit_groups, )
6082 (read_func_scope, read_lexical_block_scope)
6083 (dwarf2_record_block_ranges, read_namespace): Update.
6084 (lnp_state_machine::lnp_state_machine): Add cu parameter.
6085 (lnp_state_machine::handle_end_sequence): Update.
6086 (class lnp_state_machine) <m_cu>: New member.
6087 <m_record_line_callback>: Remove.
6088 <m_currently_recording_lines>: New member.
6089 (lnp_state_machine::handle_set_file): Update.
6090 (noop_record_line): Remove.
6091 (dwarf_record_line_p): Add cu parameter.
6092 (dwarf_record_line_1, dwarf_finish_line): Likewise.
6093 (lnp_state_machine::record_line)
6094 (lnp_state_machine::lnp_state_machine)
6095 (lnp_state_machine::check_line_address, dwarf_decode_lines_1)
6096 (dwarf_decode_lines): Update.
6097 (dwarf2_start_subfile): Add cu parameter.
6098 (dwarf2_start_symtab, new_symbol): Update.
6099 (macro_start_file, dwarf_decode_macro_bytes): Add cu parameter.
6100 Remove dwarf2_per_objfile parameter.
6101 (dwarf_decode_macros): Update.
6102
6103 2018-07-20 Tom Tromey <tom@tromey.com>
6104
6105 * stabsread.c (define_symbol): Update.
6106 * buildsym-legacy.h (get_buildsym_compunit): Declare.
6107 * dwarf2read.c (new_symbol): Update.
6108 * cp-support.h (cp_scan_for_anonymous_namespaces): Update.
6109 * cp-namespace.c: Include buildsym.h.
6110 (cp_scan_for_anonymous_namespaces): Add "compunit" parameter.
6111 * buildsym-legacy.c (get_buildsym_compunit): New function.
6112
6113 2018-07-20 Tom Tromey <tom@tromey.com>
6114
6115 * xcoffread.c: Include buildsym-legacy.h.
6116 * windows-nat.c: Include buildsym-legacy.h.
6117 * stabsread.c: Include buildsym-legacy.h.
6118 * mdebugread.c: Include buildsym-legacy.h.
6119 * buildsym-legacy.h: New file.
6120 * buildsym-legacy.c: New file, from buildsym.c.
6121 * go32-nat.c: Include buildsym-legacy.h.
6122 * dwarf2read.c: Include buildsym-legacy.h.
6123 * dbxread.c: Include buildsym-legacy.h.
6124 * cp-namespace.c: Include buildsym-legacy.h.
6125 * coffread.c: Include buildsym-legacy.h.
6126 * buildsym.h: Move some contents to buildsym-legacy.h.
6127 * buildsym.c: Include buildsym-legacy.h. Move many functions to
6128 buildsym-legacy.c.
6129 * Makefile.in (HFILES_NO_SRCDIR): Add buildsym-legacy.h.
6130
6131 2018-07-20 Tom Tromey <tom@tromey.com>
6132
6133 * buildsym.h (struct buildsym_compunit): Move from buildsym.c.
6134 * buildsym.c (struct buildsym_compunit): Move to buildsym.h.
6135 (buildsym_compunit::buildsym_compunit)
6136 (buildsym_compunit::~buildsym_compunit)
6137 (buildsym_compunit::get_macro_table): Define.
6138
6139 2018-07-20 Tom Tromey <tom@tromey.com>
6140
6141 * buildsym.c (reset_symtab_globals): Remove.
6142 (buildsym_compunit::end_symtab_from_static_block): Update.
6143 (buildsym_compunit::augment_type_symtab): Update.
6144 (end_symtab_from_static_block): Call free_buildsym_compunit.
6145 (augment_type_symtab, end_symtab, end_expandable_symtab):
6146 Likewise.
6147
6148 2018-07-20 Tom Tromey <tom@tromey.com>
6149
6150 * arch-utils.c: Do not include buildsym.h.
6151 * mipsread.c: Do not include buildsym.h.
6152 * machoread.c: Do not include buildsym.h.
6153 * elfread.c: Do not include buildsym.h.
6154
6155 2018-07-20 Tom Tromey <tom@tromey.com>
6156
6157 * buildsym.c (buildsym_compunit::buildsym_compunit): Do more
6158 initialization.
6159 (buildsym_compunit): Add new constructor.
6160 (struct buildsym_compunit) <get_last_source_file, finish_block,
6161 record_block_range, start_subfile, patch_subfile_names,
6162 push_subfile, pop_subfile, record_line, get_compunit_symtab,
6163 set_last_source_start_addr, get_last_source_start_addr,
6164 get_local_using_directives, set_local_using_directives,
6165 get_global_using_directives, outermost_context_p,
6166 get_current_context_stack, get_context_stack_depth,
6167 get_current_subfile, get_local_symbols, get_file_symbols,
6168 get_global_symbols, record_debugformat, record_producer,
6169 push_context, pop_context, end_symtab_get_static_block,
6170 end_symtab_from_static_block, end_symtab, end_expandable_symtab>:
6171 New public methods.
6172 <record_pending_block, finish_block_internal, make_blockvector,
6173 watch_main_source_file_lossage, end_symtab_with_blockvector>: New
6174 private methods.
6175 Update all users.
6176
6177 2018-05-22 Tom Tromey <tom@tromey.com>
6178
6179 * buildsym.c (record_pending_block): Move earlier. Remove objfile
6180 parameter.
6181 (finish_block_internal): Update.
6182
6183 2018-07-20 Tom Tromey <tom@tromey.com>
6184
6185 * buildsym.c (record_pending_block): Move earlier. Remove objfile
6186 parameter.
6187 (finish_block_internal): Update.
6188
6189 2018-07-20 Tom Tromey <tom@tromey.com>
6190
6191 * buildsym.h (EXTERN): Don't define or undef.
6192 * buildsym.c (EXTERN): Don't define.
6193
6194 2018-07-20 Tom Tromey <tom@tromey.com>
6195
6196 * buildsym.c: Remove TODO comment.
6197
6198 2018-07-20 Tom Tromey <tom@tromey.com>
6199
6200 * coffread.c (coff_symtab_read): Update.
6201 * xcoffread.c (xcoff_psymtab_to_symtab_1): Update.
6202 (xcoff_new_init): Update.
6203 * mipsread.c (mipscoff_new_init): Update.
6204 * mdebugread.c (mdebug_build_psymtabs): Update.
6205 * elfread.c (elf_new_init): Update.
6206 * dwarf2read.c (process_full_comp_unit, process_full_type_unit):
6207 Update.
6208 * dbxread.c (dbx_new_init, dbx_psymtab_to_symtab_1)
6209 (coffstab_build_psymtabs, elfstab_build_psymtabs)
6210 (stabsect_build_psymtabs): Update.
6211 * buildsym.h (buildsym_init): Don't declare.
6212 * buildsym.c: Update comment.
6213 (prepare_for_building): Remove.
6214 (start_symtab, restart_symtab): Update.
6215 (reset_symtab_globals): Update comment.
6216 (buildsym_init): Remove.
6217
6218 2018-07-20 Tom Tromey <tom@tromey.com>
6219
6220 * xcoffread.c (read_xcoff_symtab, process_xcoff_symbol): Update.
6221 * stabsread.c (patch_block_stabs, define_symbol, read_type)
6222 (read_enum_type, common_block_start, common_block_end)
6223 (cleanup_undefined_types_1, finish_global_stabs): Update.
6224 * mdebugread.c (psymtab_to_symtab_1): Update.
6225 * dwarf2read.c (fixup_go_packaging, read_func_scope)
6226 (read_lexical_block_scope, new_symbol): Update.
6227 * dbxread.c (process_one_symbol): Update.
6228 * coffread.c (coff_symtab_read, process_coff_symbol)
6229 (coff_read_enum_type): Update.
6230 * buildsym.h (file_symbols, global_symbols, local_symbols): Don't
6231 declare.
6232 (get_local_symbols, get_file_symbols, get_global_symbols): New
6233 functions.
6234 * buildsym.c (~buildsym_compunit): Clean up m_file_symbols and
6235 m_global_symbols.
6236 <m_file_symbols, m_local_symbols, m_global_symbols>: New members.
6237 (~scoped_free_pendings): Update.
6238 (finish_block, prepare_for_building, reset_symtab_globals)
6239 (end_symtab_get_static_block, end_symtab_with_blockvector)
6240 (augment_type_symtab, push_context): Update.
6241 (get_local_symbols, get_file_symbols, get_global_symbols): New
6242 functions.
6243 (buildsym_init): Update.
6244
6245 2018-07-20 Tom Tromey <tom@tromey.com>
6246
6247 * dwarf2read.c (process_full_comp_unit): Do not set list_in_scope.
6248 (process_full_type_unit): Likewise.
6249 (dwarf2_start_symtab): Set list_in_scope.
6250
6251 2018-07-20 Tom Tromey <tom@tromey.com>
6252
6253 * dwarf2read.c (process_psymtab_comp_unit_reader)
6254 (build_type_psymtabs_reader): Do not set list_in_scope.
6255
6256 2018-07-20 Tom Tromey <tom@tromey.com>
6257
6258 * buildsym.c (free_pendings): Remove.
6259 (add_symbol_to_list, scoped_free_pendings)
6260 (finish_block_internal, buildsym_init): Update.
6261
6262 2018-07-20 Tom Tromey <tom@tromey.com>
6263
6264 * xcoffread.c (read_xcoff_symtab): Update.
6265 * dwarf2read.c (read_func_scope, read_lexical_block_scope):
6266 Update.
6267 * dbxread.c (process_one_symbol): Update.
6268 * coffread.c (coff_symtab_read): Update.
6269 * buildsym.h (finish_block): Update.
6270 * buildsym.c (finish_block): Remove "listhead" argument.
6271 (end_symtab_get_static_block): Update.
6272
6273 2018-07-20 Tom Tromey <tom@tromey.com>
6274
6275 * buildsym.h (class scoped_free_pendings): Remove constructor.
6276 * buildsym.c (struct buildsym_compunit) <free_pending_blocks>: New
6277 method.
6278 <m_pending_block_obstack, m_pending_blocks>: New members.
6279 (pending_block_obstack, pending_blocks): Remove.
6280 (scoped_free_pendings::scoped_free_pendings): Default.
6281 (~scoped_free_pendings): Update.
6282 (free_pending_blocks): Remove.
6283 (finish_block_internal, record_pending_block, make_blockvector)
6284 (end_symtab_get_static_block, augment_type_symtab, push_context)
6285 (buildsym_init): Update.
6286
6287 2018-07-20 Tom Tromey <tom@tromey.com>
6288
6289 * buildsym.c (struct buildsym_compunit) <m_pending_addrmap,
6290 m_pending_addrmap_obstack, m_pending_addrmap_interesting>: New
6291 members.
6292 (pending_addrmap, pending_addrmap_obstack)
6293 (pending_addrmap_interesting): Remove.
6294 (scoped_free_pendings, record_block_range, make_blockvector)
6295 (prepare_for_building, reset_symtab_globals, buildsym_init):
6296 Update.
6297
6298 2018-07-20 Tom Tromey <tom@tromey.com>
6299
6300 * xcoffread.c (process_linenos): Update.
6301 * stabsread.c (define_symbol, read_type, read_enum_type): Update.
6302 * mdebugread.c (psymtab_to_symtab_1): Update.
6303 * dwarf2read.c (setup_type_unit_groups)
6304 (lnp_state_machine::handle_set_file, dwarf_record_line_p)
6305 (lnp_state_machine::record_line, dwarf_decode_lines): Update.
6306 * dbxread.c (process_one_symbol): Update.
6307 * coffread.c (coff_symtab_read, enter_linenos)
6308 (process_coff_symbol): Update.
6309 * buildsym.h (current_subfile): Don't declare.
6310 (get_current_subfile): Declare.
6311 * buildsym.c (struct buildsym_compunit) <m_current_subfile>: New
6312 member.
6313 (start_subfile, free_buildsym_compunit, push_subfile)
6314 (prepare_for_building, start_symtab): Update.
6315 (get_current_subfile): New function.
6316
6317 2018-07-20 Tom Tromey <tom@tromey.com>
6318
6319 * coffread.c (coff_symtab_read): Update.
6320 * xcoffread.c (read_xcoff_symtab): Update.
6321 * dwarf2read.c (new_symbol): Update.
6322 (read_func_scope, read_lexical_block_scope): Update.
6323 * dbxread.c (process_one_symbol): Update.
6324 * buildsym.h (context_stack, context_stack_depth): Don't declare.
6325 (outermost_context_p): Remove macro.
6326 (outermost_context_p, get_current_context_stack)
6327 (get_context_stack_depth): Declare.
6328 (pop_context): Return struct context_stack.
6329 * buildsym.c (struct buildsym_compunit) <m_context_stack: New
6330 member.
6331 (context_stack_size): Remove.
6332 (INITIAL_CONTEXT_STACK_SIZE): Remove.
6333 (prepare_for_building, end_symtab_get_static_block)
6334 (augment_type_symtab, push_context): Update.
6335 (pop_context): Return struct context_stack.
6336 (outermost_context_p, get_current_context_stack)
6337 (get_context_stack_depth): New functions.
6338 (buildsym_init): Update.
6339
6340 2018-07-20 Tom Tromey <tom@tromey.com>
6341
6342 * rust-exp.y: Now a pure parser. Update all rules.
6343 (%union): Move earlier.
6344 (current_parser, work_obstack): Remove globals.
6345 (rust_parser, ~rust_parser): Update.
6346 (class rust_parser) <copy_name, concat3, crate_name, super_name,
6347 lex_character, lex_number, lex_string, lex_identifier,
6348 rust_lookup_type, convert_params_to_types, convert_ast_to_type,
6349 convert_name, convert_params_to_expression,
6350 convert_ast_to_expression, ast_basic_type, ast_operation,
6351 ast_compound_assignment, rust_op, ast_literal, ast_dliteral,
6352 ast_structop, ast_structop_anonymous, ast_unary, ast_cast,
6353 ast_call_ish, ast_path, ast_string, ast_struct, ast_range,
6354 ast_array_type, ast_slice_type, ast_reference_type,
6355 ast_pointer_type, ast_function_type, ast_tuple_type>: New methods.
6356 (rust_parse): Update.
6357 (rustyyerror, rustyylex): Add parser parameter.
6358 (rust_lex_test_one, rust_lex_int_test, rust_lex_exception_test)
6359 (rust_lex_stringish_test, rust_lex_test_sequence)
6360 (rust_lex_test_trailing_dot, rust_lex_test_completion)
6361 (rust_lex_test_push_back, rust_lex_tests): Update.
6362
6363 2018-07-19 Pedro Alves <palves@redhat.com>
6364
6365 * guile/guile-internal.h (gdbscm_scm_to_c_string): Now returns a
6366 gdb::unique_xmalloc_ptr.
6367 * guile/scm-breakpoint.c (gdbscm_set_breakpoint_condition_x):
6368 Adjust to use dbscm_wrap and gdb::unique_xmalloc_ptr.
6369 * guile/scm-exception.c (gdbscm_exception_message_to_string): Use
6370 copy-initialization.
6371 * guile/scm-pretty-print.c (ppscm_print_children): Use
6372 gdb::unique_xmalloc_ptr instead of cleanups.
6373 (gdbscm_apply_val_pretty_printer): Remove cleanups.
6374 * guile/scm-string.c (gdbscm_scm_to_c_string): Now returns a
6375 gdb::unique_xmalloc_ptr.
6376 * guile/scm-type.c (gdbscm_type_field, gdbscm_type_has_field_p):
6377 Adjust to use gdb::unique_xmalloc_ptr.
6378 * guile/scm-utils.c (extract_arg): Adjust.
6379 * guile/scm-value.c (gdbscm_value_field): Adjust to use
6380 gdb::unique_xmalloc_ptr instead of a cleanup.
6381
6382 2018-07-19 Tom Tromey <tom@tromey.com>
6383
6384 * utils.c (do_value_free_to_mark)
6385 (make_cleanup_value_free_to_mark): Remove.
6386 * utils.h (make_cleanup_value_free_to_mark): Remove.
6387
6388 2018-07-19 Pedro Alves <palves@redhat.com>
6389
6390 * guile/guile-internal.h (gdbscm_wrap): Really make 'args' a
6391 forwarding reference.
6392
6393 2018-07-18 Pedro Alves <palves@redhat.com>
6394
6395 * guile/guile.c (gdbscm_execute_gdb_command): Adjust to use
6396 gdbscm_wrap. Use gdb::unique_xmalloc_ptr<char> instead of a
6397 cleanup.
6398
6399 2018-07-18 Pedro Alves <palves@redhat.com>
6400
6401 * guile/guile-internal.h: Add comment about mixing GDB and Scheme
6402 exceptions.
6403 (GDBSCM_HANDLE_GDB_EXCEPTION_WITH_CLEANUPS): Delete.
6404 (gdbscm_wrap): New.
6405 * guile/scm-frame.c (gdbscm_frame_read_register): Use xfree
6406 directly instead of a cleanup.
6407 * guile/scm-math.c (vlscm_unop_gdbthrow): New, factored out from ...
6408 (vlscm_unop): ... this. Reimplement using gdbscm_wrap.
6409 (vlscm_binop_gdbthrow): New, factored out from ...
6410 (vlscm_binop): ... this. Reimplement using gdbscm_wrap.
6411 (vlscm_rich_compare): Use gdbscm_wrap.
6412 * guile/scm-symbol.c (gdbscm_lookup_symbol): Use xfree directly
6413 instead of a cleanup.
6414 (gdbscm_lookup_global_symbol): Use xfree directly instead of a
6415 cleanup.
6416 * guile/scm-type.c (gdbscm_type_field, gdbscm_type_has_field_p):
6417 Use xfree directly instead of a cleanup.
6418 * guile/scm-value.c (gdbscm_make_value, gdbscm_make_lazy_value):
6419 Adjust to use gdbscm_wrap and scoped_value_mark.
6420 (gdbscm_value_optimized_out_p): Adjust to use gdbscm_wrap.
6421 (gdbscm_value_address, gdbscm_value_dereference)
6422 (gdbscm_value_referenced_value): Adjust to use gdbscm_wrap and
6423 scoped_value_mark.
6424 (gdbscm_value_dynamic_type): Use scoped_value_mark.
6425 (vlscm_do_cast, gdbscm_value_field): Adjust to use gdbscm_wrap and
6426 scoped_value_mark.
6427 (gdbscm_value_subscript, gdbscm_value_call): Adjust to use
6428 gdbscm_wrap and scoped_value_mark.
6429 (gdbscm_value_to_string): Use xfree directly instead of a
6430 cleanup. Move 'buffer' unique_ptr to TRY scope.
6431 (gdbscm_value_to_lazy_string): Use xfree directly instead of a
6432 cleanup. Move 'buffer' unique_ptr to TRY scope. Use
6433 scoped_value_mark.
6434 (gdbscm_value_fetch_lazy_x): Use gdbscm_wrap.
6435 (gdbscm_parse_and_eval): Adjust to use gdbscm_wrap and
6436 scoped_value_mark.
6437 (gdbscm_history_ref, gdbscm_history_append_x): Adjust to use
6438 gdbscm_wrap.
6439
6440 2018-07-18 Tom de Vries <tdevries@suse.de>
6441
6442 * findvar.c (default_read_var_value): Also resolve dynamic type for
6443 LOC_OPTIMIZED_OUT vars.
6444
6445 2018-07-18 Maciej W. Rozycki <macro@mips.com>
6446
6447 * mips-tdep.c (micromips_next_pc): Add SYSCALL instruction
6448 decoding.
6449
6450 2018-07-17 Tom Tromey <tom@tromey.com>
6451
6452 * guile/scm-param.c (pascm_set_func, pascm_show_func)
6453 (compute_enum_list, pascm_set_param_value_x)
6454 (gdbscm_parameter_value): Update.
6455 * guile/guile-internal.h (gdbscm_scm_to_string): Update.
6456 (gdbscm_scm_to_host_string): Update.
6457 * guile/scm-math.c (vlscm_convert_typed_value_from_scheme):
6458 Update.
6459 * guile/scm-cmd.c (cmdscm_add_completion): Update.
6460 * guile/scm-pretty-print.c (ppscm_print_string_repr): Update.
6461 * guile/scm-string.c (gdbscm_scm_to_string): Return
6462 unique_xmalloc_ptr.
6463 (gdbscm_scm_to_host_string): Likewise.
6464
6465 2018-07-17 Tom Tromey <tom@tromey.com>
6466
6467 * guile/guile.c (gdbscm_eval_from_control_command): Update.
6468 * guile/guile-internal.h (gdbscm_safe_eval_string): Update.
6469 * guile/scm-objfile.c (gdbscm_execute_objfile_script): Update.
6470 * guile/scm-safe-call.c (gdbscm_safe_eval_string): Return
6471 unique_xmalloc_ptr.
6472
6473 2018-07-17 Tom Tromey <tom@tromey.com>
6474
6475 * guile/scm-param.c (pascm_signal_setshow_error): Update.
6476 * guile/guile-internal.h (gdbscm_exception_message_to_string):
6477 Update.
6478 * guile/scm-cmd.c (cmdscm_function): Update.
6479 * guile/scm-pretty-print.c
6480 (ppscm_print_exception_unless_memory_error): Update.
6481 * guile/scm-exception.c (gdbscm_exception_message_to_string):
6482 Return unique_xmalloc_ptr.
6483
6484 2018-07-17 Tom Tromey <tom@tromey.com>
6485
6486 * guile/scm-pretty-print.c (ppscm_make_pp_type_error_exception):
6487 Use string_printf.
6488
6489 2018-07-17 Jim Wilson <jimw@sifive.com>
6490
6491 * riscv-tdep.c (riscv_has_feature): Delete comment that refers to
6492 set_gdbarch_decr_pc_after_break. Call riscv_read_misa_reg always.
6493 (riscv_gdbarch_init): Delete local has_compressed_isa. Delete now
6494 unecessary braces after EF_RISCV_RVC test. Delete call to
6495 set_gdbarch_decr_pc_after_break.
6496
6497 * riscv-tdep.h (DECLARE_CSR): Use RISCV_FIRST_CSR_REGNUM instead of
6498 RISCV_LAST_FP_REGNUM + 1.
6499 (RSICV_CSR_LEGACY_MISA_REGNUM): Add RISCV_FIRST_CSR_REGNUM.
6500
6501 2018-07-17 Tom Tromey <tom@tromey.com>
6502
6503 * configure.ac: Remove --disable-gdbcli.
6504 * configure: Rebuild.
6505 * Makefile.in (SUBDIR_CLI_DEPS, SUBDIR_CLI_LDFLAGS)
6506 (SUBDIR_CLI_CFLAGS): Remove.
6507 (SFILES): Use SUBDIR_CLI_SRCS.
6508 (COMMON_OBS): Use SUBDIR_CLI_OBS.
6509
6510 2018-07-17 Tom Tromey <tom@tromey.com>
6511
6512 PR gdb/18624:
6513 * coffread.c (coff_symtab_read): Use scoped_free_pendings.
6514
6515 2018-07-16 Jim Wilson <jimw@sifive.com>
6516
6517 * riscv-tdep.c (riscv_gdbarch_init): Call gdbarch_init_osabi.
6518
6519 2018-07-16 Simon Marchi <simon.marchi@ericsson.com>
6520
6521 * ia64-libunwind-tdep.c (libunwind_frame_cache): Remove unused
6522 variable.
6523 (libunwind_frame_sniffer): Likewise.
6524 (libunwind_frame_prev_register): Likewise.
6525 (libunwind_sigtramp_frame_sniffer): Likewise.
6526 * ia64-tdep.c (ia64_access_reg): Likewise.
6527 (ia64_access_rse_reg): Likewise.
6528 (ia64_libunwind_sigtramp_frame_this_id): Likewise.
6529 * ia64-vms-tdep.c (ia64_vms_find_proc_info_x): Likewise.
6530
6531 2018-07-16 Simon Marchi <simon.marchi@ericsson.com>
6532
6533 * ia64-vms-tdep.c (ia64_vms_find_proc_info_x): Add cast.
6534
6535 2018-07-16 Simon Marchi <simon.marchi@ericsson.com>
6536
6537 * remote-sim.c (gdbsim_target::close,
6538 gdbsim_target::mourn_inferior): Remove unused variables.
6539
6540 2018-07-16 Simon Marchi <simon.marchi@polymtl.ca>
6541
6542 * ia64-tdep.c (ktab_buf): New global.
6543 (getunwind_table): Return a gdb::optional<gdb::byte_vector>.
6544 (get_kernel_table): Adjust.
6545
6546 2018-07-16 Tom Tromey <tom@tromey.com>
6547
6548 * xcoffread.c (read_xcoff_symtab): Use outermost_context_p.
6549 * dwarf2read.c (using_directives, new_symbol): Use
6550 outermost_context_p.
6551 * dbxread.c (process_one_symbol): Use outermost_context_p.
6552 * coffread.c (coff_symtab_read): Use outermost_context_p.
6553
6554 2018-07-16 Tom Tromey <tom@tromey.com>
6555
6556 * dwarf2read.c (using_directives, read_func_scope)
6557 (read_lexical_block_scope): Update.
6558 * cp-namespace.c (cp_scan_for_anonymous_namespaces): Update.
6559 * buildsym.h (local_using_directives, global_using_directives):
6560 Don't declare.
6561 (get_local_using_directives, set_local_using_directives)
6562 (get_global_using_directives): Declare.
6563 * buildsym.c (struct buildsym_compunit) <m_local_using_directives,
6564 m_global_using_directives>: New members.
6565 (finish_block_internal, prepare_for_building)
6566 (reset_symtab_globals, end_symtab_get_static_block)
6567 (push_context): Update.
6568 (get_local_using_directives, set_local_using_directives)
6569 (get_global_using_directives): New functions.
6570 (buildsym_init): Update.
6571
6572 2018-07-16 Tom Tromey <tom@tromey.com>
6573
6574 * xcoffread.c (xcoff_initial_scan): Don't call
6575 free_pending_blocks.
6576 * dbxread.c (dbx_symfile_read): Don't call free_pending_blocks.
6577 * buildsym.h (class scoped_free_pendings): Add constructor.
6578 (free_pending_blocks): Don't declare.
6579 * buildsym.c (scoped_free_pendings::scoped_free_pendings): New.
6580 (free_pending_blocks): Now static.
6581
6582 2018-07-16 Tom Tromey <tom@tromey.com>
6583
6584 * buildsym.h (push_subfile, pop_subfile): Update declarations.
6585 * buildsym.c (struct buildsym_compunit) <m_subfile_stack>: New
6586 member.
6587 (struct subfile_stack): Remove.
6588 (subfile_stack): Remove.
6589 (push_subfile, pop_subfile, buildsym_init): Update.
6590
6591 2018-07-16 Tom Tromey <tom@tromey.com>
6592
6593 * buildsym.c (push_subfile): Use gdb_assert.
6594 (pop_subfile): Use gdb_assert.
6595
6596 2018-07-16 Tom Tromey <tom@tromey.com>
6597
6598 * buildsym.h (merge_symbol_lists): Remove.
6599 * buildsym.c (merge_symbol_lists): Remove.
6600
6601 2018-07-16 Tom Tromey <tom@tromey.com>
6602
6603 * stabsread.c (scan_file_globals): Update comment.
6604 * stabsread.h (scan_file_globals): Move from buildsym.h.
6605 * buildsym.h (scan_file_globals): Move to stabsread.h.
6606
6607 2018-07-16 Tom Tromey <tom@tromey.com>
6608
6609 * xcoffread.c (xcoff_new_init): Update.
6610 * mipsread.c (mipscoff_new_init): Update.
6611 * mdebugread.c (mdebug_build_psymtabs): Update.
6612 * elfread.c (elf_new_init): Update.
6613 * dbxread.c (dbx_new_init, coffstab_build_psymtabs)
6614 (elfstab_build_psymtabs, stabsect_build_psymtabs): Update.
6615 * buildsym.h (buildsym_new_init): Don't declare.
6616 * buildsym.c (buildsym_new_init): Remove.
6617
6618 2018-07-16 Tom Tromey <tom@tromey.com>
6619
6620 * stabsread.h (within_function): Move from buildsym.h.
6621 * stabsread.c (start_stabs): Clear within_function.
6622 * coffread.c (coff_start_symtab): Clear within_function.
6623 * buildsym.h (within_function): Move to stabsread.h.
6624 * buildsym.c (prepare_for_building): Update.
6625
6626 2018-07-16 Tom Tromey <tom@tromey.com>
6627
6628 * stabsread.h (processing_gcc_compilation): Move from buildsym.h.
6629 * dwarf2read.c (dwarf2_start_symtab): Don't set
6630 processing_gcc_compilation.
6631 * buildsym.h (processing_gcc_compilation): Move to stabsread.h.
6632
6633 2018-07-16 Tom Tromey <tom@tromey.com>
6634
6635 * stabsread.h (HASHSIZE, hashname, symnum, next_symbol_text)
6636 (next_symbol_text_func): Move from buildsym.h.
6637 * stabsread.c (hashname): Move from buildsym.c.
6638 * buildsym.h (HASHSIZE, symnum, next_symbol_text)
6639 (next_symbol_text_func, hashname): Move to stabsread.h.
6640 * buildsym.c: Don't include bcache.h
6641 (hashname): Move to stasbread.c.
6642
6643 2018-07-16 Tom Tromey <tom@tromey.com>
6644
6645 * buildsym.h (context_stack_size): Don't declare.
6646 * buildsym.c (context_stack_size): New global.
6647
6648 2018-07-16 Tom Tromey <tom@tromey.com>
6649
6650 * dbxread.c (processing_acc_compilation): New global.
6651 * buildsym.h (processing_acc_compilation): Don't declare.
6652
6653 2018-07-16 Tom Tromey <tom@tromey.com>
6654
6655 * xcoffread.c (aix_process_linenos, complete_symtab): Update.
6656 * dbxread.c (read_ofile_symtab): Update.
6657 * coffread.c (coff_start_symtab, coff_end_symtab): Update.
6658 * buildsym.h (last_source_start_addr): Remove.
6659 (set_last_source_start_addr, get_last_source_start_addr):
6660 Declare.
6661 * buildsym.c (buildsym_compunit::buildsym_compunit): Add last_addr
6662 parameter.
6663 (struct buildsym_compunit) <m_last_source_start_addr>: New
6664 member.
6665 (prepare_for_building): Remove start_addr parameter.
6666 (start_symtab, restart_symtab, end_symtab_get_static_block)
6667 (end_symtab_with_blockvector): Update.
6668 (set_last_source_start_addr, get_last_source_start_addr): New
6669 functions.
6670
6671 2018-07-16 Tom Tromey <tom@tromey.com>
6672
6673 * buildsym.c (struct buildsym_compunit) <m_have_line_numbers>: New
6674 member.
6675 (have_line_numbers): Remove.
6676 (record_line, prepare_for_building, end_symtab_get_static_block)
6677 (augment_type_symtab): Update.
6678
6679 2018-07-16 Tom Tromey <tom@tromey.com>
6680
6681 * buildsym.c (~buildsym_compunit): Free the macro table.
6682 (struct buildsym_compunit) <get_macro_table, release_macros>: New
6683 methods.
6684 <m_pending_macros>: New member.
6685 (pending_macros): Remove.
6686 (~scoped_free_pendings, get_macro_table, prepare_for_building)
6687 (reset_symtab_globals, end_symtab_get_static_block)
6688 (end_symtab_with_blockvector, augment_type_symtab)
6689 (buildsym_init): Update.
6690
6691 2018-07-16 Tom Tromey <tom@tromey.com>
6692
6693 * buildsym.c (buildsym_compunit::buildsym_compunit): Add name
6694 parameter.
6695 (buildsym_compunit::set_last_source_file): New method.
6696 <m_last_source_file>: New member.
6697 (prepare_for_building): Remove "name" parameter.
6698 (start_symtab, restart_symtab, reset_symtab_globals): Update.
6699 (last_source_file): Remove.
6700 (set_last_source_file, get_last_source_file): Update.
6701
6702 2018-07-16 Tom Tromey <tom@tromey.com>
6703
6704 * buildsym.c (prepare_for_building): Add assert.
6705
6706 2018-07-16 Tom Tromey <tom@tromey.com>
6707
6708 * buildsym.c (~buildsym_compunit): Update.
6709 (struct buildsym_compunit) <comp_unit>: Now a unique_xmalloc_ptr.
6710 (start_subfile, patch_subfile_names)
6711 (end_symtab_with_blockvector): Update.
6712
6713 2018-07-16 Tom Tromey <tom@tromey.com>
6714
6715 * buildsym.c (struct buildsym_compunit): Add constructor,
6716 destructor, initializers.
6717 (start_buildsym_compunit): Remove.
6718 (free_buildsym_compunit): Use "delete".
6719 (start_symtab, restart_symtab): Use "new".
6720
6721 2018-07-13 Simon Marchi <simon.marchi@polymtl.ca>
6722
6723 * symfile.c (set_objfile_default_section_offset): Remove struct
6724 keyword.
6725
6726 2018-07-14 Stafford Horne <shorne@gmail.com>
6727
6728 * (Responsible Maintainers): Add myself as or1k maintainer.
6729
6730 2018-07-13 Tom Tromey <tom@tromey.com>
6731
6732 * symfile.c (set_objfile_default_section_offset): Use extra braces
6733 around initializer.
6734
6735 2018-07-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
6736
6737 * s390-tdep.c (s390_displaced_step_fixup): Adjust PC for a
6738 non-branching basr.
6739
6740 2018-07-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
6741
6742 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
6743 unittests/cli-utils-selftests.c
6744 * unittests/cli-utils-selftests.c: New file.
6745
6746 2018-07-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
6747
6748 * NEWS: Mention new commands. Mention change to 'thread apply'.
6749
6750 2018-07-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
6751
6752 * thread.c (thr_try_catch_cmd): New function.
6753 (thread_apply_all_command): Handle qcs flags.
6754 (thread_apply_command): Handle qcs flags.
6755 (taas_command): New function.
6756 (tfaas_command): New function.
6757 (_initialize_thread): Update to setup the new commands 'taas
6758 and 'tfaas'. Change doc string for 'thread apply'.
6759
6760 2018-07-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
6761
6762 * stack.c: (trailing_outermost_frame): New function, mostly
6763 extracted from backtrace_command_1.
6764 (leading_innermost_frame): New function.
6765 (backtrace_command_1): Update to call trailing_outermost_frame.
6766 (frame_apply_command_count): New function.
6767 (frame_apply_level_command): New function.
6768 (frame_apply_all_command): New function.
6769 (frame_apply_command): New function.
6770 (faas_command): New function.
6771 (frame_cmd_list): New variable.
6772 (_initialize_stack): Update to setup the new commands 'frame apply'
6773 and 'faas'.
6774
6775 2018-07-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
6776
6777 * cli-utils.c (number_or_range_parser::get_number): Only handle
6778 numbers or convenience var as numbers.
6779 (parse_flags): New function.
6780 (parse_flags_qcs): New function.
6781 (number_or_range_parser::finished): Ensure parsing end is detected
6782 before end of string.
6783 * cli-utils.h (parse_flags): New function.
6784 (parse_flags_qcs): New function.
6785 (number_or_range_parser): Remove m_finished bool.
6786 (number_or_range_parser::skip_range): Set m_in_range to false.
6787
6788 2018-07-12 Sergio Durigan Junior <sergiodj@redhat.com>
6789
6790 * ser-tcp.c (try_connect): Declare 'ioarg' as 'u_long' if building
6791 on Windows.
6792
6793 2018-07-11 Sergio Durigan Junior <sergiodj@redhat.com>
6794 Jan Kratochvil <jan.kratochvil@redhat.com>
6795 Paul Fertser <fercerpav@gmail.com>
6796 Tsutomu Seki <sekiriki@gmail.com>
6797 Pedro Alves <palves@redhat.com>
6798
6799 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
6800 'unittests/parse-connection-spec-selftests.c'.
6801 (COMMON_SFILES): Add 'common/netstuff.c'.
6802 (HFILES_NO_SRCDIR): Add 'common/netstuff.h'.
6803 * NEWS (Changes since GDB 8.2): Mention IPv6 support.
6804 * common/netstuff.c: New file.
6805 * common/netstuff.h: New file.
6806 * ser-tcp.c: Include 'netstuff.h' and 'wspiapi.h'.
6807 (wait_for_connect): Update comment. New parameter
6808 'gdb::optional<int> sock' instead of 'struct serial *scb'.
6809 Use 'sock' directly instead of 'scb->fd'.
6810 (try_connect): New function, with code from 'net_open'.
6811 (net_open): Rewrite main loop to deal with multiple
6812 sockets/addresses. Handle IPv6-style hostnames; implement
6813 support for IPv6 connections.
6814 * unittests/parse-connection-spec-selftests.c: New file.
6815
6816 2018-07-11 Pedro Alves <palves@redhat.com>
6817
6818 PR gdb/23377
6819 * remote.c (remote_target::remote_detach_pid): Call
6820 set_current_process.
6821
6822 2018-07-11 Pedro Alves <palves@redhat.com>
6823
6824 * h8300-tdep.c (h8300_gdbarch_init): Remove
6825 set_gdbarch_ecoff_reg_to_regnum calls.
6826
6827 2018-07-11 Sergio Durigan Junior <sergiodj@redhat.com>
6828
6829 PR c++/23373
6830 * c-typeprint.c (c_type_print_base_struct_union): Don't print
6831 offsets/sizes for static members of a class/struct.
6832
6833 2018-07-11 Alan Hayward <alan.hayward@arm.com>
6834
6835 * target-descriptions.c (tdesc_register_bitsize): Rename.
6836 * target-descriptions.h (tdesc_register_bitsize): Likewise.
6837 * rs6000-tdep.c (rs6000_gdbarch_init): Use new name.
6838 * aarch64-tdep.c (aarch64_get_tdesc_vq): Convert size.
6839
6840 2018-07-10 Tom Tromey <tom@tromey.com>
6841
6842 * breakpoint.c (moribund_locations): Now static and a
6843 std::vector.
6844 (breakpoint_init_inferior, moribund_breakpoint_here_p)
6845 (build_bpstat_chain, update_global_location_list)
6846 (breakpoint_retire_moribund): Update.
6847 * breakpoint.h (bp_location_p): Remove typedef. Don't declare
6848 VEC.
6849
6850 2018-07-10 Andrew Burgess <andrew.burgess@embecosm.com>
6851
6852 * riscv-tdep.c (riscv_is_fp_regno_p): New function.
6853 (riscv_register_reggroup_p): Use new function, remove unneeded
6854 parenthesis.
6855 (riscv_push_dummy_call): Extend assert to compare against xlen or
6856 flen based on register type.
6857
6858 2018-07-10 Andrew Burgess <andrew.burgess@embecosm.com>
6859
6860 * riscv-tdep.c (riscv_print_arg_location): Use TYPE_SAFE_NAME.
6861
6862 2018-07-09 Andrew Burgess <andrew.burgess@embecosm.com>
6863
6864 * remote.c (show_hardware_watchpoint_limit): New function.
6865 (show_hardware_watchpoint_length_limit): New function.
6866 (show_hardware_breakpoint_limit): New function.
6867 (_initialize_remote): Use add_setshow_zuinteger_unlimited_cmd
6868 where appropriate, update help text.
6869
6870 2018-07-09 Tom Tromey <tom@tromey.com>
6871
6872 * Makefile.in (CDEPS): Don't mention XM_CDEPS.
6873 (CLIBS): Don't mention NAT_CLIBS.
6874
6875 2018-07-09 Tom Tromey <tom@tromey.com>
6876
6877 * Makefile.in (ADD_FILES, ADD_DEPS): Remove.
6878 (LIBGDB_OBS, clean mostlyclean): Update.
6879 (gdb$(EXEEXT), insight$(EXEEXT)): Update.
6880
6881 2018-07-09 Tom Tromey <tom@tromey.com>
6882
6883 * Makefile.in (%.c: %.y): Use ECHO_YACC.
6884 (%.c: %.l): Use ECHO_LEX. Just fail if flex not available.
6885 * silent-rules.mk (ECHO_YACC, ECHO_LEX): New variables.
6886
6887 2018-07-09 Tom Tromey <tom@tromey.com>
6888
6889 * Makefile.in (ALLDEPFILES): Remove exec.c.
6890 (COMMON_OBS): Remove exec.o.
6891 (COMMON_SFILES): Add exec.c.
6892
6893 2018-07-09 Tom Tromey <tom@tromey.com>
6894
6895 * Makefile.in (LINT, LINTFLAGS, LINTFILES, lint): Remove.
6896
6897 2018-07-09 Tom Tromey <tom@tromey.com>
6898
6899 * Makefile.in (clean mostlyclean): Remove stamp-version.
6900 (version.c): Depend on stamp-version.
6901 (stamp-version): New rule, from version.c rule.
6902
6903 2018-07-09 Tom Tromey <tom@tromey.com>
6904
6905 * Makefile.in (init.c): Depend on stamp-init.
6906 (stamp-init): New rule, from init.c rule.
6907 (clean mostlyclean): Remove stamp-init.
6908
6909 2018-07-09 Tom Tromey <tom@tromey.com>
6910
6911 * Makefile.in (INIT_FILES): Remove CONFIG_SRCS,
6912 SUBDIR_GCC_COMPILE_SRCS.
6913
6914 2018-07-09 Tom Tromey <tom@tromey.com>
6915
6916 * Makefile.in (init.c): Remove some unused sed rules.
6917
6918 2018-07-09 Tom Tromey <tom@tromey.com>
6919
6920 * Makefile.in (TSOBS): Remove.
6921 (INIT_FILES): Update.
6922 (LIBGDB_OBS): Update.
6923 (COMMON_SFILES): Add inflow.c.
6924 (SFILES): Remove inflow.c.
6925
6926 2018-07-07 Jan Kratochvil <jan.kratochvil@redhat.com>
6927
6928 * contrib/gdb-add-index.sh ($dwarf5): New, use it.
6929
6930 2018-07-07 Simon Marchi <simon.marchi@polymtl.ca>
6931
6932 * ia64-libunwind-tdep.c (get_reg_name, get_fpreg_name,
6933 get_saveloc_name, is_signal_frame_name, step_name,
6934 init_remote_name, create_addr_space_name,
6935 destroy_addr_space_name, search_unwind_table_name,
6936 find_dyn_list_name): Constify.
6937
6938 2018-07-05 Simon Marchi <simon.marchi@polymtl.ca>
6939
6940 * darwin-nat.c (darwin_pthread_kill): New function.
6941 (darwin_resume_thread): Use darwin_pthread_kill.
6942
6943 2018-07-05 Tom de Vries <tdevries@suse.de>
6944
6945 * macroexp.c (macro_buffer) <operator=>: New member function.
6946
6947 2018-07-04 Tom Tromey <tom@tromey.com>
6948
6949 * darwin-nat.c (darwin_attach_pid): Use exit_inferior.
6950
6951 2018-07-04 Simon Marchi <simon.marchi@polymtl.ca>
6952
6953 * common/common-defs.h (HAVE_USEFUL_SBRK): Define.
6954 * main.c: Use HAVE_USEFUL_SBRK instead of HAVE_SBRK.
6955 * maint.c: Likewise.
6956 * top.c: Likewise.
6957
6958 2018-07-04 Joel Brobecker <brobecker@adacore.com>
6959
6960 * NEWS: Create a new section for the next release branch.
6961 Rename the section of the current branch, now that it has
6962 been cut.
6963
6964 2018-07-04 Joel Brobecker <brobecker@adacore.com>
6965
6966 GDB 8.2 branch created (1b919490e8ba30bf1d6941df0ed112b0e557017e):
6967 * version.in: Bump version to 8.2.50.DATE-git.
6968
6969 2018-07-04 Vyacheslav Barinov <v.barinov@samsung.com>
6970 Pedro Alves <palves@redhat.com>
6971
6972 * linux-nat.c (linux_init_ptrace): Rename to ...
6973 (linux_init_ptrace_procfs): ... this. Call
6974 linux_proc_init_warnings.
6975 (linux_nat_target::post_attach)
6976 (linux_nat_target::post_startup_inferior): Adjust.
6977 * nat/linux-procfs.c (linux_proc_init_warnings): Define function.
6978 * nat/linux-procfs.h (linux_proc_init_warnings): Declare function.
6979
6980 2018-07-04 Tom de Vries <tdevries@suse.de>
6981
6982 * dwarf2read.c (error_check_comp_unit_head): Move dwarf version
6983 check ...
6984 (read_comp_unit_head): ... here.
6985
6986 2018-07-03 Tom Tromey <tom@tromey.com>
6987
6988 * tracepoint.c (process_tracepoint_on_disconnect, start_tracing)
6989 (stop_tracing, tstatus_command)
6990 (find_matching_tracepoint_location, merge_uploaded_tracepoints)
6991 (print_one_static_tracepoint_marker): Update.
6992 * breakpoint.c (static_tracepoints_here, all_tracepoints): Return
6993 std::vector.
6994 * breakpoint.h (breakpoint_p): Remove typedef. Don't declare
6995 VEC.
6996 (all_tracepoints, static_tracepoints_here): Return std::vector.
6997
6998 2018-07-03 Tom Tromey <tom@tromey.com>
6999
7000 * common/ptid.c (ptid_equal): Remove.
7001 * common/ptid.h (ptid_equal): Don't declare.
7002 * ada-tasks.c: Update.
7003 * breakpoint.c: Update.
7004 * common/agent.c: Update.
7005 * corelow.c: Update.
7006 * darwin-nat-info.c: Update.
7007 * darwin-nat.c: Update.
7008 * dcache.c: Update.
7009 * dtrace-probe.c: Update.
7010 * dummy-frame.c: Update.
7011 * fbsd-nat.c: Update.
7012 * frame.c: Update.
7013 * gdbthread.h: Update.
7014 * gnu-nat.c: Update.
7015 * go32-nat.c: Update.
7016 * inf-loop.c: Update.
7017 * inf-ptrace.c: Update.
7018 * infcall.c: Update.
7019 * infcmd.c: Update.
7020 * inflow.c: Update.
7021 * infrun.c: Update.
7022 * linux-fork.c: Update.
7023 * linux-nat.c: Update.
7024 * linux-thread-db.c: Update.
7025 * mi/mi-cmd-var.c: Update.
7026 * mi/mi-interp.c: Update.
7027 * mi/mi-main.c: Update.
7028 * nto-procfs.c: Update.
7029 * ppc-linux-tdep.c: Update.
7030 * procfs.c: Update.
7031 * python/py-inferior.c: Update.
7032 * python/py-record-btrace.c: Update.
7033 * python/py-record.c: Update.
7034 * ravenscar-thread.c: Update.
7035 * regcache.c: Update.
7036 * remote-sim.c: Update.
7037 * remote.c: Update.
7038 * sol-thread.c: Update.
7039 * solib.c: Update.
7040 * target.c: Update.
7041 * tui/tui-stack.c: Update.
7042 * varobj.c: Update.
7043 * windows-nat.c: Update.
7044 * windows-tdep.c: Update.
7045
7046 2018-07-03 Tom Tromey <tom@tromey.com>
7047
7048 * common/ptid.c (ptid_match): Remove.
7049 * common/ptid.h (ptid_match): Don't declare.
7050 * fbsd-nat.c: Update.
7051 * infcmd.c: Update.
7052 * infrun.c: Update.
7053 * linux-nat.c: Update.
7054 * record-btrace.c: Update.
7055 * regcache.c: Update.
7056 * remote.c: Update.
7057
7058 2018-07-03 Tom Tromey <tom@tromey.com>
7059
7060 * common/ptid.c (ptid_tid_p): Remove.
7061 * common/ptid.h (ptid_tid_p): Don't declare.
7062 * sol-thread.c: Update.
7063
7064 2018-07-03 Tom Tromey <tom@tromey.com>
7065
7066 * common/ptid.c (ptid_lwp_p): Remove.
7067 * common/ptid.h (ptid_lwp_p): Don't declare.
7068 * fbsd-nat.c: Update.
7069 * linux-nat.c: Update.
7070 * nat/linux-procfs.c: Update.
7071 * nat/x86-linux-dregs.c: Update.
7072 * sol-thread.c: Update.
7073
7074 2018-07-03 Tom Tromey <tom@tromey.com>
7075
7076 * common/ptid.c (ptid_is_pid): Remove.
7077 * common/ptid.h (ptid_is_pid): Don't declare.
7078 * infrun.c: Update.
7079 * linux-nat.c: Update.
7080 * mi/mi-interp.c: Update.
7081 * remote.c: Update.
7082 * thread.c: Update.
7083
7084 2018-07-03 Tom Tromey <tom@tromey.com>
7085
7086 * common/ptid.c (ptid_get_tid): Remove.
7087 * common/ptid.h (ptid_get_tid): Don't declare.
7088 * ada-tasks.c: Update.
7089 * aix-thread.c: Update.
7090 * bsd-uthread.c: Update.
7091 * darwin-nat.c: Update.
7092 * fbsd-nat.c: Update.
7093 * i386-darwin-nat.c: Update.
7094 * infrun.c: Update.
7095 * linux-tdep.c: Update.
7096 * nto-procfs.c: Update.
7097 * ppc-ravenscar-thread.c: Update.
7098 * python/py-infthread.c: Update.
7099 * ravenscar-thread.c: Update.
7100 * sol-thread.c: Update.
7101 * sparc-ravenscar-thread.c: Update.
7102 * windows-nat.c: Update.
7103
7104 2018-07-03 Tom Tromey <tom@tromey.com>
7105
7106 * common/ptid.c (ptid_get_lwp): Remove.
7107 * common/ptid.h (ptid_get_lwp): Don't declare.
7108 * aarch64-linux-nat.c: Update.
7109 * ada-tasks.c: Update.
7110 * aix-thread.c: Update.
7111 * amd64-linux-nat.c: Update.
7112 * arm-linux-nat.c: Update.
7113 * corelow.c: Update.
7114 * fbsd-nat.c: Update.
7115 * fbsd-tdep.c: Update.
7116 * gnu-nat.c: Update.
7117 * i386-cygwin-tdep.c: Update.
7118 * i386-gnu-nat.c: Update.
7119 * i386-linux-nat.c: Update.
7120 * ia64-linux-nat.c: Update.
7121 * inf-ptrace.c: Update.
7122 * infrun.c: Update.
7123 * linux-fork.c: Update.
7124 * linux-nat.c: Update.
7125 * linux-tdep.c: Update.
7126 * linux-thread-db.c: Update.
7127 * mips-linux-nat.c: Update.
7128 * nat/aarch64-linux-hw-point.c: Update.
7129 * nat/aarch64-linux.c: Update.
7130 * nat/linux-btrace.c: Update.
7131 * nat/linux-osdata.c: Update.
7132 * nat/linux-procfs.c: Update.
7133 * nat/x86-linux-dregs.c: Update.
7134 * obsd-nat.c: Update.
7135 * ppc-fbsd-nat.c: Update.
7136 * ppc-linux-nat.c: Update.
7137 * procfs.c: Update.
7138 * python/py-infthread.c: Update.
7139 * ravenscar-thread.c: Update.
7140 * remote.c: Update.
7141 * s390-linux-nat.c: Update.
7142 * sol-thread.c: Update.
7143 * sol2-tdep.c: Update.
7144 * spu-linux-nat.c: Update.
7145 * x86-linux-nat.c: Update.
7146 * xtensa-linux-nat.c: Update.
7147
7148 2018-07-03 Tom Tromey <tom@tromey.com>
7149
7150 * common/ptid.c (ptid_get_pid): Remove.
7151 * common/ptid.h (ptid_get_pid): Don't declare.
7152 * aarch64-linux-nat.c: Update.
7153 * ada-lang.c: Update.
7154 * aix-thread.c: Update.
7155 * alpha-bsd-nat.c: Update.
7156 * amd64-fbsd-nat.c: Update.
7157 * amd64-linux-nat.c: Update.
7158 * arm-linux-nat.c: Update.
7159 * arm-nbsd-nat.c: Update.
7160 * auxv.c: Update.
7161 * break-catch-syscall.c: Update.
7162 * breakpoint.c: Update.
7163 * bsd-uthread.c: Update.
7164 * corelow.c: Update.
7165 * ctf.c: Update.
7166 * darwin-nat.c: Update.
7167 * fbsd-nat.c: Update.
7168 * fbsd-tdep.c: Update.
7169 * gcore.c: Update.
7170 * gnu-nat.c: Update.
7171 * hppa-nbsd-nat.c: Update.
7172 * hppa-obsd-nat.c: Update.
7173 * i386-fbsd-nat.c: Update.
7174 * ia64-linux-nat.c: Update.
7175 * inf-ptrace.c: Update.
7176 * infcmd.c: Update.
7177 * inferior.c: Update.
7178 * inferior.h: Update.
7179 * inflow.c: Update.
7180 * infrun.c: Update.
7181 * linux-fork.c: Update.
7182 * linux-nat.c: Update.
7183 * linux-tdep.c: Update.
7184 * linux-thread-db.c: Update.
7185 * m68k-bsd-nat.c: Update.
7186 * mi/mi-interp.c: Update.
7187 * mi/mi-main.c: Update.
7188 * mips-linux-nat.c: Update.
7189 * mips-nbsd-nat.c: Update.
7190 * mips64-obsd-nat.c: Update.
7191 * nat/aarch64-linux-hw-point.c: Update.
7192 * nat/aarch64-linux.c: Update.
7193 * nat/linux-btrace.c: Update.
7194 * nat/linux-osdata.c: Update.
7195 * nat/linux-procfs.c: Update.
7196 * nat/x86-linux-dregs.c: Update.
7197 * nto-procfs.c: Update.
7198 * obsd-nat.c: Update.
7199 * ppc-linux-nat.c: Update.
7200 * ppc-nbsd-nat.c: Update.
7201 * ppc-obsd-nat.c: Update.
7202 * proc-service.c: Update.
7203 * procfs.c: Update.
7204 * python/py-inferior.c: Update.
7205 * python/py-infthread.c: Update.
7206 * ravenscar-thread.c: Update.
7207 * record.c: Update.
7208 * remote-sim.c: Update.
7209 * remote.c: Update.
7210 * rs6000-nat.c: Update.
7211 * s390-linux-nat.c: Update.
7212 * sh-nbsd-nat.c: Update.
7213 * sol-thread.c: Update.
7214 * sparc-nat.c: Update.
7215 * sparc64-tdep.c: Update.
7216 * spu-linux-nat.c: Update.
7217 * spu-tdep.c: Update.
7218 * target-debug.h: Update.
7219 * target.c: Update.
7220 * thread.c: Update.
7221 * tid-parse.c: Update.
7222 * tracefile-tfile.c: Update.
7223 * vax-bsd-nat.c: Update.
7224 * windows-nat.c: Update.
7225 * x86-linux-nat.c: Update.
7226 * x86-nat.c: Update.
7227
7228 2018-07-03 Tom Tromey <tom@tromey.com>
7229
7230 * common/ptid.c (pid_to_ptid): Remove.
7231 * common/ptid.h (pid_to_ptid): Don't declare.
7232 * aix-thread.c: Update.
7233 * arm-linux-nat.c: Update.
7234 * common/ptid.c: Update.
7235 * common/ptid.h: Update.
7236 * corelow.c: Update.
7237 * ctf.c: Update.
7238 * darwin-nat.c: Update.
7239 * fbsd-nat.c: Update.
7240 * fork-child.c: Update.
7241 * gnu-nat.c: Update.
7242 * go32-nat.c: Update.
7243 * inf-ptrace.c: Update.
7244 * infcmd.c: Update.
7245 * inferior.c: Update.
7246 * infrun.c: Update.
7247 * linux-fork.c: Update.
7248 * linux-nat.c: Update.
7249 * nat/aarch64-linux-hw-point.c: Update.
7250 * nat/fork-inferior.c: Update.
7251 * nat/x86-linux-dregs.c: Update.
7252 * nto-procfs.c: Update.
7253 * obsd-nat.c: Update.
7254 * procfs.c: Update.
7255 * progspace.c: Update.
7256 * remote.c: Update.
7257 * rs6000-nat.c: Update.
7258 * s390-linux-nat.c: Update.
7259 * sol-thread.c: Update.
7260 * spu-linux-nat.c: Update.
7261 * target.c: Update.
7262 * top.c: Update.
7263 * tracefile-tfile.c: Update.
7264 * windows-nat.c: Update.
7265
7266 2018-07-03 Tom Tromey <tom@tromey.com>
7267
7268 * common/ptid.h (ptid_build): Don't declare.
7269 * common/ptid.c (ptid_build): Remove.
7270 * aix-thread.c: Update.
7271 * bsd-kvm.c: Update.
7272 * bsd-uthread.c: Update.
7273 * common/agent.c: Update.
7274 * common/ptid.c: Update.
7275 * common/ptid.h: Update.
7276 * corelow.c: Update.
7277 * darwin-nat.c: Update.
7278 * fbsd-nat.c: Update.
7279 * gnu-nat.c: Update.
7280 * linux-fork.c: Update.
7281 * linux-nat.c: Update.
7282 * linux-thread-db.c: Update.
7283 * nat/linux-osdata.c: Update.
7284 * nat/linux-procfs.c: Update.
7285 * nto-procfs.c: Update.
7286 * obsd-nat.c: Update.
7287 * proc-service.c: Update.
7288 * procfs.c: Update.
7289 * ravenscar-thread.c: Update.
7290 * remote-sim.c: Update.
7291 * remote.c: Update.
7292 * sol-thread.c: Update.
7293 * target.c: Update.
7294 * windows-nat.c: Update.
7295
7296 2018-07-03 Tom Tromey <tom@tromey.com>
7297
7298 * infrun.c (follow_exec): Use exit_inferior_silent.
7299 * inferior.c (exit_inferior_num_silent): Remove.
7300 * inferior.h (exit_inferior_num_silent): Don't declare.
7301
7302 2018-07-03 Tom Tromey <tom@tromey.com>
7303
7304 PR cli/23340:
7305 * darwin-nat.c (darwin_attach_pid): Reset inferior and
7306 inferior_ptid on error.
7307
7308 2018-07-02 Maciej W. Rozycki <macro@mips.com>
7309 Simon Marchi <simon.marchi@polymtl.ca>
7310
7311 PR tdep/8282
7312 * disasm.h (gdb_disassembler): Add
7313 `m_disassembler_options_holder'. member
7314 * disasm.c (get_all_disassembler_options): New function.
7315 (gdb_disassembler::gdb_disassembler): Use it.
7316 (gdb_buffered_insn_length_init_dis): Likewise.
7317 (gdb_buffered_insn_length): Adjust accordingly.
7318 (set_disassembler_options): Handle options with arguments.
7319 (show_disassembler_options_sfunc): Likewise. Add a leading new
7320 line if showing options with descriptions.
7321 (disassembler_options_completer): Adapt to using the
7322 `disasm_options_and_args_t' structure.
7323 * mips-tdep.c (mips_disassembler_options): New variable.
7324 (mips_disassembler_options_o32): Likewise.
7325 (mips_disassembler_options_n32): Likewise.
7326 (mips_disassembler_options_n64): Likewise.
7327 (gdb_print_insn_mips): Don't set `disassembler_options'.
7328 (gdb_print_insn_mips_n32, gdb_print_insn_mips_n64): Remove
7329 functions.
7330 (mips_gdbarch_init): Always set `gdbarch_print_insn' to
7331 `gdb_print_insn_mips'. Set `gdbarch_disassembler_options',
7332 `gdbarch_disassembler_options_implicit' and
7333 `gdbarch_valid_disassembler_options'.
7334 * arm-tdep.c (_initialize_arm_tdep): Adapt to using the
7335 `disasm_options_and_args_t' structure.
7336 * gdbarch.sh (disassembler_options_implicit): New `gdbarch'
7337 method.
7338 (valid_disassembler_options): Switch from `disasm_options_t' to
7339 the `disasm_options_and_args_t' structure.
7340 * NEWS: Document `set disassembler-options' support for the MIPS
7341 target.
7342 * gdbarch.h: Regenerate.
7343 * gdbarch.c: Regenerate.
7344
7345 2018-07-02 Sebastian Huber <sebastian.huber@embedded-brains.de>
7346
7347 * riscv-tdep.c (riscv_register_aliases): Swap "fp" and "s0" entries.
7348
7349 2018-06-29 Joel Brobecker <brobecker@adacore.com>
7350
7351 * amd64-darwin-tdep.c (x86_darwin_init_abi_64): Add missing
7352 parameter in call to amd64_target_description.
7353 * amd64-dicos-tdep.c (amd64_dicos_init_abi): Likewise.
7354 * amd64-fbsd-tdep.c (amd64fbsd_core_read_description)
7355 (amd64fbsd_init_abi): Likewise.
7356 * amd64-nbsd-tdep.c (amd64nbsd_init_abi): Likewise.
7357 * amd64-obsd-tdep.c (amd64obsd_init_abi): Likewise.
7358 * amd64-sol2-tdep.c (amd64_sol2_init_abi): Likewise.
7359 * amd64-fbsd-nat.c (amd64_fbsd_nat_target): Likewise.
7360
7361 2018-06-29 Pedro Alves <palves@redhat.com>
7362
7363 * gdb/amd64-tdep.h (amd64_create_target_description): Add
7364 "segments" parameter.
7365 * gdb/amd64-tdep.c (amd64_none_init_abi, amd64_x32_none_init_abi)
7366 (_initialize_amd64_tdep): Update call to
7367 amd64_create_target_description.
7368 (amd64_target_description): Add "segments" parameter. Adjust
7369 the implementation to use it.
7370 * gdb/amd64-linux-tdep.c (amd64_linux_read_description): Update
7371 call to amd64_create_target_description.
7372 * gdb/amd64-windows-tdep.c (amd64_windows_init_abi): Likewise.
7373 * gdb/arch/amd64.h (amd64_create_target_description): Add
7374 "segments" register.
7375 * gdb/arch/amd64.c (amd64_create_target_description): Add
7376 "segments" parameter. Call create_feature_i386_64bit_segments
7377 only if SEGMENTS is true.
7378 * gdb/gdbserver/win32-i386-low.c (i386_arch_setup): Update
7379 call to amd64_create_target_description.
7380
7381 2018-06-29 Pedro Alves <palves@redhat.com>
7382
7383 * thread.c (thread_target_id_str): New, factored out from ...
7384 (print_thread_info_1): ... here. Use it to compute the max
7385 "Target Id" column width.
7386
7387 2018-06-29 Pedro Alves <palves@redhat.com>
7388
7389 * remote.c (remote_target::extra_thread_info): Delete
7390 'display_buf' and 'n' locals. from the cache, regardless of
7391 packet mechanims is in use. Use cache for qThreadExtra and qP
7392 methods too.
7393
7394 2018-06-29 Pedro Alves <palves@redhat.com>
7395
7396 * blockframe.c (find_pc_sect_containing_function): New function.
7397 * breakpoint.c (print_breakpoint_location): Don't call
7398 find_pc_sect_function.
7399 * linespec.c (create_sals_line_offset): Record the location's
7400 symbol in the sal.
7401 * linespec.c (convert_address_location_to_sals): Fill in sal's
7402 symbol with find_pc_sect_containing_function.
7403 * symtab.c (find_function_start_sal): Rename to ...
7404 (find_function_start_sal_1): ... this.
7405 (find_function_start_sal): Reimplement as wrapper around
7406 find_function_start_sal_1, and use
7407 find_pc_sect_containing_function to fill in the sal's symbol.
7408 (find_function_start_sal(symbol*, bool)): Adjust.
7409 * symtab.h (find_pc_function, find_pc_sect_function): Adjust
7410 comments.
7411 (find_pc_sect_containing_function): Declare.
7412
7413 2018-06-29 Pedro Alves <palves@redhat.com>
7414
7415 * inline-frame.c (stopped_by_user_bp_inline_frame): Return
7416 true if the the location has no symbol.
7417
7418 2018-06-28 Tom Tromey <tom@tromey.com>
7419
7420 * NEWS: Mention --enable-codesign.
7421 * silent-rules.mk (ECHO_SIGN): New variable.
7422 * configure.ac: Add --enable-codesign.
7423 * configure: Rebuild.
7424 * Makefile.in (CODESIGN, CODESIGN_CERT): New variables.
7425 (gdb$(EXEEXT)): Optionally invoke codesign.
7426
7427 2018-06-28 Pedro Alves <palves@redhat.com>
7428
7429 * gdbthread.h (struct thread_suspend_state) <stop_pc>: Extend
7430 comments.
7431 (switch_to_thread_no_regs): Adjust comment.
7432 * infcmd.c (stop_pc): Delete.
7433 (post_create_inferior, info_program_command): Replace references
7434 to stop_pc with references to thread_info->suspend.stop_pc.
7435 * inferior.h (stop_pc): Delete declaration.
7436 * infrun.c (proceed, handle_syscall_event, fill_in_stop_func)
7437 (handle_inferior_event_1, handle_signal_stop)
7438 (process_event_stop_test, keep_going_stepped_thread)
7439 (handle_step_into_function, handle_step_into_function_backward)
7440 (print_stop_location): Replace references to stop_pc with
7441 references to thread_info->suspend.stop_pc.
7442 (struct infcall_suspend_state) <stop_pc>: Delete field.
7443 (save_infcall_suspend_state, restore_infcall_suspend_state):
7444 Remove references to inf_stat->stop_pc.
7445 * linux-fork.c (fork_load_infrun_state): Likewise.
7446 * record-btrace.c (record_btrace_set_replay): Likewise.
7447 * record-full.c (record_full_goto_entry): Likewise.
7448 * remote.c (print_one_stopped_thread): Likewise.
7449 * target.c (target_resume): Extend comment.
7450 * thread.c (set_executing_thread): New.
7451 (set_executing): Use it.
7452 (switch_to_thread_no_regs, switch_to_no_thread, switch_to_thread):
7453 Remove references to stop_pc.
7454
7455 2018-06-28 Pedro Alves <palves@redhat.com>
7456
7457 * infrun.c (handle_inferior_event_1) <TARGET_WAITKIND_EXECD>:
7458 Moving fetching stop_pc until after ecs->event_thread is refreshed.
7459
7460 2018-06-28 Tom Tromey <tom@tromey.com>
7461
7462 * coffread.c (coff_symfile_finish): Update.
7463 * xcoffread.c (xcoff_symfile_finish): Update.
7464 * elfread.c (elf_symfile_finish): Update.
7465 * symfile.h (dwarf2_free_objfile): Don't declare.
7466 * dwarf2read.c (_initialize_dwarf2_read): Use
7467 register_objfile_data_with_cleanup.
7468 (dwarf2_free_objfile): Now static. Change signature.
7469
7470 2018-06-28 Petr Tesarik <ptesarik@suse.cz>
7471
7472 * symfile.c (add_symbol_file_command, _initialize_symfile): Add
7473 option "-o" to add-symbol-file-load to add an offset to each
7474 section's load address.
7475 * symfile.c (set_objfile_default_section_offset): New function.
7476
7477 2018-06-28 Petr Tesarik <ptesarik@suse.cz>
7478
7479 * symfile.c (add_symbol_file_command): Make sure that sections
7480 with the same name are sorted in the same order.
7481
7482 2018-06-28 Petr Tesarik <ptesarik@suse.cz>
7483
7484 * symfile.c (add_symbol_file_command, _initialize_symfile): Do not
7485 require the second argument. If omitted, load sections at the
7486 addresses specified in the file.
7487
7488 2018-06-28 Petr Tesarik <ptesarik@suse.cz>
7489
7490 * symfile.c (symbol_file_command, symbol_file_add_main_1)
7491 (_initialize_symfile): Add option "-o" to symbol-file to add an
7492 offset to each section of the symbol file.
7493
7494 2018-06-28 Petr Tesarik <ptesarik@suse.cz>
7495
7496 * MAINTAINERS (Write After Approval): Add Petr Tesarik.
7497
7498 2018-06-27 Tom Tromey <tom@tromey.com>
7499
7500 * stack.c (_initialize_stack): Update "func" help text.
7501
7502 2018-06-27 Tom Tromey <tom@tromey.com>
7503
7504 * python/py-unwind.c (unwind_info_object) <saved_regs>: Now a
7505 std::vector.
7506 (unwind_infopy_str, pyuw_create_unwind_info)
7507 (unwind_infopy_add_saved_register, pyuw_sniffer)
7508 (unwind_infopy_dealloc, unwind_infopy_add_saved_register):
7509 Update.
7510 (struct saved_reg): Add constructor.
7511 <value>: Now a gdbpy_ref<>.
7512
7513 2018-06-27 Tom Tromey <tom@tromey.com>
7514
7515 * machoread.c (macho_symfile_read): Define "symbol_table" earlier.
7516
7517 2018-06-27 Simon Marchi <simon.marchi@ericsson.com>
7518
7519 * gdb-gdb.py.in: Format using autopep8.
7520
7521 2018-06-27 Simon Marchi <simon.marchi@ericsson.com>
7522
7523 * gdb-gdb.py.in (CoreAddrPrettyPrinter): New class.
7524 (type_lookup_function): Recognize CORE_ADDR values.
7525
7526 2018-06-27 Simon Marchi <simon.marchi@ericsson.com>
7527
7528 * gdb-gdb.py.in (StructMainTypePrettyPrinter) <to_string>: Don't
7529 print tag_name.
7530
7531 2018-06-27 Simon Marchi <simon.marchi@ericsson.com>
7532
7533 * gdb-gdb.py.in (TypeFlag) <__cmp__>: Remove.
7534 <__lt__>: Add.
7535
7536 2018-06-27 Simon Marchi <simon.marchi@ericsson.com>
7537
7538 * gdb-gdb.py: Move to...
7539 * gdb-gdb.py.in: ... here.
7540 * configure.ac (AC_CONFIG_FILES): Add gdb-gdb.py.
7541 * Makefile.in (all): Add gdb-gdb.gdb and gdb-gdb.py as
7542 dependencies.
7543 (distclean): Remove gdb-gdb.py when cleaning.
7544 (gdb-gdb.py, gdb-gdb.gdb): New rules.
7545 * configure: Re-generate.
7546
7547 2018-06-27 Pedro Alves <palves@redhat.com>
7548
7549 * proc-service.c (get_ps_regcache): New.
7550 (ps_lgetregs, ps_lsetregs, ps_lgetfpregs)
7551 (ps_lsetfpregs): Use it.
7552
7553 2018-06-27 Omair Javaid <omair.javaid@linaro.org>
7554
7555 PR gdb/21695
7556 * dwarf2read.c (lnp_state_machine::check_line_address): Update
7557 declaration.
7558 (dwarf_decode_lines_1): Adjust.
7559
7560 2018-06-27 Simon Marchi <simon.marchi@ericsson.com>
7561
7562 * fbsd-nat.h (class fbsd_nat_target) <find_memory_regions>: Add
7563 override.
7564 <info_proc>: Likewise.
7565
7566 2018-06-26 Joel Brobecker <brobecker@adacore.com>
7567
7568 * windows-nat.c (do_windows_fetch_inferior_registers): Rename
7569 to windows_fetch_one_register, and only handle the case of
7570 fetching one register. Move the code that reloads the context
7571 and iterates over all registers if R is negative to...
7572 (windows_nat_target::fetch_registers): ... here.
7573 (do_windows_store_inferior_registers): Rename to
7574 windows_store_one_register, and only handle the case of storing
7575 one register. Move the code that handles the case where r is
7576 negative to...
7577 (windows_nat_target::store_registers) ... here.
7578
7579 2018-06-26 Tom Tromey <tom@tromey.com>
7580
7581 PR rust/22574:
7582 * typeprint.c (whatis_exp): Allow ptype/o for Rust.
7583 * rust-lang.c (rust_print_struct_def): Add podata parameter.
7584 Update.
7585 (rust_internal_print_type): Add podata parameter.
7586 (rust_print_type): Update.
7587
7588 2018-06-26 Tom Tromey <tom@tromey.com>
7589
7590 * typeprint.h (struct print_offset_data) <update, finish,
7591 maybe_print_hole>: New methods.
7592 <indentation>: New constant.
7593 * typeprint.c (print_offset_data::indentation): Define.
7594 (print_offset_data::maybe_print_hole, print_offset_data::update)
7595 (print_offset_data::finish): Move from c-typeprint.c and rename.
7596 * c-typeprint.c (OFFSET_SPC_LEN): Remove.
7597 (print_spaces_filtered_with_print_options): Update.
7598 (c_print_type_union_field_offset, maybe_print_hole)
7599 (c_print_type_struct_field_offset): Move to typeprint.c and
7600 rename.
7601 (c_type_print_base_struct_union): Update.
7602
7603 2018-06-25 Pedro Alves <palves@redhat.com>
7604
7605 * gdbthread.h (thread_info_ref, delete_thread)
7606 (delete_thread_silent, first_thread_of_inferior)
7607 (any_thread_of_inferior, switch_to_thread)
7608 (enable_thread_stack_temporaries)
7609 (thread_stack_temporaries_enabled_p, push_thread_stack_temporary)
7610 (get_last_thread_stack_temporary)
7611 (value_in_thread_stack_temporaries, can_access_registers_thread):
7612 Spell out "struct thread_info" instead of just "thread_info".
7613 * inferior.h (notice_new_inferior): Likewise.
7614
7615 2018-06-25 Pedro Alves <palves@redhat.com>
7616
7617 * windows-nat.c (windows_delete_thread): Use find_thread_ptid and
7618 pass thread_info pointer to delete_thread.
7619 (windows_nat_target::detach): Pass inferior pointer to
7620 detach_inferior.
7621 * aix-thread.c (sync_threadlists): Pass thread_info pointer to
7622 delete_thread.
7623 * bsd-kvm.c (bsd_kvm_target::close): Use discard_all_inferiors.
7624 * darwin-nat.c (darwin_check_new_threads): Use find_thread_ptid
7625 and pass a thread_info pointer to delete_thread.
7626 * fbsd-nat.c (fbsd_nat_target::wait): Use find_thread_ptid and
7627 pass thread_info pointer to delete_thread.
7628 * go32-nat.c (go32_nat_target::mourn_inferior): Remove
7629 delete_thread_silent call.
7630 * procfs.c (procfs_target::detach): Pass inferior pointer to
7631 detach_inferior.
7632 (procfs_target::wait): Pass thread_info pointer to delete_thread.
7633 * remote-sim.c (gdbsim_target::mourn_inferior): Remove
7634 delete_thread_silent call.
7635 * windows-nat.c (windows_delete_thread): Use find_thread_ptid and
7636 pass thread_info pointer to delete_thread.
7637 (windows_nat_target::detach): Pass inferior pointer to
7638 delete_inferior.
7639
7640 2018-06-22 Alan Hayward <alan.hayward@arm.com>
7641
7642 * regcache.c (readable_regcache::read_part): Fix asserts.
7643 (reg_buffer::raw_collect_part): New function.
7644 (regcache::write_part): Fix asserts.
7645 (reg_buffer::raw_supply_part): New function.
7646 (regcache::transfer_regset_register): New helper function.
7647 (regcache::transfer_regset): Call new functions.
7648 (regcache_supply_regset): Use gdb_byte*.
7649 (regcache::supply_regset): Likewise.
7650 (regcache_collect_regset): Likewise.
7651 (regcache::collect_regset): Likewise.
7652 * regcache.h (reg_buffer::raw_collect_part): New declaration.
7653 (reg_buffer::raw_supply_part): Likewise.
7654 (regcache::transfer_regset_register): Likewise.
7655 (regcache::transfer_regset): Use gdb_byte*.
7656
7657 2018-06-22 Alan Hayward <alan.hayward@arm.com>
7658
7659 * nat/aarch64-sve-linux-ptrace.h (HAS_SVE_STATE): Use &.
7660
7661 2018-06-21 Pedro Alves <palves@redhat.com>
7662
7663 * ada-lang.h (ada_get_task_number): Take a thread_info pointer
7664 instead of a ptid_t. All callers adjusted.
7665 * ada-tasks.c (ada_get_task_number): Likewise. All callers
7666 adjusted.
7667 (print_ada_task_info, display_current_task_id, task_command_1):
7668 Adjust.
7669 * breakpoint.c (watchpoint_in_thread_scope): Adjust to use
7670 inferior_thread.
7671 (breakpoint_kind): Adjust.
7672 (remove_breakpoints_pid): Rename to ...
7673 (remove_breakpoints_inf): ... this. Adjust to take an inferior
7674 pointer. All callers adjusted.
7675 (bpstat_clear_actions): Use inferior_thread.
7676 (get_bpstat_thread): New.
7677 (bpstat_do_actions): Use it.
7678 (bpstat_check_breakpoint_conditions, bpstat_stop_status): Adjust
7679 to take a thread_info pointer. All callers adjusted.
7680 (set_longjmp_breakpoint_for_call_dummy, set_momentary_breakpoint)
7681 (breakpoint_re_set_thread): Use inferior_thread.
7682 * breakpoint.h (struct inferior): Forward declare.
7683 (bpstat_stop_status): Update.
7684 (remove_breakpoints_pid): Delete.
7685 (remove_breakpoints_inf): New.
7686 * bsd-uthread.c (bsd_uthread_target::wait)
7687 (bsd_uthread_target::update_thread_list): Use find_thread_ptid.
7688 * btrace.c (btrace_add_pc, btrace_enable, btrace_fetch)
7689 (maint_btrace_packet_history_cmd)
7690 (maint_btrace_clear_packet_history_cmd): Adjust.
7691 (maint_btrace_clear_cmd, maint_info_btrace_cmd): Adjust to use
7692 inferior_thread.
7693 * cli/cli-interp.c: Include "inferior.h".
7694 * common/refcounted-object.h (struct
7695 refcounted_object_ref_policy): New.
7696 * compile/compile-object-load.c: Include gdbthread.h.
7697 (store_regs): Use inferior_thread.
7698 * corelow.c (core_target::close): Use current_inferior.
7699 (core_target_open): Adjust to use first_thread_of_inferior and use
7700 the current inferior.
7701 * ctf.c (ctf_target::close): Adjust to use current_inferior.
7702 * dummy-frame.c (dummy_frame_id) <ptid>: Delete, replaced by ...
7703 <thread>: ... this new field. All references adjusted.
7704 (dummy_frame_pop, dummy_frame_discard, register_dummy_frame_dtor):
7705 Take a thread_info pointer instead of a ptid_t.
7706 * dummy-frame.h (dummy_frame_push, dummy_frame_pop)
7707 (dummy_frame_discard, register_dummy_frame_dtor): Take a
7708 thread_info pointer instead of a ptid_t.
7709 * elfread.c: Include "inferior.h".
7710 (elf_gnu_ifunc_resolver_stop, elf_gnu_ifunc_resolver_return_stop):
7711 Use inferior_thread.
7712 * eval.c (evaluate_subexp): Likewise.
7713 * frame.c (frame_pop, has_stack_frames, find_frame_sal): Use
7714 inferior_thread.
7715 * gdb_proc_service.h (struct thread_info): Forward declare.
7716 (struct ps_prochandle) <ptid>: Delete, replaced by ...
7717 <thread>: ... this new field. All references adjusted.
7718 * gdbarch.h, gdbarch.c: Regenerate.
7719 * gdbarch.sh (get_syscall_number): Replace 'ptid' parameter with a
7720 'thread' parameter. All implementations and callers adjusted.
7721 * gdbthread.h (thread_info) <set_running>: New method.
7722 (delete_thread, delete_thread_silent): Take a thread_info pointer
7723 instead of a ptid.
7724 (global_thread_id_to_ptid, ptid_to_global_thread_id): Delete.
7725 (first_thread_of_process): Delete, replaced by ...
7726 (first_thread_of_inferior): ... this new function. All callers
7727 adjusted.
7728 (any_live_thread_of_process): Delete, replaced by ...
7729 (any_live_thread_of_inferior): ... this new function. All callers
7730 adjusted.
7731 (switch_to_thread, switch_to_no_thread): Declare.
7732 (is_executing): Delete.
7733 (enable_thread_stack_temporaries): Update comment.
7734 <enable_thread_stack_temporaries>: Take a thread_info pointer
7735 instead of a ptid_t. Incref the thread.
7736 <~enable_thread_stack_temporaries>: Decref the thread.
7737 <m_ptid>: Delete
7738 <m_thr>: New.
7739 (thread_stack_temporaries_enabled_p, push_thread_stack_temporary)
7740 (get_last_thread_stack_temporary)
7741 (value_in_thread_stack_temporaries, can_access_registers_thread):
7742 Take a thread_info pointer instead of a ptid_t. All callers
7743 adjusted.
7744 * infcall.c (get_call_return_value): Use inferior_thread.
7745 (run_inferior_call): Work with thread pointers instead of ptid_t.
7746 (call_function_by_hand_dummy): Work with thread pointers instead
7747 of ptid_t. Use thread_info_ref.
7748 * infcmd.c (proceed_thread_callback): Access thread's state
7749 directly.
7750 (ensure_valid_thread, ensure_not_running): Use inferior_thread,
7751 access thread's state directly.
7752 (continue_command): Use inferior_thread.
7753 (info_program_command): Use find_thread_ptid and access thread
7754 state directly.
7755 (proceed_after_attach_callback): Use thread state directly.
7756 (notice_new_inferior): Take a thread_info pointer instead of a
7757 ptid_t. All callers adjusted.
7758 (exit_inferior): Take an inferior pointer instead of a pid. All
7759 callers adjusted.
7760 (exit_inferior_silent): New.
7761 (detach_inferior): Delete.
7762 (valid_gdb_inferior_id, pid_to_gdb_inferior_id)
7763 (gdb_inferior_id_to_pid, in_inferior_list): Delete.
7764 (detach_inferior_command, kill_inferior_command): Use
7765 find_inferior_id instead of valid_gdb_inferior_id and
7766 gdb_inferior_id_to_pid.
7767 (inferior_command): Use inferior and thread pointers.
7768 * inferior.h (struct thread_info): Forward declare.
7769 (notice_new_inferior): Take a thread_info pointer instead of a
7770 ptid_t. All callers adjusted.
7771 (detach_inferior): Delete declaration.
7772 (exit_inferior, exit_inferior_silent): Take an inferior pointer
7773 instead of a pid. All callers adjusted.
7774 (gdb_inferior_id_to_pid, pid_to_gdb_inferior_id, in_inferior_list)
7775 (valid_gdb_inferior_id): Delete.
7776 * infrun.c (follow_fork_inferior, proceed_after_vfork_done)
7777 (handle_vfork_child_exec_or_exit, follow_exec): Adjust.
7778 (struct displaced_step_inferior_state) <pid>: Delete, replaced by
7779 ...
7780 <inf>: ... this new field.
7781 <step_ptid>: Delete, replaced by ...
7782 <step_thread>: ... this new field.
7783 (get_displaced_stepping_state): Take an inferior pointer instead
7784 of a pid. All callers adjusted.
7785 (displaced_step_in_progress_any_inferior): Adjust.
7786 (displaced_step_in_progress_thread): Take a thread pointer instead
7787 of a ptid_t. All callers adjusted.
7788 (displaced_step_in_progress, add_displaced_stepping_state): Take
7789 an inferior pointer instead of a pid. All callers adjusted.
7790 (get_displaced_step_closure_by_addr): Adjust.
7791 (remove_displaced_stepping_state): Take an inferior pointer
7792 instead of a pid. All callers adjusted.
7793 (displaced_step_prepare_throw, displaced_step_prepare)
7794 (displaced_step_fixup): Take a thread pointer instead of a ptid_t.
7795 All callers adjusted.
7796 (start_step_over): Adjust.
7797 (infrun_thread_ptid_changed): Remove bit updating ptids in the
7798 displaced step queue.
7799 (do_target_resume): Adjust.
7800 (fetch_inferior_event): Use inferior_thread.
7801 (context_switch, get_inferior_stop_soon): Take an
7802 execution_control_state pointer instead of a ptid_t. All callers
7803 adjusted.
7804 (switch_to_thread_cleanup): Delete.
7805 (stop_all_threads): Use scoped_restore_current_thread.
7806 * inline-frame.c: Include "gdbthread.h".
7807 (inline_state) <inline_state>: Take a thread pointer instead of a
7808 ptid_t. All callers adjusted.
7809 <ptid>: Delete, replaced by ...
7810 <thread>: ... this new field.
7811 (find_inline_frame_state): Take a thread pointer instead of a
7812 ptid_t. All callers adjusted.
7813 (skip_inline_frames, step_into_inline_frame)
7814 (inline_skipped_frames, inline_skipped_symbol): Take a thread
7815 pointer instead of a ptid_t. All callers adjusted.
7816 * inline-frame.h (skip_inline_frames, step_into_inline_frame)
7817 (inline_skipped_frames, inline_skipped_symbol): Likewise.
7818 * linux-fork.c (delete_checkpoint_command): Adjust to use thread
7819 pointers directly.
7820 * linux-nat.c (get_detach_signal): Likewise.
7821 * linux-thread-db.c (thread_from_lwp): New 'stopped' parameter.
7822 (thread_db_notice_clone): Adjust.
7823 (thread_db_find_new_threads_silently)
7824 (thread_db_find_new_threads_2, thread_db_find_new_threads_1): Take
7825 a thread pointer instead of a ptid_t. All callers adjusted.
7826 * mi/mi-cmd-var.c: Include "inferior.h".
7827 (mi_cmd_var_update_iter): Update to use thread pointers.
7828 * mi/mi-interp.c (mi_new_thread): Update to use the thread's
7829 inferior directly.
7830 (mi_output_running_pid, mi_inferior_count): Delete, bits factored
7831 out to ...
7832 (mi_output_running): ... this new function.
7833 (mi_on_resume_1): Adjust to use it.
7834 (mi_user_selected_context_changed): Adjust to use inferior_thread.
7835 * mi/mi-main.c (proceed_thread): Adjust to use thread pointers
7836 directly.
7837 (interrupt_thread_callback): : Adjust to use thread and inferior
7838 pointers.
7839 * proc-service.c: Include "gdbthread.h".
7840 (ps_pglobal_lookup): Adjust to use the thread's inferior directly.
7841 * progspace-and-thread.c: Include "inferior.h".
7842 * progspace.c: Include "inferior.h".
7843 * python/py-exitedevent.c (create_exited_event_object): Adjust to
7844 hold a reference to an inferior_object.
7845 * python/py-finishbreakpoint.c (bpfinishpy_init): Adjust to use
7846 inferior_thread.
7847 * python/py-inferior.c (struct inferior_object): Give the type a
7848 tag name instead of a typedef.
7849 (python_on_normal_stop): No need to check if the current thread is
7850 listed.
7851 (inferior_to_inferior_object): Change return type to
7852 inferior_object. All callers adjusted.
7853 (find_thread_object): Delete, bits factored out to ...
7854 (thread_to_thread_object): ... this new function.
7855 * python/py-infthread.c (create_thread_object): Use
7856 inferior_to_inferior_object.
7857 (thpy_is_stopped): Use thread pointer directly.
7858 (gdbpy_selected_thread): Use inferior_thread.
7859 * python/py-record-btrace.c (btpy_list_object) <ptid>: Delete
7860 field, replaced with ...
7861 <thread>: ... this new field. All users adjusted.
7862 (btpy_insn_or_gap_new): Drop const.
7863 (btpy_list_new): Take a thread pointer instead of a ptid_t. All
7864 callers adjusted.
7865 * python/py-record.c: Include "gdbthread.h".
7866 (recpy_insn_new, recpy_func_new): Take a thread pointer instead of
7867 a ptid_t. All callers adjusted.
7868 (gdbpy_current_recording): Use inferior_thread.
7869 * python/py-record.h (recpy_record_object) <ptid>: Delete
7870 field, replaced with ...
7871 <thread>: ... this new field. All users adjusted.
7872 (recpy_element_object) <ptid>: Delete
7873 field, replaced with ...
7874 <thread>: ... this new field. All users adjusted.
7875 (recpy_insn_new, recpy_func_new): Take a thread pointer instead of
7876 a ptid_t. All callers adjusted.
7877 * python/py-threadevent.c: Include "gdbthread.h".
7878 (get_event_thread): Use thread_to_thread_object.
7879 * python/python-internal.h (struct inferior_object): Forward
7880 declare.
7881 (find_thread_object, find_inferior_object): Delete declarations.
7882 (thread_to_thread_object, inferior_to_inferior_object): New
7883 declarations.
7884 * record-btrace.c: Include "inferior.h".
7885 (require_btrace_thread): Use inferior_thread.
7886 (record_btrace_frame_sniffer)
7887 (record_btrace_tailcall_frame_sniffer): Use inferior_thread.
7888 (get_thread_current_frame): Use scoped_restore_current_thread and
7889 switch_to_thread.
7890 (get_thread_current_frame): Use thread pointer directly.
7891 (record_btrace_replay_at_breakpoint): Use thread's inferior
7892 pointer directly.
7893 * record-full.c: Include "inferior.h".
7894 * regcache.c: Include "gdbthread.h".
7895 (get_thread_arch_regcache): Use the inferior's address space
7896 directly.
7897 (get_thread_regcache, registers_changed_thread): New.
7898 * regcache.h (get_thread_regcache(thread_info *thread)): New
7899 overload.
7900 (registers_changed_thread): New.
7901 (remote_target) <remote_detach_1>: Swap order of parameters.
7902 (remote_add_thread): <remote_add_thread>: Return the new thread.
7903 (get_remote_thread_info(ptid_t)): New overload.
7904 (remote_target::remote_notice_new_inferior): Use thread pointers
7905 directly.
7906 (remote_target::process_initial_stop_replies): Use
7907 thread_info::set_running.
7908 (remote_target::remote_detach_1, remote_target::detach)
7909 (extended_remote_target::detach): Adjust.
7910 * stack.c (frame_show_address): Use inferior_thread.
7911 * target-debug.h (target_debug_print_thread_info_pp): New.
7912 * target-delegates.c: Regenerate.
7913 * target.c (default_thread_address_space): Delete.
7914 (memory_xfer_partial_1): Use current_inferior.
7915 (target_detach): Use current_inferior.
7916 (target_thread_address_space): Delete.
7917 (generic_mourn_inferior): Use current_inferior.
7918 * target.h (struct target_ops) <thread_address_space>: Delete.
7919 (target_thread_address_space): Delete.
7920 * thread.c (init_thread_list): Use ALL_THREADS_SAFE. Use thread
7921 pointers directly.
7922 (delete_thread_1, delete_thread, delete_thread_silent): Take a
7923 thread pointer instead of a ptid_t. Adjust all callers.
7924 (ptid_to_global_thread_id, global_thread_id_to_ptid): Delete.
7925 (first_thread_of_process): Delete, replaced by ...
7926 (first_thread_of_inferior): ... this new function. All callers
7927 adjusted.
7928 (any_thread_of_process): Rename to ...
7929 (any_thread_of_inferior): ... this, and take an inferior pointer.
7930 (any_live_thread_of_process): Rename to ...
7931 (any_live_thread_of_inferior): ... this, and take an inferior
7932 pointer.
7933 (thread_stack_temporaries_enabled_p, push_thread_stack_temporary)
7934 (value_in_thread_stack_temporaries)
7935 (get_last_thread_stack_temporary): Take a thread pointer instead
7936 of a ptid_t. Adjust all callers.
7937 (thread_info::set_running): New.
7938 (validate_registers_access): Use inferior_thread.
7939 (can_access_registers_ptid): Rename to ...
7940 (can_access_registers_thread): ... this, and take a thread
7941 pointer.
7942 (print_thread_info_1): Adjust to compare thread pointers instead
7943 of ptids.
7944 (switch_to_no_thread, switch_to_thread): Make extern.
7945 (scoped_restore_current_thread::~scoped_restore_current_thread):
7946 Use m_thread pointer directly.
7947 (scoped_restore_current_thread::scoped_restore_current_thread):
7948 Use inferior_thread.
7949 (thread_command): Use thread pointer directly.
7950 (thread_num_make_value_helper): Use inferior_thread.
7951 * top.c (execute_command): Use inferior_thread.
7952 * tui/tui-interp.c: Include "inferior.h".
7953 * varobj.c (varobj_create): Use inferior_thread.
7954 (value_of_root_1): Use find_thread_global_id instead of
7955 global_thread_id_to_ptid.
7956
7957 2018-06-21 Alan Hayward <alan.hayward@arm.com>
7958
7959 * regcache.c (readable_regcache::read_part): Avoid memcpy when
7960 possible.
7961 (regcache::write_part): Likewise.
7962 (readable_regcache::cooked_read_part): Update comment.
7963 (readable_regcache::cooked_write_part): Likewise.
7964 * regcache.h: (readable_regcache::read_part): Likewise.
7965 (regcache::write_part): Likewise.
7966
7967 2018-06-21 Richard Bunt <richard.bunt@arm.com>
7968 Dirk Schubert <dirk.schubert@arm.com>
7969
7970 * aarch64-linux-nat.c (post_attach): New.
7971 (aarch64_linux_nat_target::post_attach): Override post_attach to
7972 record the number of hardware debug registers.
7973
7974 2018-06-20 Tom Tromey <tom@tromey.com>
7975
7976 * python/py-param.c (add_setshow_generic): Make parameters const.
7977 (parmpy_init): Update.
7978
7979 2018-06-20 Simon Marchi <simon.marchi@polymtl.ca>
7980
7981 * regcache.h (regcache_cooked_read_ftype): Rename to...
7982 (register_read_ftype): ...this, change type to function_view.
7983 (class reg_buffer) <save>: Remove src parameter.
7984 (readonly_detached_regcache) <readonly_detached_regcache>: Make
7985 parameter non-const in first overload. Remove src parameter in
7986 second overload.
7987 * regcache.c (do_cooked_read): Remove.
7988 (readonly_detached_regcache::readonly_detached_regcache): Make
7989 parameter non-const, adjust call to other constructor.
7990 (reg_buffer::save): Remove src parameter.
7991 * frame.c (do_frame_register_read): Remove.
7992 (frame_save_as_regcache): Use lambda function.
7993 * ppc-linux-tdep.c (ppu2spu_unwind_register): Change type of src
7994 parameter to ppu2spu_data *.
7995 (ppu2spu_sniffer): Use lambda function.
7996
7997 2018-06-20 Simon Marchi <simon.marchi@polymtl.ca>
7998
7999 * record-full.c (record_full_target::insert_breakpoint): Remove
8000 "struct" keyword, add const.
8001
8002 2018-06-19 Simon Marchi <simon.marchi@ericsson.com>
8003
8004 * common/common-defs.h (PACKAGE_NAME, PACKAGE_VERSION,
8005 PACKAGE_STRING, PACKAGE_TARNAME): Undefine.
8006 * configure.ac: Remove AC_PREREQ, add missing quoting.
8007 * gnulib/configure.ac: Modernize usage of
8008 AC_INIT/AM_INIT_AUTOMAKE. Remove AC_PREREQ.
8009 * gnulib/update-gnulib.sh (AUTOCONF_VERSION): Bump to 2.69.
8010 (AUTOMAKE_VERSION): Bump to 1.15.1.
8011 * configure: Re-generate.
8012 * config.in: Re-generate.
8013 * aclocal.m4: Re-generate.
8014 * gnulib/aclocal.m4: Re-generate.
8015 * gnulib/config.in: Re-generate.
8016 * gnulib/configure: Re-generate.
8017 * gnulib/import/Makefile.in: Re-generate.
8018
8019 2018-06-19 Pedro Alves <palves@redhat.com>
8020
8021 * minsyms.c (msym_prefer_to_msym_type): New, factored out from ...
8022 (lookup_minimal_symbol_by_pc_section): ... here with
8023 gdb_assert_not_reached added.
8024
8025 2018-06-19 Pedro Alves <palves@redhat.com>
8026
8027 * inline-frame.c (stopped_by_user_bp_inline_frame): Replace PC
8028 parameter with a block parameter. Compare location's block symbol
8029 with the frame's block instead of addresses.
8030 (skip_inline_frames): Pass the current block instead of the
8031 frame's address. Break out as soon as we determine the frame
8032 should not be skipped.
8033
8034 2018-06-18 Tom Tromey <tom@tromey.com>
8035
8036 * solib-aix.c (solib_aix_get_section_offsets): Return
8037 unique_xmalloc_ptr.
8038 (solib_aix_solib_create_inferior_hook): Update.
8039
8040 2018-06-18 Tom Tromey <tom@tromey.com>
8041
8042 * solib-darwin.c (darwin_current_sos): Use unique_xmalloc_ptr.
8043
8044 2018-06-18 Tom Tromey <tom@tromey.com>
8045
8046 * solib-frv.c (frv_relocate_main_executable): Use
8047 unique_xmalloc_ptr.
8048 * solib-dsbt.c (dsbt_relocate_main_executable): Use
8049 unique_xmalloc_ptr.
8050
8051 2018-06-18 Tom Tromey <tom@tromey.com>
8052
8053 * objfiles.h (inhibit_section_map_updates): Update.
8054 (resume_section_map_updates, resume_section_map_updates_cleanup):
8055 Remove.
8056 * solib-svr4.c (svr4_handle_solib_event): Update.
8057 * objfiles.c (inhibit_section_map_updates): Return
8058 scoped_restore_tmpl<int>.
8059 (resume_section_map_updates, resume_section_map_updates_cleanup):
8060 Remove.
8061
8062 2018-06-18 Tom Tromey <tom@tromey.com>
8063
8064 * valprint.h (read_string): Update.
8065 * valprint.c (read_string): Change type of "buffer".
8066 (val_print_string): Update.
8067 * python/py-value.c (valpy_string): Update.
8068 * language.h (struct language_defn) <la_get_string>: Change
8069 type of "buffer".
8070 (default_get_string, c_get_string): Update.
8071 * language.c (default_get_string): Change type of "buffer".
8072 * guile/scm-value.c (gdbscm_value_to_string): Update.
8073 * c-lang.c (c_get_string): Change type of "buffer".
8074
8075 2018-06-18 Tom Tromey <tom@tromey.com>
8076
8077 * ser-mingw.c (struct pipe_state_destroyer): New.
8078 (pipe_state_up): New typedef.
8079 (cleanup_pipe_state): Remove.
8080 (pipe_windows_open): Use pipe_state_up. Don't release argv.
8081
8082 2018-06-18 Tom Tromey <tom@tromey.com>
8083
8084 * rust-lang.h (rust_yyerror): Don't declare.
8085 * rust-lang.c (rust_language_defn): Update.
8086 * rust-exp.y (yyerror): Now static.
8087 * parse.c (parse_exp_in_context_1): Update.
8088 * p-lang.h (p_yyerror): Don't declare.
8089 * p-lang.c (p_language_defn): Update.
8090 * p-exp.y (yyerror): Now static.
8091 * opencl-lang.c (opencl_language_defn): Update.
8092 * objc-lang.c (objc_language_defn): Update.
8093 * m2-lang.h (m2_yyerror): Don't declare.
8094 * m2-lang.c (m2_language_defn): Update.
8095 * m2-exp.y (yyerror): Now static.
8096 * language.h (struct language_defn) <la_error>: Remove.
8097 * language.c (unk_lang_error): Remove.
8098 (unknown_language_defn, auto_language_defn): Remove.
8099 * go-lang.h (go_yyerror): Don't declare.
8100 * go-lang.c (go_language_defn): Update.
8101 * go-exp.y (yyerror): Now static.
8102 * f-lang.h (f_yyerror): Don't declare.
8103 * f-lang.c (f_language_defn): Update.
8104 * f-exp.y (yyerror): Now static.
8105 * d-lang.h (d_yyerror): Don't declare.
8106 * d-lang.c (d_language_defn): Update.
8107 * d-exp.y (yyerror): Now static.
8108 * c-lang.h (c_yyerror): Don't declare.
8109 * c-lang.c (c_language_defn, cplus_language_defn)
8110 (asm_language_defn, minimal_language_defn): Update.
8111 * c-exp.y (yyerror): Now static.
8112 * ada-lang.h (ada_yyerror): Don't declare.
8113 * ada-lang.c (ada_language_defn): Update.
8114 * ada-exp.y (yyerror): Now static.
8115
8116 2018-06-18 Alan Hayward <alan.hayward@arm.com>
8117
8118 * aarch64-linux-nat.c (fetch_sveregs_from_thread): New function.
8119 (store_sveregs_to_thread): Likewise.
8120 (aarch64_linux_fetch_inferior_registers): Check for SVE.
8121 (aarch64_linux_store_inferior_registers): Likewise.
8122 * nat/aarch64-sve-linux-ptrace.c (aarch64_sve_get_sveregs): New
8123 function.
8124 (aarch64_sve_regs_copy_to_regcache): Likewise.
8125 (aarch64_sve_regs_copy_from_regcache): Likewise.
8126 * nat/aarch64-sve-linux-ptrace.h (aarch64_sve_get_sveregs): New
8127 declaration.
8128 (aarch64_sve_regs_copy_to_regcache): Likewise.
8129 (aarch64_sve_regs_copy_from_regcache): Likewise.
8130 (sve_context): Structure from Linux headers.
8131 (SVE_SIG_ZREGS_SIZE): Define from Linux headers.
8132 (SVE_SIG_ZREG_SIZE): Likewise.
8133 (SVE_SIG_PREG_SIZE): Likewise.
8134 (SVE_SIG_FFR_SIZE): Likewise.
8135 (SVE_SIG_REGS_OFFSET): Likewise.
8136 (SVE_SIG_ZREGS_OFFSET): Likewise.
8137 (SVE_SIG_ZREG_OFFSET): Likewise.
8138 (SVE_SIG_ZREGS_SIZE): Likewise.
8139 (SVE_SIG_PREGS_OFFSET): Likewise.
8140 (SVE_SIG_PREG_OFFSET): Likewise.
8141 (SVE_SIG_PREGS_SIZE): Likewise.
8142 (SVE_SIG_FFR_OFFSET): Likewise.
8143 (SVE_SIG_REGS_SIZE): Likewise.
8144 (SVE_SIG_CONTEXT_SIZE): Likewise.
8145 (SVE_PT_REGS_MASK): Likewise.
8146 (SVE_PT_REGS_FPSIMD): Likewise.
8147 (SVE_PT_REGS_SVE): Likewise.
8148 (SVE_PT_VL_INHERIT): Likewise.
8149 (SVE_PT_VL_ONEXEC): Likewise.
8150 (SVE_PT_REGS_OFFSET): Likewise.
8151 (SVE_PT_FPSIMD_OFFSET): Likewise.
8152 (SVE_PT_FPSIMD_SIZE): Likewise.
8153 (SVE_PT_SVE_ZREG_SIZE): Likewise.
8154 (SVE_PT_SVE_PREG_SIZE): Likewise.
8155 (SVE_PT_SVE_FFR_SIZE): Likewise.
8156 (SVE_PT_SVE_FPSR_SIZE): Likewise.
8157 (SVE_PT_SVE_FPCR_SIZE): Likewise.
8158 (__SVE_SIG_TO_PT): Likewise.
8159 (SVE_PT_SVE_OFFSET): Likewise.
8160 (SVE_PT_SVE_ZREGS_OFFSET): Likewise.
8161 (SVE_PT_SVE_ZREG_OFFSET): Likewise.
8162 (SVE_PT_SVE_ZREGS_SIZE): Likewise.
8163 (SVE_PT_SVE_PREGS_OFFSET): Likewise.
8164 (SVE_PT_SVE_PREG_OFFSET): Likewise.
8165 (SVE_PT_SVE_PREGS_SIZE): Likewise.
8166 (SVE_PT_SVE_FFR_OFFSET): Likewise.
8167 (SVE_PT_SVE_FPSR_OFFSET): Likewise.
8168 (SVE_PT_SVE_FPCR_OFFSET): Likewise.
8169 (SVE_PT_SVE_SIZE): Likewise.
8170 (SVE_PT_SIZE): Likewise.
8171 (HAS_SVE_STATE): New define.
8172
8173 2018-06-18 Alan Hayward <alan.hayward@arm.com>
8174
8175 * nat/aarch64-sve-linux-sigcontext.h: New file.
8176 * nat/aarch64-sve-linux-ptrace.h (SVE_VQ_BYTES): Move to
8177 new files.
8178 (SVE_VQ_MIN): Likewise.
8179 (SVE_VQ_MAX): Likewise.
8180 (SVE_VL_MIN): Likewise.
8181 (SVE_VL_MAX): Likewise.
8182 (SVE_NUM_ZREGS): Likewise.
8183 (SVE_NUM_PREGS): Likewise.
8184 (sve_vl_valid): Likewise.
8185 (struct user_sve_header): Likewise.
8186
8187 2018-06-16 Andrew Burgess <andrew.burgess@embecosm.com>
8188 Richard Bunt <Richard.Bunt@arm.com>
8189
8190 * linux-nat.c (stop_wait_callback): Don't discard SIGSTOP if it
8191 was requested by GDB.
8192
8193 2018-06-15 Tom de Vries <tdevries@suse.de>
8194
8195 * MAINTAINERS (Write After Approval): Add Tom de Vries.
8196
8197 2018-06-14 Simon Marchi <simon.marchi@polymtl.ca>
8198
8199 * gnulib/update-gnulib.sh: Print expected versions of
8200 autoconf/aclocal.
8201
8202 2018-06-14 Simon Marchi <simon.marchi@ericsson.com>
8203
8204 * arch-utils.c (default_type_align): Use type_length_units.
8205 * gdbtypes.c (type_align): Use type_length_units.
8206
8207 2018-06-14 Philippe Waroquiers <philippe.waroquiers@skynet.be>
8208
8209 * cli/cli-script.c (_initialize_cli_script): Fix online documentation
8210 of 'define' command.
8211
8212 2018-06-14 Tom de Vries <tdevries@suse.de>
8213
8214 PR cli/22573
8215 * infcmd.c (print_return_value_1): Use get_user_print_options instead of
8216 get_no_prettyformat_print_options.
8217
8218 2018-06-13 Simon Marchi <simon.marchi@ericsson.com>
8219
8220 * sparc-nat.h: Include target.h.
8221 * sparc64-linux-nat.c (class sparc64_linux_nat_target)
8222 <fetch_registers>: Remove this argument in function call.
8223 <store_registers>: Remove this argument in function call, remove
8224 extra semicolon.
8225 <low_forget_process>: Call sparc64_forget_process instead of
8226 sparc_forget_process.
8227
8228 2018-06-13 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
8229
8230 * procfs.c (_initialize_procfs): Use add_inf_child_target.
8231 (procfs_target::make_corefile_notes): Adjust to new
8232 target_read_alloc return type.
8233
8234 2018-06-12 Andrew Burgess <andrew.burgess@embecosm.com>
8235 Stephen Roberts <stephen.roberts@arm.com>
8236
8237 PR gdb/22882
8238 * infrun.c (fetch_inferior_event): If GDB is not proceeding then
8239 run INF_EXEC_COMPLETE handler, even when not calling normal_stop.
8240 Move should_notify_stop local into more inner scope.
8241
8242 2018-06-12 Andrew Burgess <andrew.burgess@embecosm.com>
8243 Stephen Roberts <stephen.roberts@arm.com>
8244
8245 PR gdb/22882
8246 * infrun.c (resume_1): Add call to mark_async_event_handler.
8247
8248 2018-06-12 Andrew Burgess <andrew.burgess@embecosm.com>
8249
8250 * infrun.c (do_target_wait): Change old version of $pc printed.
8251
8252 2018-06-11 Simon Marchi <simon.marchi@ericsson.com>
8253
8254 * dwarf2read.c (read_index_from_section): Rename to...
8255 (read_gdb_index_from_section): ... this, update all callers.
8256 (dwarf2_read_index): Rename to...
8257 (dwarf2_read_gdb_index): ... this, update all callers.
8258
8259 2018-06-11 John David Anglin <danglin@gcc.gnu.org>
8260
8261 * hppa-linux-nat.c
8262 (hppa_linux_nat_target::fetch_inferior_registers): Rename to
8263 hppa_linux_nat_target::fetch_registers.
8264
8265 2018-06-11 Alan Hayward <alan.hayward@arm.com>
8266
8267 * aarch64-tdep.c (aarch64_dwarf_reg_to_regnum): Add mappings.
8268 * aarch64-tdep.h (AARCH64_DWARF_SVE_VG): Add define.
8269 (AARCH64_DWARF_SVE_FFR): Likewise.
8270 (AARCH64_DWARF_SVE_P0): Likewise.
8271 (AARCH64_DWARF_SVE_Z0): Likewise.
8272
8273 2018-06-11 Alan Hayward <alan.hayward@arm.com>
8274
8275 * common/common-regcache.h (raw_compare): New function.
8276 * regcache.c (regcache::raw_compare): Likewise.
8277 * regcache.h (regcache::raw_compare): New declaration.
8278
8279 2018-06-11 Alan Hayward <alan.hayward@arm.com>
8280
8281 * common/common-regcache.h (reg_buffer_common): New structure.
8282 * regcache.c (reg_buffer::invalidate): Move from detached_regcache.
8283 (reg_buffer::raw_supply): Likewise.
8284 (reg_buffer::raw_supply_integer): Likewise.
8285 (reg_buffer::raw_supply_zeroed): Likewise.
8286 (reg_buffer::raw_collect): Likewise.
8287 (reg_buffer::raw_collect_integer): Likewise.
8288 * regcache.h (reg_buffer::invalidate): Move from detached_regcache.
8289 (reg_buffer::raw_supply): Likewise.
8290 (reg_buffer::raw_supply_integer): Likewise.
8291 (reg_buffer::raw_supply_zeroed): Likewise.
8292 (reg_buffer::raw_collect): Likewise.
8293 (reg_buffer::raw_collect_integer): Likewise.
8294
8295 2018-06-10 Tom Tromey <tom@tromey.com>
8296
8297 * remote.c (stop_reply_p): Remove typedef. Don't declare queue.
8298 (class remote_state) <stop_reply_queue>: Now std::vector.
8299 (remote_state::~remote_state)
8300 (remote_target::stop_reply_queue_length): Update.
8301 (struct queue_iter_param, remove_child_of_pending_fork)
8302 (struct check_pending_event_prevents_wildcard_vcont_callback_data)
8303 (check_pending_event_prevents_wildcard_vcont_callback)
8304 (remove_stop_reply_for_inferior)
8305 (remove_stop_reply_of_remote_state)
8306 (remote_notif_remove_once_on_match)
8307 (stop_reply_match_ptid_and_ws)
8308 (remote_kill_child_of_pending_fork): Remove.
8309 (remote_target::remove_new_fork_children)
8310 (remote_target::check_pending_events_prevent_wildcard_vcont)
8311 (remote_target::discard_pending_stop_replies)
8312 (remote_target::discard_pending_stop_replies_in_queue)
8313 (remote_target::remote_notif_remove_queued_reply)
8314 (remote_target::queued_stop_reply)
8315 (remote_target::push_stop_reply, remote_target::peek_stop_reply)
8316 (remote_target::wait, remote_target::kill_new_fork_children)
8317 (remote_target::async): Update.
8318
8319 2018-06-10 Tom Tromey <tom@tromey.com>
8320
8321 * record-full.c (record_full_arch_list_cleanups): Remove.
8322 (record_full_message): Use try/catch.
8323 (record_full_wait_cleanups): Remove.
8324 (record_full_wait_1): Use try/catch.
8325 (record_full_restore): Likewise.
8326
8327 2018-06-10 Tom Tromey <tom@tromey.com>
8328
8329 * record-full.c (record_full_breakpoint_p): Remove typedef. Don't
8330 declare VEC. Add constructor.
8331 <in_target_beneath>: Now bool.
8332 (record_full_breakpoints): Now a std::vector, static.
8333 (record_full_sync_record_breakpoints)
8334 (record_full_init_record_breakpoints)
8335 (record_full_target::insert_breakpoint)
8336 (record_full_target::remove_breakpoint): Update. Don't use XNEW.
8337
8338 2018-06-10 Simon Marchi <simon.marchi@polymtl.ca>
8339
8340 * dwarf2read.c (process_cu_includes): Remove struct keyword.
8341 * serial.c (serial_interface_lookup): Remove struct keyword.
8342
8343 2018-06-10 Tom Tromey <tom@tromey.com>
8344
8345 * procfs.c (procfs_target::xfer_partial): Use "beneath" as a
8346 method.
8347 * nto-procfs.c (nto_procfs_target::xfer_partial): Use "beneath" as
8348 a method.
8349 * go32-nat.c (go32_nat_target::xfer_partial): Use "beneath" as a
8350 method.
8351 * arm-linux-nat.c (arm_linux_nat_target::read_description): Use
8352 "beneath" as a method.
8353 * arm-fbsd-nat.c (arm_fbsd_nat_target::read_description):
8354 Use "beneath" as a method.
8355
8356 2018-06-10 Tom Tromey <tom@tromey.com>
8357
8358 * tracefile.c (struct trace_file_writer_deleter): New.
8359 <operator()>: Rename from trace_file_writer_xfree.
8360 (trace_file_writer_up): New typedef.
8361 (tsave_command, trace_save_tfile, trace_save_ctf): Update.
8362
8363 2018-06-09 Simon Marchi <simon.marchi@ericsson.com>
8364
8365 * regcache.h (reg_buffer) <~reg_buffer>: Use default destructor.
8366 <m_registers, m_register_status>: Change type to
8367 std::unique_ptr.
8368 * regcache.c (reg_buffer::reg_buffer): Use new instead of
8369 XCNEWVEC.
8370
8371 2018-06-09 Simon Marchi <simon.marchi@ericsson.com>
8372
8373 * common/common-regcache.h (enum register_status): Add
8374 underlying type "signed char".
8375 * regcache.h (reg_buffer) <m_register_status>: Change type to
8376 register_status *.
8377 * regcache.c (reg_buffer::reg_buffer): Alocate arrays of
8378 register_status instead of signed char.
8379 (reg_buffer::save): Use REG_UNKNOWN instead of 0.
8380 (reg_buffer::get_register_status): Remove cast.
8381 (readable_regcache::raw_read): Remove cast.
8382 (readable_regcache::cooked_read): Remove cast.
8383
8384 2018-06-09 Tom Tromey <tom@tromey.com>
8385
8386 * source.c (reverse_search_command, forward_search_command): Use
8387 scoped_fd.
8388
8389 2018-06-09 Tom Tromey <tom@tromey.com>
8390
8391 * serial.c (serial_ops_p): Remove typedef. Don't declare VEC.
8392 (serial_ops_list): Now static, std::vector.
8393 (serial_interface_lookup, serial_add_interface): Update.
8394
8395 2018-06-09 Tom Tromey <tom@tromey.com>
8396
8397 * dwarf2read.c (process_cu_includes): Update.
8398 (process_full_comp_unit): Update.
8399 * dwarf2read.h (struct dwarf2_per_objfile) <just_read_cus>: Now a
8400 std::vector.
8401
8402 2018-06-08 Paul Koning <paul_koning@dell.com>
8403
8404 PR gdb/23252
8405
8406 * python/python.c (do_start_initialization):
8407 Avoid call to internal Python API.
8408 (init__gdb_module): New function.
8409
8410 2018-06-08 Gary Benson <gbenson@redhat.com>
8411
8412 * linux-thread-db.c (valprint.h): New include.
8413 (struct check_thread_db_info): New structure.
8414 (check_thread_db_on_load, tdb_testinfo): New static globals.
8415 (check_thread_db, check_thread_db_callback): New functions.
8416 (try_thread_db_load_1): Run integrity checks if requested.
8417 (maintenance_check_libthread_db): New function.
8418 (_initialize_thread_db): Register "maint check libthread-db"
8419 and "maint set/show check-libthread-db".
8420 * NEWS: Mention the above new commands.
8421
8422 2018-06-08 Tom Tromey <tom@tromey.com>
8423
8424 * windows-nat.c (windows_nat_target::xfer_partial): "beneath" is
8425 now a method.
8426
8427 2018-06-08 Tom Tromey <tom@tromey.com>
8428
8429 * btrace.c (parse_xml_raw): Use gdb::unique_xmalloc_ptr.
8430
8431 2018-06-08 Tom Tromey <tom@tromey.com>
8432
8433 * common/btrace-common.h (struct btrace_data): Add constructor,
8434 destructor, move assignment operator.
8435 <empty, clear, fini>: New methods.
8436 <format>: Initialize.
8437 (btrace_data_init, btrace_data_fini, btrace_data_clear)
8438 (btrace_data_empty): Don't declare.
8439 * common/btrace-common.c (btrace_data_init): Remove.
8440 (btrace_data::fini): Rename from btrace_data_fini.
8441 (btrace_data::empty): Rename from btrace_data_empty.
8442 (btrace_data::clear): Rename from btrace_data_clear. Return
8443 bool.
8444 * btrace.h (make_cleanup_btrace_data): Don't declare.
8445 * btrace.c (btrace_add_pc, btrace_stitch_trace, btrace_clear)
8446 (parse_xml_btrace): Update.
8447 (do_btrace_data_cleanup, make_cleanup_btrace_data): Remove.
8448 (maint_btrace_clear_packet_history_cmd): Update.
8449
8450 2018-06-07 Pedro Alves <palves@redhat.com>
8451
8452 * target.h (target_ops) <beneath>: Now a method. All references
8453 updated.
8454 (class target_stack): New.
8455 * target.c (g_target_stack): New.
8456 (g_current_top_target): Delete.
8457 (current_top_target): Get the top target out of g_target_stack.
8458 (target_stack::push, target_stack::unpush): New.
8459 (push_target, unpush_target): Reimplement.
8460 (target_is_pushed): Reimplement in terms of g_target_stack.
8461 (target_ops::beneath, target_stack::find_beneath): New.
8462
8463 2018-06-07 Pedro Alves <palves@redhat.com>
8464
8465 * target.h (find_target_beneath): Delete declaration.
8466 * target.c (find_target_beneath): Delete definition.
8467 * aix-thread.c: All callers of find_target_beneath adjusted to
8468 call target_ops::beneath instead.
8469 * bsd-uthread.c: Likewise.
8470 * linux-thread-db.c: Likewise.
8471 * ravenscar-thread.c: Likewise.
8472 * sol-thread.c: Likewise.
8473 * spu-multiarch.c: Likewise.
8474
8475 2018-06-07 Pedro Alves <palves@redhat.com>
8476
8477 * target.h (target_ops) <beneath>: Now a method. All references
8478 updated.
8479 (target_ops) <m_beneath>: New.
8480 * target.c (target_ops::beneath): New.
8481 * corelow.c: Adjust all references to target_ops::beneath.
8482 * linux-thread-db.c: Likewise.
8483 * make-target-delegates: Likewise.
8484 * record-btrace.c: Likewise.
8485 * record-full.c: Likewise.
8486 * remote.c: Likewise.
8487 * target.c: Likewise.
8488 * target-delegates.c: Regenerate.
8489
8490 2018-06-07 Pedro Alves <palves@redhat.com>
8491
8492 * target.h (target_stack): Delete.
8493 (current_top_target): Declare function.
8494 * target.c (target_stack): Delete.
8495 (g_current_top_target): New.
8496 (current_top_target): New function.
8497 * auxv.c: Use current_top_target instead of target_stack
8498 throughout.
8499 * avr-tdep.c: Likewise.
8500 * breakpoint.c: Likewise.
8501 * corefile.c: Likewise.
8502 * elfread.c: Likewise.
8503 * eval.c: Likewise.
8504 * exceptions.c: Likewise.
8505 * frame.c: Likewise.
8506 * gdbarch-selftests.c: Likewise.
8507 * gnu-v3-abi.c: Likewise.
8508 * ia64-tdep.c: Likewise.
8509 * ia64-vms-tdep.c: Likewise.
8510 * infcall.c: Likewise.
8511 * infcmd.c: Likewise.
8512 * infrun.c: Likewise.
8513 * linespec.c: Likewise.
8514 * linux-tdep.c: Likewise.
8515 * minsyms.c: Likewise.
8516 * ppc-linux-nat.c: Likewise.
8517 * ppc-linux-tdep.c: Likewise.
8518 * procfs.c: Likewise.
8519 * regcache.c: Likewise.
8520 * remote.c: Likewise.
8521 * rs6000-tdep.c: Likewise.
8522 * s390-linux-nat.c: Likewise.
8523 * s390-tdep.c: Likewise.
8524 * solib-aix.c: Likewise.
8525 * solib-darwin.c: Likewise.
8526 * solib-dsbt.c: Likewise.
8527 * solib-spu.c: Likewise.
8528 * solib-svr4.c: Likewise.
8529 * solib-target.c: Likewise.
8530 * sparc-tdep.c: Likewise.
8531 * sparc64-tdep.c: Likewise.
8532 * spu-tdep.c: Likewise.
8533 * symfile.c: Likewise.
8534 * symtab.c: Likewise.
8535 * target-descriptions.c: Likewise.
8536 * target-memory.c: Likewise.
8537 * target.c: Likewise.
8538 * target.h: Likewise.
8539 * tracefile-tfile.c: Likewise.
8540 * tracepoint.c: Likewise.
8541 * valops.c: Likewise.
8542 * valprint.c: Likewise.
8543 * value.c: Likewise.
8544 * windows-tdep.c: Likewise.
8545 * mi/mi-main.c: Likewise.
8546
8547 2018-06-07 Tom Tromey <tom@tromey.com>
8548
8549 * valprint.h (build_address_symbolic): Declare.
8550 * printcmd.c (print_address_symbolic): Update.
8551 (build_address_symbolic): Change "name" and "filename" to
8552 std::string.
8553 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn):
8554 Update.
8555 * defs.h (build_address_symbolic): Remove declaration.
8556
8557 2018-06-07 Alan Hayward <alan.hayward@arm.com>
8558
8559 * aarch64-tdep.c (AARCH64_SVE_V0_REGNUM): Add define.
8560 (aarch64_vnv_type): Add function.
8561 (aarch64_pseudo_register_name): Add V regs for SVE.
8562 (aarch64_pseudo_register_type): Likewise.
8563 (aarch64_pseudo_register_reggroup_p): Likewise.
8564 (aarch64_pseudo_read_value_2): Use V0 offset for SVE
8565 (aarch64_pseudo_read_value): Add V regs for SVE.
8566 (aarch64_pseudo_write_2): Use V0 offset for SVE
8567 (aarch64_pseudo_write): Add V regs for SVE.
8568 * aarch64-tdep.h (struct gdbarch_tdep): Add vnv_type.
8569
8570 2018-06-06 Sergio Durigan Junior <sergiodj@redhat.com>
8571
8572 * arch/aarch64.h (sve_vq_from_vl): Guard with #ifndef.
8573 (sve_vl_from_vq): Likewise.
8574
8575 2018-06-05 Tom Tromey <tom@tromey.com>
8576
8577 * cli/cli-cmds.c (show_version): Update.
8578 * top.c (print_gdb_version): Add "interactive" parameter.
8579 Update.
8580 * main.c (captured_main_1): Update.
8581 * top.h (print_gdb_version): Add "interactive" parameter and a
8582 comment.
8583
8584 2018-06-05 David Malcolm <dmalcolm@redhat.com>
8585
8586 * common/enum-flags.h: Add trailing semicolon to example in
8587 comment.
8588
8589 2018-06-05 Tom Tromey <tom@tromey.com>
8590
8591 PR cli/12326:
8592 * NEWS: Add entry about pager.
8593 * utils.c (pagination_disabled_for_command): New global.
8594 (prompt_for_continue): Allow "c" response to prompt.
8595 (reinitialize_more_filter): Clear
8596 pagination_disabled_for_command.
8597 (fputs_maybe_filtered): Check pagination_disabled_for_command.
8598
8599 2018-06-04 Tom Tromey <tom@tromey.com>
8600
8601 * ada-lang.h (ada_lookup_symbol_list): Update.
8602 * ada-lang.c (resolve_subexp): Update.
8603 (symbols_are_identical_enums): Change type of syms. Remove nsyms
8604 parameter.
8605 (remove_extra_symbols, remove_irrelevant_renamings): Likewise.
8606 (ada_lookup_symbol_list_worker, ada_lookup_symbol_list): Change
8607 results parameter to std::vector.
8608 (ada_iterate_over_symbols, ada_lookup_symbol, get_var_value):
8609 Update.
8610 * ada-exp.y (block_lookup): Update.
8611 (select_possible_type_sym): Change type of syms. Remove nsyms
8612 parameter.
8613 (write_var_or_type, write_name_assoc): Update.
8614
8615 2018-06-04 Joel Brobecker <brobecker@adacore.com>
8616
8617 * windows-nat.c (windows_nat_target::xfer_partial): Return
8618 TARGET_XFER_E_IO if we need to delegate to the target beneath
8619 but BENEATH is NULL.
8620
8621 2018-06-04 Simon Marchi <simon.marchi@ericsson.com>
8622
8623 * Makefile.in (config.status): Add configure.nat as a
8624 dependency.
8625
8626 2018-06-04 Tom Tromey <tom@tromey.com>
8627
8628 * cp-name-parser.y (cpname_state): Add method declarations.
8629 (HANDLE_QUAL): Update.
8630 (cpname_state::d_grab, cpname_state::fill_comp)
8631 (cpname_state::make_operator, cpname_state::make_dtor)
8632 (cpname_state::make_builtin_type, cpname_state::make_name)
8633 (cpname_state::d_qualify, cpname_state::d_int_type)
8634 (cpname_state::d_unary, cpname_state::d_binary): Now methods.
8635 (%union): Move earlier.
8636
8637 2018-06-04 Alan Hayward <alan.hayward@arm.com>
8638
8639 * elfread.c (elf_symfile_segments): Use ELF_SECTION_IN_SEGMENT.
8640
8641 2018-06-04 Alan Hayward <alan.hayward@arm.com>
8642
8643 * aarch64-tdep.c (aarch64_pseudo_read_value_1): New helper func.
8644 (aarch64_pseudo_write_1): Likewise.
8645 (aarch64_pseudo_read_value): Use helper.
8646 (aarch64_pseudo_write): Likewise.
8647
8648 2018-06-04 Pedro Alves <palves@redhat.com>
8649
8650 * darwin-nat.c (darwin_ops): Delete.
8651 (darwin_attach_pid): Use get_native_target.
8652
8653 2018-06-04 Alan Hayward <alan.hayward@arm.com>
8654
8655 * aarch64-tdep.c (aarch64_get_tdesc_vq): Use uint64_t for VQ.
8656 * aarch64-tdep.h (struct gdbarch_tdep): Likewise.
8657
8658 2018-06-04 Alan Hayward <alan.hayward@arm.com>
8659
8660 * aarch64-linux-nat.c (aarch64_linux_read_description): Support SVE.
8661 * aarch64-tdep.c (aarch64_get_tdesc_vq): New function.
8662 (aarch64_gdbarch_init): Check for SVE.
8663 * aarch64-tdep.h (gdbarch_tdep::has_sve): New function.
8664
8665 2018-06-04 Alan Hayward <alan.hayward@arm.com>
8666
8667 * aarch64-tdep.c (aarch64_read_description): Use uint64_t for VQ.
8668 * aarch64-tdep.h (aarch64_read_description): Likewise.
8669 * arch/aarch64.c (aarch64_create_target_description): Likewise.
8670 * arch/aarch64.h (aarch64_create_target_description): Likewise.
8671 * features/aarch64-sve.c (create_feature_aarch64_sve): Likewise.
8672 * nat/aarch64-sve-linux-ptrace.c(aarch64_sve_get_vq): Likewise.
8673 * nat/aarch64-sve-linux-ptrace.h (aarch64_sve_get_vq): Likewise.
8674
8675 2018-06-02 Simon Marchi <simon.marchi@ericsson.com>
8676
8677 * value.c (value_fetch_lazy_bitfield): New.
8678 (value_fetch_lazy_memory): New.
8679 (value_fetch_lazy_register): New.
8680 (value_fetch_lazy): Factor out to smaller functions.
8681
8682 2018-06-01 Tom Tromey <tom@tromey.com>
8683
8684 * cp-name-parser.y (backslashable, represented): Now const.
8685
8686 2018-06-01 Tom Tromey <tom@tromey.com>
8687
8688 * cp-name-parser.y: Include parser-defs.h.
8689 (parser_fprintf): Remove declaration.
8690
8691 2018-06-01 Tom Tromey <tom@tromey.com>
8692
8693 * cp-name-parser.y: Use %pure-parser, %lex-param, and
8694 %parse-param.
8695 (lexptr, prev_lexptr, error_lexptr, global_errmsg, demangle_info)
8696 (global_result): Remove globals.
8697 (struct cpname_state): New.
8698 (yyparse): Don't declare.
8699 (yylex, yyerror): Move declarations after %union.
8700 (d_grab, fill_comp, make_operator, make_dtor, make_builtin_type)
8701 (make_name): Add state parameter.
8702 Update all callers.
8703 (d_qualify, d_int_type, d_unary, d_binary, parse_number) Add state
8704 parameter.
8705 (HANDLE_QUAL, HANDLE_SPECIAL, HANDLE_TOKEN2, HANDLE_TOKEN3):
8706 Update.
8707 (yylex): Add lvalp, state parameters.
8708 (yyerror): Add state parameter.
8709 (cp_demangled_name_to_comp): Update.
8710
8711 2018-06-01 Tom Tromey <tom@tromey.com>
8712
8713 * cp-name-parser.y (parser_fprintf): Declare.
8714 (GDB_YY_REMAP_PREFIX): Define.
8715 Include yy-remap.h. Don't redefine yy* identifiers.
8716
8717 2018-06-01 Tom Tromey <tom@tromey.com>
8718
8719 * python/py-type.c (typy_legacy_template_argument): Update.
8720 * cp-support.h (cp_demangled_name_to_comp): Update.
8721 * cp-name-parser.y (cp_demangled_name_to_comp): Change errmsg
8722 parameter to be a "std::string *".
8723 (main): Update.
8724
8725 2018-06-01 H.J. Lu <hongjiu.lu@intel.com>
8726
8727 * ada-lex.l: Include "diagnostics.h" instead of
8728 "common/diagnostics.h".
8729 * unittests/environ-selftests.c: Likewise.
8730 * common/diagnostics.h: Moved to ../include.
8731
8732 2018-06-01 Joel Brobecker <brobecker@adacore.com>
8733
8734 * breakpoint.c (breakpoint_re_set): Temporarily force language_mode
8735 to language_mode_manual while calling breakpoint_re_set_one.
8736
8737 2018-06-01 Tom Tromey <tom@tromey.com>
8738
8739 * valops.c (value_cast_structs, destructor_name_p): Update.
8740 * symtab.c (gdb_mangle_name): Update.
8741 * stabsread.c (define_symbol, read_cpp_abbrev, read_baseclasses):
8742 Update.
8743 * p-valprint.c (pascal_object_is_vtbl_ptr_type)
8744 (pascal_object_print_value_fields, pascal_object_print_value):
8745 Update.
8746 * p-typeprint.c (pascal_type_print_derivation_info): Update.
8747 * linespec.c (find_methods): Update.
8748 * gdbtypes.h (type_name_no_tag): Remove.
8749 (type_name_or_error): Rename from type_name_no_tag_or_error.
8750 * gdbtypes.c (type_name_no_tag): Remove.
8751 (type_name_or_error): Rename from type_name_no_tag_or_error.
8752 (lookup_struct_elt_type, check_typedef): Update.
8753 * expprint.c (print_subexp_standard): Update.
8754 * dwarf2read.c (dwarf2_add_field, load_partial_dies): Update.
8755 * d-namespace.c (d_lookup_nested_symbol): Update.
8756 * cp-valprint.c (cp_is_vtbl_ptr_type, cp_print_value_fields)
8757 (cp_print_class_member): Update.
8758 * cp-namespace.c (cp_lookup_nested_symbol): Update.
8759 * completer.c (add_struct_fields): Update.
8760 * c-typeprint.c (cp_type_print_derivation_info)
8761 (c_type_print_varspec_prefix, c_type_print_base_struct_union):
8762 Update.
8763 * ada-lang.c (parse_old_style_renaming, xget_renaming_scope)
8764 (ada_prefer_type, ada_is_exception_sym): Update.
8765
8766 2018-06-01 Tom Tromey <tom@tromey.com>
8767
8768 * valops.c (enum_constant_from_type, value_namespace_elt)
8769 (value_maybe_namespace_elt): Update.
8770 * valarith.c (find_size_for_pointer_math): Update.
8771 * target-descriptions.c (make_gdb_type): Update.
8772 * symmisc.c (print_symbol): Update.
8773 * stabsread.c (define_symbol, read_type)
8774 (complain_about_struct_wipeout, add_undefined_type)
8775 (cleanup_undefined_types_1): Update.
8776 * rust-lang.c (rust_tuple_type_p, rust_slice_type_p)
8777 (rust_range_type_p, val_print_struct, rust_print_struct_def)
8778 (rust_internal_print_type, rust_composite_type)
8779 (rust_evaluate_funcall, rust_evaluate_subexp)
8780 (rust_inclusive_range_type_p): Update.
8781 * python/py-type.c (typy_get_tag): Update.
8782 * p-typeprint.c (pascal_type_print_base): Update.
8783 * mdebugread.c (parse_symbol, parse_type): Update.
8784 * m2-typeprint.c (m2_long_set, m2_record_fields, m2_enum):
8785 Update.
8786 * guile/scm-type.c (gdbscm_type_tag): Update.
8787 * go-lang.c (sixg_string_p): Update.
8788 * gnu-v3-abi.c (build_gdb_vtable_type, build_std_type_info_type):
8789 Update.
8790 * gdbtypes.h (struct main_type) <tag_name>: Remove.
8791 (TYPE_TAG_NAME): Remove.
8792 * gdbtypes.c (type_name_no_tag): Simplify.
8793 (check_typedef, check_types_equal, recursive_dump_type)
8794 (copy_type_recursive, arch_composite_type): Update.
8795 * f-typeprint.c (f_type_print_base): Update. Print "Type" prefix
8796 in summary mode when needed.
8797 * eval.c (evaluate_funcall): Update.
8798 * dwarf2read.c (fixup_go_packaging, read_structure_type)
8799 (process_structure_scope, read_enumeration_type)
8800 (read_namespace_type, read_module_type, determine_prefix): Update.
8801 * cp-support.c (inspect_type): Update.
8802 * coffread.c (process_coff_symbol, decode_base_type): Update.
8803 * c-varobj.c (c_is_path_expr_parent): Update.
8804 * c-typeprint.c (c_type_print_base_struct_union): Update.
8805 (c_type_print_base_1): Update. Print struct/class/union/enum in
8806 summary when using C language.
8807 * ax-gdb.c (gen_struct_ref, gen_namespace_elt)
8808 (gen_maybe_namespace_elt): Update.
8809 * ada-lang.c (ada_type_name): Simplify.
8810 (empty_record, ada_template_to_fixed_record_type_1)
8811 (template_to_static_fixed_type)
8812 (to_record_with_fixed_variant_part, ada_check_typedef): Update.
8813
8814 2018-06-01 Tom Tromey <tom@tromey.com>
8815
8816 * dwarf2read.c (dwarf2_compute_name): Pass CU's language to
8817 c_print_type.
8818 * c-typeprint.c (c_print_type_1): Add "language" parameter.
8819 (c_print_type): Update.
8820 (c_print_type): New overload.
8821 (c_type_print_varspec_prefix, c_type_print_args)
8822 (c_type_print_varspec_suffix, c_print_type_no_offsets)
8823 (c_type_print_base_struct_union, c_type_print_base_1)
8824 (cp_type_print_method_args): Add "language" parameter.
8825 (c_type_print_base): Update.
8826 * c-lang.h (c_print_type): Add new overload.
8827
8828 2018-06-01 Tom Tromey <tom@tromey.com>
8829
8830 * typeprint.h (c_type_print_varspec_suffix): Don't declare.
8831 * c-typeprint.c (c_type_print_varspec_suffix): Now static.
8832
8833 2018-06-01 Alan Hayward <alan.hayward@arm.com>
8834
8835 * aarch64-tdep.c (aarch64_sve_register_names): New const
8836 var.
8837 * arch/aarch64.h (enum aarch64_regnum): Add SVE entries.
8838 (AARCH64_SVE_Z_REGS_NUM): New define.
8839 (AARCH64_SVE_P_REGS_NUM): Likewise.
8840 (AARCH64_SVE_NUM_REGS): Likewise.
8841
8842 2018-05-31 Uros Bizjak <ubizjak@gmail.com>
8843
8844 * nat/linux-ptrace.h [__alpha__]
8845 (GDB_ARCH_IS_TRAP_BRKPT, GDB_ARCH_IS_TRAP_HWBKPT): Remove
8846 definitions.
8847
8848 2018-05-31 Maciej W. Rozycki <macro@mips.com>
8849
8850 * arch-utils.c (gdbarch_info_fill): Set `default_byte_order' to
8851 the endianness selected.
8852 * NEWS: Document `set endian auto' mode operation update.
8853
8854 2018-05-31 Alan Hayward <alan.hayward@arm.com>
8855
8856 * Makefile.in: Add new header.
8857 * gdb/arch/aarch64.h (sve_vg_from_vl): New macro.
8858 (sve_vl_from_vg): Likewise.
8859 (sve_vq_from_vl): Likewise.
8860 (sve_vl_from_vq): Likewise.
8861 (sve_vq_from_vg): Likewise.
8862 (sve_vg_from_vq): Likewise.
8863 * configure.nat: Add new c file.
8864 * nat/aarch64-sve-linux-ptrace.c: New file.
8865 * nat/aarch64-sve-linux-ptrace.h: New file.
8866
8867 2018-05-31 Alan Hayward <alan.hayward@arm.com>
8868
8869 * aarch64-linux-nat.c (aarch64_linux_read_description):
8870 Add parmeter zero.
8871 * aarch64-linux-tdep.c (aarch64_linux_core_read_description):
8872 Likewise.
8873 * aarch64-tdep.c (tdesc_aarch64_list): Add.
8874 (aarch64_read_description): Use VQ to index tdesc_aarch64_list.
8875 (aarch64_gdbarch_init): Add parmeter zero.
8876 * aarch64-tdep.h (aarch64_read_description): Add VQ parmeter.
8877 * arch/aarch64.c (aarch64_create_target_description): Check VQ.
8878 * arch/aarch64.h (aarch64_create_target_description): Add VQ.
8879 parmeter.
8880 * doc/gdb.texinfo: Describe SVE feature
8881 * features/aarch64-sve.c: New file.
8882
8883 2018-05-31 Omair Javaid <omair.javaid@linaro.org>
8884
8885 PR gdb/23210
8886 * gdbarch.sh (significant_addr_bit): Default to zero when
8887 not set by target architecture.
8888 * gdbarch.c: Re-generated.
8889 * utils.c (address_significant): Update.
8890
8891 2018-05-30 Joel Brobecker <brobecker@adacore.com>
8892
8893 * stack.c (func_command): Remove trailing newline in call to error.
8894
8895 2018-05-30 Simon Marchi <simon.marchi@ericsson.com>
8896
8897 * regcache.h (regcache_raw_collect): Remove, update callers to
8898 use regcache::raw_collect.
8899 * regcache.c (regcache_raw_collect): Remove.
8900
8901 2018-05-30 Simon Marchi <simon.marchi@ericsson.com>
8902
8903 * regcache.h (regcache_raw_supply): Remove, update callers to
8904 use detached_regcache::raw_supply.
8905 * regcache.c (regcache_raw_supply): Remove.
8906
8907 2018-05-30 Simon Marchi <simon.marchi@ericsson.com>
8908
8909 * regcache.h (regcache_cooked_write_part): Remove, update
8910 callers to use regcache::cooked_write_part.
8911 * regcache.c (regcache_cooked_write_part): Remove.
8912
8913 2018-05-30 Simon Marchi <simon.marchi@ericsson.com>
8914
8915 * regcache.h (regcache_cooked_read_part): Remove, update callers
8916 to use readable_regcache::cooked_read_part.
8917 * regcache.c (regcache_cooked_read_part): Remove.
8918
8919 2018-05-30 Simon Marchi <simon.marchi@ericsson.com>
8920
8921 * regcache.h (regcache_cooked_read_value): Remove, update
8922 callers to use readable_regcache::cooked_read_value.
8923 * regcache.c (regcache_cooked_read_value): Remove.
8924
8925 2018-05-30 Simon Marchi <simon.marchi@ericsson.com>
8926
8927 * regcache.h (regcache_cooked_write): Remove, update callers to
8928 use regcache::cooked_write.
8929 * regcache.c (regcache_cooked_write): Remove.
8930
8931 2018-05-30 Simon Marchi <simon.marchi@ericsson.com>
8932
8933 * regcache.h (regcache_invalidate): Remove, update callers to
8934 use detached_regcache::invalidate instead.
8935 * regcache.c (regcache_invalidate): Remove.
8936
8937 2018-05-30 Simon Marchi <simon.marchi@ericsson.com>
8938
8939 * regcache.h (regcache_raw_write_part): Remove, update callers
8940 to use regcache::raw_write_part instead.
8941 * regcache.c (regcache_raw_write_part): Remove.
8942
8943 2018-05-30 Simon Marchi <simon.marchi@ericsson.com>
8944
8945 * regcache.h (regcache_raw_read_part): Remove, update callers to
8946 use readable_regcache::raw_read_part instead.
8947 * regcache.c (regcache_raw_read_part): Remove.
8948
8949 2018-05-30 Simon Marchi <simon.marchi@ericsson.com>
8950
8951 * regcache.h (regcache_cooked_read): Remove, update callers to
8952 use readable_regcache::cooked_read instead.
8953 * regcache.c (regcache_cooked_read): Remove.
8954
8955 2018-05-30 Simon Marchi <simon.marchi@ericsson.com>
8956
8957 * regcache.h (regcache_raw_write): Remove, update callers to use
8958 regcache::raw_write instead.
8959 * regcache.c (regcache_raw_write): Remove.
8960
8961 2018-05-30 Simon Marchi <simon.marchi@ericsson.com>
8962
8963 * regcache.h (regcache_raw_read): Remove, update callers to use
8964 readable_regcache::raw_read instead.
8965 * regcache.c (regcache_raw_read): Remove.
8966
8967 2018-05-30 Simon Marchi <simon.marchi@ericsson.com>
8968
8969 * regcache.h (regcache_raw_update): Remove, update callers to
8970 use readable_regcache::raw_update instead.
8971 * regcache.c (regcache_raw_update): Remove.
8972
8973 2018-05-30 Simon Marchi <simon.marchi@ericsson.com>
8974
8975 * regcache.h (regcache_register_status): Remove, update callers
8976 to use reg_buffer::get_register_status directly instead.
8977 * regcache.c (regcache_register_status): Remove.
8978
8979 2018-05-30 Simon Marchi <simon.marchi@ericsson.com>
8980
8981 * regcache.h (regcache_get_ptid): Remove, update all callers to
8982 call regcache::ptid instead.
8983 * regcache.c (regcache_get_ptid): Remove.
8984
8985 2018-05-30 Simon Marchi <simon.marchi@ericsson.com>
8986
8987 * Makefile.in (ALL_TARGET_OBS): Add or1k-tdep.o.
8988
8989 2018-05-30 Pedro Alves <palves@redhat.com>
8990
8991 * common/common-exceptions.h (exception_rethrow): Use
8992 ATTRIBUTE_NORETURN.
8993
8994 2018-05-29 Simon Marchi <simon.marchi@polymtl.ca>
8995
8996 * breakpoint.c (print_solib_event, check_status_catch_solib):
8997 Remove struct keyword in range-based for loops.
8998 * dbxread.c (find_corresponding_bincl_psymtab): Likewise.
8999 * dwarf2read.c (compute_delayed_physnames, rust_union_quirks);
9000 Likewise.
9001 * linespec.c (find_superclass_methods, search_minsyms_for_name):
9002 Likewise.
9003 * symfile.c (addr_info_make_relative): Likewise.
9004 * thread.c (value_in_thread_stack_temporaries): Likewise.
9005
9006 2018-06-12 Weimin Pan <weimin.pan@oracle.com>
9007
9008 PR gdb/16841
9009 * valops.c (value_struct_elt_for_reference): Call check_typedef on
9010 aggregate type to get its real type before accessing it.
9011
9012 2018-05-29 Weimin Pan <weimin.pan@oracle.com>
9013
9014 * minsyms.h (lookup_minimal_symbol_and_objfile): Remove declaration.
9015 * minsyms.c (lookup_minimal_symbol_and_objfile): Remove definition.
9016 * coff-pe-read.c (add_pe_forwarded_sym): Replace
9017 lookup_minimal_symbol_and_objfile with lookup_bound_minimal_symbol.
9018 * glibc-tdep.c (glibc_skip_solib_resolver): Likewise.
9019 * jit.c (jit_breakpoint_re_set_internal): Likewise.
9020 * printcmd.c (info_address_command): Likewise.
9021
9022 2018-05-29 Tom Tromey <tom@tromey.com>
9023
9024 * windows-nat.c (handle_exception): Update fall-through comment.
9025
9026 2018-05-29 Tom Tromey <tom@tromey.com>
9027
9028 * progspace.h (so_list_ptr): Remove typedef. Don't declare VEC.
9029 (struct program_space) <added_solibs>: Now a std::vector.
9030 * breakpoint.c (print_solib_event): Update.
9031 (check_status_catch_solib): Update.
9032 * progspace.c (clear_program_space_solib_cache): Update.
9033 * solib.c (update_solib_list): Update.
9034
9035 2018-05-29 Tom Tromey <tom@tromey.com>
9036
9037 * python/py-type.c (typy_richcompare): Update.
9038 * guile/scm-type.c (tyscm_equal_p_type_smob): Update.
9039 * gdbtypes.h (types_deeply_equal): Return bool.
9040 (types_equal): Likewise.
9041 * gdbtypes.c (type_equality_entry_d): Remove typedef. Don't
9042 declare VEC.
9043 (check_types_equal): Change worklist to std::vector. Return
9044 bool.
9045 (struct type_equality_entry): Add constructor.
9046 (compare_maybe_null_strings): Return bool.
9047 (check_types_worklist): Return bool. Change worklist to
9048 std::vector.
9049 (types_deeply_equal): Use std::vector.
9050 (types_equal): Return bool.
9051 (compare_maybe_null_strings): Simplify.
9052
9053 2018-05-29 Tom Tromey <tom@tromey.com>
9054
9055 * record-btrace.c (tp_t): Remove typedef. Don't declare VEC.
9056
9057 2018-05-29 Tom Tromey <tom@tromey.com>
9058
9059 * objc-lang.h: Don't include cp-support.h.
9060 * common/gdb_vecs.h (const_char_ptr): Remove typedef. Don't
9061 declare VEC.
9062
9063 2018-05-27 Tom Tromey <tom@tromey.com>
9064
9065 * Makefile.in (DEPFILES): Don't reference REMOTE_OBS.
9066
9067 2018-05-25 Tom Tromey <tom@tromey.com>
9068
9069 * value.c (value::location): Initialize.
9070
9071 2018-05-25 Tom Tromey <tom@tromey.com>
9072
9073 * dbxread.c (init_bincl_list): Remove.
9074 (bincl_list): Now a std::vector.
9075 (bincls_allocated, next_bincl): Remove.
9076 (free_bincl_list, do_free_bincl_list_cleanup)
9077 (make_cleanup_free_bincl_list): Remove.
9078 (dbx_read_symtab, elfstab_build_psymtabs): Use scoped_restore,
9079 unique_xmalloc_ptr.
9080 (find_corresponding_bincl_psymtab, read_dbx_symtab): Update.
9081 (struct header_file_location): Add constructor.
9082 (add_bincl_to_list): Remove.
9083
9084 2018-05-25 Tom Tromey <tom@tromey.com>
9085
9086 * tui/tui.c (tui_enable): Update.
9087 * mi/mi-interp.c (mi_interp::init): Update.
9088 * interps.h (class interp) <name>: New method.
9089 <m_name>: Rename from name.
9090 (~scoped_restore_interp): Update.
9091 * interps.c (interp::interp): Update.
9092 (interp_add, interp_set, interp_lookup_existing)
9093 (current_interp_named_p): Update.
9094
9095 2018-05-25 Tom Tromey <tom@tromey.com>
9096
9097 * interps.c (interp_name): Remove.
9098 * mi/mi-interp.c (mi_interp::init): Update.
9099 * interps.h (interp_name): Remove.
9100 (~scoped_restore_interp): Update.
9101 * tui/tui.c (tui_enable): Update.
9102
9103 2018-05-25 Tom Tromey <tom@tromey.com>
9104
9105 * utils.c (fputs_maybe_filtered): Update.
9106 * linespec.c (decode_line_full): Update.
9107 * mi/mi-interp.c (mi_on_normal_stop_1, mi_tsv_modified)
9108 (mi_print_breakpoint_for_event, mi_solib_loaded)
9109 (mi_solib_unloaded, mi_command_param_changed, mi_memory_changed)
9110 (mi_user_selected_context_changed): Update.
9111 * mi/mi-main.c (mi_execute_command): Update.
9112 * cli/cli-script.c (execute_control_command): Update.
9113 * python/python.c (execute_gdb_command): Update.
9114 * solib.c (info_sharedlibrary_command): Update.
9115 * interps.c (interp_ui_out): Remove.
9116 * interps.h (interp_ui_out): Remove.
9117
9118 2018-05-25 Tom Tromey <tom@tromey.com>
9119
9120 * tui/tui-interp.c (as_tui_interp): Use dynamic_cast.
9121 * mi/mi-interp.c (as_mi_interp): Use dynamic_cast.
9122 * cli/cli-interp.c (as_cli_interp): Use dynamic_cast.
9123
9124 2018-05-25 Tom Tromey <tom@tromey.com>
9125
9126 * cli/cli-interp.c (safe_execute_command): Use scoped_restore.
9127 * interps.c (interp_exec): Use scoped_restore.
9128
9129 2018-05-25 Tom Tromey <tom@tromey.com>
9130
9131 * remote.c (remote_target::remote_file_get): Use
9132 gdb::byte_vector.
9133 (remote_target::remote_file_put): Likewise.
9134
9135 2018-05-25 Tom Tromey <tom@tromey.com>
9136
9137 * coff-pe-read.c (struct read_pe_section_data) <section_name>: Now
9138 a std::string.
9139 (get_pe_section_index, add_pe_exported_sym): Update.
9140 (read_pe_exported_syms): Use gdb::def_vector.
9141
9142 2018-05-25 Tom Tromey <tom@tromey.com>
9143
9144 * frame.c (remove_prev_frame): Remove.
9145 (get_prev_frame_if_no_cycle): Use TRY/CATCH.
9146
9147 2018-05-25 Maciej W. Rozycki <macro@mips.com>
9148
9149 * mips-linux-tdep.h (mips_supply_fpregset, mips_fill_fpregset):
9150 Remove prototypes.
9151 * mips-linux-nat.c (supply_fpregset): Always call
9152 `mips64_supply_fpregset' rather than `mips_supply_fpregset'.
9153 (fill_fpregset): Always call `mips64_fill_fpregset' rather than
9154 `mips_fill_fpregset'.
9155 * mips-linux-tdep.c (mips_supply_fpregset)
9156 (mips_supply_fpregset_wrapper, mips_fill_fpregset)
9157 (mips_fill_fpregset_wrapper): Remove functions.
9158 (mips64_supply_fpregset, mips64_fill_fpregset): Update comments.
9159 (mips_linux_fpregset): Remove variable.
9160 (mips_linux_iterate_over_regset_sections): Use
9161 `mips64_linux_fpregset' in place of `mips_linux_fpregset'.
9162 (mips_linux_o32_sigframe_init): Remove comment.
9163
9164 2018-05-25 Pedro Alves <palves@redhat.com>
9165
9166 * remote.c (struct vCont_action_support, MAXTHREADLISTRESULTS)
9167 (struct readahead_cache, struct packet_reg, struct
9168 remote_arch_state, class remote_state): Move higher up in the
9169 file.
9170 (remote_target::m_remote_state): Now an object instead of a pointer.
9171 (remote_target::get_remote_state): Adjust.
9172
9173 2018-05-24 Andrew Burgess <andrew.burgess@embecosm.com>
9174
9175 * stack.c (select_and_print_frame): Delete.
9176 (struct function_bounds): Move struct within function.
9177 (func_command): Most content moved into new function
9178 find_frame_for_function, use new function, print result, add
9179 function comment.
9180 (find_frame_for_function): New function, now returns a result.
9181
9182 2018-05-24 Philippe Waroquiers <philippe.waroquiers@skynet.be>
9183
9184 * stack.c (iterate_over_block_arg_vars): Fix comment.
9185 (print_frame_arg_vars): Pass stream in cb_data, not gdb_stdout.
9186
9187 2018-05-24 Andrew Burgess <andrew.burgess@embecosm.com>
9188
9189 PR gdb/23203
9190 * frame.c
9191 (scoped_restore_selected_frame::scoped_restore_selected_frame):
9192 Define.
9193 (scoped_restore_selected_frame::~scoped_restore_selected_frame):
9194 Define.
9195 * frame.h (class scoped_restore_selected_frame): New class.
9196 * stack.c (print_frame_local_vars): Remove catching and rethrowing
9197 of any exception, use scoped_restore_selected_frame to restore the
9198 frame instead.
9199
9200 2018-05-24 Pedro Alves <palves@redhat.com>
9201
9202 * darwin-nat.h (darwin_nat_target::create_inferior): Mark with
9203 override.
9204
9205 2018-05-23 Tom Tromey <tom@tromey.com>
9206
9207 * complaints.c (struct complaints): Remove.
9208 (symfile_complaint_book): Remove.
9209 (series): New global.
9210 (complaint_internal): Update.
9211 (clear_complaints): Update.
9212
9213 2018-05-23 Tom Tromey <tom@tromey.com>
9214
9215 * complaints.c (counters): New global.
9216 (struct complain): Remove.
9217 (struct complaints) <root>: Remove.
9218 (complaint_sentinel): Remove.
9219 (symfile_complaint_book): Update.
9220 (find_complaint) Remove.
9221 (complaint_internal, clear_complaints): Update.
9222
9223 2018-05-23 Tom Tromey <tom@tromey.com>
9224
9225 * complaints.c (struct complain) <file, line>: Remove.
9226 (find_complaint): Remove file, line parameters.
9227 (complaint_internal): Update.
9228
9229 2018-05-23 Tom Tromey <tom@tromey.com>
9230
9231 * complaints.c (vcomplaint): Remove.
9232 (complaint_internal) Merge in contents of vcomplaint.
9233
9234 2018-05-23 Tom Tromey <tom@tromey.com>
9235
9236 * complaints.c (struct complaints) <explanation>: Remove.
9237 (symfile_explanations): Remove.
9238 (symfile_complaint_book): Update.
9239 (vcomplaint): Update.
9240 (struct explanation): Remove.
9241
9242 2018-05-23 Tom Tromey <tom@tromey.com>
9243
9244 * complaints.c (symfile_complaints): Remove.
9245 (complaint_internal): Remove "complaints" parameter.
9246 (clear_complaints, vcomplaint): Remove "c" parameter.
9247 (get_complaints): Remove.
9248 * dwarf2read.c (dwarf2_statement_list_fits_in_line_number_section_complaint)
9249 (dwarf2_debug_line_missing_file_complaint)
9250 (dwarf2_debug_line_missing_end_sequence_complaint)
9251 (dwarf2_complex_location_expr_complaint)
9252 (dwarf2_const_value_length_mismatch_complaint)
9253 (dwarf2_section_buffer_overflow_complaint)
9254 (dwarf2_macro_malformed_definition_complaint)
9255 (dwarf2_invalid_attrib_class_complaint)
9256 (create_addrmap_from_index, dw2_symtab_iter_next)
9257 (dw2_expand_marked_cus)
9258 (dw2_debug_names_iterator::find_vec_in_debug_names)
9259 (dw2_debug_names_iterator::next, dw2_debug_names_iterator::next)
9260 (create_debug_type_hash_table, init_cutu_and_read_dies)
9261 (partial_die_parent_scope, add_partial_enumeration)
9262 (skip_one_die, fixup_go_packaging, quirk_rust_enum, process_die)
9263 (dwarf2_compute_name, dwarf2_physname, read_namespace_alias)
9264 (read_import_statement, read_file_scope, create_dwo_cu_reader)
9265 (create_cus_hash_table, create_dwp_hash_table)
9266 (inherit_abstract_dies, read_func_scope, read_call_site_scope)
9267 (dwarf2_rnglists_process, dwarf2_ranges_process)
9268 (dwarf2_add_type_defn, dwarf2_attach_fields_to_type)
9269 (dwarf2_add_member_fn, get_alignment, maybe_set_alignment)
9270 (handle_struct_member_die, process_structure_scope)
9271 (read_array_type, read_common_block, read_module_type)
9272 (read_tag_pointer_type, read_typedef, read_base_type)
9273 (read_subrange_type, load_partial_dies, partial_die_info::read)
9274 (partial_die_info::read, partial_die_info::read)
9275 (partial_die_info::read, read_checked_initial_length_and_offset)
9276 (dwarf2_string_attr, read_formatted_entries)
9277 (dwarf_decode_line_header)
9278 (lnp_state_machine::check_line_address, dwarf_decode_lines_1)
9279 (new_symbol, dwarf2_const_value_attr, lookup_die_type)
9280 (read_type_die_1, determine_prefix, dwarf2_get_ref_die_offset)
9281 (dwarf2_get_attr_constant_value, dwarf2_fetch_constant_bytes)
9282 (get_signatured_type, get_DW_AT_signature_type)
9283 (decode_locdesc, file_file_name, consume_improper_spaces)
9284 (skip_form_bytes, skip_unknown_opcode, dwarf_parse_macro_header)
9285 (dwarf_decode_macro_bytes, dwarf_decode_macros)
9286 (dwarf2_symbol_mark_computed, set_die_type)
9287 (read_attribute_value): Update.
9288 * stap-probe.c (handle_stap_probe, get_stap_base_address):
9289 Update.
9290 * dbxread.c (unknown_symtype_complaint)
9291 (lbrac_mismatch_complaint, repeated_header_complaint)
9292 (set_namestring, function_outside_compilation_unit_complaint)
9293 (read_dbx_symtab, process_one_symbol): Update.
9294 * gdbtypes.c (stub_noname_complaint): Update.
9295 * windows-nat.c (handle_unload_dll): Update.
9296 * coffread.c (coff_symtab_read, enter_linenos, decode_type)
9297 (decode_base_type): Update.
9298 * xcoffread.c (bf_notfound_complaint, ef_complaint)
9299 (eb_complaint, record_include_begin, record_include_end)
9300 (enter_line_range, xcoff_next_symbol_text, read_xcoff_symtab)
9301 (process_xcoff_symbol, read_symbol)
9302 (function_outside_compilation_unit_complaint)
9303 (scan_xcoff_symtab): Update.
9304 * machoread.c (macho_symtab_read, macho_add_oso_symfile): Update.
9305 * buildsym.c (finish_block_internal, make_blockvector)
9306 (end_symtab_get_static_block, augment_type_symtab): Update.
9307 * dtrace-probe.c (dtrace_process_dof)
9308 (dtrace_static_probe_ops::get_probes): Update.
9309 * complaints.h (struct complaint): Don't declare.
9310 (symfile_complaints): Remove.
9311 (complaint_internal): Remove "complaints" parameter.
9312 (complaint): Likewise.
9313 (clear_complaints): Likewise.
9314 * symfile.c (syms_from_objfile_1, finish_new_objfile)
9315 (reread_symbols): Update.
9316 * dwarf2-frame.c (dwarf2_restore_rule, execute_cfa_program)
9317 (dwarf2_frame_cache, decode_frame_entry): Update.
9318 * dwarf2loc.c (dwarf_reg_to_regnum): Update.
9319 * objc-lang.c (lookup_objc_class, lookup_child_selector)
9320 (info_selectors_command): Update.
9321 * macrotab.c (macro_include, check_for_redefinition)
9322 (macro_undef): Update.
9323 * objfiles.c (filter_overlapping_sections): Update.
9324 * stabsread.c (invalid_cpp_abbrev_complaint)
9325 (reg_value_complaint, stabs_general_complaint, dbx_lookup_type)
9326 (define_symbol, error_type, read_type, rs6000_builtin_type)
9327 (stabs_method_name_from_physname, read_member_functions)
9328 (read_cpp_abbrev, read_baseclasses, read_tilde_fields)
9329 (attach_fields_to_type, complain_about_struct_wipeout)
9330 (read_range_type, read_args, common_block_start)
9331 (common_block_end, cleanup_undefined_types_1, scan_file_globals):
9332 Update.
9333 * mdebugread.c (index_complaint, unknown_ext_complaint)
9334 (basic_type_complaint, bad_tag_guess_complaint)
9335 (bad_rfd_entry_complaint, unexpected_type_code_complaint)
9336 (reg_value_complaint, parse_symbol, parse_type, upgrade_type)
9337 (parse_procedure, parse_lines)
9338 (function_outside_compilation_unit_complaint)
9339 (parse_partial_symbols, psymtab_to_symtab_1, cross_ref)
9340 (bad_tag_guess_complaint, reg_value_complaint): Update.
9341 * cp-support.c (demangled_name_complaint): Update.
9342 * macroscope.c (sal_macro_scope): Update.
9343 * dwarf-index-write.c (class debug_names): Update.
9344
9345 2018-05-23 Tom Tromey <tom@tromey.com>
9346
9347 * complaints.c (clear_complaints): Remove "noisy" parameter.
9348 * complaints.h (clear_complaints): Update.
9349 * symfile.c (syms_from_objfile_1, finish_new_objfile)
9350 (reread_symbols): Update.
9351
9352 2018-05-23 Tom Tromey <tom@tromey.com>
9353
9354 * complaints.c (enum complaint_series): Remove FIRST_MESSAGE,
9355 SUBSEQUENT_MESSAGE.
9356 (vcomplaint, clear_complaints): Update.
9357 (symfile_explanations): Remove some messages.
9358
9359 2018-05-23 Tom Tromey <tom@tromey.com>
9360
9361 * complaints.c (internal_complaint): Remove.
9362 * complaints.h (internal_complaint): Remove.
9363
9364 2018-05-22 Maciej W. Rozycki <macro@mips.com>
9365
9366 * i387-tdep.c (i387_collect_xsave): Make `i' unsigned.
9367
9368 2018-05-22 Pedro Alves <palves@redhat.com>
9369
9370 * remote-fileio.c (remote_fileio_reply, remote_fileio_ioerror)
9371 (remote_fileio_badfd, remote_fileio_return_errno)
9372 (remote_fileio_return_success, remote_fileio_func_open)
9373 (remote_fileio_func_open, remote_fileio_func_close)
9374 (remote_fileio_func_read, remote_fileio_func_write)
9375 (remote_fileio_func_lseek, remote_fileio_func_rename)
9376 (remote_fileio_func_unlink, remote_fileio_func_stat)
9377 (remote_fileio_func_fstat, remote_fileio_func_gettimeofday)
9378 (remote_fileio_func_isatty, remote_fileio_func_system): Add
9379 remote_target parameter.
9380 (remote_fio_func_map) <func>: Add remote_target parameter.
9381 (do_remote_fileio_request, remote_fileio_request):
9382 * remote-fileio.h (remote_fileio_request):
9383 * remote-notif.c (remote_notif_ack, remote_notif_parse, ): Add
9384 remote_target parameter.
9385 (remote_notif_process, handle_notification): Adjust to pass down
9386 the remote.
9387 (remote_notif_state_allocate): Add remote_target parameter. Save
9388 it.
9389 * remote-notif.h (struct remote_target): Forward declare.
9390 (struct notif_client) <parse, ack, can_get_pending_events>: Add
9391 remote_target parameter.
9392 (struct remote_notif_state) <remote>: New field.
9393 (remote_notif_ack, remote_notif_parse): Add remote_target
9394 parameter.
9395 (remote_notif_state_allocate, remote_notif_state_allocate): Add
9396 remote_target parameter.
9397 * remote.c (OPAQUETHREADBYTES, threadref, gdb_ext_thread_info)
9398 (threads_listing_context, rmt_thread_action, protocol_feature)
9399 (packet_reg, stop_reply, stop_reply_p, enum packet_support)
9400 (packet_result, struct threads_listing_context, remote_state):
9401 Move definitions and declarations higher up.
9402 (remote_target) <~remote_target>: Declare.
9403 (remote_download_command_source, remote_file_put, remote_file_get)
9404 (remote_file_delete, remote_hostio_pread, remote_hostio_pwrite)
9405 (remote_hostio_pread_vFile, remote_hostio_send_command)
9406 (remote_hostio_set_filesystem, remote_hostio_open)
9407 (remote_hostio_close, remote_hostio_unlink, remote_state)
9408 (get_remote_state, get_remote_packet_size, get_memory_packet_size)
9409 (get_memory_write_packet_size, get_memory_read_packet_size)
9410 (append_pending_thread_resumptions, remote_detach_1)
9411 (append_resumption, remote_resume_with_vcont)
9412 (add_current_inferior_and_thread, wait_ns, wait_as)
9413 (process_stop_reply, remote_notice_new_inferior)
9414 (process_initial_stop_replies, remote_add_thread)
9415 (btrace_sync_conf, remote_btrace_maybe_reopen)
9416 (remove_new_fork_children, kill_new_fork_children)
9417 (discard_pending_stop_replies, stop_reply_queue_length)
9418 (check_pending_events_prevent_wildcard_vcont)
9419 (discard_pending_stop_replies_in_queue, stop_reply)
9420 (remote_notif_remove_queued_reply, stop_reply *queued_stop_reply)
9421 (peek_stop_reply, remote_parse_stop_reply, remote_stop_ns)
9422 (remote_interrupt_as, remote_interrupt_ns)
9423 (remote_get_noisy_reply, remote_query_attached)
9424 (remote_add_inferior, remote_current_thread, get_current_thread)
9425 (set_thread, set_general_thread, set_continue_thread)
9426 (set_general_process, write_ptid)
9427 (remote_unpack_thread_info_response, remote_get_threadinfo)
9428 (parse_threadlist_response, remote_get_threadlist)
9429 (remote_threadlist_iterator, remote_get_threads_with_ql)
9430 (remote_get_threads_with_qxfer)
9431 (remote_get_threads_with_qthreadinfo, extended_remote_restart)
9432 (get_offsets, remote_check_symbols, remote_supported_packet)
9433 (remote_query_supported, remote_packet_size)
9434 (remote_serial_quit_handler, remote_detach_pid)
9435 (remote_vcont_probe, remote_resume_with_hc)
9436 (send_interrupt_sequence, interrupt_query)
9437 (remote_notif_get_pending_events, fetch_register_using_p)
9438 (send_g_packet, process_g_packet, fetch_registers_using_g)
9439 (store_register_using_P, store_registers_using_G)
9440 (set_remote_traceframe, check_binary_download)
9441 (remote_write_bytes_aux, remote_write_bytes, remote_read_bytes_1)
9442 (remote_xfer_live_readonly_partial, remote_read_bytes)
9443 (remote_send_printf, remote_flash_write, readchar)
9444 (remote_serial_write, putpkt, putpkt_binary, skip_frame)
9445 (read_frame, getpkt, getpkt_or_notif_sane_1, getpkt_sane)
9446 (getpkt_or_notif_sane, remote_vkill, remote_kill_k)
9447 (extended_remote_disable_randomization, extended_remote_run)
9448 (send_environment_packet, extended_remote_environment_support)
9449 (extended_remote_set_inferior_cwd, remote_write_qxfer)
9450 (remote_read_qxfer, push_stop_reply, vcont_r_supported)
9451 (packet_command): Now methods of ...
9452 (remote_target): ... this class.
9453 (m_remote_state) <remote_target>: New field.
9454 (struct remote_state) <stop_reply_queue,
9455 remote_async_inferior_event_token, wait_forever_enabled_p>: New
9456 fields.
9457 (remote_state::remote_state): Allocate stop_reply_queue.
9458 (remote_state): Delete global.
9459 (get_remote_state_raw): Delete.
9460 (remote_target::get_remote_state): Allocate m_remote_state on
9461 demand.
9462 (get_current_remote_target): New.
9463 (remote_ops, extended_remote_ops): Delete.
9464 (wait_forever_enabled_p, remote_async_inferior_event_token):
9465 Delete, moved to struct remote_state.
9466 (remote_target::close): Delete self. Destruction bits split to
9467 ...
9468 (remote_target::~remote_target): ... this.
9469 (show_memory_packet_size): Adjust to use
9470 get_current_remote_target.
9471 (struct protocol_feature) <func>: Add remote_target parameter.
9472 All callers adjusted.
9473 (curr_quit_handler_target): New.
9474 (remote_serial_quit_handler): Reimplement.
9475 (remote_target::open_1): Adjust to use get_current_remote_target.
9476 Heap-allocate remote_target/extended_remote_target instances.
9477 (vcont_builder::vcont_builder): Add remote_target parameter, and
9478 save it in m_remote. All callers adjusted.
9479 (vcont_builder::m_remote): New field.
9480 (vcont_builder::restart, vcont_builder::flush)
9481 (vcont_builder::push_action): Use it.
9482 (remote_target::commit_resume): Use it.
9483 (struct queue_iter_param) <remote>: New field.
9484 (remote_target::remove_new_fork_children): Fill in 'remote' field.
9485 (check_pending_event_prevents_wildcard_vcont_callback_data): New.
9486 (check_pending_event_prevents_wildcard_vcont_callback)
9487 (remote_target::check_pending_events_prevent_wildcard_vcont)
9488 (remote_target::discard_pending_stop_replies)
9489 (remote_target::discard_pending_stop_replies_in_queue)
9490 (remote_target::remote_notif_remove_queued_reply): Fill in
9491 'remote' field.
9492 (remote_notif_get_pending_events): New.
9493 (remote_target::readchar, remote_target::remote_serial_write):
9494 Save/restore curr_quit_handler_target.
9495 (putpkt): New.
9496 (kill_new_fork_children): Fill in 'remote' field.
9497 (packet_command): Use get_current_remote_target, defer to
9498 remote_target method of same name.
9499 (scoped_remote_fd::scoped_remote_fd): Add 'remote_target'
9500 parameter, and save it in m_remote. All callers adjusted.
9501 (scoped_remote_fd::release): Use m_remote.
9502 (scoped_remote_fd::m_remote): New field.
9503 (remote_file_put, remote_file_get, remote_file_delete): Use
9504 get_current_remote_target, defer to remote_target method of same
9505 name.
9506 (remote_btrace_reset): Add remote_state paremeter. Update all
9507 callers.
9508 (remote_async_inferior_event_handler). Pass down 'data'.
9509 (remote_new_objfile): Use get_current_remote_target.
9510 (remote_target::vcont_r_supported): New.
9511 (set_range_stepping): Use get_current_remote_target and
9512 remote_target::vcont_r_supported.
9513 (_initialize_remote): Don't allocate 'remote_state' and
9514 'stop_reply_queue' globals.
9515 * remote.h (struct remote_target): Forward declare.
9516 (getpkt, putpkt, remote_notif_get_pending_events): Add
9517 'remote_target' parameter.
9518
9519 2018-05-22 Pedro Alves <palves@redhat.com>
9520
9521 * remote.c (vcont_builder): Now a class. Make all data members
9522 private.
9523 (vcont_builder) <vcont_builder, restart, flush, push_action>:
9524 Declare methods.
9525 (vcont_builder_restart): Rename to ...
9526 (vcont_builder::restart): ... this.
9527 (vcont_builder_flush): Rename to ...
9528 (vcont_builder::flush): ... this.
9529 (vcont_builder_push_action): Rename to ...
9530 (vcont_builder::push_action): ... this.
9531 (remote_target::commit_resume): Adjust.
9532
9533 2018-05-22 Pedro Alves <palves@redhat.com>
9534
9535 * remote.c (DEFAULT_MAX_MEMORY_PACKET_SIZE): Rename to ...
9536 (DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED): ... this.
9537 (get_fixed_memory_packet_size): New.
9538 (get_memory_packet_size): Use it.
9539 (set_memory_packet_size): Don't override the config size with
9540 DEFAULT_MAX_MEMORY_PACKET_SIZE.
9541 (show_memory_packet_size): Use get_fixed_memory_packet_size.
9542 Don't refer to get_memory_packet_size if not connected to a remote
9543 target. Show "(default)" if configured size is 0.
9544
9545 2018-05-22 Pedro Alves <palves@redhat.com>
9546
9547 * remote.c (remote_target::mourn_inferior): Move
9548 discard_pending_stop_replies call here from ...
9549 (_initialize_remote): ... here.
9550
9551 2018-05-22 Pedro Alves <palves@redhat.com>
9552
9553 * remote.c (compare_section_command): Remove set_general_process
9554 call.
9555
9556 2018-05-22 Pedro Alves <palves@redhat.com>
9557
9558 * remote.c (struct packet_reg, struct remote_arch_state):
9559 Move higher up in the file.
9560 (remote_state) <m_arch_states>: Store remote_arch_state values
9561 instead of remote_arch_state pointers.
9562 (remote_state::get_remote_arch_state): Adjust.
9563
9564 2018-05-22 Pedro Alves <palves@redhat.com>
9565
9566 * remote.c: Include <unordered_map>.
9567 (remote_state): Now a class.
9568 (remote_state) <get_remote_arch_state>: Declare method.
9569 <get_remote_arch_state>: New field.
9570 (remote_arch_state) <remote_arch_state>: Declare ctor.
9571 <regs>: Now a unique_ptr.
9572 (remote_gdbarch_data_handle): Delete.
9573 (get_remote_arch_state): Delete.
9574 (remote_state::get_remote_arch_state): New.
9575 (get_remote_state): Adjust to call remote_state's
9576 get_remote_arch_state method.
9577 (init_remote_state): Delete, bits factored out to ...
9578 (remote_arch_state::remote_arch_state): ... this new method.
9579 (get_remote_packet_size, get_memory_packet_size)
9580 (process_g_packet, remote_target::fetch_registers)
9581 (remote_target::prepare_to_store, store_registers_using_G)
9582 (remote_target::store_registers, remote_target::get_trace_status):
9583 Adjust to call remote_state's method.
9584 (_initialize_remote): Remove reference to
9585 remote_gdbarch_data_handle.
9586
9587 2018-05-22 Pedro Alves <palves@redhat.com>
9588
9589 * remote.c (struct readahead_cache) <invalidate, invalidate_fd,
9590 pread>: New method declarations.
9591 (remote_target::open_1): Adjust.
9592 (readahead_cache_invalidate): Rename to ...
9593 (readahead_cache::invalidate): ... this, and adjust to be a class
9594 method.
9595 (readahead_cache_invalidate_fd): Rename to ...
9596 (readahead_cache::invalidate_fd): ... this, and adjust to be a
9597 class method.
9598 (remote_hostio_pwrite): Adjust.
9599 (remote_hostio_pread_from_cache): Rename to ...
9600 (readahead_cache::pread): ... this, and adjust to be a class
9601 method.
9602 (remote_hostio_close): Adjust.
9603
9604 2018-05-22 Pedro Alves <palves@redhat.com>
9605
9606 * remote.c (remote_hostio_close_cleanup): Delete.
9607 (class scoped_remote_fd): New.
9608 (remote_file_put, remote_file_get): Use it.
9609
9610 2018-05-22 Pedro Alves <palves@redhat.com>
9611
9612 (struct vCont_action_support): Use bool and initialize all fields.
9613 (struct readahead_cache): Initialize all fields.
9614 (remote_state): Use bool and initialize all fields.
9615 (remote_state::remote_state, remote_state::~remote_state): New.
9616 (new_remote_state): Delete.
9617 (_initialize_remote): Use new to allocate remote_state.
9618
9619 2018-05-22 Pedro Alves <palves@redhat.com>
9620 張俊芝 <zjz@zjz.name>
9621
9622 PR gdb/22973
9623 * c-exp.y: Include "c-support.h".
9624 (parse_number, c_parse_escape, lex_one_token): Use TOLOWER instead
9625 of tolower. Use c_ident_is_alpha to scan names.
9626 * c-lang.c: Include "c-support.h".
9627 (convert_ucn, convert_octal, convert_hex, convert_escape): Use
9628 ISXDIGIT instead of isxdigit and ISDIGIT instead of isdigit.
9629 * c-support.h: New file, with bits factored out from ...
9630 * cp-name-parser.y: ... this file.
9631 Include "c-support.h".
9632 (cp_ident_is_alpha, cp_ident_is_alnum): Deleted, moved to
9633 c-support.h and renamed.
9634 (symbol_end, yylex): Adjust.
9635
9636 2018-05-22 Pedro Franco de Carvalho <pedromfc@linux.vnet.ibm.com>
9637
9638 * arch/ppc-linux-common.c (ppc_linux_has_isa205): Change the
9639 parameter type to CORE_ADDR.
9640 * arch/ppc-linux-common.h (ppc_linux_has_isa205): Change the
9641 parameter type in declaration to CORE_ADDR.
9642 * ppc-linux-tdep.c (ppc_linux_core_read_description): Call
9643 target_auxv_search to get AT_HWCAP and use the result to get the
9644 target description.
9645 * ppc-linux-nat.c (ppc_linux_get_hwcap): Change the return type
9646 to CORE_ADDR. Remove the cast of the return value to unsigned
9647 long. Fix error predicate of target_auxv_search.
9648 (ppc_linux_nat_target::read_description): Change the type of the
9649 hwcap variable to CORE_ADDR.
9650
9651 2018-05-22 Pedro Franco de Carvalho <pedromfc@linux.vnet.ibm.com>
9652
9653 * rs6000-tdep.c (rs6000_gdbarch_init): Assign 1 to have_dfp only
9654 if the size of fpscr is larger than 32 bits.
9655
9656 2018-05-22 Pedro Franco de Carvalho <pedromfc@linux.vnet.ibm.com>
9657
9658 * ppc-linux-tdep.c (ppc_linux_vsxregset): New function.
9659 (ppc32_linux_vsxregmap): New global.
9660 (ppc32_linux_vsxregset): Initialize with ppc32_linux_vsxregmap,
9661 regcache_supply_regset, and regcache_collect_regset.
9662 * ppc-linux-tdep.h (ppc_linux_vsxregset): Declare.
9663 * ppc-linux-nat.c (supply_vsxregset, fill_vsxregset): Remove.
9664 (fetch_vsx_register, store_vsx_register): Remove.
9665 (fetch_vsx_registers): Add regno parameter. Get regset using
9666 ppc_linux_vsxregset. Use regset to supply registers.
9667 (store_vsx_registers): Add regno parameter. Get regset using
9668 ppc_linux_vsxregset. Use regset to collect registers.
9669 (fetch_register): Call fetch_vsx_registers instead of
9670 fetch_vsx_register.
9671 (store_register): Call store_vsx_registers instead of
9672 store_vsx_register.
9673 (fetch_ppc_registers): Call fetch_vsx_registers with -1 for the
9674 new regno parameter.
9675 (store_ppc_registers): Call store_vsx_registers with -1 for the
9676 new regno parameter.
9677 * rs6000-tdep.c (ppc_vsx_support_p, ppc_supply_vsxreget)
9678 (ppc_collect_vsxregset): Remove.
9679
9680 2018-05-22 Pedro Franco de Carvalho <pedromfc@linux.vnet.ibm.com>
9681
9682 * ppc-tdep.h (struct ppc_reg_offsets): Remove vector register
9683 offset fields.
9684 * ppc-fbsd-tdep.c (ppc32_fbsd_reg_offsets): Remove initializers
9685 for vector register offset fields.
9686 (ppc64_fbsd_reg_offsets): Likewise.
9687 * ppc-nbsd-tdep.c (_initialize_ppcnbsd_tdep): Remove assignment
9688 to vector register offset fields.
9689 * ppc-obsd-tdep.c (_initialize_ppcnbsd_tdep): Remove assignment
9690 to vector register offset fields.
9691 * ppc-obsd-nat.c (_initialize_ppcobsd_nat): Remove assignment to
9692 vector register offset fields.
9693 * rs6000-aix-tdep.c (rs6000_aix32_reg_offsets): Remove
9694 initializers for vector register offset fields.
9695 (rs6000_aix64_reg_offsets): Likewise.
9696 * rs6000-tdep.c (ppc_vrreg_offset): Remove.
9697 (ppc_supply_vrregset): Remove.
9698 (ppc_collect_vrregset): Remove.
9699 * ppc-linux-tdep.c (ppc_linux_collect_vrregset): New function.
9700 (ppc_linux_vrregset) : New function.
9701 (ppc32_le_linux_vrregmap, ppc32_be_linux_vrregmap)
9702 (ppc32_le_linux_vrregset, ppc32_be_linux_vrregset): New globals.
9703 (ppc32_linux_vrregset): Remove.
9704 (ppc_linux_iterate_over_regset_sections): Call ppc_linux_vrregset
9705 and use result instead of ppc32_linux_vrregset.
9706 (ppc32_linux_reg_offsets): Remove initializers for vector register
9707 offset fields.
9708 (ppc64_linux_reg_offsets): Likewise.
9709 * ppc-linux-tdep.h (ppc_linux_vrregset): New declaration.
9710 * ppc-linux-nat.c: Include regset.h.
9711 (gdb_vrregset_t): Adjust comment to account for little-endian
9712 mode.
9713 (supply_vrregset, fill_vrregset): Remove.
9714 (fetch_altivec_register, store_altivec_register): Remove.
9715 (fetch_altivec_registers): Add regno parameter. Get regset using
9716 ppc_linux_vrregset. Use regset to supply registers.
9717 (store_altivec_registers): Add regno parameter. Get regset using
9718 ppc_linux_vrregset. Use regset to collect registers.
9719 (fetch_register): Call fetch_altivec_registers instead of
9720 fetch_altivec_register.
9721 (store_register): Call store_altivec_registers instead of
9722 store_altivec_register.
9723 (fetch_ppc_registers): Call fetch_altivec_registers with -1 for
9724 the new regno parameter.
9725 (store_ppc_registers): Call store_altivec_registers with -1 for
9726 the new regno parameter.
9727
9728 2018-05-22 Pedro Franco de Carvalho <pedromfc@linux.vnet.ibm.com>
9729
9730 * arch/ppc-linux-common.h (PPC_LINUX_SIZEOF_VRREGSET)
9731 (PPC_LINUX_SIZEOF_VSXREGSET): Define.
9732 * ppc-linux-nat.c (SIZEOF_VSXREGS, SIZEOF_VRREGS): Remove.
9733 (gdb_vrregset_t): Change array type size to
9734 PPC_LINUX_SIZEOF_VRREGSET.
9735 (gdb_vsxregset_t): Change array type size to
9736 PPC_LINUX_SIZEOF_VSXREGSET.
9737 * ppc-linux-tdep.c (ppc_linux_iterate_over_regset_sections):
9738 Change integer literals to PPC_LINUX_SIZEOF_VRREGSET and
9739 PPC_LINUX_SIZEOF_VSXREGSET.
9740
9741 2018-05-22 Pedro Franco de Carvalho <pedromfc@linux.vnet.ibm.com>
9742
9743 * configure.nat <linux powerpc>: Add ppc-linux.o to NATDEPFILES.
9744 * ppc-linux-nat.c (ppc_linux_target_wordsize): Move to
9745 nat/ppc-linux.c.
9746 (ppc_linux_nat_target::auxv_parse): Get thread id tid. Call
9747 ppc_linux_target_wordsize with tid.
9748 (ppc_linux_nat_target::read_description): Call ppc_linux_target
9749 wordsize with tid.
9750 * nat/ppc-linux.c: Include nat/gdb_ptrace.h.
9751 (ppc64_64bit_inferior_p): Add static and inline specifiers.
9752 (ppc_linux_target_wordsize): Move here from ppc-linux-nat.c. Add
9753 tid parameter. Remove static specifier.
9754 * nat/ppc-linux.h (ppc64_64bit_inferior_p): Remove declaration.
9755 (ppc_linux_target_wordsize): New declaration.
9756
9757 2018-05-22 Pedro Franco de Carvalho <pedromfc@linux.vnet.ibm.com>
9758
9759 * arch/ppc-linux-common.c: New file.
9760 * arch/ppc-linux-common.h: New file.
9761 * arch/ppc-linux-tdesc.h: New file.
9762 * configure.tgt (powerpc*-*-linux*): Add arch/ppc-linux-common.o.
9763 * Makefile.in (ALL_TARGET_OBS): Add arch/ppc-linux-common.o.
9764 (HFILES_NO_SRCDIR): Add arch/ppc-linux-common.h and
9765 arch/ppc-linux-tdesc.h.
9766 * ppc-linux-nat.c: Include arch/ppc-linux-common.h and
9767 arch/ppc-linux-tdesc.h.
9768 (ppc_linux_nat_target::read_description): Remove target
9769 description matching code. Fill a ppc_linux_features struct and
9770 call ppc_linux_match_description with it. Move comment about ISA
9771 2.05 to ppc-linux-common.c.
9772 * ppc-linux-tdep.c: Include arch/ppc-linux-common.h and
9773 arch/ppc-linux-tdesc.h.
9774 (ppc_linux_core_read_description): Remove target description
9775 matching code. Fill a ppc_linux_features struct and call
9776 ppc_linux_match_description with it.
9777 * ppc-linux-tdep.h (tdesc_powerpc_32l, tdesc_powerpc_64l)
9778 (tdesc_powerpc_altivec32l, tdesc_powerpc_altivec64l)
9779 (tdesc_powerpc_cell32l, tdesc_powerpc_cell64l)
9780 (tdesc_powerpc_vsx32l, tdesc_powerpc_vsx64l)
9781 (tdesc_powerpc_isa205_32l, tdesc_powerpc_isa205_64l)
9782 (tdesc_powerpc_isa205_altivec32l, tdesc_powerpc_isa205_altivec64l)
9783 (tdesc_powerpc_isa205_vsx32l, tdesc_powerpc_isa205_vsx64l)
9784 (tdesc_powerpc_e500l): Remove.
9785
9786 2018-05-22 Joel Brobecker <brobecker@adacore.com>
9787
9788 * ada-lang.c (catch_assert_command): Pass empty string instead
9789 of NULL for excep_string argument.
9790
9791 2018-05-22 Maciej W. Rozycki <macro@mips.com>
9792
9793 * mips-linux-nat.c (mips64_linux_register_addr): Return -1 if
9794 the width of the requested register exceeds the width of the
9795 `ptrace' data type.
9796
9797 2018-05-21 Tom Tromey <tom@tromey.com>
9798
9799 * printcmd.c (output_command): Remove.
9800 (output_command_const): Rename to output_command.
9801 * valprint.h (output_command): Rename from output_command_const.
9802 * tracepoint.c (trace_dump_actions): Call output_command.
9803
9804 2018-05-21 Tom Tromey <tom@tromey.com>
9805
9806 * mi/mi-cmd-catch.c (mi_cmd_catch_assert)
9807 (mi_cmd_catch_exception, mi_cmd_catch_handlers): Update.
9808 * ada-lang.h (create_ada_exception_catchpoint): Update.
9809 * ada-lang.c (struct ada_catchpoint) <excep_string>: Now a
9810 std::string.
9811 (create_excep_cond_exprs, ~ada_catchpoint)
9812 (should_stop_exception, print_one_exception)
9813 (print_mention_exception, print_recreate_exception): Update.
9814 (ada_get_next_arg): Remove.
9815 (catch_ada_exception_command_split): Use std::string. Change type
9816 of "excep_string", "cond_string".
9817 (catch_ada_exception_command): Update.
9818 (create_ada_exception_catchpoint): Change type of excep_string.
9819 (ada_exception_sal): Remove excep_string parameter.
9820 (~ada_catchpoint): Remove.
9821
9822 2018-05-21 Tom Tromey <tom@tromey.com>
9823
9824 * ada-lang.c (ada_collect_symbol_completion_matches): Remove
9825 cleanup.
9826
9827 2018-05-21 Tom Tromey <tom@tromey.com>
9828
9829 * ada-lang.c (ada_exception_message_1, ada_exception_message):
9830 Return unique_xmalloc_ptr.
9831 (print_it_exception): Update.
9832
9833 2018-05-21 Tom Tromey <tom@tromey.com>
9834
9835 * tracepoint.c (trace_dump_actions): Use std::string.
9836
9837 2018-05-21 Tom Tromey <tom@tromey.com>
9838
9839 * symfile.c (reread_symbols): Use std::string for original_name.
9840
9841 2018-05-21 Tom Tromey <tom@tromey.com>
9842
9843 * dwarf2read.c (dwarf2_read_debug_names): Use std::unique_ptr.
9844 (mapped_index_base): Use DISABLE_COPY_AND_ASSIGN. Default
9845 constructor.
9846
9847 2018-05-20 Simon Marchi <simon.marchi@polymtl.ca>
9848
9849 * common/traits.h (HAVE_IS_TRIVIALLY_COPYABLE): Rename the wrong
9850 instance to...
9851 (HAVE_IS_TRIVIALLY_CONSTRUCTIBLE): ... this.
9852 * objfiles.c (get_objfile_bfd_data): Allocate
9853 objfile_per_bfd_storage with obstack_new when allocating on
9854 obstack.
9855
9856 2018-05-20 Simon Marchi <simon.marchi@ericsson.com>
9857
9858 * ada-lang.c (cache_symbol): Use XOBNEW and/or XOBNEWVEC and/or
9859 OBSTACK_ZALLOC.
9860 * dwarf2-frame.c (dwarf2_build_frame_info): Likewise.
9861 * hppa-tdep.c (hppa_init_objfile_priv_data): Likewise.
9862 * mdebugread.c (mdebug_build_psymtabs): Likewise.
9863 (add_pending): Likewise.
9864 (parse_symbol): Likewise.
9865 (parse_partial_symbols): Likewise.
9866 (psymtab_to_symtab_1): Likewise.
9867 (new_psymtab): Likewise.
9868 (elfmdebug_build_psymtabs): Likewise.
9869 * minsyms.c (terminate_minimal_symbol_table): Likewise.
9870 * objfiles.c (get_objfile_bfd_data): Likewise.
9871 (objfile_register_static_link): Likewise.
9872 * psymtab.c (allocate_psymtab): Likewise.
9873 * stabsread.c (read_member_functions): Likewise.
9874 * xcoffread.c (xcoff_end_psymtab): Likewise.
9875
9876 2018-05-20 Simon Marchi <simon.marchi@ericsson.com>
9877
9878 * common/traits.h (HAVE_IS_TRIVIALLY_COPYABLE): Define if
9879 compiler supports std::is_trivially_constructible.
9880 * common/poison.h: Include obstack.h.
9881 (IsMallocable): Define to is_trivially_constructible if the
9882 compiler supports it, define to true_type otherwise.
9883 (xobnew): New.
9884 (XOBNEW): Redefine.
9885 (xobnewvec): New.
9886 (XOBNEWVEC): Redefine.
9887 * gdb_obstack.h (obstack_zalloc): New.
9888 (OBSTACK_ZALLOC): Redefine.
9889 (obstack_calloc): New.
9890 (OBSTACK_CALLOC): Redefine.
9891 (obstack_new): New.
9892 * gdbarch.sh: Include gdb_obstack in gdbarch.h.
9893 (gdbarch_obstack): New declaration in gdbarch.h, definition in
9894 gdbarch.c.
9895 (GDBARCH_OBSTACK_CALLOC, GDBARCH_OBSTACK_ZALLOC): Use
9896 obstack_calloc/obstack_zalloc.
9897 (gdbarch_obstack_zalloc): Remove.
9898 * target-descriptions.c (tdesc_data_init): Use obstack_new.
9899
9900 2018-05-19 Philippe Waroquiers <philippe.waroquiers@skynet.be>
9901
9902 * stack.c (backtrace_command_1): Remove useless variable int i.
9903
9904 2018-05-19 Philippe Waroquiers <philippe.waroquiers@skynet.be>
9905
9906 * stack.c (print_frame_info): Fix comment.
9907
9908 2018-05-18 Tom Tromey <tom@tromey.com>
9909
9910 * dwarf2read.c (struct dwz_file): Add constructor, initializers.
9911 <dwz_bfd>: Now a gdb_bfd_ref_ptr.
9912 (~dwarf2_per_objfile): Update
9913 (dwarf2_get_dwz_file): Use new.
9914 * dwarf2read.h (struct dwarf2_per_objfile) <dwz_file>: Now a
9915 unique_ptr.
9916
9917 2018-05-18 Tom Tromey <tom@tromey.com>
9918
9919 * dwarf2read.h (struct dwarf2_per_objfile) <dwp_file>: Now a
9920 unique_ptr.
9921 * dwarf2read.c (struct dwp_file): Add constructor and
9922 initializers.
9923 (open_and_init_dwp_file): Return a unique_ptr.
9924 (dwarf2_per_objfile, create_dwp_hash_table)
9925 (create_dwo_unit_in_dwp_v1, create_dwo_unit_in_dwp_v2)
9926 (lookup_dwo_unit_in_dwp): Update.
9927 (open_and_init_dwp_file, get_dwp_file): Update.
9928
9929 2018-05-18 Tom Tromey <tom@tromey.com>
9930
9931 * dwarf2read.c (dwarf2_per_objfile): Update.
9932 (struct mapped_index): Add initializers.
9933 (dwarf2_read_index): Use new.
9934 (dw2_symtab_iter_init): Update.
9935 * dwarf2read.h (struct dwarf2_per_objfile) <index_table>: Now a
9936 unique_ptr.
9937
9938 2018-05-18 Simon Marchi <simon.marchi@ericsson.com>
9939
9940 * dwarf2read.c (mapped_index) <total_size>: Remove.
9941
9942 2018-05-18 Simon Marchi <simon.marchi@ericsson.com>
9943
9944 * unittests/format_pieces-selftests.c (test_format_specifier):
9945 Add ARI comments.
9946
9947 2018-05-18 Tom Tromey <tom@tromey.com>
9948
9949 * c-typeprint.c (maybe_print_hole): New function.
9950 (c_print_type_struct_field_offset): Update.
9951 (c_type_print_base_struct_union): Call maybe_print_hole.
9952
9953 2018-05-17 Keith Seitz <keiths@redhat.com>
9954
9955 * breakpoint.c (build_bpstat_chain): New function, moved from
9956 bpstat_stop_status.
9957 (bpstat_stop_status): Add optional parameter, `stop_chain'.
9958 If no stop chain is passed, call build_bpstat_chain to build it.
9959 * breakpoint.h (build_bpstat_chain): Declare.
9960 (bpstat_stop_status): Move documentation here from breakpoint.c.
9961 * infrun.c (handle_signal_stop): Before eliding inlined frames,
9962 build the stop chain and pass it to skip_inline_frames.
9963 Pass this stop chain to bpstat_stop_status.
9964 * inline-frame.c: Include breakpoint.h.
9965 (stopped_by_user_bp_inline_frame): New function.
9966 (skip_inline_frames): Add parameter `stop_chain'.
9967 Move documention to inline-frame.h.
9968 If non-NULL, use stopped_by_user_bp_inline_frame to determine
9969 whether the frame should be elided.
9970 * inline-frame.h (skip_inline_frames): Add parameter `stop_chain'.
9971 Add moved documentation and update for new parameter.
9972
9973 2018-05-17 Simon Marchi <simon.marchi@ericsson.com>
9974
9975 PR cli/14975
9976 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
9977 unittests/format_pieces-selftests.c.
9978 * common/format.h (format_piece) <operator==>: New.
9979 (format_pieces) <operator[]>: Remove.
9980 * common/format.c (format_pieces::format_pieces): Handle \e.
9981 * unittests/format_pieces-selftests.c: New.
9982
9983 2018-05-17 Tom Tromey <tom@tromey.com>
9984
9985 PR symtab/23010:
9986 * dwarf2read.c (load_cu, dw2_do_instantiate_symtab)
9987 (dw2_instantiate_symtab): Add skip_partial parameter.
9988 (dw2_find_last_source_symtab, dw2_map_expand_apply)
9989 (dw2_lookup_symbol, dw2_expand_symtabs_for_function)
9990 (dw2_expand_all_symtabs, dw2_expand_symtabs_with_fullname)
9991 (dw2_expand_symtabs_matching_one)
9992 (dw2_find_pc_sect_compunit_symtab)
9993 (dw2_debug_names_lookup_symbol)
9994 (dw2_debug_names_expand_symtabs_for_function): Update.
9995 (init_cutu_and_read_dies): Add skip_partial parameter.
9996 (process_psymtab_comp_unit, build_type_psymtabs_1)
9997 (process_skeletonless_type_unit, load_partial_comp_unit)
9998 (psymtab_to_symtab_1): Update.
9999 (load_full_comp_unit): Add skip_partial parameter.
10000 (process_imported_unit_die, dwarf2_read_addr_index)
10001 (follow_die_offset, dwarf2_fetch_die_loc_sect_off)
10002 (dwarf2_fetch_constant_bytes, dwarf2_fetch_die_type_sect_off)
10003 (read_signatured_type): Update.
10004
10005 2018-05-17 Simon Marchi <simon.marchi@ericsson.com>
10006
10007 * value.c (release_value): Remove unused variable.
10008 (record_latest_value): Likewise.
10009 (access_value_history): Likewise.
10010 (preserve_values): Likewise.
10011
10012 2018-05-17 Tom Tromey <tom@tromey.com>
10013
10014 * extension.h (struct ext_lang_type_printers) <py_type_printers>:
10015 Initialize.
10016
10017 2018-05-16 Maciej W. Rozycki <macro@mips.com>
10018
10019 PR gdb/22286
10020 * linux-nat-trad.c (linux_nat_trad_target::fetch_register):
10021 Also handle registers whose width is not a multiple of
10022 PTRACE_TYPE_RET.
10023 (linux_nat_trad_target::store_register): Likewise.
10024
10025 2018-05-16 Tom Tromey <tom@tromey.com>
10026
10027 * gdbcore.h (core_bfd): Redefine.
10028 * corelow.c (core_target::close): Update.
10029 (core_target_open): Update.
10030 * progspace.h (struct program_space) <cbfd>: Now a
10031 gdb_bfd_ref_ptr.
10032
10033 2018-05-16 Tom Tromey <tom@tromey.com>
10034
10035 PR cli/19551:
10036 * symfile-add-flags.h (enum symfile_add_flags)
10037 <SYMFILE_NOT_FILENAME>: New constant.
10038 * symfile.c (read_symbols): Use SYMFILE_NOT_FILENAME. Get
10039 objfile name from BFD.
10040 (symbol_file_add_with_addrs): Check SYMFILE_NOT_FILENAME.
10041 * minidebug.c (find_separate_debug_file_in_section): Put
10042 ".gnu_debugdata" into BFD's file name.
10043
10044 2018-05-16 Simon Marchi <simon.marchi@ericsson.com>
10045
10046 * regcache.c (regcache_read_ftype, regcache_write_ftype):
10047 Remove.
10048
10049 2018-05-15 Tamar Christina <tamar.christina@arm.com>
10050
10051 PR binutils/21446
10052 * aarch64-tdep.c (aarch64_analyze_prologue,
10053 aarch64_software_single_step, aarch64_displaced_step_copy_insn):
10054 Indicate not interested in errors.
10055
10056 2018-05-15 Maciej W. Rozycki <macro@mips.com>
10057
10058 * mips-linux-nat.c (mips_linux_nat_target::fetch_registers):
10059 Supply the MIPS_ZERO_REGNUM register.
10060
10061 2018-05-15 Maciej W. Rozycki <macro@mips.com>
10062
10063 * mips-tdep.c (mask_address_var): Make variable static.
10064
10065 2018-05-14 Tom Tromey <tom@tromey.com>
10066
10067 * dwarf2read.c (rust_union_quirks): Clear rust_unions.
10068
10069 2018-05-11 Andrew Burgess <andrew.burgess@embecosm.com>
10070
10071 * i387-tdep.c (i387_collect_xsave): Use FXSAVE_MXCSR_ADDR not
10072 FXSAVE_ADDR for the mxcsr register.
10073
10074 2018-05-11 Max Filippov <jcmvbkbc@gmail.com>
10075
10076 * configure.tgt (xtensa*-*-linux*): Drop gdb_target definition.
10077
10078 2018-05-11 Pedro Alves <palves@redhat.com>
10079
10080 * corelow.c (core_target) <core_target>: No longer inline.
10081 Initialize m_core_gdbarch, m_core_vec and build the section table
10082 here.
10083 <~core_target>: New.
10084 <core_gdbarch, get_core_register_section>: New methods.
10085 <m_core_section_table, m_core_vec, m_core_gdbarch>: New fields,
10086 factored out from ...
10087 <core_data, core_vec, core_gdbarch>: ... these deleted globals.
10088 (core_ops): Delete.
10089 (sniff_core_bfd): Add gdbarch parameter.
10090 (core_close): Delete, merged into ...
10091 (core_target::close): ... here. Delete self.
10092 (core_close_cleanup): Delete.
10093 (core_target_open): Allocate a core_target on the heap. Use a
10094 unique_ptr instead of a cleanup. Bits moved into the core_target
10095 ctor. Adjust to use core_target methods instead of globals.
10096 (get_core_register_section): Rename to ...
10097 (core_target::get_core_register_section): ... this and adjust.
10098 (struct get_core_registers_cb_data): New.
10099 (get_core_registers_cb): Use it. Use bool.
10100 (core_target::fetch_registers, core_target::files_info)
10101 (core_target::xfer_partial, core_target::read_description)
10102 (core_target::pid_to, core_target::thread_name): Adjust to
10103 reference class fields instead of globals.
10104 * target.h (struct target_ops_deleter, target_ops_up): New.
10105
10106 2018-05-11 Pedro Alves <palves@redhat.com>
10107
10108 * corefile.c (core_file_command): Move to corelow.c.
10109 * corelow.c (the_core_target): Delete.
10110 (core_file_command): Moved from corefile.c. Check exec_bfd
10111 instead of the_core_target. Use target_detach instead of calling
10112 into the_core_target directly.
10113 (maybe_say_no_core_file_now): New.
10114 (core_target::detach): Use it.
10115 (_initialize_corelow): Remove references to the_core_target.
10116 * gdbcore.h (the_core_target): Delete.
10117
10118 2018-05-11 Tom Tromey <tromey@redhat.com>
10119 Pedro Alves <palves@redhat.com>
10120
10121 * corefile.c (core_bfd): Remove.
10122 * gdbcore.h (core_bfd): Now a macro.
10123 * progspace.h (struct program_space) <cbfd>: New field.
10124
10125 2018-05-11 Tom Tromey <tom@tromey.com>
10126
10127 * mdebugread.c (parse_partial_symbols, psymtab_to_symtab_1): Use
10128 gdb::def_vector.
10129
10130 2018-05-10 Tom Tromey <tom@tromey.com>
10131
10132 * configure: Rebuild.
10133 * warning.m4 (AM_GDB_WARNINGS): Use -Wimplicit-fallthrough=3.
10134
10135 2018-05-10 Joel Brobecker <brobecker@adacore.com>
10136
10137 PR server/23158:
10138 * regformats/regdat.sh: Adjust script, following the addition
10139 of the new expedite_regs parameter to init_target_desc.
10140
10141 2018-05-10 Omair Javaid <omair.javaid@linaro.org>
10142
10143 PR gdb/23127
10144 * aarch64-linux-tdep.c (aarch64_linux_init_abi): Add call to
10145 set_gdbarch_significant_addr_bit.
10146 * aarch64-tdep.c (aarch64_gdbarch_init): Remove call to
10147 set_gdbarch_significant_addr_bit.
10148 * utils.c (address_significant): Update to sign extend addr.
10149
10150 2018-05-09 Max Filippov <jcmvbkbc@gmail.com>
10151
10152 * xtensa-linux-tdep.c (xtensa-tdep.h): New include.
10153 (xtensa_linux_init_abi): Limit tdep->num_regs by
10154 tdep->num_nopriv_regs.
10155 * xtensa-tdep.c (xtensa_derive_tdep): Calculate
10156 tdep->num_nopriv_regs and only copy it to tdep->num_regs if it's
10157 not initialized.
10158
10159 2018-05-08 Simon Marchi <simon.marchi@ericsson.com>
10160
10161 * unittests/string_view-selftests.c: Define GNULIB_NAMESPACE.
10162
10163 2018-05-08 Andrew Burgess <andrew.burgess@embecosm.com>
10164
10165 * common/x86-xstate.h (I387_FCTRL_INIT_VAL): New constant.
10166 (I387_MXCSR_INIT_VAL): New constant.
10167 * amd64-tdep.c (amd64_supply_xsave): Only read state from xsave
10168 buffer if it was supplied by the inferior.
10169 * i387-tdep.c (i387_supply_fsave): Use I387_MXCSR_INIT_VAL.
10170 (i387_xsave_get_clear_bv): New function.
10171 (i387_supply_xsave): Only read x87 control registers from the
10172 xsave buffer if the feature is enabled, and the state will have
10173 been written, otherwise, provide a suitable default.
10174 (i387_collect_xsave): Pre-clear all registers in xsave buffer,
10175 including x87 control registers. Update control registers if they
10176 have changed from the default value, and mark features as enabled
10177 as required.
10178 * i387-tdep.h (i387_xsave_get_clear_bv): Declare.
10179
10180 2018-05-08 Ulrich Weigand <uweigand@de.ibm.com>
10181
10182 * spu-tdep.c (info_spu_event_command): Fix output formatting.
10183
10184 2018-05-07 Tom Tromey <tom@tromey.com>
10185
10186 * configure: Rebuild.
10187 * warning.m4 (AM_GDB_WARNINGS): Add -Wduplicated-cond.
10188
10189 2018-05-07 Tom Tromey <tom@tromey.com>
10190
10191 PR tdep/20362:
10192 * arm-tdep.c (arm_record_vfp_data_proc_insn): Properly mask off D
10193 bit. Use correct value for VDIV.
10194
10195 2018-05-04 Tom Tromey <tom@tromey.com>
10196
10197 * configure: Rebuild.
10198 * warning.m4 (AM_GDB_WARNINGS): Add -Wimplicit-fallthrough.
10199
10200 2018-05-04 Tom Tromey <tom@tromey.com>
10201
10202 * linux-record.c (record_linux_system_call) <case
10203 RECORD_SYS_RECVFROM>: Add "break".
10204
10205 2018-05-04 Tom Tromey <tom@tromey.com>
10206
10207 * mi/mi-main.c (mi_cmd_trace_frame_collected) <REGISTERS_FORMAT>:
10208 Add missing "break".
10209 * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals) <NO_FRAME_FILTERS>:
10210 Add missing "break".
10211
10212 2018-05-04 Tom Tromey <tom@tromey.com>
10213
10214 * rs6000-tdep.c (ppc_process_record_op4)
10215 (ppc_process_record_op63): Add fall-through comment.
10216
10217 2018-05-04 Tom Tromey <tom@tromey.com>
10218
10219 * i386-tdep.c (i386_process_record): Add fall-through comment.
10220
10221 2018-05-04 Tom Tromey <tom@tromey.com>
10222
10223 * stabsread.c (define_symbol) <case 'p'>: Add fall-through
10224 comment.
10225
10226 2018-05-04 Tom Tromey <tom@tromey.com>
10227
10228 * riscv-tdep.c (riscv_isa_xlen): Add fall-through comment.
10229 * utils.c (can_dump_core) <LIMIT_CUR>: Add fall-through comment.
10230 * eval.c (fetch_subexp_value) <MEMORY_ERROR>: Add fall-through
10231 comment.
10232 * d-valprint.c (d_val_print) <TYPE_CODE_STRUCT>: Add fall-through
10233 comment.
10234 * coffread.c (coff_symtab_read) <C_LABEL>: Add fall-through
10235 comment.
10236
10237 2018-05-04 Tom Tromey <tom@tromey.com>
10238
10239 * dwarf2loc.c (unimplemented): Add ATTRIBUTE_NORETURN.
10240
10241 2018-05-04 Tom Tromey <tom@tromey.com>
10242
10243 * s390-tdep.c (s390_process_record): Fix fall-through comments.
10244 * xcoffread.c (scan_xcoff_symtab): Move comment later.
10245 * symfile.c (section_is_mapped): Fix fall-through comment.
10246 * stabsread.c (define_symbol, read_member_functions): Fix
10247 fall-through comment.
10248 * s390-linux-tdep.c (s390_process_record): Fix fall-through
10249 comment.
10250 * remote.c (remote_wait_as): Fix fall-through comment.
10251 * p-exp.y (yylex): Fix fall-through comment.
10252 * nat/x86-dregs.c (x86_length_and_rw_bits): Fix fall-through
10253 comment.
10254 * msp430-tdep.c (msp430_gdbarch_init): Fix fall-through comment.
10255 * mdebugread.c (parse_partial_symbols): Fix fall-through comment.
10256 * jv-exp.y (yylex): Fix fall-through comment.
10257 * go-exp.y (lex_one_token): Fix fall-through comment.
10258 * gdbtypes.c (get_discrete_bounds, rank_one_type): Fix
10259 fall-through comment.
10260 * f-exp.y (yylex): Fix fall-through comment.
10261 * dwarf2read.c (process_die): Fix fall-through comments.
10262 * dbxread.c (process_one_symbol): Fix fall-through comment.
10263 * d-exp.y (lex_one_token): Fix fall-through comment.
10264 * cp-name-parser.y (yylex): Fix fall-through comment.
10265 * coffread.c (coff_symtab_read): Fix fall-through comment.
10266 * c-exp.y (lex_one_token): Fix fall-through comment.
10267 * arm-tdep.c (arm_decode_miscellaneous): Fix fall-through
10268 comment.
10269 * arch/arm.c (arm_instruction_changes_pc): Fix fall-through
10270 comment.
10271
10272 2018-05-04 Tom Tromey <tom@tromey.com>
10273
10274 PR python/22730:
10275 * NEWS: Mention gdb.execute change.
10276 * gdbcmd.h (execute_control_command): Don't declare.
10277 * python/python.c (execute_gdb_command): Use read_command_lines_1,
10278 execute_control_commands, execute_control_commands_to_string.
10279 * cli/cli-script.h (execute_control_commands)
10280 (execute_control_commands_to_string): Declare.
10281 (execute_control_command): Add from_tty parameter.
10282 * cli/cli-script.c (execute_control_commands)
10283 (execute_control_commands_to_string): New functions.
10284 (execute_user_command): Use execute_control_commands.
10285 (execute_control_command_1): Add "from_tty" parameter. Update.
10286 (execute_control_command): Likewise.
10287
10288 2018-05-04 Tom Tromey <tom@tromey.com>
10289
10290 PR python/22731:
10291 * NEWS: Mention that breakpoint commands are writable.
10292 * python/py-breakpoint.c (bppy_set_commands): New function.
10293 (breakpoint_object_getset) <"commands">: Use it.
10294
10295 2018-05-04 Tom Tromey <tom@tromey.com>
10296
10297 * tracepoint.c (actions_command): Update.
10298 * mi/mi-cmd-break.c (mi_command_line_array)
10299 (mi_command_line_array_cnt, mi_command_line_array_ptr)
10300 (mi_read_next_line): Remove.
10301 (mi_cmd_break_commands): Update.
10302 * cli/cli-script.h (read_command_lines, read_command_lines_1): Use
10303 function_view.
10304 * cli/cli-script.c (get_command_line): Update.
10305 (process_next_line): Use function_view. Constify.
10306 (recurse_read_control_structure, read_command_lines)
10307 (read_command_lines_1): Change argument types to function_view.
10308 (do_define_command, document_command): Update.
10309 * breakpoint.h (check_tracepoint_command): Don't declare.
10310 * breakpoint.c (check_tracepoint_command): Remove.
10311 (commands_command_1, create_tracepoint_from_upload): Update.
10312
10313 2018-05-04 Tom Tromey <tom@tromey.com>
10314
10315 PR gdb/11750:
10316 * cli/cli-script.h (enum command_control_type) <define_control>:
10317 New constant.
10318 * cli/cli-script.c (multi_line_command_p): Handle define_control.
10319 (build_command_line, execute_control_command_1)
10320 (process_next_line): Likewise.
10321 (do_define_command): New function, extracted from define_command.
10322 (define_command): Use it.
10323
10324 2018-05-04 Tom Tromey <tom@tromey.com>
10325
10326 * tracepoint.c (actions_command): Update.
10327 * cli/cli-script.h (read_command_lines): Update.
10328 * cli/cli-script.c (read_command_lines): Constify prompt_arg.
10329 (MAX_TMPBUF): Remove define.
10330 (define_command): Use string_printf.
10331 (document_command): Likewise.
10332 * breakpoint.c (commands_command_1): Update.
10333
10334 2018-05-04 Tom Tromey <tom@tromey.com>
10335
10336 * top.c (execute_command): Update.
10337 * cli/cli-script.h (print_command_lines): Now varargs.
10338 * cli/cli-script.c (print_command_lines): Now varargs.
10339 (execute_control_command_1) <case while_control, case if_control>:
10340 Update.
10341
10342 2018-05-04 Tom Tromey <tom@tromey.com>
10343
10344 * tracepoint.c (all_tracepoint_actions): Rename from
10345 all_tracepoint_actions_and_cleanup. Change return type.
10346 (actions_command, encode_actions_1, encode_actions)
10347 (trace_dump_actions, tdump_command): Update.
10348 * remote.c (remote_download_command_source): Update.
10349 * python/python.c (gdbpy_eval_from_control_command)
10350 (python_command, python_interactive_command): Update.
10351 * mi/mi-cmd-break.c (mi_cmd_break_commands): Update.
10352 * guile/guile.c (guile_command)
10353 (gdbscm_eval_from_control_command, guile_command): Update.
10354 * compile/compile.c (compile_code_command)
10355 (compile_print_command, compile_to_object): Update.
10356 * cli/cli-script.h (struct command_lines_deleter): New.
10357 (counted_command_line): New typedef.
10358 (struct command_line): Add constructor, destructor.
10359 <body_list>: Remove.
10360 <body_list_0, body_list_1>: New members.
10361 (command_line_up): Remove typedef.
10362 (read_command_lines, read_command_lines_1, get_command_line):
10363 Update.
10364 (copy_command_lines): Don't declare.
10365 * cli/cli-script.c (build_command_line): Use "new".
10366 (get_command_line): Return counted_command_line.
10367 (print_command_lines, execute_user_command)
10368 (execute_control_command_1, while_command, if_command): Update.
10369 (realloc_body_list): Remove.
10370 (process_next_line, recurse_read_control_structure): Update.
10371 (read_command_lines, read_command_lines_1): Return counted_command_line.
10372 (free_command_lines): Use "delete".
10373 (copy_command_lines): Remove.
10374 (define_command, document_command, show_user_1): Update.
10375 * cli/cli-decode.h (struct cmd_list_element) <user_commands>: Now
10376 a counted_command_line.
10377 * breakpoint.h (counted_command_line): Remove typedef.
10378 (breakpoint_set_commands): Update.
10379 * breakpoint.c (check_no_tracepoint_commands)
10380 (validate_commands_for_breakpoint): Update.
10381 (breakpoint_set_commands): Change commands to be a
10382 counted_command_line.
10383 (commands_command_1, update_dprintf_command_list)
10384 (create_tracepoint_from_upload): Update.
10385
10386 2018-05-04 Tom Tromey <tom@tromey.com>
10387
10388 * cli/cli-decode.h (cmd_list_element): New constructor.
10389 (~cmd_list_element): New destructor.
10390 (struct cmd_list_element): Add initializers.
10391 * cli/cli-decode.c (do_add_cmd): Use "new".
10392 (delete_cmd): Use "delete".
10393
10394 2018-05-04 Jan Kratochvil <jan.kratochvil@redhat.com>
10395 Pedro Alves <palves@redhat.com>
10396
10397 PR breakpoints/19806 and support for PR external/20207.
10398 * NEWS: Mention Aarch64 watchpoint improvements.
10399 * aarch64-linux-nat.c (aarch64_linux_stopped_data_address): Fix missed
10400 watchpoints and PR external/20207 watchpoints.
10401 * nat/aarch64-linux-hw-point.c
10402 (kernel_supports_any_contiguous_range): New.
10403 (aarch64_watchpoint_offset): New.
10404 (aarch64_watchpoint_length): Support PR external/20207 watchpoints.
10405 (aarch64_point_encode_ctrl_reg): New parameter offset, new asserts.
10406 (aarch64_point_is_aligned): Support PR external/20207 watchpoints.
10407 (aarch64_align_watchpoint): New parameters aligned_offset_p and
10408 next_addr_orig_p. Support PR external/20207 watchpoints.
10409 (aarch64_downgrade_regs): New.
10410 (aarch64_dr_state_insert_one_point): New parameters offset and
10411 addr_orig.
10412 (aarch64_dr_state_remove_one_point): Likewise.
10413 (aarch64_handle_breakpoint): Update caller.
10414 (aarch64_handle_aligned_watchpoint): Likewise.
10415 (aarch64_handle_unaligned_watchpoint): Support addr_orig and
10416 aligned_offset.
10417 (aarch64_linux_set_debug_regs): Remove const from state. Call
10418 aarch64_downgrade_regs.
10419 (aarch64_show_debug_reg_state): Print also dr_addr_orig_wp.
10420 * nat/aarch64-linux-hw-point.h (DR_CONTROL_LENGTH): Rename to ...
10421 (DR_CONTROL_MASK): ... this.
10422 (struct aarch64_debug_reg_state): New field dr_addr_orig_wp.
10423 (unsigned int aarch64_watchpoint_offset): New prototype.
10424 (aarch64_linux_set_debug_regs): Remove const from state.
10425 * utils.c (align_up, align_down): Move to ...
10426 * common/common-utils.c (align_up, align_down): ... here.
10427 * utils.h (align_up, align_down): Move to ...
10428 * common/common-utils.h (align_up, align_down): ... here.
10429
10430 2018-05-04 Joel Brobecker <brobecker@adacore.com>
10431
10432 * sparc-tdep.c (sparc_structure_return_p): Re-implement to
10433 match the ABI as summarized in GCC's gcc/config/sparc/sparc.c.
10434 (sparc_arg_by_memory_p): Renamed from sparc_arg_on_registers_p.
10435 Re-implement to match the ABI as summarized in GCC's
10436 gcc/config/sparc/sparc.c. All callers updated.
10437 (sparc32_store_arguments): Remove assertion.
10438
10439 2018-05-04 Tom Tromey <tom@tromey.com>
10440
10441 * printcmd.c: Don't include tui.h.
10442 (decode_format): Use skip_spaces.
10443
10444 2018-05-04 Tom Tromey <tom@tromey.com>
10445
10446 PR gdb/22619:
10447 * printcmd.c (last_count): New global.
10448 (x_command): Use saved count when repeating.
10449
10450 2018-05-04 Tom Tromey <tom@tromey.com>
10451
10452 * nto-procfs.c (do_closedir_cleanup): Remove.
10453 (procfs_pidlist): Use gdb_dir_up.
10454 * procfs.c (do_closedir_cleanup): Remove.
10455 (proc_update_threads): Use gdb_dir_up.
10456 * common/filestuff.h (struct gdb_dir_deleter): New.
10457 (gdb_dir_up): New typedef.
10458
10459 2018-05-04 Tom Tromey <tom@tromey.com>
10460
10461 * ada-lang.c (print_mention_exception): Use std::string.
10462
10463 2018-05-04 Tom Tromey <tom@tromey.com>
10464
10465 * ada-lang.c (create_excep_cond_exprs): Update.
10466 (ada_exception_catchpoint_cond_string): Use std::string.
10467
10468 2018-05-04 Tom Tromey <tom@tromey.com>
10469
10470 * ada-lang.c (xget_renaming_scope): Return std::string.
10471 (old_renaming_is_invisible): Update.
10472
10473 2018-05-04 Tom Tromey <tom@tromey.com>
10474
10475 * bfd-target.c (target_bfd::m_bfd): Now a gdb_bfd_ref_ptr.
10476 (target_bfd::target_bfd, target_bfd::~target_bfd): Update.
10477
10478 2018-05-04 Ulrich Weigand <uweigand@de.ibm.com>
10479
10480 * spu-linux-nat.c (spu_linux_nat_target::wait): Fix syntax error.
10481
10482 2018-05-04 Tom Tromey <tom@tromey.com>
10483
10484 * remote.c (remote_query_supported_append): Change type.
10485 (remote_check_symbols): Update.
10486
10487 2018-05-04 Paul Pluzhnikov <ppluzhnikov@google.com>
10488
10489 PR gdb/11420
10490 * configure.ac: Prepend libpython.
10491 * python/python-config.py: Likewise.
10492 * configure: Regenerate.
10493
10494 2018-05-03 Simon Marchi <simon.marchi@ericsson.com>
10495
10496 * Makefile.in (%.c: %.l): Use -t instead of --stdout.
10497
10498 2018-05-03 Pedro Alves <palves@redhat.com>
10499
10500 * s390-linux-nat.c
10501 (s390_linux_nat_target::have_continuable_watchpoint): Mark with
10502 override. Write 'true' instead of '1'.
10503 (s390_linux_nat_target::watchpoint_addr_within_range): Remove
10504 declaration.
10505
10506 2018-05-02 Pedro Alves <palves@redhat.com>
10507
10508 * aarch64-fbsd-nat.c (_initialize_aarch64_fbsd_nat): Use
10509 add_inf_child_target.
10510 * aarch64-linux-nat.c (_initialize_aarch64_linux_nat): Use
10511 add_inf_child_target.
10512 * aix-thread.c (aix_thread_target_info): New.
10513 (aix_thread_target) <shortname, longname, doc>: Delete.
10514 <info>: New.
10515 * alpha-bsd-nat.c (_initialize_alphabsd_nat): Use
10516 add_inf_child_target.
10517 * alpha-linux-nat.c (_initialize_alpha_linux_nat): Use
10518 add_inf_child_target.
10519 * amd64-fbsd-nat.c (_initialize_amd64fbsd_nat): Use
10520 add_inf_child_target.
10521 * amd64-linux-nat.c (_initialize_amd64_linux_nat): Use
10522 add_inf_child_target.
10523 * amd64-nbsd-nat.c (_initialize_amd64nbsd_nat): Use
10524 add_inf_child_target.
10525 * amd64-obsd-nat.c (_initialize_amd64obsd_nat): Use
10526 add_inf_child_target.
10527 * arm-fbsd-nat.c (_initialize_arm_fbsd_nat): Use
10528 add_inf_child_target.
10529 * arm-linux-nat.c (_initialize_arm_linux_nat): Use
10530 add_inf_child_target.
10531 * arm-nbsd-nat.c (_initialize_arm_netbsd_nat): Use
10532 add_inf_child_target.
10533 * bfd-target.c (target_bfd_target_info): New.
10534 (target_bfd) <shortname, longname, doc>: Delete.
10535 <info>: New.
10536 * bsd-kvm.c (bsd_kvm_target_info): New.
10537 (bsd_kvm_target) <shortname, longname, doc>: Delete.
10538 <info>: New.
10539 (bsd_kvm_target::open): Rename to ...
10540 (bsd_kvm_target_open): ... this. Adjust.
10541 * bsd-uthread.c (bsd_uthread_target_info): New.
10542 (bsd_uthread_target) <shortname, longname, doc>: Delete.
10543 <info>: New.
10544 * corefile.c (core_file_command): Adjust.
10545 * corelow.c (core_target_info): New.
10546 (core_target) <shortname, longname, doc>: Delete.
10547 <info>: New.
10548 (core_target::open): Rename to ...
10549 (core_target_open): ... this. Adjust.
10550 * ctf.c (ctf_target_info): New.
10551 (ctf_target) <shortname, longname, doc>: Delete.
10552 <info>: New.
10553 (ctf_target::open): Rename to ...
10554 (ctf_target_open): ... this.
10555 (_initialize_ctf): Adjust.
10556 * exec.c (exec_target_info): New.
10557 (exec_target) <shortname, longname, doc>: Delete.
10558 <info>: New.
10559 (exec_target::open): Rename to ...
10560 (exec_target_open): ... this.
10561 * gdbcore.h (core_target_open): Declare.
10562 * go32-nat.c (_initialize_go32_nat): Use add_inf_child_target.
10563 * hppa-linux-nat.c (_initialize_hppa_linux_nat): Use
10564 add_inf_child_target.
10565 * hppa-nbsd-nat.c (_initialize_hppanbsd_nat): Use
10566 add_inf_child_target.
10567 * hppa-obsd-nat.c (_initialize_hppaobsd_nat): Use
10568 add_inf_child_target.
10569 * i386-darwin-nat.c (_initialize_i386_darwin_nat): Use
10570 add_inf_child_target.
10571 * i386-fbsd-nat.c (_initialize_i386fbsd_nat): Use
10572 add_inf_child_target.
10573 * i386-gnu-nat.c (_initialize_i386gnu_nat): Use
10574 add_inf_child_target.
10575 * i386-linux-nat.c (_initialize_i386_linux_nat): Use
10576 add_inf_child_target.
10577 * i386-nbsd-nat.c (_initialize_i386nbsd_nat): Use
10578 add_inf_child_target.
10579 * i386-obsd-nat.c (_initialize_i386obsd_nat): Use
10580 add_inf_child_target.
10581 * ia64-linux-nat.c (_initialize_ia64_linux_nat): Use
10582 add_inf_child_target.
10583 * inf-child.c (inf_child_target_info): New.
10584 (inf_child_target::info): New.
10585 (inf_child_open_target): Remove 'target' parameter. Use
10586 get_native_target instead.
10587 (inf_child_target::open): Delete.
10588 (add_inf_child_target): New.
10589 * inf-child.h (inf_child_target) <shortname, longname, doc, open>:
10590 Delete.
10591 <info>: New.
10592 (add_inf_child_target): Declare.
10593 (inf_child_open_target): Declare.
10594 * linux-thread-db.c (thread_db_target_info): New.
10595 (thread_db_target) <shortname, longname, doc>: Delete.
10596 <info>: New.
10597 * m32r-linux-nat.c (_initialize_m32r_linux_nat): Use
10598 add_inf_child_target.
10599 * m68k-bsd-nat.c (_initialize_m68kbsd_nat): Use
10600 add_inf_child_target.
10601 * m68k-linux-nat.c (_initialize_m68k_linux_nat): Use
10602 add_inf_child_target.
10603 * m88k-bsd-nat.c (_initialize_m88kbsd_nat): Use
10604 add_inf_child_target.
10605 * make-target-delegates (print_class): Adjust.
10606 * mips-fbsd-nat.c (_initialize_mips_fbsd_nat): Use
10607 add_inf_child_target.
10608 * mips-linux-nat.c (_initialize_mips_linux_nat): Use
10609 add_inf_child_target.
10610 * mips-nbsd-nat.c (_initialize_mipsnbsd_nat): Use
10611 add_inf_child_target.
10612 * mips64-obsd-nat.c (_initialize_mips64obsd_nat): Use
10613 add_inf_child_target.
10614 * nto-procfs.c (nto_native_target_info): New.
10615 (nto_procfs_target_native) <shortname, longname, doc>:
10616 Delete.
10617 <info>: New.
10618 (nto_procfs_target_info): New.
10619 (nto_procfs_target_procfs) <shortname, longname, doc>:
10620 Delete.
10621 <info>: New.
10622 (init_procfs_targets): Adjust.
10623 * ppc-fbsd-nat.c (_initialize_ppcfbsd_nat): Use
10624 add_inf_child_target.
10625 * ppc-linux-nat.c (_initialize_ppc_linux_nat): Use
10626 add_inf_child_target.
10627 * ppc-nbsd-nat.c (_initialize_ppcnbsd_nat): Use
10628 add_inf_child_target.
10629 * ppc-obsd-nat.c (_initialize_ppcobsd_nat): Use
10630 add_inf_child_target.
10631 * ravenscar-thread.c (ravenscar_target_info): New.
10632 (ravenscar_thread_target) <shortname, longname, doc>:
10633 Delete.
10634 <info>: New.
10635 * record-btrace.c (record_btrace_target_info):
10636 (record_btrace_target) <shortname, longname, doc>: Delete.
10637 <info>: New.
10638 (record_btrace_target::open): Rename to ...
10639 (record_btrace_target_open): ... this. Adjust.
10640 * record-full.c (record_longname, record_doc): New.
10641 (record_full_base_target) <shortname, longname, doc>: Delete.
10642 <info>: New.
10643 (record_full_target_info): New.
10644 (record_full_target): <shortname>: Delete.
10645 <info>: New.
10646 (record_full_core_open_1, record_full_open_1): Update comments.
10647 (record_full_base_target::open): Rename to ...
10648 (record_full_open): ... this.
10649 (cmd_record_full_restore): Update.
10650 (_initialize_record_full): Update.
10651 * remote-sim.c (remote_sim_target_info): New.
10652 (gdbsim_target) <shortname, longname, doc>: Delete.
10653 <info>: New.
10654 (gdbsim_target::open): Rename to ...
10655 (gdbsim_target_open): ... this.
10656 (_initialize_remote_sim): Adjust.
10657 * remote.c (remote_doc): New.
10658 (remote_target_info): New.
10659 (remote_target) <shortname, longname, doc>: Delete.
10660 <info>: New.
10661 (extended_remote_target_info): New.
10662 (extended_remote_target) <shortname, longname, doc>: Delete.
10663 <info>: New.
10664 (remote_target::open_1): Make static. Adjust.
10665 * rs6000-nat.c (_initialize_rs6000_nat): Use add_inf_child_target.
10666 * s390-linux-nat.c (_initialize_s390_nat): Use
10667 add_inf_child_target.
10668 * sh-nbsd-nat.c (_initialize_shnbsd_nat): Use
10669 add_inf_child_target.
10670 * sol-thread.c (thread_db_target_info): New.
10671 (sol_thread_target) <shortname, longname, doc>: Delete.
10672 <info>: New.
10673 * sparc-linux-nat.c (_initialize_sparc_linux_nat): Use
10674 add_inf_child_target.
10675 * sparc-nbsd-nat.c (_initialize_sparcnbsd_nat): Use
10676 add_inf_child_target.
10677 * sparc64-fbsd-nat.c (_initialize_sparc64fbsd_nat): Use
10678 add_inf_child_target.
10679 * sparc64-linux-nat.c (_initialize_sparc64_linux_nat): Use
10680 add_inf_child_target.
10681 * sparc64-nbsd-nat.c (_initialize_sparc64nbsd_nat): Use
10682 add_inf_child_target.
10683 * sparc64-obsd-nat.c (_initialize_sparc64obsd_nat): Use
10684 add_inf_child_target.
10685 * spu-linux-nat.c (_initialize_spu_nat): Use
10686 add_inf_child_target.
10687 * spu-multiarch.c (spu_multiarch_target_info): New.
10688 (spu_multiarch_target) <shortname, longname, doc>: Delete.
10689 <info>: New.
10690 * target-delegates.c: Regenerate.
10691 * target.c: Include <unordered_map>.
10692 (target_ops_p): Delete.
10693 (DEF_VEC_P(target_ops_p)): Delete.
10694 (target_factories): New.
10695 (test_target_info): New.
10696 (test_target_ops::info): New.
10697 (open_target): Adjust to use target_factories.
10698 (add_target_with_completer): Rename to ...
10699 (add_target): ... this. Change prototype. Register target_info
10700 and open callback in target_factories. Register target_info in
10701 command context instead of target_ops.
10702 (add_target): Delete old implementation.
10703 (add_deprecated_target_alias): Change prototype. Adjust.
10704 (the_native_target): New.
10705 (set_native_target, get_native_target): New.
10706 (find_default_run_target): Use the_native_target.
10707 (find_attach_target, find_run_target): Simplify.
10708 (target_ops::open): Delete.
10709 (dummy_target_info): New.
10710 (dummy_target::shortname, dummy_target::longname)
10711 (dummy_target::doc): Delete.
10712 (dummy_target::info): New.
10713 (debug_target::shortname, debug_target::longname)
10714 (debug_target::doc): Delete.
10715 (debug_target::info): New.
10716 * target.h (struct target_info): New.
10717 (target_ops::~target_ops): Add comment.
10718 (target_ops::info): New.
10719 (target_ops::shortname, target_ops::longname, target_ops::doc): No
10720 longer virtual. Implement in terms of target_info.
10721 (set_native_target, get_native_target): Declare.
10722 (target_open_ftype): New.
10723 (add_target, add_target_with_completer)
10724 (add_deprecated_target_alias): Change prototype.
10725 (test_target) <shortname, longname, doc>: Delete.
10726 <info>: New.
10727 * tilegx-linux-nat.c (_initialize_tile_linux_nat): Use
10728 add_inf_child_target.
10729 * tracefile-tfile.c (tfile_target_info): New.
10730 (tfile_target) <shortname, longname, doc>: Delete.
10731 <info>: New.
10732 (tfile_target::open): Rename to ...
10733 (tfile_target_open): ... this.
10734 (_initialize_tracefile_tfile): Adjust.
10735 * vax-bsd-nat.c (_initialize_vaxbsd_nat): Use
10736 add_inf_child_target.
10737 * windows-nat.c (_initialize_windows_nat): Use
10738 add_inf_child_target.
10739 * xtensa-linux-nat.c (_initialize_xtensa_linux_nat): Use
10740 add_inf_child_target.
10741
10742 2018-05-02 Pedro Alves <palves@redhat.com>
10743
10744 * linux-nat.h (linux_nat_target) <low_new_thread,
10745 low_delete_thread, low_new_fork, low_forget_process,
10746 low_prepare_to_resume, low_siginfo_fixup, low_status_is_event>:
10747 New virtual methods.
10748 (linux_nat_set_new_thread, linux_nat_set_delete_thread)
10749 (linux_nat_new_fork_ftype, linux_nat_set_new_fork)
10750 (linux_nat_forget_process_ftype, linux_nat_set_forget_process)
10751 (linux_nat_forget_process, linux_nat_set_siginfo_fixup)
10752 (linux_nat_set_prepare_to_resume, linux_nat_set_status_is_event):
10753 Delete.
10754 * linux-fork.c (delete_fork): Adjust to call low method.
10755 * linux-nat.c (linux_nat_new_thread, linux_nat_delete_thread)
10756 (linux_nat_new_fork, linux_nat_forget_process_hook)
10757 (linux_nat_prepare_to_resume, linux_nat_siginfo_fixup)
10758 (linux_nat_status_is_event):
10759 (linux_nat_target::follow_fork, lwp_free, add_lwp, detach_one_lwp)
10760 (linux_resume_one_lwp_throw, linux_handle_extended_wait): Adjust
10761 to call low method.
10762 (sigtrap_is_event): Rename to ...
10763 (linux_nat_target::low_status_is_event): ... this.
10764 (linux_nat_set_status_is_event): Delete.
10765 (save_stop_reason, linux_nat_wait_1)
10766 (linux_nat_target::mourn_inferior, siginfo_fixup): Adjust to call
10767 low methods.
10768 (linux_nat_set_new_thread, linux_nat_set_delete_thread)
10769 (linux_nat_set_new_fork, linux_nat_set_forget_process)
10770 (linux_nat_forget_process, linux_nat_set_siginfo_fixup)
10771 (linux_nat_set_prepare_to_resume): Delete.
10772 * aarch64-linux-nat.c: All linux_nat_set_* callbacks converted to
10773 low virtual methods.
10774 * amd64-linux-nat.c: Likewise.
10775 * arm-linux-nat.c: Likewise.
10776 * i386-linux-nat.c: Likewise.
10777 * ia64-linux-nat.c: Likewise.
10778 * mips-linux-nat.c: Likewise.
10779 * ppc-linux-nat.c: Likewise.
10780 * s390-linux-nat.c: Likewise.
10781 * sparc64-linux-nat.c: Likewise.
10782 * x86-linux-nat.c: Likewise.
10783 * x86-linux-nat.h: Include "nat/x86-linux.h".
10784 (x86_linux_nat_target) <low_new_fork, low_forget_process,
10785 low_prepare_to_resume, low_new_thread, low_delete_thread>:
10786 Override methods.
10787
10788 2018-05-02 Pedro Alves <palves@redhat.com>
10789
10790 * target.h (target_ops)
10791 <stopped_by_sw_breakpoint, supports_stopped_by_sw_breakpoint,
10792 stopped_by_hw_breakpoint, supports_stopped_by_hw_breakpoint,
10793 stopped_by_watchpoint, have_continuable_watchpoint,
10794 stopped_data_address, watchpoint_addr_within_range,
10795 can_accel_watchpoint_condition, can_run, thread_alive,
10796 has_all_memory, has_memory, has_stack, has_registers,
10797 has_execution, can_async_p, is_async_p, supports_non_stop,
10798 always_non_stop_p, can_execute_reverse, supports_multi_process,
10799 supports_enable_disable_tracepoint,
10800 supports_disable_randomization, supports_string_tracing,
10801 supports_evaluation_of_breakpoint_conditions,
10802 can_run_breakpoint_commands, filesystem_is_local,
10803 can_download_tracepoint, get_trace_state_variable_value,
10804 set_trace_notes, get_tib_address, use_agent, can_use_agent,
10805 record_is_replaying, record_will_replay,
10806 augmented_libraries_svr4_read>: Adjust to return bool.
10807 * aarch64-linux-nat.c: All implementations adjusted.
10808 * aix-thread.c: All implementations adjusted.
10809 * arm-linux-nat.c: All implementations adjusted.
10810 * breakpoint.c: All implementations adjusted.
10811 * bsd-kvm.c: All implementations adjusted.
10812 * bsd-uthread.c: All implementations adjusted.
10813 * corelow.c: All implementations adjusted.
10814 * ctf.c: All implementations adjusted.
10815 * darwin-nat.c: All implementations adjusted.
10816 * darwin-nat.h: All implementations adjusted.
10817 * exec.c: All implementations adjusted.
10818 * fbsd-nat.c: All implementations adjusted.
10819 * fbsd-nat.h: All implementations adjusted.
10820 * gnu-nat.c: All implementations adjusted.
10821 * gnu-nat.h: All implementations adjusted.
10822 * go32-nat.c: All implementations adjusted.
10823 * ia64-linux-nat.c: All implementations adjusted.
10824 * inf-child.c: All implementations adjusted.
10825 * inf-child.h: All implementations adjusted.
10826 * inf-ptrace.c: All implementations adjusted.
10827 * inf-ptrace.h: All implementations adjusted.
10828 * linux-nat.c: All implementations adjusted.
10829 * linux-nat.h: All implementations adjusted.
10830 * mips-linux-nat.c: All implementations adjusted.
10831 * nto-procfs.c: All implementations adjusted.
10832 * ppc-linux-nat.c: All implementations adjusted.
10833 * procfs.c: All implementations adjusted.
10834 * ravenscar-thread.c: All implementations adjusted.
10835 * record-btrace.c: All implementations adjusted.
10836 * record-full.c: All implementations adjusted.
10837 * remote-sim.c: All implementations adjusted.
10838 * remote.c: All implementations adjusted.
10839 * s390-linux-nat.c: All implementations adjusted.
10840 * sol-thread.c: All implementations adjusted.
10841 * spu-multiarch.c: All implementations adjusted.
10842 * target-delegates.c: All implementations adjusted.
10843 * target.c: All implementations adjusted.
10844 * target.h: All implementations adjusted.
10845 * tracefile-tfile.c: All implementations adjusted.
10846 * tracefile.c: All implementations adjusted.
10847 * tracefile.h: All implementations adjusted.
10848 * windows-nat.c: All implementations adjusted.
10849 * x86-linux-nat.h: All implementations adjusted.
10850 * x86-nat.h: All implementations adjusted.
10851
10852 2018-05-02 Pedro Alves <palves@redhat.com>
10853
10854 * make-target-delegates (scan_target_h): Don't trim lines here.
10855 Replace sequences of tabs and/or whitespace with a single
10856 whitespace.
10857 (top level, parsing methods): Trim each line before processing it
10858 here.
10859
10860 2018-05-02 Pedro Alves <palves@redhat.com>
10861 John Baldwin <jhb@freebsd.org>
10862
10863 * target.h (enum strata) <debug_stratum>: New.
10864 (struct target_ops) <all delegation methods>: Replace by C++
10865 virtual methods, and drop "to_" prefix. All references updated
10866 throughout.
10867 <to_shortname, to_longname, to_doc, to_data,
10868 to_have_steppable_watchpoint, to_have_continuable_watchpoint,
10869 to_has_thread_control, to_attach_no_wait>: Delete, replaced by
10870 virtual methods. All references updated throughout.
10871 <can_attach, supports_terminal_ours, can_create_inferior,
10872 get_thread_control_capabilities, attach_no_wait>: New
10873 virtual methods.
10874 <insert_breakpoint, remove_breakpoint>: Now
10875 TARGET_DEFAULT_NORETURN methods.
10876 <info_proc>: Now returns bool.
10877 <to_magic>: Delete.
10878 (OPS_MAGIC): Delete.
10879 (current_target): Delete. All references replaced by references
10880 to ...
10881 (target_stack): ... this. New.
10882 (target_shortname, target_longname): Adjust.
10883 (target_can_run): Now a function declaration.
10884 (default_child_has_all_memory, default_child_has_memory)
10885 (default_child_has_stack, default_child_has_registers)
10886 (default_child_has_execution): Remove target_ops parameter.
10887 (complete_target_initialization): Delete.
10888 (memory_breakpoint_target): New template class.
10889 (test_target_ops): Refactor as a C++ class with virtual methods.
10890 * make-target-delegates (NAME_PART): Tighten.
10891 (POINTER_PART, CP_SYMBOL): New.
10892 (SIMPLE_RETURN_PART): Reimplement.
10893 (VEC_RETURN_PART): Expect less.
10894 (RETURN_PART, VIRTUAL_PART): New.
10895 (METHOD): Adjust to C++ virtual methods.
10896 (scan_target_h): Remove reference to C99.
10897 (dname): Output "target_ops::" prefix.
10898 (write_function_header): Adjust to output a C++ class method.
10899 (write_declaration): New.
10900 (write_delegator): Adjust to output a C++ class method.
10901 (tdname): Output "dummy_target::" prefix.
10902 (write_tdefault, write_debugmethod): Adjust to output a C++ class
10903 method.
10904 (tdefault_names, debug_names): Delete.
10905 (return_types, tdefaults, styles, argtypes_array): New.
10906 (top level): All methods are delegators.
10907 (print_class): New.
10908 (top level): Print dummy_target and debug_target classes.
10909 * target-delegates.c: Regenerate.
10910 * target-debug.h (target_debug_print_enum_info_proc_what)
10911 (target_debug_print_thread_control_capabilities)
10912 (target_debug_print_thread_info_p): New.
10913 * target.c (dummy_target): Delete.
10914 (the_dummy_target, the_debug_target): New.
10915 (target_stack): Now extern.
10916 (set_targetdebug): Push/unpush debug target.
10917 (default_child_has_all_memory, default_child_has_memory)
10918 (default_child_has_stack, default_child_has_registers)
10919 (default_child_has_execution): Remove target_ops parameter.
10920 (complete_target_initialization): Delete.
10921 (add_target_with_completer): No longer call
10922 complete_target_initialization.
10923 (target_supports_terminal_ours): Use regular delegation.
10924 (update_current_target): Delete.
10925 (push_target): No longer check magic number. Don't call
10926 update_current_target.
10927 (unpush_target): Don't call update_current_target.
10928 (target_is_pushed): No longer check magic number.
10929 (target_require_runnable): Skip for all stratums over
10930 process_stratum.
10931 (target_ops::info_proc): New.
10932 (target_info_proc): Use find_target_at and
10933 find_default_run_target.
10934 (target_supports_disable_randomization): Use regular delegation.
10935 (target_get_osdata): Use find_target_at.
10936 (target_ops::open, target_ops::close, target_ops::can_attach)
10937 (target_ops::attach, target_ops::can_create_inferior)
10938 (target_ops::create_inferior, target_ops::can_run)
10939 (target_can_run): New.
10940 (default_fileio_target): Use regular delegation.
10941 (target_ops::fileio_open, target_ops::fileio_pwrite)
10942 (target_ops::fileio_pread, target_ops::fileio_fstat)
10943 (target_ops::fileio_close, target_ops::fileio_unlink)
10944 (target_ops::fileio_readlink): New.
10945 (target_fileio_open_1, target_fileio_unlink)
10946 (target_fileio_readlink): Always call the target method. Handle
10947 FILEIO_ENOSYS.
10948 (return_zero, return_zero_has_execution): Delete.
10949 (init_dummy_target): Delete.
10950 (dummy_target::dummy_target, dummy_target::shortname)
10951 (dummy_target::longname, dummy_target::doc)
10952 (debug_target::debug_target, debug_target::shortname)
10953 (debug_target::longname, debug_target::doc): New.
10954 (target_supports_delete_record): Use regular delegation.
10955 (setup_target_debug): Delete.
10956 (maintenance_print_target_stack): Skip debug_stratum.
10957 (initialize_targets): Instantiate the_dummy_target and
10958 the_debug_target.
10959 * auxv.c (target_auxv_parse): Remove 'ops' parameter. Adjust to
10960 use target_stack.
10961 (target_auxv_search, fprint_target_auxv): Adjust.
10962 (info_auxv_command): Adjust to use target_stack.
10963 * auxv.h (target_auxv_parse): Remove 'ops' parameter.
10964 * exceptions.c (print_flush): Handle a NULL target_stack.
10965 * regcache.c (target_ops_no_register): Refactor as class with
10966 virtual methods.
10967
10968 * exec.c (exec_target): New class.
10969 (exec_ops): Now an exec_target.
10970 (exec_open, exec_close_1, exec_get_section_table)
10971 (exec_xfer_partial, exec_files_info, exec_has_memory)
10972 (exec_make_note_section): Refactor as exec_target methods.
10973 (exec_file_clear, ignore, exec_remove_breakpoint, init_exec_ops):
10974 Delete.
10975 (exec_target::find_memory_regions): New.
10976 (_initialize_exec): Don't call init_exec_ops.
10977 * gdbcore.h (exec_file_clear): Delete.
10978
10979 * corefile.c (core_target): Delete.
10980 (core_file_command): Adjust.
10981 * corelow.c (core_target): New class.
10982 (the_core_target): New.
10983 (core_close): Remove target_ops parameter.
10984 (core_close_cleanup): Adjust.
10985 (core_target::close): New.
10986 (core_open, core_detach, get_core_registers, core_files_info)
10987 (core_xfer_partial, core_thread_alive, core_read_description)
10988 (core_pid_to_str, core_thread_name, core_has_memory)
10989 (core_has_stack, core_has_registers, core_info_proc): Rework as
10990 core_target methods.
10991 (ignore, core_remove_breakpoint, init_core_ops): Delete.
10992 (_initialize_corelow): Initialize the_core_target.
10993 * gdbcore.h (core_target): Delete.
10994 (the_core_target): New.
10995
10996 * ctf.c: (ctf_target): New class.
10997 (ctf_ops): Now a ctf_target.
10998 (ctf_open, ctf_close, ctf_files_info, ctf_fetch_registers)
10999 (ctf_xfer_partial, ctf_get_trace_state_variable_value)
11000 (ctf_trace_find, ctf_traceframe_info): Refactor as ctf_target
11001 methods.
11002 (init_ctf_ops): Delete.
11003 (_initialize_ctf): Don't call it.
11004 * tracefile-tfile.c (tfile_target): New class.
11005 (tfile_ops): Now a tfile_target.
11006 (tfile_open, tfile_close, tfile_files_info)
11007 (tfile_get_tracepoint_status, tfile_trace_find)
11008 (tfile_fetch_registers, tfile_xfer_partial)
11009 (tfile_get_trace_state_variable_value, tfile_traceframe_info):
11010 Refactor as tfile_target methods.
11011 (tfile_xfer_partial_features): Remove target_ops parameter.
11012 (init_tfile_ops): Delete.
11013 (_initialize_tracefile_tfile): Don't call it.
11014 * tracefile.c (tracefile_has_all_memory, tracefile_has_memory)
11015 (tracefile_has_stack, tracefile_has_registers)
11016 (tracefile_thread_alive, tracefile_get_trace_status): Refactor as
11017 tracefile_target methods.
11018 (init_tracefile_ops): Delete.
11019 (tracefile_target::tracefile_target): New.
11020 * tracefile.h: Include "target.h".
11021 (tracefile_target): New class.
11022 (init_tracefile_ops): Delete.
11023
11024 * spu-multiarch.c (spu_multiarch_target): New class.
11025 (spu_ops): Now a spu_multiarch_target.
11026 (spu_thread_architecture, spu_region_ok_for_hw_watchpoint)
11027 (spu_fetch_registers, spu_store_registers, spu_xfer_partial)
11028 (spu_search_memory, spu_mourn_inferior): Refactor as
11029 spu_multiarch_target methods.
11030 (init_spu_ops): Delete.
11031 (_initialize_spu_multiarch): Remove references to init_spu_ops,
11032 complete_target_initialization.
11033
11034 * ravenscar-thread.c (ravenscar_thread_target): New class.
11035 (ravenscar_ops): Now a ravenscar_thread_target.
11036 (ravenscar_resume, ravenscar_wait, ravenscar_update_thread_list)
11037 (ravenscar_thread_alive, ravenscar_pid_to_str)
11038 (ravenscar_fetch_registers, ravenscar_store_registers)
11039 (ravenscar_prepare_to_store, ravenscar_stopped_by_sw_breakpoint)
11040 (ravenscar_stopped_by_hw_breakpoint)
11041 (ravenscar_stopped_by_watchpoint, ravenscar_stopped_data_address)
11042 (ravenscar_mourn_inferior, ravenscar_core_of_thread)
11043 (ravenscar_get_ada_task_ptid): Refactor as ravenscar_thread_target
11044 methods.
11045 (init_ravenscar_thread_ops): Delete.
11046 (_initialize_ravenscar): Remove references to
11047 init_ravenscar_thread_ops and complete_target_initialization.
11048
11049 * bsd-uthread.c (bsd_uthread_ops_hack): Delete.
11050 (bsd_uthread_target): New class.
11051 (bsd_uthread_ops): Now a bsd_uthread_target.
11052 (bsd_uthread_activate): Adjust to refer to bsd_uthread_ops.
11053 (bsd_uthread_close, bsd_uthread_mourn_inferior)
11054 (bsd_uthread_fetch_registers, bsd_uthread_store_registers)
11055 (bsd_uthread_wait, bsd_uthread_resume, bsd_uthread_thread_alive)
11056 (bsd_uthread_update_thread_list, bsd_uthread_extra_thread_info)
11057 (bsd_uthread_pid_to_str): Refactor as bsd_uthread_target methods.
11058 (bsd_uthread_target): Delete function.
11059 (_initialize_bsd_uthread): Remove reference to
11060 complete_target_initialization.
11061
11062 * bfd-target.c (target_bfd_data): Delete. Fields folded into ...
11063 (target_bfd): ... this new class.
11064 (target_bfd_xfer_partial, target_bfd_get_section_table)
11065 (target_bfd_close): Refactor as target_bfd methods.
11066 (target_bfd::~target_bfd): New.
11067 (target_bfd_reopen): Adjust.
11068 (target_bfd::close): New.
11069
11070 * record-btrace.c (record_btrace_target): New class.
11071 (record_btrace_ops): Now a record_btrace_target.
11072 (record_btrace_open, record_btrace_stop_recording)
11073 (record_btrace_disconnect, record_btrace_close)
11074 (record_btrace_async, record_btrace_info)
11075 (record_btrace_insn_history, record_btrace_insn_history_range)
11076 (record_btrace_insn_history_from, record_btrace_call_history)
11077 (record_btrace_call_history_range)
11078 (record_btrace_call_history_from, record_btrace_record_method)
11079 (record_btrace_is_replaying, record_btrace_will_replay)
11080 (record_btrace_xfer_partial, record_btrace_insert_breakpoint)
11081 (record_btrace_remove_breakpoint, record_btrace_fetch_registers)
11082 (record_btrace_store_registers, record_btrace_prepare_to_store)
11083 (record_btrace_to_get_unwinder)
11084 (record_btrace_to_get_tailcall_unwinder, record_btrace_resume)
11085 (record_btrace_commit_resume, record_btrace_wait)
11086 (record_btrace_stop, record_btrace_can_execute_reverse)
11087 (record_btrace_stopped_by_sw_breakpoint)
11088 (record_btrace_supports_stopped_by_sw_breakpoint)
11089 (record_btrace_stopped_by_hw_breakpoint)
11090 (record_btrace_supports_stopped_by_hw_breakpoint)
11091 (record_btrace_update_thread_list, record_btrace_thread_alive)
11092 (record_btrace_goto_begin, record_btrace_goto_end)
11093 (record_btrace_goto, record_btrace_stop_replaying_all)
11094 (record_btrace_execution_direction)
11095 (record_btrace_prepare_to_generate_core)
11096 (record_btrace_done_generating_core): Refactor as
11097 record_btrace_target methods.
11098 (init_record_btrace_ops): Delete.
11099 (_initialize_record_btrace): Remove reference to
11100 init_record_btrace_ops.
11101 * record-full.c (RECORD_FULL_IS_REPLAY): Adjust to always refer to
11102 the execution_direction global.
11103 (record_full_base_target, record_full_target)
11104 (record_full_core_target): New classes.
11105 (record_full_ops): Now a record_full_target.
11106 (record_full_core_ops): Now a record_full_core_target.
11107 (record_full_target::detach, record_full_target::disconnect)
11108 (record_full_core_target::disconnect)
11109 (record_full_target::mourn_inferior, record_full_target::kill):
11110 New.
11111 (record_full_open, record_full_close, record_full_async): Refactor
11112 as methods of the record_full_base_target class.
11113 (record_full_resume, record_full_commit_resume): Refactor
11114 as methods of the record_full_target class.
11115 (record_full_wait, record_full_stopped_by_watchpoint)
11116 (record_full_stopped_data_address)
11117 (record_full_stopped_by_sw_breakpoint)
11118 (record_full_supports_stopped_by_sw_breakpoint)
11119 (record_full_stopped_by_hw_breakpoint)
11120 (record_full_supports_stopped_by_hw_breakpoint): Refactor as
11121 methods of the record_full_base_target class.
11122 (record_full_store_registers, record_full_xfer_partial)
11123 (record_full_insert_breakpoint, record_full_remove_breakpoint):
11124 Refactor as methods of the record_full_target class.
11125 (record_full_can_execute_reverse, record_full_get_bookmark)
11126 (record_full_goto_bookmark, record_full_execution_direction)
11127 (record_full_record_method, record_full_info, record_full_delete)
11128 (record_full_is_replaying, record_full_will_replay)
11129 (record_full_goto_begin, record_full_goto_end, record_full_goto)
11130 (record_full_stop_replaying): Refactor as methods of the
11131 record_full_base_target class.
11132 (record_full_core_resume, record_full_core_kill)
11133 (record_full_core_fetch_registers)
11134 (record_full_core_prepare_to_store)
11135 (record_full_core_store_registers, record_full_core_xfer_partial)
11136 (record_full_core_insert_breakpoint)
11137 (record_full_core_remove_breakpoint)
11138 (record_full_core_has_execution): Refactor
11139 as methods of the record_full_core_target class.
11140 (record_full_base_target::supports_delete_record): New.
11141 (init_record_full_ops): Delete.
11142 (init_record_full_core_ops): Delete.
11143 (record_full_save): Refactor as method of the
11144 record_full_base_target class.
11145 (_initialize_record_full): Remove references to
11146 init_record_full_ops and init_record_full_core_ops.
11147
11148 * remote.c (remote_target, extended_remote_target): New classes.
11149 (remote_ops): Now a remote_target.
11150 (extended_remote_ops): Now an extended_remote_target.
11151 (remote_insert_fork_catchpoint, remote_remove_fork_catchpoint)
11152 (remote_insert_vfork_catchpoint, remote_remove_vfork_catchpoint)
11153 (remote_insert_exec_catchpoint, remote_remove_exec_catchpoint)
11154 (remote_pass_signals, remote_set_syscall_catchpoint)
11155 (remote_program_signals, )
11156 (remote_thread_always_alive): Remove target_ops parameter.
11157 (remote_thread_alive, remote_thread_name)
11158 (remote_update_thread_list, remote_threads_extra_info)
11159 (remote_static_tracepoint_marker_at)
11160 (remote_static_tracepoint_markers_by_strid)
11161 (remote_get_ada_task_ptid, remote_close, remote_start_remote)
11162 (remote_open): Refactor as methods of remote_target.
11163 (extended_remote_open, extended_remote_detach)
11164 (extended_remote_attach, extended_remote_post_attach):
11165 (extended_remote_supports_disable_randomization)
11166 (extended_remote_create_inferior): : Refactor as method of
11167 extended_remote_target.
11168 (remote_set_permissions, remote_open_1, remote_detach)
11169 (remote_follow_fork, remote_follow_exec, remote_disconnect)
11170 (remote_resume, remote_commit_resume, remote_stop)
11171 (remote_interrupt, remote_pass_ctrlc, remote_terminal_inferior)
11172 (remote_terminal_ours, remote_wait, remote_fetch_registers)
11173 (remote_prepare_to_store, remote_store_registers)
11174 (remote_flash_erase, remote_flash_done, remote_files_info)
11175 (remote_kill, remote_mourn, remote_insert_breakpoint)
11176 (remote_remove_breakpoint, remote_insert_watchpoint)
11177 (remote_watchpoint_addr_within_range)
11178 (remote_remove_watchpoint, remote_region_ok_for_hw_watchpoint)
11179 (remote_check_watch_resources, remote_stopped_by_sw_breakpoint)
11180 (remote_supports_stopped_by_sw_breakpoint)
11181 (remote_stopped_by_hw_breakpoint)
11182 (remote_supports_stopped_by_hw_breakpoint)
11183 (remote_stopped_by_watchpoint, remote_stopped_data_address)
11184 (remote_insert_hw_breakpoint, remote_remove_hw_breakpoint)
11185 (remote_verify_memory): Refactor as methods of remote_target.
11186 (remote_write_qxfer, remote_read_qxfer): Remove target_ops
11187 parameter.
11188 (remote_xfer_partial, remote_get_memory_xfer_limit)
11189 (remote_search_memory, remote_rcmd, remote_memory_map)
11190 (remote_pid_to_str, remote_get_thread_local_address)
11191 (remote_get_tib_address, remote_read_description): Refactor as
11192 methods of remote_target.
11193 (remote_target::fileio_open, remote_target::fileio_pwrite)
11194 (remote_target::fileio_pread, remote_target::fileio_close): New.
11195 (remote_hostio_readlink, remote_hostio_fstat)
11196 (remote_filesystem_is_local, remote_can_execute_reverse)
11197 (remote_supports_non_stop, remote_supports_disable_randomization)
11198 (remote_supports_multi_process, remote_supports_cond_breakpoints)
11199 (remote_supports_enable_disable_tracepoint)
11200 (remote_supports_string_tracing)
11201 (remote_can_run_breakpoint_commands, remote_trace_init)
11202 (remote_download_tracepoint, remote_can_download_tracepoint)
11203 (remote_download_trace_state_variable, remote_enable_tracepoint)
11204 (remote_disable_tracepoint, remote_trace_set_readonly_regions)
11205 (remote_trace_start, remote_get_trace_status)
11206 (remote_get_tracepoint_status, remote_trace_stop)
11207 (remote_trace_find, remote_get_trace_state_variable_value)
11208 (remote_save_trace_data, remote_get_raw_trace_data)
11209 (remote_set_disconnected_tracing, remote_core_of_thread)
11210 (remote_set_circular_trace_buffer, remote_traceframe_info)
11211 (remote_get_min_fast_tracepoint_insn_len)
11212 (remote_set_trace_buffer_size, remote_set_trace_notes)
11213 (remote_use_agent, remote_can_use_agent, remote_enable_btrace)
11214 (remote_disable_btrace, remote_teardown_btrace)
11215 (remote_read_btrace, remote_btrace_conf)
11216 (remote_augmented_libraries_svr4_read, remote_load)
11217 (remote_pid_to_exec_file, remote_can_do_single_step)
11218 (remote_execution_direction, remote_thread_handle_to_thread_info):
11219 Refactor as methods of remote_target.
11220 (init_remote_ops, init_extended_remote_ops): Delete.
11221 (remote_can_async_p, remote_is_async_p, remote_async)
11222 (remote_thread_events, remote_upload_tracepoints)
11223 (remote_upload_trace_state_variables): Refactor as methods of
11224 remote_target.
11225 (_initialize_remote): Remove references to init_remote_ops and
11226 init_extended_remote_ops.
11227
11228 * remote-sim.c (gdbsim_target): New class.
11229 (gdbsim_fetch_register, gdbsim_store_register, gdbsim_kill)
11230 (gdbsim_load, gdbsim_create_inferior, gdbsim_open, gdbsim_close)
11231 (gdbsim_detach, gdbsim_resume, gdbsim_interrupt)
11232 (gdbsim_wait, gdbsim_prepare_to_store, gdbsim_xfer_partial)
11233 (gdbsim_files_info, gdbsim_mourn_inferior, gdbsim_thread_alive)
11234 (gdbsim_pid_to_str, gdbsim_has_all_memory, gdbsim_has_memory):
11235 Refactor as methods of gdbsim_target.
11236 (gdbsim_ops): Now a gdbsim_target.
11237 (init_gdbsim_ops): Delete.
11238 (gdbsim_cntrl_c): Adjust.
11239 (_initialize_remote_sim): Remove reference to init_gdbsim_ops.
11240
11241 * amd64-linux-nat.c (amd64_linux_nat_target): New class.
11242 (the_amd64_linux_nat_target): New.
11243 (amd64_linux_fetch_inferior_registers)
11244 (amd64_linux_store_inferior_registers): Refactor as methods of
11245 amd64_linux_nat_target.
11246 (_initialize_amd64_linux_nat): Adjust. Set linux_target.
11247 * i386-linux-nat.c: Don't include "linux-nat.h".
11248 (i386_linux_nat_target): New class.
11249 (the_i386_linux_nat_target): New.
11250 (i386_linux_fetch_inferior_registers)
11251 (i386_linux_store_inferior_registers, i386_linux_resume): Refactor
11252 as methods of i386_linux_nat_target.
11253 (_initialize_i386_linux_nat): Adjust. Set linux_target.
11254 * inf-child.c (inf_child_ops): Delete.
11255 (inf_child_fetch_inferior_registers)
11256 (inf_child_store_inferior_registers): Delete.
11257 (inf_child_post_attach, inf_child_prepare_to_store): Refactor as
11258 methods of inf_child_target.
11259 (inf_child_target::supports_terminal_ours)
11260 (inf_child_target::terminal_init)
11261 (inf_child_target::terminal_inferior)
11262 (inf_child_target::terminal_ours_for_output)
11263 (inf_child_target::terminal_ours, inf_child_target::interrupt)
11264 (inf_child_target::pass_ctrlc, inf_child_target::terminal_info):
11265 New.
11266 (inf_child_open, inf_child_disconnect, inf_child_close)
11267 (inf_child_mourn_inferior, inf_child_maybe_unpush_target)
11268 (inf_child_post_startup_inferior, inf_child_can_run)
11269 (inf_child_pid_to_exec_file): Refactor as methods of
11270 inf_child_target.
11271 (inf_child_follow_fork): Delete.
11272 (inf_child_target::can_create_inferior)
11273 (inf_child_target::can_attach): New.
11274 (inf_child_target::has_all_memory, inf_child_target::has_memory)
11275 (inf_child_target::has_stack, inf_child_target::has_registers)
11276 (inf_child_target::has_execution): New.
11277 (inf_child_fileio_open, inf_child_fileio_pwrite)
11278 (inf_child_fileio_pread, inf_child_fileio_fstat)
11279 (inf_child_fileio_close, inf_child_fileio_unlink)
11280 (inf_child_fileio_readlink, inf_child_use_agent)
11281 (inf_child_can_use_agent): Refactor as methods of
11282 inf_child_target.
11283 (return_zero, inf_child_target): Delete.
11284 (inf_child_target::inf_child_target): New.
11285 * inf-child.h: Include "target.h".
11286 (inf_child_target): Delete function prototype.
11287 (inf_child_target): New class.
11288 (inf_child_open_target, inf_child_mourn_inferior)
11289 (inf_child_maybe_unpush_target): Delete.
11290 * inf-ptrace.c (inf_ptrace_target::~inf_ptrace_target): New.
11291 (inf_ptrace_follow_fork, inf_ptrace_insert_fork_catchpoint)
11292 (inf_ptrace_remove_fork_catchpoint, inf_ptrace_create_inferior)
11293 (inf_ptrace_post_startup_inferior, inf_ptrace_mourn_inferior)
11294 (inf_ptrace_attach, inf_ptrace_post_attach, inf_ptrace_detach)
11295 (inf_ptrace_detach_success, inf_ptrace_kill, inf_ptrace_resume)
11296 (inf_ptrace_wait, inf_ptrace_xfer_partial)
11297 (inf_ptrace_thread_alive, inf_ptrace_files_info)
11298 (inf_ptrace_pid_to_str, inf_ptrace_auxv_parse): Refactor as
11299 methods of inf_ptrace_target.
11300 (inf_ptrace_target): Delete function.
11301 * inf-ptrace.h: Include "inf-child.h".
11302 (inf_ptrace_target): Delete function declaration.
11303 (inf_ptrace_target): New class.
11304 (inf_ptrace_trad_target, inf_ptrace_detach_success): Delete.
11305 * linux-nat.c (linux_target): New.
11306 (linux_ops, linux_ops_saved, super_xfer_partial): Delete.
11307 (linux_nat_target::~linux_nat_target): New.
11308 (linux_child_post_attach, linux_child_post_startup_inferior)
11309 (linux_child_follow_fork, linux_child_insert_fork_catchpoint)
11310 (linux_child_remove_fork_catchpoint)
11311 (linux_child_insert_vfork_catchpoint)
11312 (linux_child_remove_vfork_catchpoint)
11313 (linux_child_insert_exec_catchpoint)
11314 (linux_child_remove_exec_catchpoint)
11315 (linux_child_set_syscall_catchpoint, linux_nat_pass_signals)
11316 (linux_nat_create_inferior, linux_nat_attach, linux_nat_detach)
11317 (linux_nat_resume, linux_nat_stopped_by_watchpoint)
11318 (linux_nat_stopped_data_address)
11319 (linux_nat_stopped_by_sw_breakpoint)
11320 (linux_nat_supports_stopped_by_sw_breakpoint)
11321 (linux_nat_stopped_by_hw_breakpoint)
11322 (linux_nat_supports_stopped_by_hw_breakpoint, linux_nat_wait)
11323 (linux_nat_kill, linux_nat_mourn_inferior)
11324 (linux_nat_xfer_partial, linux_nat_thread_alive)
11325 (linux_nat_update_thread_list, linux_nat_pid_to_str)
11326 (linux_nat_thread_name, linux_child_pid_to_exec_file)
11327 (linux_child_static_tracepoint_markers_by_strid)
11328 (linux_nat_is_async_p, linux_nat_can_async_p)
11329 (linux_nat_supports_non_stop, linux_nat_always_non_stop_p)
11330 (linux_nat_supports_multi_process)
11331 (linux_nat_supports_disable_randomization, linux_nat_async)
11332 (linux_nat_stop, linux_nat_close, linux_nat_thread_address_space)
11333 (linux_nat_core_of_thread, linux_nat_filesystem_is_local)
11334 (linux_nat_fileio_open, linux_nat_fileio_readlink)
11335 (linux_nat_fileio_unlink, linux_nat_thread_events): Refactor as
11336 methods of linux_nat_target.
11337 (linux_nat_wait_1, linux_xfer_siginfo, linux_proc_xfer_partial)
11338 (linux_proc_xfer_spu, linux_nat_xfer_osdata): Remove target_ops
11339 parameter.
11340 (check_stopped_by_watchpoint): Adjust.
11341 (linux_xfer_partial): Delete.
11342 (linux_target_install_ops, linux_target, linux_nat_add_target):
11343 Delete.
11344 (linux_nat_target::linux_nat_target): New.
11345 * linux-nat.h: Include "inf-ptrace.h".
11346 (linux_nat_target): New.
11347 (linux_target, linux_target_install_ops, linux_nat_add_target):
11348 Delete function declarations.
11349 (linux_target): Declare global.
11350 * linux-thread-db.c (thread_db_target): New.
11351 (thread_db_target::thread_db_target): New.
11352 (thread_db_ops): Delete.
11353 (the_thread_db_target): New.
11354 (thread_db_detach, thread_db_wait, thread_db_mourn_inferior)
11355 (thread_db_update_thread_list, thread_db_pid_to_str)
11356 (thread_db_extra_thread_info)
11357 (thread_db_thread_handle_to_thread_info)
11358 (thread_db_get_thread_local_address, thread_db_get_ada_task_ptid)
11359 (thread_db_resume): Refactor as methods of thread_db_target.
11360 (init_thread_db_ops): Delete.
11361 (_initialize_thread_db): Remove reference to init_thread_db_ops.
11362 * x86-linux-nat.c: Don't include "linux-nat.h".
11363 (super_post_startup_inferior): Delete.
11364 (x86_linux_nat_target::~x86_linux_nat_target): New.
11365 (x86_linux_child_post_startup_inferior)
11366 (x86_linux_read_description, x86_linux_enable_btrace)
11367 (x86_linux_disable_btrace, x86_linux_teardown_btrace)
11368 (x86_linux_read_btrace, x86_linux_btrace_conf): Refactor as
11369 methods of x86_linux_nat_target.
11370 (x86_linux_create_target): Delete. Bits folded ...
11371 (x86_linux_add_target): ... here. Now takes a linux_nat_target
11372 pointer.
11373 * x86-linux-nat.h: Include "linux-nat.h" and "x86-nat.h".
11374 (x86_linux_nat_target): New class.
11375 (x86_linux_create_target): Delete.
11376 (x86_linux_add_target): Now takes a linux_nat_target pointer.
11377 * x86-nat.c (x86_insert_watchpoint, x86_remove_watchpoint)
11378 (x86_region_ok_for_watchpoint, x86_stopped_data_address)
11379 (x86_stopped_by_watchpoint, x86_insert_hw_breakpoint)
11380 (x86_remove_hw_breakpoint, x86_can_use_hw_breakpoint)
11381 (x86_stopped_by_hw_breakpoint): Remove target_ops parameter and
11382 make extern.
11383 (x86_use_watchpoints): Delete.
11384 * x86-nat.h: Include "breakpoint.h" and "target.h".
11385 (x86_use_watchpoints): Delete.
11386 (x86_can_use_hw_breakpoint, x86_region_ok_for_hw_watchpoint)
11387 (x86_stopped_by_watchpoint, x86_stopped_data_address)
11388 (x86_insert_watchpoint, x86_remove_watchpoint)
11389 (x86_insert_hw_breakpoint, x86_remove_hw_breakpoint)
11390 (x86_stopped_by_hw_breakpoint): New declarations.
11391 (x86_nat_target): New template class.
11392
11393 * ppc-linux-nat.c (ppc_linux_nat_target): New class.
11394 (the_ppc_linux_nat_target): New.
11395 (ppc_linux_fetch_inferior_registers)
11396 (ppc_linux_can_use_hw_breakpoint)
11397 (ppc_linux_region_ok_for_hw_watchpoint)
11398 (ppc_linux_ranged_break_num_registers)
11399 (ppc_linux_insert_hw_breakpoint, ppc_linux_remove_hw_breakpoint)
11400 (ppc_linux_insert_mask_watchpoint)
11401 (ppc_linux_remove_mask_watchpoint)
11402 (ppc_linux_can_accel_watchpoint_condition)
11403 (ppc_linux_insert_watchpoint, ppc_linux_remove_watchpoint)
11404 (ppc_linux_stopped_data_address, ppc_linux_stopped_by_watchpoint)
11405 (ppc_linux_watchpoint_addr_within_range)
11406 (ppc_linux_masked_watch_num_registers)
11407 (ppc_linux_store_inferior_registers, ppc_linux_auxv_parse)
11408 (ppc_linux_read_description): Refactor as methods of
11409 ppc_linux_nat_target.
11410 (_initialize_ppc_linux_nat): Adjust. Set linux_target.
11411
11412 * procfs.c (procfs_xfer_partial): Delete forward declaration.
11413 (procfs_target): New class.
11414 (the_procfs_target): New.
11415 (procfs_target): Delete function.
11416 (procfs_auxv_parse, procfs_attach, procfs_detach)
11417 (procfs_fetch_registers, procfs_store_registers, procfs_wait)
11418 (procfs_xfer_partial, procfs_resume, procfs_pass_signals)
11419 (procfs_files_info, procfs_kill_inferior, procfs_mourn_inferior)
11420 (procfs_create_inferior, procfs_update_thread_list)
11421 (procfs_thread_alive, procfs_pid_to_str)
11422 (procfs_can_use_hw_breakpoint, procfs_stopped_by_watchpoint)
11423 (procfs_stopped_data_address, procfs_insert_watchpoint)
11424 (procfs_remove_watchpoint, procfs_region_ok_for_hw_watchpoint)
11425 (proc_find_memory_regions, procfs_info_proc)
11426 (procfs_make_note_section): Refactor as methods of procfs_target.
11427 (_initialize_procfs): Adjust.
11428 * sol-thread.c (sol_thread_target): New class.
11429 (sol_thread_ops): Now a sol_thread_target.
11430 (sol_thread_detach, sol_thread_resume, sol_thread_wait)
11431 (sol_thread_fetch_registers, sol_thread_store_registers)
11432 (sol_thread_xfer_partial, sol_thread_mourn_inferior)
11433 (sol_thread_alive, solaris_pid_to_str, sol_update_thread_list)
11434 (sol_get_ada_task_ptid): Refactor as methods of sol_thread_target.
11435 (init_sol_thread_ops): Delete.
11436 (_initialize_sol_thread): Adjust. Remove references to
11437 init_sol_thread_ops and complete_target_initialization.
11438
11439 * windows-nat.c (windows_nat_target): New class.
11440 (windows_fetch_inferior_registers)
11441 (windows_store_inferior_registers, windows_resume, windows_wait)
11442 (windows_attach, windows_detach, windows_pid_to_exec_file)
11443 (windows_files_info, windows_create_inferior)
11444 (windows_mourn_inferior, windows_interrupt, windows_kill_inferior)
11445 (windows_close, windows_pid_to_str, windows_xfer_partial)
11446 (windows_get_tib_address, windows_get_ada_task_ptid)
11447 (windows_thread_name, windows_thread_alive): Refactor as
11448 windows_nat_target methods.
11449 (do_initial_windows_stuff): Adjust.
11450 (windows_target): Delete function.
11451 (_initialize_windows_nat): Adjust.
11452
11453 * darwin-nat.c (darwin_resume, darwin_wait_to, darwin_interrupt)
11454 (darwin_mourn_inferior, darwin_kill_inferior)
11455 (darwin_create_inferior, darwin_attach, darwin_detach)
11456 (darwin_pid_to_str, darwin_thread_alive, darwin_xfer_partial)
11457 (darwin_pid_to_exec_file, darwin_get_ada_task_ptid)
11458 (darwin_supports_multi_process): Refactor as darwin_nat_target
11459 methods.
11460 (darwin_resume_to, darwin_files_info): Delete.
11461 (_initialize_darwin_inferior): Rename to ...
11462 (_initialize_darwin_nat): ... this. Adjust to C++ification.
11463 * darwin-nat.h: Include "inf-child.h".
11464 (darwin_nat_target): New class.
11465 (darwin_complete_target): Delete.
11466 * i386-darwin-nat.c (i386_darwin_nat_target): New class.
11467 (darwin_target): New.
11468 (i386_darwin_fetch_inferior_registers)
11469 (i386_darwin_store_inferior_registers): Refactor as methods of
11470 darwin_nat_target.
11471 (darwin_complete_target): Delete, with ...
11472 (_initialize_i386_darwin_nat): ... bits factored out here.
11473
11474 * alpha-linux-nat.c (alpha_linux_nat_target): New class.
11475 (the_alpha_linux_nat_target): New.
11476 (alpha_linux_register_u_offset): Refactor as
11477 alpha_linux_nat_target method.
11478 (_initialize_alpha_linux_nat): Adjust.
11479 * linux-nat-trad.c (inf_ptrace_register_u_offset): Delete.
11480 (inf_ptrace_fetch_register, inf_ptrace_fetch_registers)
11481 (inf_ptrace_store_register, inf_ptrace_store_registers): Refact as
11482 methods of linux_nat_trad_target.
11483 (linux_trad_target): Delete.
11484 * linux-nat-trad.h (linux_trad_target): Delete function.
11485 (linux_nat_trad_target): New class.
11486 * mips-linux-nat.c (mips_linux_nat_target): New class.
11487 (super_fetch_registers, super_store_registers, super_close):
11488 Delete.
11489 (the_mips_linux_nat_target): New.
11490 (mips64_linux_regsets_fetch_registers)
11491 (mips64_linux_regsets_store_registers)
11492 (mips64_linux_fetch_registers, mips64_linux_store_registers)
11493 (mips_linux_register_u_offset, mips_linux_read_description)
11494 (mips_linux_can_use_hw_breakpoint)
11495 (mips_linux_stopped_by_watchpoint)
11496 (mips_linux_stopped_data_address)
11497 (mips_linux_region_ok_for_hw_watchpoint)
11498 (mips_linux_insert_watchpoint, mips_linux_remove_watchpoint)
11499 (mips_linux_close): Refactor as methods of mips_linux_nat.
11500 (_initialize_mips_linux_nat): Adjust to C++ification.
11501
11502 * aix-thread.c (aix_thread_target): New class.
11503 (aix_thread_ops): Now an aix_thread_target.
11504 (aix_thread_detach, aix_thread_resume, aix_thread_wait)
11505 (aix_thread_fetch_registers, aix_thread_store_registers)
11506 (aix_thread_xfer_partial, aix_thread_mourn_inferior)
11507 (aix_thread_thread_alive, aix_thread_pid_to_str)
11508 (aix_thread_extra_thread_info, aix_thread_get_ada_task_ptid):
11509 Refactor as methods of aix_thread_target.
11510 (init_aix_thread_ops): Delete.
11511 (_initialize_aix_thread): Remove references to init_aix_thread_ops
11512 and complete_target_initialization.
11513 * rs6000-nat.c (rs6000_xfer_shared_libraries): Delete.
11514 (rs6000_nat_target): New class.
11515 (the_rs6000_nat_target): New.
11516 (rs6000_fetch_inferior_registers, rs6000_store_inferior_registers)
11517 (rs6000_xfer_partial, rs6000_wait, rs6000_create_inferior)
11518 (rs6000_xfer_shared_libraries): Refactor as rs6000_nat_target methods.
11519 (super_create_inferior): Delete.
11520 (_initialize_rs6000_nat): Adjust to C++ification.
11521
11522 * arm-linux-nat.c (arm_linux_nat_target): New class.
11523 (the_arm_linux_nat_target): New.
11524 (arm_linux_fetch_inferior_registers)
11525 (arm_linux_store_inferior_registers, arm_linux_read_description)
11526 (arm_linux_can_use_hw_breakpoint, arm_linux_insert_hw_breakpoint)
11527 (arm_linux_remove_hw_breakpoint)
11528 (arm_linux_region_ok_for_hw_watchpoint)
11529 (arm_linux_insert_watchpoint, arm_linux_remove_watchpoint)
11530 (arm_linux_stopped_data_address, arm_linux_stopped_by_watchpoint)
11531 (arm_linux_watchpoint_addr_within_range): Refactor as methods of
11532 arm_linux_nat_target.
11533 (_initialize_arm_linux_nat): Adjust to C++ification.
11534
11535 * aarch64-linux-nat.c (aarch64_linux_nat_target): New class.
11536 (the_aarch64_linux_nat_target): New.
11537 (aarch64_linux_fetch_inferior_registers)
11538 (aarch64_linux_store_inferior_registers)
11539 (aarch64_linux_child_post_startup_inferior)
11540 (aarch64_linux_read_description)
11541 (aarch64_linux_can_use_hw_breakpoint)
11542 (aarch64_linux_insert_hw_breakpoint)
11543 (aarch64_linux_remove_hw_breakpoint)
11544 (aarch64_linux_insert_watchpoint, aarch64_linux_remove_watchpoint)
11545 (aarch64_linux_region_ok_for_hw_watchpoint)
11546 (aarch64_linux_stopped_data_address)
11547 (aarch64_linux_stopped_by_watchpoint)
11548 (aarch64_linux_watchpoint_addr_within_range)
11549 (aarch64_linux_can_do_single_step): Refactor as methods of
11550 aarch64_linux_nat_target.
11551 (super_post_startup_inferior): Delete.
11552 (_initialize_aarch64_linux_nat): Adjust to C++ification.
11553
11554 * hppa-linux-nat.c (hppa_linux_nat_target): New class.
11555 (the_hppa_linux_nat_target): New.
11556 (hppa_linux_fetch_inferior_registers)
11557 (hppa_linux_store_inferior_registers): Refactor as methods of
11558 hppa_linux_nat_target.
11559 (_initialize_hppa_linux_nat): Adjust to C++ification.
11560
11561 * ia64-linux-nat.c (ia64_linux_nat_target): New class.
11562 (the_ia64_linux_nat_target): New.
11563 (ia64_linux_insert_watchpoint, ia64_linux_remove_watchpoint)
11564 (ia64_linux_stopped_data_address)
11565 (ia64_linux_stopped_by_watchpoint, ia64_linux_fetch_registers)
11566 (ia64_linux_store_registers, ia64_linux_xfer_partial): Refactor as
11567 ia64_linux_nat_target methods.
11568 (super_xfer_partial): Delete.
11569 (_initialize_ia64_linux_nat): Adjust to C++ification.
11570
11571 * m32r-linux-nat.c (m32r_linux_nat_target): New class.
11572 (the_m32r_linux_nat_target): New.
11573 (m32r_linux_fetch_inferior_registers)
11574 (m32r_linux_store_inferior_registers): Refactor as
11575 m32r_linux_nat_target methods.
11576 (_initialize_m32r_linux_nat): Adjust to C++ification.
11577
11578 * m68k-linux-nat.c (m68k_linux_nat_target): New class.
11579 (the_m68k_linux_nat_target): New.
11580 (m68k_linux_fetch_inferior_registers)
11581 (m68k_linux_store_inferior_registers): Refactor as
11582 m68k_linux_nat_target methods.
11583 (_initialize_m68k_linux_nat): Adjust to C++ification.
11584
11585 * s390-linux-nat.c (s390_linux_nat_target): New class.
11586 (the_s390_linux_nat_target): New.
11587 (s390_linux_fetch_inferior_registers)
11588 (s390_linux_store_inferior_registers, s390_stopped_by_watchpoint)
11589 (s390_insert_watchpoint, s390_remove_watchpoint)
11590 (s390_can_use_hw_breakpoint, s390_insert_hw_breakpoint)
11591 (s390_remove_hw_breakpoint, s390_region_ok_for_hw_watchpoint)
11592 (s390_auxv_parse, s390_read_description): Refactor as methods of
11593 s390_linux_nat_target.
11594 (_initialize_s390_nat): Adjust to C++ification.
11595
11596 * sparc-linux-nat.c (sparc_linux_nat_target): New class.
11597 (the_sparc_linux_nat_target): New.
11598 (_initialize_sparc_linux_nat): Adjust to C++ification.
11599 * sparc-nat.c (sparc_fetch_inferior_registers)
11600 (sparc_store_inferior_registers): Remove target_ops parameter.
11601 * sparc-nat.h (sparc_fetch_inferior_registers)
11602 (sparc_store_inferior_registers): Remove target_ops parameter.
11603 * sparc64-linux-nat.c (sparc64_linux_nat_target): New class.
11604 (the_sparc64_linux_nat_target): New.
11605 (_initialize_sparc64_linux_nat): Adjust to C++ification.
11606
11607 * spu-linux-nat.c (spu_linux_nat_target): New class.
11608 (the_spu_linux_nat_target): New.
11609 (spu_child_post_startup_inferior, spu_child_post_attach)
11610 (spu_child_wait, spu_fetch_inferior_registers)
11611 (spu_store_inferior_registers, spu_xfer_partial)
11612 (spu_can_use_hw_breakpoint): Refactor as spu_linux_nat_target
11613 methods.
11614 (_initialize_spu_nat): Adjust to C++ification.
11615
11616 * tilegx-linux-nat.c (tilegx_linux_nat_target): New class.
11617 (the_tilegx_linux_nat_target): New.
11618 (fetch_inferior_registers, store_inferior_registers):
11619 Refactor as methods.
11620 (_initialize_tile_linux_nat): Adjust to C++ification.
11621
11622 * xtensa-linux-nat.c (xtensa_linux_nat_target): New class.
11623 (the_xtensa_linux_nat_target): New.
11624 (xtensa_linux_fetch_inferior_registers)
11625 (xtensa_linux_store_inferior_registers): Refactor as
11626 xtensa_linux_nat_target methods.
11627 (_initialize_xtensa_linux_nat): Adjust to C++ification.
11628
11629 * fbsd-nat.c (USE_SIGTRAP_SIGINFO): Delete.
11630 (fbsd_pid_to_exec_file, fbsd_find_memory_regions)
11631 (fbsd_find_memory_regions, fbsd_info_proc, fbsd_xfer_partial)
11632 (fbsd_thread_alive, fbsd_pid_to_str, fbsd_thread_name)
11633 (fbsd_update_thread_list, fbsd_resume, fbsd_wait)
11634 (fbsd_stopped_by_sw_breakpoint)
11635 (fbsd_supports_stopped_by_sw_breakpoint, fbsd_follow_fork)
11636 (fbsd_insert_fork_catchpoint, fbsd_remove_fork_catchpoint)
11637 (fbsd_insert_vfork_catchpoint, fbsd_remove_vfork_catchpoint)
11638 (fbsd_post_startup_inferior, fbsd_post_attach)
11639 (fbsd_insert_exec_catchpoint, fbsd_remove_exec_catchpoint)
11640 (fbsd_set_syscall_catchpoint)
11641 (super_xfer_partial, super_resume, super_wait)
11642 (fbsd_supports_stopped_by_hw_breakpoint): Delete.
11643 (fbsd_handle_debug_trap): Remove target_ops parameter.
11644 (fbsd_nat_add_target): Delete.
11645 * fbsd-nat.h: Include "inf-ptrace.h".
11646 (fbsd_nat_add_target): Delete.
11647 (USE_SIGTRAP_SIGINFO): Define.
11648 (fbsd_nat_target): New class.
11649
11650 * amd64-bsd-nat.c (amd64bsd_fetch_inferior_registers)
11651 (amd64bsd_store_inferior_registers): Remove target_ops parameter.
11652 (amd64bsd_target): Delete.
11653 * amd64-bsd-nat.h: New file.
11654 * amd64-fbsd-nat.c: Include "amd64-bsd-nat.h" instead of
11655 "x86-bsd-nat.h".
11656 (amd64_fbsd_nat_target): New class.
11657 (the_amd64_fbsd_nat_target): New.
11658 (amd64fbsd_read_description): Refactor as method of
11659 amd64_fbsd_nat_target.
11660 (amd64_fbsd_nat_target::supports_stopped_by_hw_breakpoint): New.
11661 (_initialize_amd64fbsd_nat): Adjust to C++ification.
11662 * amd64-nat.h (amd64bsd_target): Delete function declaration.
11663 * i386-bsd-nat.c (i386bsd_fetch_inferior_registers)
11664 (i386bsd_store_inferior_registers): Remove target_ops parameter.
11665 (i386bsd_target): Delete.
11666 * i386-bsd-nat.h (i386bsd_target): Delete function declaration.
11667 (i386bsd_fetch_inferior_registers)
11668 (i386bsd_store_inferior_registers): Declare.
11669 (i386_bsd_nat_target): New class.
11670 * i386-fbsd-nat.c (i386_fbsd_nat_target): New class.
11671 (the_i386_fbsd_nat_target): New.
11672 (i386fbsd_resume, i386fbsd_read_description): Refactor as
11673 i386_fbsd_nat_target methods.
11674 (i386_fbsd_nat_target::supports_stopped_by_hw_breakpoint): New.
11675 (_initialize_i386fbsd_nat): Adjust to C++ification.
11676 * x86-bsd-nat.c (super_mourn_inferior): Delete.
11677 (x86bsd_mourn_inferior, x86bsd_target): Delete.
11678 (_initialize_x86_bsd_nat): Adjust to C++ification.
11679 * x86-bsd-nat.h: Include "x86-nat.h".
11680 (x86bsd_target): Delete declaration.
11681 (x86bsd_nat_target): New class.
11682
11683 * aarch64-fbsd-nat.c (aarch64_fbsd_nat_target): New class.
11684 (the_aarch64_fbsd_nat_target): New.
11685 (aarch64_fbsd_fetch_inferior_registers)
11686 (aarch64_fbsd_store_inferior_registers): Refactor as methods of
11687 aarch64_fbsd_nat_target.
11688 (_initialize_aarch64_fbsd_nat): Adjust to C++ification.
11689 * alpha-bsd-nat.c (alpha_bsd_nat_target): New class.
11690 (the_alpha_bsd_nat_target): New.
11691 (alphabsd_fetch_inferior_registers)
11692 (alphabsd_store_inferior_registers): Refactor as
11693 alpha_bsd_nat_target methods.
11694 (_initialize_alphabsd_nat): Refactor as methods of
11695 alpha_bsd_nat_target.
11696 * amd64-nbsd-nat.c: Include "amd64-bsd-nat.h".
11697 (the_amd64_nbsd_nat_target): New.
11698 (_initialize_amd64nbsd_nat): Adjust to C++ification.
11699 * amd64-obsd-nat.c: Include "amd64-bsd-nat.h".
11700 (the_amd64_obsd_nat_target): New.
11701 (_initialize_amd64obsd_nat): Adjust to C++ification.
11702 * arm-fbsd-nat.c (arm_fbsd_nat_target): New.
11703 (the_arm_fbsd_nat_target): New.
11704 (arm_fbsd_fetch_inferior_registers)
11705 (arm_fbsd_store_inferior_registers, arm_fbsd_read_description):
11706 (_initialize_arm_fbsd_nat): Refactor as methods of
11707 arm_fbsd_nat_target.
11708 (_initialize_arm_fbsd_nat): Adjust to C++ification.
11709 * arm-nbsd-nat.c (arm_netbsd_nat_target): New class.
11710 (the_arm_netbsd_nat_target): New.
11711 (armnbsd_fetch_registers, armnbsd_store_registers): Refactor as
11712 arm_netbsd_nat_target.
11713 (_initialize_arm_netbsd_nat): Adjust to C++ification.
11714 * hppa-nbsd-nat.c (hppa_nbsd_nat_target): New class.
11715 (the_hppa_nbsd_nat_target): New.
11716 (hppanbsd_fetch_registers, hppanbsd_store_registers): Refactor as
11717 hppa_nbsd_nat_target methods.
11718 (_initialize_hppanbsd_nat): Adjust to C++ification.
11719 * hppa-obsd-nat.c (hppa_obsd_nat_target): New class.
11720 (the_hppa_obsd_nat_target): New.
11721 (hppaobsd_fetch_registers, hppaobsd_store_registers): Refactor as
11722 methods of hppa_obsd_nat_target.
11723 (_initialize_hppaobsd_nat): Adjust to C++ification. Use
11724 add_target.
11725 * i386-nbsd-nat.c (the_i386_nbsd_nat_target): New.
11726 (_initialize_i386nbsd_nat): Adjust to C++ification. Use
11727 add_target.
11728 * i386-obsd-nat.c (the_i386_obsd_nat_target): New.
11729 (_initialize_i386obsd_nat): Use add_target.
11730 * m68k-bsd-nat.c (m68k_bsd_nat_target): New class.
11731 (the_m68k_bsd_nat_target): New.
11732 (m68kbsd_fetch_inferior_registers)
11733 (m68kbsd_store_inferior_registers): Refactor as methods of
11734 m68k_bsd_nat_target.
11735 (_initialize_m68kbsd_nat): Adjust to C++ification.
11736 * mips-fbsd-nat.c (mips_fbsd_nat_target): New class.
11737 (the_mips_fbsd_nat_target): New.
11738 (mips_fbsd_fetch_inferior_registers)
11739 (mips_fbsd_store_inferior_registers): Refactor as methods of
11740 mips_fbsd_nat_target.
11741 (_initialize_mips_fbsd_nat): Adjust to C++ification. Use
11742 add_target.
11743 * mips-nbsd-nat.c (mips_nbsd_nat_target): New class.
11744 (the_mips_nbsd_nat_target): New.
11745 (mipsnbsd_fetch_inferior_registers)
11746 (mipsnbsd_store_inferior_registers): Refactor as methods of
11747 mips_nbsd_nat_target.
11748 (_initialize_mipsnbsd_nat): Adjust to C++ification.
11749 * mips64-obsd-nat.c (mips64_obsd_nat_target): New class.
11750 (the_mips64_obsd_nat_target): New.
11751 (mips64obsd_fetch_inferior_registers)
11752 (mips64obsd_store_inferior_registers): Refactor as methods of
11753 mips64_obsd_nat_target.
11754 (_initialize_mips64obsd_nat): Adjust to C++ification. Use
11755 add_target.
11756 * nbsd-nat.c (nbsd_pid_to_exec_file): Refactor as method of
11757 nbsd_nat_target.
11758 * nbsd-nat.h: Include "inf-ptrace.h".
11759 (nbsd_nat_target): New class.
11760 * obsd-nat.c (obsd_pid_to_str, obsd_update_thread_list)
11761 (obsd_wait): Refactor as methods of obsd_nat_target.
11762 (obsd_add_target): Delete.
11763 * obsd-nat.h: Include "inf-ptrace.h".
11764 (obsd_nat_target): New class.
11765 * ppc-fbsd-nat.c (ppc_fbsd_nat_target): New class.
11766 (the_ppc_fbsd_nat_target): New.
11767 (ppcfbsd_fetch_inferior_registers)
11768 (ppcfbsd_store_inferior_registers): Refactor as methods of
11769 ppc_fbsd_nat_target.
11770 (_initialize_ppcfbsd_nat): Adjust to C++ification. Use
11771 add_target.
11772 * ppc-nbsd-nat.c (ppc_nbsd_nat_target): New class.
11773 (the_ppc_nbsd_nat_target): New.
11774 (ppcnbsd_fetch_inferior_registers)
11775 (ppcnbsd_store_inferior_registers): Refactor as methods of
11776 ppc_nbsd_nat_target.
11777 (_initialize_ppcnbsd_nat): Adjust to C++ification.
11778 * ppc-obsd-nat.c (ppc_obsd_nat_target): New class.
11779 (the_ppc_obsd_nat_target): New.
11780 (ppcobsd_fetch_registers, ppcobsd_store_registers): Refactor as
11781 methods of ppc_obsd_nat_target.
11782 (_initialize_ppcobsd_nat): Adjust to C++ification. Use
11783 add_target.
11784 * sh-nbsd-nat.c (sh_nbsd_nat_target): New class.
11785 (the_sh_nbsd_nat_target): New.
11786 (shnbsd_fetch_inferior_registers)
11787 (shnbsd_store_inferior_registers): Refactor as methods of
11788 sh_nbsd_nat_target.
11789 (_initialize_shnbsd_nat): Adjust to C++ification.
11790 * sparc-nat.c (sparc_xfer_wcookie): Make extern.
11791 (inf_ptrace_xfer_partial): Delete.
11792 (sparc_xfer_partial, sparc_target): Delete.
11793 * sparc-nat.h (sparc_fetch_inferior_registers)
11794 (sparc_store_inferior_registers, sparc_xfer_wcookie): Declare.
11795 (sparc_target): Delete function declaration.
11796 (sparc_target): New template class.
11797 * sparc-nbsd-nat.c (the_sparc_nbsd_nat_target): New.
11798 (_initialize_sparcnbsd_nat): Adjust to C++ification.
11799 * sparc64-fbsd-nat.c (the_sparc64_fbsd_nat_target): New.
11800 (_initialize_sparc64fbsd_nat): Adjust to C++ification. Use
11801 add_target.
11802 * sparc64-nbsd-nat.c (the_sparc64_nbsd_nat_target): New.
11803 (_initialize_sparc64nbsd_nat): Adjust to C++ification.
11804 * sparc64-obsd-nat.c (the_sparc64_obsd_nat_target): New.
11805 (_initialize_sparc64obsd_nat): Adjust to C++ification. Use
11806 add_target.
11807 * vax-bsd-nat.c (vax_bsd_nat_target): New class.
11808 (the_vax_bsd_nat_target): New.
11809 (vaxbsd_fetch_inferior_registers)
11810 (vaxbsd_store_inferior_registers): Refactor as vax_bsd_nat_target
11811 methods.
11812 (_initialize_vaxbsd_nat): Adjust to C++ification.
11813
11814 * bsd-kvm.c (bsd_kvm_target): New class.
11815 (bsd_kvm_ops): Now a bsd_kvm_target.
11816 (bsd_kvm_open, bsd_kvm_close, bsd_kvm_xfer_partial)
11817 (bsd_kvm_files_info, bsd_kvm_fetch_registers)
11818 (bsd_kvm_thread_alive, bsd_kvm_pid_to_str): Refactor as methods of
11819 bsd_kvm_target.
11820 (bsd_kvm_return_one): Delete.
11821 (bsd_kvm_add_target): Adjust to C++ification.
11822
11823 * nto-procfs.c (nto_procfs_target, nto_procfs_target_native)
11824 (nto_procfs_target_procfs): New classes.
11825 (procfs_open_1, procfs_thread_alive, procfs_update_thread_list)
11826 (procfs_files_info, procfs_pid_to_exec_file, procfs_attach)
11827 (procfs_post_attach, procfs_wait, procfs_fetch_registers)
11828 (procfs_xfer_partial, procfs_detach, procfs_insert_breakpoint)
11829 (procfs_remove_breakpoint, procfs_insert_hw_breakpoint)
11830 (procfs_remove_hw_breakpoint, procfs_resume)
11831 (procfs_mourn_inferior, procfs_create_inferior, procfs_interrupt)
11832 (procfs_kill_inferior, procfs_store_registers)
11833 (procfs_pass_signals, procfs_pid_to_str, procfs_can_run): Refactor
11834 as methods of nto_procfs_target.
11835 (nto_procfs_ops): Now an nto_procfs_target_procfs.
11836 (nto_native_ops): Delete.
11837 (procfs_open, procfs_native_open): Delete.
11838 (nto_native_ops): Now an nto_procfs_target_native.
11839 (init_procfs_targets): Adjust to C++ification.
11840 (procfs_can_use_hw_breakpoint, procfs_remove_hw_watchpoint)
11841 (procfs_insert_hw_watchpoint, procfs_stopped_by_watchpoint):
11842 Refactor as methods of nto_procfs_target.
11843
11844 * go32-nat.c (go32_nat_target): New class.
11845 (the_go32_nat_target): New.
11846 (go32_attach, go32_resume, go32_wait, go32_fetch_registers)
11847 (go32_store_registers, go32_xfer_partial, go32_files_info)
11848 (go32_kill_inferior, go32_create_inferior, go32_mourn_inferior)
11849 (go32_terminal_init, go32_terminal_info, go32_terminal_inferior)
11850 (go32_terminal_ours, go32_pass_ctrlc, go32_thread_alive)
11851 (go32_pid_to_str): Refactor as methods of go32_nat_target.
11852 (go32_target): Delete.
11853 (_initialize_go32_nat): Adjust to C++ification.
11854
11855 * gnu-nat.c (gnu_wait, gnu_resume, gnu_kill_inferior)
11856 (gnu_mourn_inferior, gnu_create_inferior, gnu_attach, gnu_detach)
11857 (gnu_stop, gnu_thread_alive, gnu_xfer_partial)
11858 (gnu_find_memory_regions, gnu_pid_to_str): Refactor as methods of
11859 gnu_nat_target.
11860 (gnu_target): Delete.
11861 * gnu-nat.h (gnu_target): Delete.
11862 (gnu_nat_target): New class.
11863 * i386-gnu-nat.c (gnu_base_target): New.
11864 (i386_gnu_nat_target): New class.
11865 (the_i386_gnu_nat_target): New.
11866 (_initialize_i386gnu_nat): Adjust to C++ification.
11867
11868 2018-05-02 Pedro Alves <palves@redhat.com>
11869
11870 * bfd-target.c (target_bfd_xclose): Rename to ...
11871 (target_bfd_close): ... this.
11872 (target_bfd_reopen): Adjust.
11873 * target.c (target_close): Remove references to to_xclose.
11874 * target.h (target_ops::to_xclose): Delete.
11875 (target_ops::to_close): Update comments.
11876
11877 2018-05-02 Pedro Alves <palves@redhat.com>
11878
11879 * alpha-linux-nat.c: Include "linux-nat-trad.h" instead of
11880 "linux-nat.h".
11881 * configure.nat (alpha-linux, linux-mips): Add linux-nat-trad.o.
11882 * inf-ptrace.c (inf_ptrace_register_u_offset)
11883 (inf_ptrace_fetch_register, inf_ptrace_fetch_registers)
11884 (inf_ptrace_store_register, inf_ptrace_store_registers)
11885 (inf_ptrace_trad_target): Move to ...
11886 * linux-nat-trad.c: ... this new file.
11887 * linux-nat-trad.h: New file.
11888 * linux-nat.c (linux_target_install_ops): Make extern.
11889 (linux_trad_target): Delete.
11890 * linux-nat.h (linux_trad_target): Delete declaration.
11891 (linux_target_install_ops): Declare.
11892 * mips-linux-nat.c: Include "linux-nat-trad.h" instead of
11893 "linux-nat.h".
11894
11895 2018-05-02 Pedro Alves <palves@redhat.com>
11896
11897 * i386-sol2-nat.c (_initialize_amd64_sol2_nat): Don't call
11898 procfs_target/add_target here.
11899 * procfs.c (procfs_target): Make static.
11900 (_initialize_procfs): Call add_target here.
11901 * procfs.h (struct target_ops): Remove forward declaration.
11902 (procfs_target): Remove declaration.
11903 * sparc-sol2-nat.c (_initialize_sparc_sol2_nat): Delete.
11904
11905 2018-05-02 Pedro Alves <palves@redhat.com>
11906
11907 * procfs.c (procfs_stopped_by_watchpoint)
11908 (procfs_insert_watchpoint, procfs_remove_watchpoint)
11909 (procfs_region_ok_for_hw_watchpoint, procfs_stopped_data_address):
11910 Forward declare.
11911 (procfs_use_watchpoints): Delete, move contents...
11912 (procfs_target): ... here.
11913 * procfs.h (procfs_use_watchpoints): Delete declaration.
11914 * i386-sol2-nat.c (_initialize_amd64_sol2_nat): Don't call
11915 procfs_use_watchpoints.
11916 * sparc-sol2-nat.c (_initialize_sparc_sol2_nat): Don't call
11917 procfs_use_watchpoints.
11918
11919 2018-05-02 Tom Tromey <tom@tromey.com>
11920
11921 PR python/20084:
11922 * python/python.c (gdbpy_parameter_value): Handle var_zuinteger
11923 and var_zuinteger_unlimited.
11924 * python/py-param.c (struct parm_constant): Add PARAM_ZUINTEGER
11925 and PARAM_ZUINTEGER_UNLIMITED.
11926 (set_parameter_value): Handle var_zuinteger and
11927 var_zuinteger_unlimited.
11928 (add_setshow_generic): Likewise.
11929 (parmpy_init): Likewise.
11930
11931 2018-04-28 Dan Robertson <danlrobertson89@gmail.com>
11932
11933 PR rust/23124
11934 * gdb/rust-exp.y (convert_params_to_types): Ensure that the params
11935 pointer is not null before dereferencing it.
11936
11937 2018-04-30 Tom Tromey <tom@tromey.com>
11938
11939 * darwin-nat-info.c (darwin_debug_regions_recurse): Remove use of
11940 is_mi_like_p.
11941
11942 2018-04-30 Tom Tromey <tom@tromey.com>
11943
11944 * breakpoint.c (mention): Remove use of is_mi_like_p.
11945 (print_mention_ranged_breakpoint): Likewise.
11946 * break-catch-throw.c (print_it_exception_catchpoint): Remove use
11947 of is_mi_like_p.
11948
11949 2018-04-30 Tom Tromey <tom@tromey.com>
11950
11951 * tracepoint.c (tvariables_info_1): Remove use of is_mi_like_p.
11952
11953 2018-04-30 Tom Tromey <tom@tromey.com>
11954
11955 * spu-tdep.c (info_spu_mailbox_list, info_spu_dma_cmdlist)
11956 (info_spu_event_command): Remove some uses of is_mi_like_p.
11957
11958 2018-04-30 Tom Tromey <tom@tromey.com>
11959
11960 * python/py-framefilter.c (py_print_single_arg)
11961 (enumerate_locals, py_print_args, py_print_frame): Remove some
11962 uses of is_mi_like_p.
11963
11964 2018-04-30 Tom Tromey <tom@tromey.com>
11965
11966 * ui-out.c: Update.
11967 * cli-out.h (cli_ui_out::do_is_mi_like_p): Update.
11968 * ui-out.h (ui_out::is_mi_like_p): Now const.
11969 (ui_out::do_is_mi_like_p): Now const.
11970 * mi/mi-out.h (mi_ui_out::do_is_mi_like_p): Update.
11971
11972 2018-04-30 Tom Tromey <tom@tromey.com>
11973
11974 * varobj.c (varobj_set_visualizer): Use new_reference.
11975 * python/python.c (gdbpy_decode_line): Use new_reference.
11976 * python/py-cmd.c (cmdpy_function, cmdpy_completer_helper): Use
11977 new_reference.
11978
11979 2018-04-30 Tom Tromey <tom@tromey.com>
11980
11981 * varobj.c (install_new_value): Use new_reference.
11982 * value.h (value_incref): Return void. Swap intro comment with
11983 value_decref.
11984 * value.c (set_value_parent): Use new_reference.
11985 (value_incref): Return void. Update intro comment.
11986 (release_value): Use new_reference.
11987 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Use new_reference.
11988
11989 2018-04-30 Tom Tromey <tom@tromey.com>
11990
11991 * symfile-mem.c (symbol_file_add_from_memory): Use new_reference.
11992 * gdb_bfd.h (new_bfd_ref): Remove.
11993 (gdb_bfd_open): Update comment.
11994 * gdb_bfd.c (gdb_bfd_open, gdb_bfd_fopen, gdb_bfd_openr)
11995 (gdb_bfd_openw, gdb_bfd_openr_iovec, gdb_bfd_record_inclusion)
11996 (gdb_bfd_fdopenr): Use new_reference.
11997 * exec.c (exec_file_attach): Use new_reference.
11998
11999 2018-04-30 Tom Tromey <tom@tromey.com>
12000
12001 * common/gdb_ref_ptr.h (ref_ptr::new_reference): New static
12002 method.
12003
12004 2018-04-30 Tom Tromey <tom@tromey.com>
12005
12006 * jit.c (jit_read_code_entry): Use type_align.
12007 * i386-tdep.c (i386_gdbarch_init): Don't call
12008 set_gdbarch_long_long_align_bit.
12009 * gdbarch.sh: Remove long_long_align_bit.
12010 * gdbarch.c, gdbarch.h: Rebuild.
12011 * arc-tdep.c (arc_type_align): New function.
12012 (arc_gdbarch_init): Use arc_type_align. Don't call
12013 set_gdbarch_long_long_align_bit.
12014
12015 2018-04-30 Tom Tromey <tom@tromey.com>
12016
12017 * rust-lang.c (rust_type_alignment): Remove.
12018 (rust_composite_type): Use type_align.
12019
12020 2018-04-30 Tom Tromey <tom@tromey.com>
12021
12022 * NEWS: Mention Type.align.
12023 * python/py-type.c (typy_get_alignof): New function.
12024 (type_object_getset): Add "alignof".
12025
12026 2018-04-30 Tom Tromey <tom@tromey.com>
12027
12028 PR exp/17095:
12029 * NEWS: Update.
12030 * std-operator.def (UNOP_ALIGNOF): New operator.
12031 * expprint.c (dump_subexp_body_standard) <case UNOP_ALIGNOF>:
12032 New.
12033 * eval.c (evaluate_subexp_standard) <case UNOP_ALIGNOF>: New.
12034 * c-lang.c (c_op_print_tab): Add alignof.
12035 * c-exp.y (ALIGNOF): New token.
12036 (exp): Add "ALIGNOF" production.
12037 (ident_tokens): Add _Alignof and alignof.
12038
12039 2018-04-30 Tom Tromey <tom@tromey.com>
12040
12041 * i386-tdep.c (i386_type_align): New function.
12042 (i386_gdbarch_init): Update.
12043 * gdbarch.sh (type_align): New method.
12044 * gdbarch.c, gdbarch.h: Rebuild.
12045 * arch-utils.h (default_type_align): Declare.
12046 * arch-utils.c (default_type_align): New function.
12047 * gdbtypes.h (TYPE_ALIGN_BITS): New define.
12048 (struct type) <align_log2>: New field.
12049 <instance_flags>: Now a bitfield.
12050 (TYPE_RAW_ALIGN): New macro.
12051 (type_align, type_raw_align, set_type_align): Declare.
12052 * gdbtypes.c (type_align, type_raw_align, set_type_align): New
12053 functions.
12054 * dwarf2read.c (quirk_rust_enum): Set type alignment.
12055 (get_alignment, maybe_set_alignment): New functions.
12056 (read_structure_type, read_enumeration_type, read_array_type)
12057 (read_set_type, read_tag_pointer_type, read_tag_reference_type)
12058 (read_subrange_type, read_base_type): Set type alignment.
12059
12060 2018-04-30 Simon Marchi <simon.marchi@ericsson.com>
12061
12062 * dwarf2read.c (read_index_from_section): Use bool.
12063
12064 2018-04-29 Fabian Groffen <grobian@gentoo.org>
12065
12066 PR gdb/22950
12067 * proc-events.c (init_syscall_table): Guard usage os SYS_uuidsys
12068 with #ifdef.
12069
12070 2018-04-29 John Reiser <jreiser@BitWagon.com>
12071
12072 PR build/22873
12073 * gdb/Makefile.in: (.c:.l, .c:.y): Write the target only in the
12074 last step, and do it atomically.
12075
12076 2018-04-27 Alexandre Oliva <aoliva@redhat.com>
12077
12078 * compile/compile-c-types.c (convert_int, convert_float):
12079 Update for C FE v1.
12080
12081 2018-04-27 Tom Tromey <tom@tromey.com>
12082
12083 PR rust/22545:
12084 * rust-lang.c (rust_inclusive_range_type_p): New function.
12085 (rust_range): Handle inclusive ranges.
12086 (rust_compute_range): Likewise.
12087 * rust-exp.y (struct rust_op) <inclusive>: New field.
12088 (DOTDOTEQ): New constant.
12089 (range_expr): Add "..=" productions.
12090 (operator_tokens): Add "..=" token.
12091 (ast_range): Add "inclusive" parameter.
12092 (convert_ast_to_expression) <case OP_RANGE>: Handle inclusive
12093 ranges.
12094 * parse.c (operator_length_standard) <case OP_RANGE>: Handle new
12095 bounds values.
12096 * expression.h (enum range_type) <NONE_BOUND_DEFAULT_EXCLUSIVE,
12097 LOW_BOUND_DEFAULT_EXCLUSIVE>: New constants.
12098 Update comments.
12099 * expprint.c (print_subexp_standard): Handle new bounds values.
12100 (dump_subexp_body_standard): Likewise.
12101
12102 2018-04-27 Tom Tromey <tom@tromey.com>
12103
12104 * configure: Rebuild.
12105 * warning.m4 (AM_GDB_WARNINGS): Add -Wsuggest-override.
12106 * dwarf2loc.c (class dwarf_evaluate_loc_desc): Use "override", not
12107 "OVERRIDE".
12108 (class symbol_needs_eval_context): Likewise.
12109 * dwarf2read.c (mock_mapped_index::symbol_name_count)
12110 (mock_mapped_index::symbol_name_at): Use "override". Remove
12111 "virtual".
12112 * dwarf2-frame.c (dwarf_expr_executor::get_addr_index): Use
12113 "override".
12114 (class dwarf_expr_executor): Use "override", not "OVERRIDE".
12115 * aarch64-tdep.c (instruction_reader::read): Use "override".
12116 (instruction_reader_test::read): Likewise.
12117 * arm-tdep.c (instruction_reader::read): Use "override".
12118 (instruction_reader_thumb::read): Likewise.
12119
12120 2018-04-26 Andrzej Kaczmarek <andrzej.kaczmarek@codecoup.pl>
12121
12122 PR remote/9665
12123 * remote.c (send_g_packet): Use putpkt/getpkt/packet_check_result
12124 instead of remote_send.
12125 (remote_send): Remove.
12126
12127 2018-04-26 Pedro Alves <palves@redhat.com>
12128
12129 * elfread.c (elf_gnu_ifunc_resolver_return_stop): Use
12130 find_function_start_sal instead of find_pc_line.
12131
12132 2018-04-26 Pedro Alves <palves@redhat.com>
12133
12134 * breakpoint.c (set_breakpoint_location_function): Handle
12135 mst_data_gnu_ifunc.
12136 * c-exp.y (variable production): Handle mst_data_gnu_ifunc.
12137 * elfread.c (elf_symtab_read): Give data symbols with
12138 BSF_GNU_INDIRECT_FUNCTION set mst_data_gnu_ifunc type.
12139 (elf_rel_plt_read): Update comment.
12140 * linespec.c (convert_linespec_to_sals): Handle
12141 mst_data_gnu_ifunc.
12142 (minsym_found): Handle mst_data_gnu_ifunc.
12143 * minsyms.c (msymbol_is_function, minimal_symbol_reader::record)
12144 (find_solib_trampoline_target): Handle mst_data_gnu_ifunc.
12145 * parse.c (find_minsym_type_and_address): Handle
12146 mst_data_gnu_ifunc.
12147 * symmisc.c (dump_msymbols): Handle mst_data_gnu_ifunc.
12148 * symtab.c (find_gnu_ifunc): Handle mst_data_gnu_ifunc.
12149 * symtab.h (minimal_symbol_type) <mst_text_gnu_ifunc>: Update
12150 comment.
12151 <mst_data_gnu_ifunc>: New enumerator.
12152
12153 2018-04-26 Pedro Alves <palves@redhat.com>
12154
12155 * minsyms.c (lookup_minimal_symbol_by_pc_section_1): Rename to ...
12156 (lookup_minimal_symbol_by_pc_section): ... this. Replace
12157 'want_trampoline' parameter by a lookup_msym_prefer parameter.
12158 Handle it.
12159 (lookup_minimal_symbol_by_pc_section): Delete old implementation.
12160 (lookup_minimal_symbol_by_pc): Adjust.
12161 (in_gnu_ifunc_stub): Prefer GNU ifunc symbols.
12162 (lookup_solib_trampoline_symbol_by_pc): Adjust.
12163 * minsyms.h (lookup_msym_prefer): New enum.
12164 (lookup_minimal_symbol_by_pc_section): Replace 'want_trampoline'
12165 parameter by a lookup_msym_prefer parameter.
12166
12167 2018-04-26 Pedro Alves <palves@redhat.com>
12168
12169 * elfread.c (elf_gnu_ifunc_record_cache): Check if the symbol name
12170 ends in "@plt" instead of looking at the symbol's section.
12171
12172 2018-04-26 Pedro Alves <palves@redhat.com>
12173
12174 * blockframe.c (cache_pc_function_is_gnu_ifunc): Delete. Remove
12175 all references.
12176 (find_pc_partial_function_gnu_ifunc): Rename to ...
12177 (find_pc_partial_function): ... this, and remove references to
12178 'is_gnu_ifunc_p'.
12179 (find_pc_partial_function): Delete old implementation.
12180 * symtab.h (find_pc_partial_function_gnu_ifunc): Delete.
12181
12182 2018-04-26 Pedro Alves <palves@redhat.com>
12183
12184 * linespec.c (struct bound_minimal_symbol_search_key): New.
12185 (convert_linespec_to_sals): Sort minimal symbols earlier. Don't
12186 skip first line if we found a GNU ifunc minimal symbol by name.
12187 (compare_msymbols): Change parameters to work with a destructured
12188 lhs minsym.
12189 (compare_msymbols_for_qsort, compare_msymbols_for_bsearch): New
12190 functions.
12191
12192 2018-04-26 Pedro Alves <palves@redhat.com>
12193
12194 * breakpoint.c (set_breakpoint_location_function): Don't resolve
12195 ifunc targets here. Instead, if we have an ifunc minsym, use its
12196 address/name.
12197 (add_location_to_breakpoint): Store the minsym and the objfile in
12198 the breakpoint location.
12199 * breakpoint.h (bp_location) <msymbol, objfile>: New fields.
12200 * linespec.c (minsym_found): Resolve GNU ifunc targets here.
12201 Record the minsym in the sal.
12202 * symtab.h (symtab_and_line) <msymbol>: New field.
12203
12204 2018-04-26 Pedro Alves <palves@redhat.com>
12205
12206 * elfread.c (elf_gnu_ifunc_resolve_by_got): Don't write to *ADDR_P
12207 unless we actually resolved the ifunc.
12208
12209 2018-04-26 Pedro Alves <palves@redhat.com>
12210
12211 * c-exp.y (variable production): Prefer ifunc minsyms over
12212 regular function symbols.
12213 * symtab.c (find_gnu_ifunc): New function.
12214 * minsyms.h (lookup_msym_prefer): New enum.
12215 (lookup_minimal_symbol_by_pc_section): Replace 'want_trampoline'
12216 parameter by a lookup_msym_prefer parameter.
12217 * symtab.h (find_gnu_ifunc): New declaration.
12218
12219 2018-04-26 Pedro Alves <palves@redhat.com>
12220
12221 * blockframe.c (find_gnu_ifunc_target_type): New function.
12222 (find_function_type): New.
12223 * eval.c (evaluate_var_msym_value): For GNU ifunc types, always
12224 return a value with a memory address.
12225 (eval_call): For calls to GNU ifunc functions, try to find the
12226 type of the target function from the type that the resolver
12227 returns.
12228 * gdbtypes.c (objfile_type): Don't install a return type for ifunc
12229 symbols.
12230 * infcall.c (find_function_return_type): Delete.
12231 (find_function_addr): Add 'function_type' parameter. For calls to
12232 GNU ifunc functions, try to find the type of the target function
12233 from the type that the resolver returns, and return it via
12234 FUNCTION_TYPE.
12235 (call_function_by_hand_dummy): Adjust to use the function type
12236 returned by find_function_addr.
12237 (find_function_addr): Add 'function_type' parameter and move
12238 description here.
12239 * symtab.h (find_function_type, find_gnu_ifunc_target_type): New
12240 declarations.
12241
12242 2018-04-26 Pedro Alves <palves@redhat.com>
12243
12244 * c-exp.y (variable production): Skip finding an alias for ifunc
12245 symbols.
12246
12247 2018-04-26 Pedro Alves <palves@redhat.com>
12248
12249 * elfread.c (elf_rel_plt_read): Look for relocations for .got.plt too.
12250
12251 2018-04-25 Pedro Alves <palves@redhat.com>
12252
12253 * infcmd.c (kill_command): Print the pid as string, not the whole
12254 thread's ptid. Add comment. s/has been killed/killed/ in output
12255 message.
12256 * remote.c (remote_detach_1): Print the pid as string, not the
12257 whole thread's ptid.
12258
12259 2018-04-24 Jan Kratochvil <jan.kratochvil@redhat.com>
12260 Sergio Durigan Junior <sergiodj@redhat.com>
12261 Pedro Alves <palves@redhat.com>
12262
12263 * infcmd.c (kill_command): Print message when inferior has
12264 been killed.
12265 * inferior.c (print_inferior_events): Remove 'static'. Set as
12266 '1'.
12267 (add_inferior): Improve message printed when
12268 'print_inferior_events' is on.
12269 (exit_inferior): Remove message printed when
12270 'print_inferior_events' is on.
12271 (detach_inferior): Improve message printed when
12272 'print_inferior_events' is on.
12273 (initialize_inferiors): Use 'add_inferior_silent' to set
12274 'current_inferior_'.
12275 * inferior.h (print_inferior_events): Declare here as
12276 'extern'.
12277 * infrun.c (follow_fork_inferior): Print '[Attaching...]' or
12278 '[Detaching...]' messages when 'print_inferior_events' is on.
12279 Use 'add_thread_silent' instead of 'add_thread'. Add '[' and ']'
12280 as prefix/suffix for messages. Remove periods. Fix erroneous
12281 'Detaching after fork from child...', replace it by '... from
12282 parent...'.
12283 (handle_vfork_child_exec_or_exit): Add '[' and ']' as
12284 prefix/suffix when printing 'Detaching...' messages. Print
12285 them when 'print_inferior_events' is on.
12286 * remote.c (remote_detach_1): Print message when detaching
12287 from inferior and '!is_fork_parent'.
12288
12289 2018-04-24 Tom Tromey <tom@tromey.com>
12290
12291 * cli-out.h: Reindent.
12292
12293 2018-04-24 Tom Tromey <tom@tromey.com>
12294
12295 * cli-out.c (cli_ui_out::out_field_fmt): Remove.
12296 (cli_ui_out::do_field_string): Use fputs_filtered.
12297 * cli-out.h (class cli_ui_out) <out_field_fmt>: Remove.
12298
12299 2018-04-23 Tom Tromey <tom@tromey.com>
12300
12301 * guile/scm-frame.c (gdbscm_frame_read_var): Use
12302 gdb::unique_xmalloc_ptr.
12303
12304 2018-04-23 Tom Tromey <tom@tromey.com>
12305
12306 * configure: Rebuild.
12307
12308 2018-04-22 Rajendra SY <rajendra.sy@gmail.com>
12309
12310 PR gdb/23095
12311 * gdb/testsuite/gdb.base/break-probes.exp: Pass shlib_load to
12312 prepare_for_testing. Set normal_bp to r_debug_state if target
12313 is bsd.
12314
12315 2018-04-21 Pedro Alves <palves@redhat.com>
12316 Rajendra SY <rajendra.sy@gmail.com>
12317
12318 * inf-ptrace.c (inf_ptrace_attach): Mark the thread as executing.
12319 * remote.c (extended_remote_attach): In all-stop mode, mark the
12320 thread as executing.
12321
12322 2018-04-19 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12323
12324 * thread.c (thread_apply_all_command): Fix comment.
12325 (thread_command): Fix comment.
12326
12327 2018-04-10 Alan Hayward <alan.hayward@arm.com>
12328
12329 * common/tdesc.h (tdesc_create_feature): Remove xml filename
12330 parameter.
12331 * features/aarch64-core.c (create_feature_aarch64_core):
12332 Regenerate.
12333 * features/aarch64-fpu.c (create_feature_aarch64_fpu):
12334 Likewise.
12335 * features/i386/32bit-avx.c (create_feature_i386_32bit_avx):
12336 Likewise.
12337 * features/i386/32bit-avx512.c
12338 (create_feature_i386_32bit_avx512): Likewise.
12339 * features/i386/32bit-core.c (create_feature_i386_32bit_core):
12340 Likewise.
12341 * features/i386/32bit-linux.c (create_feature_i386_32bit_linux):
12342 Likewise.
12343 * features/i386/32bit-mpx.c (create_feature_i386_32bit_mpx):
12344 Likewise.
12345 * features/i386/32bit-pkeys.c (create_feature_i386_32bit_pkeys):
12346 Likewise.
12347 * features/i386/32bit-sse.c (create_feature_i386_32bit_sse):
12348 Likewise.
12349 * features/i386/64bit-avx.c (create_feature_i386_64bit_avx):
12350 Likewise.
12351 * features/i386/64bit-avx512.c
12352 (create_feature_i386_64bit_avx512): Likewise.
12353 * features/i386/64bit-core.c (create_feature_i386_64bit_core):
12354 Likewise.
12355 * features/i386/64bit-linux.c (create_feature_i386_64bit_linux):
12356 Likewise.
12357 * features/i386/64bit-mpx.c (create_feature_i386_64bit_mpx):
12358 Likewise.
12359 * features/i386/64bit-pkeys.c (create_feature_i386_64bit_pkeys):
12360 Likewise.
12361 * features/i386/64bit-segments.c
12362 (create_feature_i386_64bit_segments): Likewise.
12363 * features/i386/64bit-sse.c (create_feature_i386_64bit_sse):
12364 Likewise.
12365 * features/i386/x32-core.c
12366 (create_feature_i386_x32_core): Likewise.
12367 * features/tic6x-c6xp.c (create_feature_tic6x_c6xp): Likewise.
12368 * features/tic6x-core.c (create_feature_tic6x_core): Likewise.
12369 * features/tic6x-gp.c (create_feature_tic6x_gp): Likewise.
12370 * target-descriptions.c: In generated code, don't pass xml
12371 filename.
12372
12373 2018-04-18 Alan Hayward <alan.hayward@arm.com>
12374
12375 * common/tdesc.c (print_xml_feature::visit_pre): Add xml parsing.
12376 (print_xml_feature::visit_post): Likewise.
12377 (print_xml_feature::visit): Likewise.
12378 * common/tdesc.h (tdesc_get_features_xml): Use const tdesc.
12379 (print_xml_feature): Add new class.
12380 * regformats/regdat.sh: Null xmltarget on feature targets.
12381 * target-descriptions.c (struct target_desc): Add xmltarget.
12382 (maintenance_check_tdesc_xml_convert): Add unittest function.
12383 (tdesc_get_features_xml): Add function to get xml.
12384 (maintenance_check_xml_descriptions): Test xml generation.
12385 * xml-tdesc.c (string_read_description_xml): Add function.
12386 * xml-tdesc.h (string_read_description_xml): Add declaration.
12387
12388 2018-04-18 Alan Hayward <alan.hayward@arm.com>
12389
12390 * features/Makefile: Add feature marker to targets with new style
12391 target descriptions.
12392 * regformats/aarch64.dat: Regenerate.
12393 * regformats/i386/amd64-avx-avx512-linux.dat: Likewise.
12394 * regformats/i386/amd64-avx-linux.dat: Likewise.
12395 * regformats/i386/amd64-avx-mpx-avx512-pku-linux.dat: Likewise.
12396 * regformats/i386/amd64-avx-mpx-linux.dat: Likewise.
12397 * regformats/i386/amd64-linux.dat: Likewise.
12398 * regformats/i386/amd64-mpx-linux.dat: Likewise.
12399 * regformats/i386/amd64.dat: Likewise.
12400 * regformats/i386/i386-avx-avx512-linux.dat: Likewise.
12401 * regformats/i386/i386-avx-linux.dat: Likewise.
12402 * regformats/i386/i386-avx-mpx-avx512-pku-linux.dat: Likewise.
12403 * regformats/i386/i386-avx-mpx-linux.dat: Likewise.
12404 * regformats/i386/i386-linux.dat: Likewise.
12405 * regformats/i386/i386-mmx-linux.dat: Likewise.
12406 * regformats/i386/i386-mpx-linux.dat: Likewise.
12407 * regformats/i386/i386.dat: Likewise.
12408 * regformats/i386/x32-avx-avx512-linux.dat: Likewise.
12409 * regformats/i386/x32-avx-linux.dat: Likewise.
12410 * regformats/i386/x32-linux.dat: Likewise.
12411 * regformats/tic6x-c62x-linux.dat: Likewise.
12412 * regformats/tic6x-c64x-linux.dat: Likewise.
12413 * regformats/tic6x-c64xp-linux.dat: Likewise.
12414 * regformats/regdat.sh: Parse feature marker.
12415
12416 2018-04-18 Alan Hayward <alan.hayward@arm.com>
12417
12418 * common/tdesc.h (tdesc_architecture_name): Add new declaration.
12419 (tdesc_osabi_name): Likewise.
12420 * target-descriptions.c (tdesc_architecture_name): Add new
12421 function.
12422 (tdesc_osabi_name): Likewise.
12423
12424 2018-04-18 Alan Hayward <alan.hayward@arm.com>
12425
12426 * common/tdesc.c (tdesc_predefined_type): Move to here.
12427 (tdesc_named_type): Likewise.
12428 (tdesc_create_vector): Likewise.
12429 (tdesc_create_struct): Likewise.
12430 (tdesc_set_struct_size): Likewise.
12431 (tdesc_create_union): Likewise.
12432 (tdesc_create_flags): Likewise.
12433 (tdesc_create_enum): Likewise.
12434 (tdesc_add_field): Likewise.
12435 (tdesc_add_typed_bitfield): Likewise.
12436 (tdesc_add_bitfield): Likewise.
12437 (tdesc_add_flag): Likewise.
12438 (tdesc_add_enum_value): Likewise.
12439 * common/tdesc.h (struct tdesc_type_builtin): Likewise.
12440 (struct tdesc_type_vector): Likewise.
12441 (struct tdesc_type_field): Likewise.
12442 (struct tdesc_type_with_fields): Likewise.
12443 (tdesc_create_enum): Add declaration.
12444 (tdesc_add_typed_bitfield): Likewise.
12445 (tdesc_add_enum_value): Likewise.
12446 * target-descriptions.c (tdesc_type_field): Move from here.
12447 (tdesc_type_builtin): Likewise.
12448 (tdesc_type_vector): Likewise.
12449 (tdesc_type_with_fields): Likewise.
12450 (tdesc_predefined_types): Likewise.
12451 (tdesc_named_type): Likewise.
12452 (tdesc_create_vector): Likewise.
12453 (tdesc_create_struct): Likewise.
12454 (tdesc_set_struct_size): Likewise.
12455 (tdesc_create_union): Likewise.
12456 (tdesc_create_flags): Likewise.
12457 (tdesc_create_enum): Likewise.
12458 (tdesc_add_field): Likewise.
12459 (tdesc_add_typed_bitfield): Likewise.
12460 (tdesc_add_bitfield): Likewise.
12461 (tdesc_add_flag): Likewise.
12462 (tdesc_add_enum_value): Likewise.
12463 * gdb/target-descriptions.h (tdesc_create_enum): Likewise.
12464 (tdesc_add_typed_bitfield): Likewise.
12465 (tdesc_add_enum_value): Likewise.
12466
12467 2018-04-18 Alan Hayward <alan.hayward@arm.com>
12468
12469 * common/tdesc.c (tdesc_feature::accept): Move to here.
12470 (tdesc_feature::operator==): Likewise.
12471 (tdesc_create_reg): Likewise.
12472 * common/tdesc.h (tdesc_type_kind): Likewise.
12473 (struct tdesc_type): Likewise.
12474 (struct tdesc_feature): Likewise.
12475 * regformats/regdat.sh: Create a feature.
12476 * target-descriptions.c (tdesc_type_kind): Move from here.
12477 (tdesc_type): Likewise.
12478 (tdesc_type_up): Likewise.
12479 (tdesc_feature): Likewise.
12480 (tdesc_create_reg): Likewise.
12481
12482 2018-04-18 Alan Hayward <alan.hayward@arm.com>
12483
12484 * Makefile.in: Add arch/tdesc.c
12485 * common/tdesc.c: New file.
12486 * common/tdesc.h (tdesc_element_visitor): Move to here.
12487 (tdesc_element): Likewise.
12488 (tdesc_reg): Likewise.
12489 (tdesc_reg_up): Likewise.
12490 * regformats/regdef.h (reg): Add offset to constructors.
12491 * target-descriptions.c (tdesc_element_visitor): Move from here.
12492 (tdesc_element): Likewise.
12493 (tdesc_reg): Likewise.
12494 (tdesc_reg_up): Likewise.
12495
12496 2018-04-17 Tom Tromey <tom@tromey.com>
12497
12498 * dwarf2read.c (quirk_rust_enum): Conditionally drop the
12499 discriminant field.
12500
12501 2018-04-17 Tom Tromey <tom@tromey.com>
12502
12503 * dwarf2read.c (quirk_rust_enum): Handle unions correctly.
12504
12505 2018-04-17 Andreas Arnez <arnez@linux.vnet.ibm.com>
12506
12507 * symtab.c (print_symbol_info): Skip printing filename and line
12508 number when `last' is NULL.
12509 (symtab_symbol_info): Use empty string instead of NULL for first
12510 invocation of print_symbol_info.
12511 (rbreak_command): Pass NULL to `last' parameter of
12512 print_symbol_info.
12513
12514 2018-04-16 Simon Marchi <simon.marchi@ericsson.com>
12515
12516 * linux-tdep.c (linux_spu_make_corefile_notes): Return note_data
12517 instead of nullptr.
12518
12519 2018-04-16 Pedro Alves <palves@redhat.com>
12520
12521 * MAINTAINERS (sh): Remove.
12522 * Makefile.in (ALL_TARGET_OBS): Remove sh64-tdep.o.
12523 (HFILES_NO_SRCDIR): Remove sh64-tdep.h.
12524 (ALLDEPFILES): Remove sh64-tdep.c.
12525 * NEWS: Mentions that support for SH-5/SH64 is removed.
12526 * configure.tgt (sh*-*-linux*): Remove reference to sh64-tdep.o.
12527 (sh*-*-openbsd*): Ditto.
12528 (sh64-*-elf*): Remove.
12529 (sh*): Remove.
12530 * regcache.c (cooked_write_test): Remove bfd_mach_sh5 case.
12531 * sh-linux-tdep.c: Remove reference to bfd_mach_sh5.
12532 * sh-tdep.c: No longer include "sh64-tdep.h".
12533 (sh_gdbarch_init): Remove reference to bfd_mach_sh5.
12534 * sh64-tdep.c, sh64-tdep.h: Remove files.
12535
12536 2018-04-16 Pedro Alves <palves@redhat.com>
12537
12538 * MAINTAINERS: Remove m88k.
12539 * Makefile.in (ALL_TARGET_OBS): Remove m88k-tdep.o.
12540 (HFILES_NO_SRCDIR): Remove m88k-tdep.h.
12541 (ALLDEPFILES): Remove m88k-bsd-nat.c and m88k-tdep.c.
12542 * NEWS: Mention that support for m88k was removed.
12543 * configure.host (m88*-*-*): Remove support.
12544 * configure.nat (m88k-*-*): Remove support.
12545 * configure.tgt (m88*-*-openbsd*): Remove.
12546 * m88k-bsd-nat.c, m88k-tdep.c, m88k-tdep.h: Delete.
12547
12548 2018-04-15 Simon Marchi <simon.marchi@polymtl.ca>
12549
12550 * configure.tgt (x86_tobjs): New variable.
12551 (amd64_tobjs, i386_tobjs): Use it.
12552
12553 2018-04-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
12554
12555 * symtab.c (print_symbol_info): Precede the symbol definition by
12556 the line number when available.
12557 * NEWS: Advertise this enhancement.
12558
12559 2018-04-13 Markus Metzger <markus.t.metzger@intel.com>
12560
12561 * NEWS (New options): announce set/show record btrace cpu.
12562 * btrace.c: Include record-btrace.h.
12563 (btrace_compute_ftrace_pt): Skip enabling errata workarounds if
12564 the vendor is unknown.
12565 (btrace_compute_ftrace_1): Add cpu parameter. Update callers.
12566 Maybe overwrite the btrace configuration's cpu.
12567 (btrace_compute_ftrace): Add cpu parameter. Update callers.
12568 (btrace_fetch): Add cpu parameter. Update callers.
12569 (btrace_maint_update_pt_packets): Call record_btrace_get_cpu.
12570 Maybe overwrite the btrace configuration's cpu. Skip enabling
12571 errata workarounds if the vendor is unknown.
12572 * python/py-record-btrace.c: Include record-btrace.h.
12573 (recpy_bt_begin, recpy_bt_end, recpy_bt_instruction_history)
12574 (recpy_bt_function_call_history): Call record_btrace_get_cpu.
12575 * record-btrace.c (record_btrace_cpu_state_kind): New.
12576 (record_btrace_cpu): New.
12577 (set_record_btrace_cpu_cmdlist): New.
12578 (record_btrace_get_cpu): New.
12579 (require_btrace_thread, record_btrace_info)
12580 (record_btrace_resume_thread): Call record_btrace_get_cpu.
12581 (cmd_set_record_btrace_cpu_none): New.
12582 (cmd_set_record_btrace_cpu_auto): New.
12583 (cmd_set_record_btrace_cpu): New.
12584 (cmd_show_record_btrace_cpu): New.
12585 (_initialize_record_btrace): Initialize set/show record btrace cpu
12586 commands.
12587 * record-btrace.h (record_btrace_get_cpu): New.
12588
12589 2018-04-13 Markus Metzger <markus.t.metzger@intel.com>
12590
12591 * record.c (set_record_command): Fix typo in message.
12592
12593 2018-04-13 Markus Metzger <markus.t.metzger@intel.com>
12594
12595 * record-btrace.c (cmd_set_record_btrace): Print sub-commands.
12596
12597 2018-04-13 Markus Metzger <markus.t.metzger@intel.com>
12598
12599 * infrun.c (process_event_stop_test): Call
12600 gdbarch_in_indirect_branch_thunk.
12601 * gdbarch.sh (in_indirect_branch_thunk): New.
12602 * gdbarch.c: Regenerated.
12603 * gdbarch.h: Regenerated.
12604 * x86-tdep.h: New.
12605 * x86-tdep.c: New.
12606 * Makefile.in (ALL_TARGET_OBS): Add x86-tdep.o.
12607 (HFILES_NO_SRCDIR): Add x86-tdep.h.
12608 (ALLDEPFILES): Add x86-tdep.c.
12609 * arch-utils.h (default_in_indirect_branch_thunk): New.
12610 * arch-utils.c (default_in_indirect_branch_thunk): New.
12611 * i386-tdep: Include x86-tdep.h.
12612 (i386_in_indirect_branch_thunk): New.
12613 (i386_elf_init_abi): Set in_indirect_branch_thunk gdbarch
12614 function.
12615 * amd64-tdep: Include x86-tdep.h.
12616 (amd64_in_indirect_branch_thunk): New.
12617 (amd64_init_abi): Set in_indirect_branch_thunk gdbarch function.
12618
12619 2018-04-12 Jan Kratochvil <jan.kratochvil@redhat.com>
12620
12621 PR gdb/23053
12622 * dwarf-index-write.c (data_buf::grow) (write_one_signatured_type)
12623 (recursively_write_psymbols) (debug_names::recursively_write_psymbols)
12624 (debug_names::write_one_signatured_type): Fix -D_GLIBCXX_DEBUG
12625 regression.
12626
12627 2018-04-12 Tom Tromey <tom@tromey.com>
12628
12629 * rust-lang.c (rust_print_struct_def): Remove univariant code.
12630 (rust_evaluate_subexp): Likewise.
12631
12632 2018-04-12 Pedro Alves <palves@redhat.com>
12633
12634 * procfs.c (procfs_detach): Make forward declaration's prototype
12635 match definition's protototype.
12636 (proc_get_LDT_entry): Remove stale do_cleanups call.
12637
12638 2018-04-12 Pedro Alves <palves@redhat.com>
12639
12640 * target.h (target_ops::to_has_exited): Delete.
12641 (target_has_exited): Delete.
12642 * target-delegates.c: Regenerate.
12643
12644 2018-04-11 Pedro Alves <palves@redhat.com>
12645
12646 * target.c (fileio_fh_t::t): Add comment.
12647 (target_fileio_pwrite, target_fileio_pread, target_fileio_fstat)
12648 (target_fileio_close): Handle a NULL target.
12649 (invalidate_fileio_fh): New.
12650 (target_close): Call it.
12651 * remote.c (remote_hostio_send_command): No longer check whether
12652 remote_desc is open.
12653
12654 2018-04-11 Pedro Alves <palves@redhat.com>
12655
12656 * target.c (fileio_fh_t): Make it a named struct instead of a
12657 typedef.
12658 (fileio_fh_t::is_closed): New method.
12659 (DEF_VEC_O (fileio_fh_t)): Remove.
12660 (fileio_fhandles): Now a std::vector.
12661 (is_closed_fileio_fh): Delete.
12662 (acquire_fileio_fd): Adjust. Rename parameters.
12663 (release_fileio_fd): Adjust.
12664 (fileio_fd_to_fh): Reimplement as a function instead of a macro.
12665 (target_fileio_pwrite, target_fileio_pread, target_fileio_fstat)
12666 (target_fileio_close): Adjust.
12667
12668 2018-04-10 Simon Marchi <simon.marchi@ericsson.com>
12669
12670 * auto-load.c (auto_load_safe_path_vec_update): Iterate by
12671 index.
12672
12673 2018-04-10 Pedro Alves <palves@redhat.com>
12674
12675 * gdbthread.h (finish_thread_state_cleanup): Delete declaration.
12676 (scoped_finish_thread_state): New class.
12677 * infcmd.c (run_command_1): Use it instead of finish_thread_state
12678 cleanup.
12679 * infrun.c (proceed, prepare_for_detach, wait_for_inferior)
12680 (fetch_inferior_event, normal_stop): Likewise.
12681 * thread.c (finish_thread_state_cleanup): Delete.
12682
12683 2018-04-09 Simon Marchi <simon.marchi@polymtl.ca>
12684 Pedro Alves <palves@redhat.com>
12685
12686 * value.c: Include "selftest.h" and "common/array-view.h".
12687 (struct range) <operator ==>: New.
12688 (test_ranges_contain): New.
12689 (check_ranges_vector): New.
12690 (test_insert_into_bit_range_vector): New.
12691 (_initialize_values): Register selftests.
12692 * common/array-view.h (operator==, operator!=): New.
12693
12694 2018-04-09 Simon Marchi <simon.marchi@polymtl.ca>
12695
12696 * common/gdb_vecs.h (unordered_remove): Add overload that takes
12697 an iterator.
12698 * inline-frame.c: Include <algorithm>.
12699 (struct inline_state): Add constructor.
12700 (inline_state_s): Remove.
12701 (DEF_VEC_O(inline_state_s)): Remove.
12702 (inline_states): Change type to std::vector.
12703 (find_inline_frame_state): Adjust to std::vector.
12704 (allocate_inline_frame_state): Remove.
12705 (clear_inline_frame_state): Adjust to std::vector.
12706 (skip_inline_frames): Adjust to std::vector.
12707
12708 2018-04-09 Simon Marchi <simon.marchi@polymtl.ca>
12709
12710 * tracepoint.h (struct trace_state_variable): Add constructor.
12711 <name>: Change type to std::string.
12712 * tracepoint.c (tsv_s): Remove.
12713 (DEF_VEC_O(tsv_s)): Remove.
12714 (tvariables): Change to std::vector.
12715 (create_trace_state_variable): Adjust to std::vector.
12716 (find_trace_state_variable): Likewise.
12717 (find_trace_state_variable_by_number): Likewise.
12718 (delete_trace_state_variable): Likewise.
12719 (trace_variable_command): Adjust to std::string.
12720 (delete_trace_variable_command): Likewise.
12721 (tvariables_info_1): Adjust to std::vector.
12722 (save_trace_state_variables): Likewise.
12723 (start_tracing): Likewise.
12724 (merge_uploaded_trace_state_variables): Adjust to std::vector
12725 and std::string.
12726 * target.h (struct target_ops)
12727 <to_download_trace_state_variable>: Pass reference to
12728 trace_state_variable.
12729 * target-debug.h (target_debug_print_const_trace_state_variable_r): New.
12730 * target-delegates.c: Re-generate.
12731 * mi/mi-interp.c (mi_tsv_created): Adjust to std::string.
12732 (mi_tsv_deleted): Likewise.
12733 * mi/mi-main.c (mi_cmd_trace_frame_collected): Likewise.
12734 * remote.c (remote_download_trace_state_variable): Change
12735 pointer to reference and adjust.
12736 * make-target-delegates (parse_argtypes): Handle references.
12737 (write_function_header): Likewise.
12738 (munge_type): Likewise.
12739
12740 2018-04-09 Simon Marchi <simon.marchi@polymtl.ca>
12741
12742 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
12743 string_view-selftests.c.
12744 * unittests/basic_string_view/capacity/1.cc: Adapt to GDB
12745 testsuite.
12746 * unittests/basic_string_view/cons/char/1.cc: Likewise.
12747 * unittests/basic_string_view/cons/char/2.cc: Likewise.
12748 * unittests/basic_string_view/cons/char/3.cc: Likewise.
12749 * unittests/basic_string_view/element_access/char/1.cc:
12750 Likewise.
12751 * unittests/basic_string_view/element_access/char/empty.cc:
12752 Likewise.
12753 * unittests/basic_string_view/element_access/char/front_back.cc:
12754 Likewise.
12755 * unittests/basic_string_view/inserters/char/2.cc: Likewise.
12756 * unittests/basic_string_view/modifiers/remove_prefix/char/1.cc:
12757 Likewise.
12758 * unittests/basic_string_view/modifiers/remove_suffix/char/1.cc:
12759 Likewise.
12760 * unittests/basic_string_view/modifiers/swap/char/1.cc:
12761 Likewise.
12762 * unittests/basic_string_view/operations/compare/char/1.cc:
12763 Likewise.
12764 * unittests/basic_string_view/operations/compare/char/13650.cc:
12765 Likewise.
12766 * unittests/basic_string_view/operations/copy/char/1.cc:
12767 Likewise.
12768 * unittests/basic_string_view/operations/data/char/1.cc:
12769 Likewise.
12770 * unittests/basic_string_view/operations/find/char/1.cc:
12771 Likewise.
12772 * unittests/basic_string_view/operations/find/char/2.cc:
12773 Likewise.
12774 * unittests/basic_string_view/operations/find/char/3.cc:
12775 Likewise.
12776 * unittests/basic_string_view/operations/find/char/4.cc:
12777 Likewise.
12778 * unittests/basic_string_view/operations/rfind/char/1.cc:
12779 Likewise.
12780 * unittests/basic_string_view/operations/rfind/char/2.cc:
12781 Likewise.
12782 * unittests/basic_string_view/operations/rfind/char/3.cc:
12783 Likewise.
12784 * unittests/basic_string_view/operations/substr/char/1.cc:
12785 Likewise.
12786 * unittests/basic_string_view/operators/char/2.cc: Likewise.
12787 * unittests/string_view-selftests.c: New file.
12788
12789 2018-04-09 Simon Marchi <simon.marchi@polymtl.ca>
12790
12791 * unittests/basic_string_view/capacity/1.cc: New file.
12792 * unittests/basic_string_view/capacity/empty_neg.cc: New file.
12793 * unittests/basic_string_view/cons/char/1.cc: New file.
12794 * unittests/basic_string_view/cons/char/2.cc: New file.
12795 * unittests/basic_string_view/cons/char/3.cc: New file.
12796 * unittests/basic_string_view/cons/wchar_t/1.cc: New file.
12797 * unittests/basic_string_view/cons/wchar_t/2.cc: New file.
12798 * unittests/basic_string_view/cons/wchar_t/3.cc: New file.
12799 * unittests/basic_string_view/element_access/char/1.cc: New file.
12800 * unittests/basic_string_view/element_access/char/2.cc: New file.
12801 * unittests/basic_string_view/element_access/char/empty.cc: New file.
12802 * unittests/basic_string_view/element_access/char/front_back.cc: New file.
12803 * unittests/basic_string_view/element_access/wchar_t/1.cc: New file.
12804 * unittests/basic_string_view/element_access/wchar_t/2.cc: New file.
12805 * unittests/basic_string_view/element_access/wchar_t/empty.cc: New file.
12806 * unittests/basic_string_view/element_access/wchar_t/front_back.cc: New file.
12807 * unittests/basic_string_view/include.cc: New file.
12808 * unittests/basic_string_view/inserters/char/1.cc: New file.
12809 * unittests/basic_string_view/inserters/char/2.cc: New file.
12810 * unittests/basic_string_view/inserters/char/3.cc: New file.
12811 * unittests/basic_string_view/inserters/pod/10081-out.cc: New file.
12812 * unittests/basic_string_view/inserters/wchar_t/1.cc: New file.
12813 * unittests/basic_string_view/inserters/wchar_t/2.cc: New file.
12814 * unittests/basic_string_view/inserters/wchar_t/3.cc: New file.
12815 * unittests/basic_string_view/literals/types.cc: New file.
12816 * unittests/basic_string_view/literals/values.cc: New file.
12817 * unittests/basic_string_view/modifiers/remove_prefix/char/1.cc: New file.
12818 * unittests/basic_string_view/modifiers/remove_prefix/wchar_t/1.cc: New file.
12819 * unittests/basic_string_view/modifiers/remove_suffix/char/1.cc: New file.
12820 * unittests/basic_string_view/modifiers/remove_suffix/wchar_t/1.cc: New file.
12821 * unittests/basic_string_view/modifiers/swap/char/1.cc: New file.
12822 * unittests/basic_string_view/modifiers/swap/wchar_t/1.cc: New file.
12823 * unittests/basic_string_view/operations/compare/char/1.cc: New file.
12824 * unittests/basic_string_view/operations/compare/char/13650.cc: New file.
12825 * unittests/basic_string_view/operations/compare/char/2.cc: New file.
12826 * unittests/basic_string_view/operations/compare/char/70483.cc: New file.
12827 * unittests/basic_string_view/operations/compare/wchar_t/1.cc: New file.
12828 * unittests/basic_string_view/operations/compare/wchar_t/13650.cc: New file.
12829 * unittests/basic_string_view/operations/compare/wchar_t/2.cc: New file.
12830 * unittests/basic_string_view/operations/copy/char/1.cc: New file.
12831 * unittests/basic_string_view/operations/copy/wchar_t/1.cc: New file.
12832 * unittests/basic_string_view/operations/data/char/1.cc: New file.
12833 * unittests/basic_string_view/operations/data/wchar_t/1.cc: New file.
12834 * unittests/basic_string_view/operations/find/char/1.cc: New file.
12835 * unittests/basic_string_view/operations/find/char/2.cc: New file.
12836 * unittests/basic_string_view/operations/find/char/3.cc: New file.
12837 * unittests/basic_string_view/operations/find/char/4.cc: New file.
12838 * unittests/basic_string_view/operations/find/wchar_t/1.cc: New file.
12839 * unittests/basic_string_view/operations/find/wchar_t/2.cc: New file.
12840 * unittests/basic_string_view/operations/find/wchar_t/3.cc: New file.
12841 * unittests/basic_string_view/operations/find/wchar_t/4.cc: New file.
12842 * unittests/basic_string_view/operations/rfind/char/1.cc: New file.
12843 * unittests/basic_string_view/operations/rfind/char/2.cc: New file.
12844 * unittests/basic_string_view/operations/rfind/char/3.cc: New file.
12845 * unittests/basic_string_view/operations/rfind/wchar_t/1.cc: New file.
12846 * unittests/basic_string_view/operations/rfind/wchar_t/2.cc: New file.
12847 * unittests/basic_string_view/operations/rfind/wchar_t/3.cc: New file.
12848 * unittests/basic_string_view/operations/string_conversion/1.cc: New file.
12849 * unittests/basic_string_view/operations/substr/char/1.cc: New file.
12850 * unittests/basic_string_view/operations/substr/wchar_t/1.cc: New file.
12851 * unittests/basic_string_view/operators/char/2.cc: New file.
12852 * unittests/basic_string_view/operators/wchar_t/2.cc: New file.
12853 * unittests/basic_string_view/range_access/char/1.cc: New file.
12854 * unittests/basic_string_view/range_access/wchar_t/1.cc: New file.
12855 * unittests/basic_string_view/requirements/explicit_instantiation/1.cc: New file.
12856 * unittests/basic_string_view/requirements/explicit_instantiation/char/1.cc: New file.
12857 * unittests/basic_string_view/requirements/explicit_instantiation/char16_t/1.cc: New file.
12858 * unittests/basic_string_view/requirements/explicit_instantiation/char32_t/1.cc: New file.
12859 * unittests/basic_string_view/requirements/explicit_instantiation/wchar_t/1.cc: New file.
12860 * unittests/basic_string_view/requirements/typedefs.cc: New file.
12861 * unittests/basic_string_view/typedefs.cc: New file.
12862 * unittests/basic_string_view/types/1.cc: New file.
12863
12864 2018-04-09 Simon Marchi <simon.marchi@polymtl.ca>
12865
12866 * common/gdb_string_view.h: Remove libstdc++ implementation
12867 details, adjust to gdb reality.
12868 * common/gdb_string_view.tcc: Likewise.
12869 * cli/cli-script.c (struct string_view): Remove.
12870 (user_args) <m_args>: Change element type to gdb::string_view.
12871 (user_args::insert_args): Adjust.
12872
12873 2018-04-09 Simon Marchi <simon.marchi@polymtl.ca>
12874
12875 * common/gdb_string_view.h: New file.
12876 * common/gdb_string_view.tcc: New file.
12877
12878 2018-04-09 Simon Marchi <simon.marchi@polymtl.ca>
12879
12880 * ax_cxx_compile_stdcxx.m4: Sync with upstream.
12881 * configure: Re-generate.
12882
12883 2018-04-09 Pedro Alves <palves@redhat.com>
12884
12885 * gdbarch.sh: Include "observable.h" instead of "observer.h".
12886 (set_target_gdbarch): Call
12887 gdb::observers::architecture_changed.notify instead of
12888 observer_notify_architecture_changed.
12889
12890 2018-04-07 Simon Marchi <simon.marchi@polymtl.ca>
12891
12892 * tracepoint.c (struct current_traceframe_cleanup): Remove.
12893 (do_restore_current_traceframe_cleanup): Remove.
12894 (restore_current_traceframe_cleanup_dtor): Remove.
12895 (make_cleanup_restore_current_traceframe): Remove.
12896 (scoped_restore_current_traceframe::scoped_restore_current_traceframe):
12897 New.
12898 * tracepoint.h (struct scoped_restore_current_traceframe): New.
12899 * infrun.c (fetch_inferior_event): Use
12900 scoped_restore_current_traceframe.
12901
12902 2018-04-07 Simon Marchi <simon.marchi@polymtl.ca>
12903
12904 * dwarf2read.h (struct dwarf2_per_objfile) <n_type_units>:
12905 Remove.
12906 <n_allocated_type_units>: Remove.
12907 <all_type_units>: Change to std::vector.
12908 * dwarf2read.c (dwarf2_per_objfile::~dwarf2_per_objfile): Adjust
12909 to std::vector change.
12910 (dwarf2_per_objfile::get_cutu): Likewise.
12911 (dwarf2_per_objfile::get_tu): Likewise.
12912 (create_signatured_type_table_from_index): Likewise.
12913 (create_signatured_type_table_from_debug_names): Likewise.
12914 (dw2_symtab_iter_next): Likewise.
12915 (dw2_print_stats): Likewise.
12916 (dw2_expand_all_symtabs): Likewise.
12917 (dw2_expand_marked_cus): Likewise.
12918 (dw2_debug_names_iterator::next): Likewise.
12919 (dwarf2_initialize_objfile): Likewise.
12920 (add_signatured_type_cu_to_table): Likewise.
12921 (create_all_type_units): Likewise.
12922 (add_type_unit): Likewise.
12923 (struct tu_abbrev_offset): Add constructor.
12924 (build_type_psymtabs_1): Adjust to std::vector change.
12925 (print_tu_stats): Likewise.
12926 * dwarf-index-write.c (check_dwarf64_offsets): Likewise.
12927 (write_debug_names): Likewise.
12928
12929 2018-04-07 Simon Marchi <simon.marchi@polymtl.ca>
12930
12931 * dwarf2read.h (struct dwarf2_per_objfile) <all_comp_units>: Likewise.
12932 Make an std::vector.
12933 <n_comp_units>: Remove.
12934 * dwarf2read.c (dwarf2_per_objfile::~dwarf2_per_objfile): Adjust
12935 to std::vector change.
12936 (dwarf2_per_objfile::get_cutu): Likewise.
12937 (dwarf2_per_objfile::get_cu): Likewise.
12938 (create_cus_from_index): Likewise.
12939 (create_addrmap_from_index): Likewise.
12940 (create_addrmap_from_aranges): Likewise.
12941 (dwarf2_read_index): Likewise.
12942 (dw2_find_last_source_symtab): Likewise.
12943 (dw2_map_symtabs_matching_filename): Likewise.
12944 (dw2_symtab_iter_next): Likewise.
12945 (dw2_print_stats): Likewise.
12946 (dw2_expand_all_symtabs): Likewise.
12947 (dw2_expand_symtabs_with_fullname): Likewise.
12948 (dw2_expand_marked_cus): Likewise.
12949 (dw2_map_symbol_filenames): Likewise.
12950 (create_cus_from_debug_names): Likewise.
12951 (dwarf2_read_debug_names): Likewise.
12952 (dw2_debug_names_iterator::next): Likewise.
12953 (dwarf2_initialize_objfile): Likewise.
12954 (set_partial_user): Likewise.
12955 (dwarf2_build_psymtabs_hard): Likewise.
12956 (read_comp_units_from_section): Remove arguments, adjust to
12957 std::vector change.
12958 (create_all_comp_units): Adjust to std::vector and
12959 read_comp_units_from_section changes.
12960 (dwarf2_find_containing_comp_unit): Adjust to std::vector
12961 change.
12962 * dwarf-index-write.c (check_dwarf64_offsets): Likewise.
12963 (psyms_seen_size): Likewise.
12964 (write_gdbindex): Likewise.
12965 (write_debug_names): Likewise.
12966
12967 2018-04-07 Simon Marchi <simon.marchi@polymtl.ca>
12968
12969 * dwarf2read.c (create_cus_from_index_list): Replace objfile arg
12970 with dwarf2_per_objfile.
12971 (create_cus_from_index): Likewise.
12972 (create_signatured_type_table_from_index): Likewise.
12973 (dwarf2_read_index): Likewise.
12974 (dwarf2_initialize_objfile): Likewise.
12975 (dwarf2_fetch_die_loc_sect_off): Get dwarf2_per_objfile from
12976 per_cu rather than get_dwarf2_per_objfile.
12977
12978 2018-04-07 Simon Marchi <simon.marchi@polymtl.ca>
12979
12980 * dwarf2read.h (struct signatured_type): Forward declare.
12981 (struct dwarf2_per_objfile) <get_cutu, get_cu, get_tu>:
12982 New methods.
12983 * dwarf2read.c (dwarf2_per_objfile::get_cutu): Rename from...
12984 (dw2_get_cutu): ...this.
12985 (dwarf2_per_objfile::get_cu): Rename from...
12986 (dw2_get_cu): ...this.
12987 (dwarf2_per_objfile::get_tu): New.
12988 (create_addrmap_from_index): Adjust.
12989 (create_addrmap_from_aranges): Adjust.
12990 (dw2_find_last_source_symtab): Adjust.
12991 (dw2_map_symtabs_matching_filename): Adjust.
12992 (dw2_symtab_iter_next): Adjust.
12993 (dw2_print_stats): Adjust.
12994 (dw2_expand_all_symtabs): Adjust.
12995 (dw2_expand_symtabs_with_fullname): Adjust.
12996 (dw2_expand_marked_cus): Adjust.
12997 (dw_expand_symtabs_matching_file_matcher): Adjust.
12998 (dw2_map_symbol_filenames): Adjust.
12999 (dw2_debug_names_iterator::next): Adjust.
13000 (dwarf2_initialize_objfile): Adjust.
13001 (set_partial_user): Adjust.
13002 (dwarf2_build_psymtabs_hard): Adjust.
13003
13004 2018-04-07 Simon Marchi <simon.marchi@polymtl.ca>
13005
13006 * dwarf2read.c (create_signatured_type_table_from_debug_names):
13007 Remove unused variables.
13008 (dw2_map_symtabs_matching_filename): Likewise.
13009 (dwarf2_record_block_ranges): Likewise.
13010 (dwarf2_read_addr_index): Likewise.
13011 (follow_die_offset): Likewise.
13012
13013 2018-04-07 Simon Marchi <simon.marchi@polymtl.ca>
13014
13015 * progspace.c (clone_program_space): Pass SYMFILE_DEFER_BP_RESET
13016 to symbol_file_add_main.
13017
13018 2018-04-07 Simon Marchi <simon.marchi@polymtl.ca>
13019
13020 PR mi/22299
13021 * mi/mi-console.c (do_fputc_async_safe): New.
13022 (mi_console_file::write_async_safe): New.
13023 (mi_console_file::flush): Adjust calls to fputstrn_unfiltered.
13024 * mi/mi-console.h (class mi_console_file) <write_async_safe>:
13025 New.
13026 * ui-file.c (ui_file::putstrn): Adjust call to
13027 fputstrn_unfiltered.
13028 * utils.c (printchar): Replace do_fputs and do_fprintf
13029 parameters by do_fputc.
13030 (fputstr_filtered): Adjust call to printchar.
13031 (fputstr_unfiltered): Likewise.
13032 (fputstrn_filtered): Likewise.
13033 (fputstrn_unfiltered): Add do_fputc parameter, pass to
13034 printchar.
13035 * utils.h (do_fputc_ftype): New typedef.
13036 (fputstrn_unfiltered): Add do_fputc parameter.
13037
13038 2018-04-07 Simon Marchi <simon.marchi@polymtl.ca>
13039
13040 * regformats/i386/i386-avx.dat: Remove.
13041
13042 2018-04-07 Simon Marchi <simon.marchi@ericsson.com>
13043
13044 PR gdb/22979
13045 * amd64-tdep.c (amd64_none_init_abi): New function.
13046 (amd64_x32_none_init_abi): New function.
13047 (_initialize_amd64_tdep): Register handlers for x86-64 and
13048 x64_32 with GDB_OSABI_NONE.
13049 * osabi.c (gdbarch_init_osabi): Allow running handlers for the
13050 GDB_OSABI_NONE osabi.
13051
13052 2018-04-07 Simon Marchi <simon.marchi@ericsson.com>
13053
13054 PR gdb/22980
13055 * defs.h (enum gdb_osabi): Remove GDB_OSABI_UNINITIALIZED, add
13056 GDB_OSABI_NONE.
13057 * arch-utils.c (gdbarch_info_init): Don't set info->osabi.
13058 * osabi.c (gdb_osabi_names): Add "unknown" entry.
13059
13060 2018-04-07 Simon Marchi <simon.marchi@ericsson.com>
13061
13062 * common/byte-vector.h (char_vector): New type.
13063 * target.h (target_read_alloc): Return
13064 gdb::optional<byte_vector>.
13065 (target_read_stralloc): Return gdb::optional<char_vector>.
13066 (target_get_osdata): Return gdb::optional<char_vector>.
13067 * target.c (target_read_alloc_1): Templatize. Replacement
13068 manual memory management with vector.
13069 (target_read_alloc): Change return type, adjust.
13070 (target_read_stralloc): Change return type, adjust.
13071 (target_get_osdata): Change return type, adjust.
13072 * auxv.c (struct auxv_info) <length>: Remove.
13073 <data>: Change type to gdb::optional<byte_vector>.
13074 (auxv_inferior_data_cleanup): Free auxv_info with delete.
13075 (get_auxv_inferior_data): Allocate auxv_info with new, adjust.
13076 (target_auxv_search): Adjust.
13077 (fprint_target_auxv): Adjust.
13078 * avr-tdep.c (avr_io_reg_read_command): Adjust.
13079 * linux-tdep.c (linux_spu_make_corefile_notes): Adjust.
13080 (linux_make_corefile_notes): Adjust.
13081 * osdata.c (get_osdata): Adjust.
13082 * remote.c (remote_get_threads_with_qxfer): Adjust.
13083 (remote_memory_map): Adjust.
13084 (remote_traceframe_info): Adjust.
13085 (btrace_read_config): Adjust.
13086 (remote_read_btrace): Adjust.
13087 (remote_pid_to_exec_file): Adjust.
13088 * solib-aix.c (solib_aix_get_library_list): Adjust.
13089 * solib-dsbt.c (decode_loadmap): Don't free buf.
13090 (dsbt_get_initial_loadmaps): Adjust.
13091 * solib-svr4.c (svr4_current_sos_via_xfer_libraries): Adjust.
13092 * solib-target.c (solib_target_current_sos): Adjust.
13093 * tracepoint.c (sdata_make_value): Adjust.
13094 * xml-support.c (xinclude_start_include): Adjust.
13095 (xml_fetch_content_from_file): Adjust.
13096 * xml-support.h (xml_fetch_another): Change return type.
13097 (xml_fetch_content_from_file): Change return type.
13098 * xml-syscall.c (xml_init_syscalls_info): Adjust.
13099 * xml-tdesc.c (file_read_description_xml): Adjust.
13100 (fetch_available_features_from_target): Change return type.
13101 (target_fetch_description_xml): Adjust.
13102 (target_read_description_xml): Adjust.
13103
13104 2018-04-06 Tom Tromey <tom@tromey.com>
13105
13106 * value.c (~value): Update.
13107 (struct value) <contents>: Now unique_xmalloc_ptr.
13108 (value_contents_bits_eq, allocate_value_contents)
13109 (value_contents_raw, value_contents_all_raw)
13110 (value_contents_for_printing, value_contents_for_printing_const)
13111 (set_value_enclosing_type): Update.
13112
13113 2018-04-06 Tom Tromey <tom@tromey.com>
13114
13115 * value.c (range_s): Remove typedef, VEC.
13116 (struct range): Add operator<.
13117 (range_lessthan): Remove.
13118 (ranges_contain): Change type.
13119 (~value): Update.
13120 (struct value) <unavailable, optimized_out>: Now std::vector.
13121 (value_entirely_available)
13122 (value_entirely_covered_by_range_vector)
13123 (value_entirely_unavailable, value_entirely_optimized_out):
13124 Update.
13125 (insert_into_bit_range_vector): Change argument type.
13126 (find_first_range_overlap): Likewise.
13127 (struct ranges_and_idx, value_contents_bits_eq)
13128 (require_not_optimized_out, require_available): Update.
13129 (ranges_copy_adjusted): Change argument types.
13130 (value_optimized_out, value_copy, value_fetch_lazy): Update.
13131
13132 2018-04-06 Tom Tromey <tom@tromey.com>
13133
13134 * value.c (~value): Update.
13135 (struct value) <parent>: Now a value_ref_ptr.
13136 (value_parent, set_value_parent, value_address, value_copy):
13137 Update.
13138
13139 2018-04-06 Tom Tromey <tom@tromey.com>
13140
13141 * value.c (struct value): Add constructor, destructor, and member
13142 initializers.
13143 (allocate_value_lazy, value_decref): Update.
13144
13145 2018-04-06 Tom Tromey <tom@tromey.com>
13146
13147 * value.c (struct value) <released, next>: Remove.
13148 (all_values): Now a std::vector.
13149 (allocate_value_lazy): Update.
13150 (value_next): Remove.
13151 (value_mark, value_free_to_mark, release_value)
13152 (value_release_to_mark): Update.
13153
13154 2018-04-06 Tom Tromey <tom@tromey.com>
13155
13156 * value.h (fetch_subexp_value, value_release_to_mark): Update.
13157 (free_value_chain): Remove.
13158 * value.c (free_value_chain): Remove.
13159 (value_release_to_mark): Return a std::vector.
13160 * ppc-linux-nat.c (num_memory_accesses): Change "chain" to a
13161 std::vector.
13162 (check_condition): Update.
13163 * eval.c (fetch_subexp_value): Change "val_chain" to a
13164 std::vector.
13165 * breakpoint.c (update_watchpoint): Update.
13166 (can_use_hardware_watchpoint): Change "vals" to a std::vector.
13167
13168 2018-04-06 Tom Tromey <tom@tromey.com>
13169
13170 * value.h (free_all_values): Remove.
13171 * value.c (free_all_values): Remove.
13172
13173 2018-04-06 Tom Tromey <tom@tromey.com>
13174
13175 * value.c (VALUE_HISTORY_CHUNK, struct value_history_chunk)
13176 (value_history_chain, value_history_count): Remove.
13177 (value_history): New global.
13178 (record_latest_value, access_value_history, show_values)
13179 (preserve_values): Update.
13180
13181 2018-04-06 Tom Tromey <tom@tromey.com>
13182
13183 * varobj.h (struct varobj) <value>: Now a value_ref_ptr.
13184 * varobj.c (varobj_set_display_format, varobj_set_value)
13185 (install_default_visualizer, construct_visualizer)
13186 (install_new_value, ~varobj, varobj_get_value_type)
13187 (my_value_of_variable, varobj_editable_p): Update.
13188 * c-varobj.c (c_describe_child, c_value_of_variable)
13189 (cplus_number_of_children, cplus_describe_child): Update.
13190 * ada-varobj.c (ada_number_of_children, ada_name_of_child)
13191 (ada_path_expr_of_child, ada_value_of_child, ada_type_of_child)
13192 (ada_value_of_variable, ada_value_is_changeable_p): Update.
13193
13194 2018-04-06 Tom Tromey <tom@tromey.com>
13195
13196 * printcmd.c (last_examine_address): Change type to
13197 value_ref_ptr.
13198 (do_examine, x_command): Update.
13199
13200 2018-04-06 Tom Tromey <tom@tromey.com>
13201
13202 * value.c (release_value): Update.
13203 * breakpoint.h (struct watchpoint) <val>: Now a value_ref_ptr.
13204 (struct bpstats) <val>: Now a value_ref_ptr.
13205 * breakpoint.c (update_watchpoint, breakpoint_init_inferior)
13206 (~bpstats, bpstats, bpstat_clear_actions, watchpoint_check)
13207 (~watchpoint, print_it_watchpoint, watch_command_1)
13208 (invalidate_bp_value_on_memory_change): Update.
13209
13210 2018-04-06 Tom Tromey <tom@tromey.com>
13211
13212 * varobj.c (varobj_clear_saved_item)
13213 (update_dynamic_varobj_children, install_new_value, ~varobj):
13214 Update.
13215 * value.h (value_incref): Move declaration earlier.
13216 (value_decref): Rename from value_free.
13217 (struct value_ref_policy): New.
13218 (value_ref_ptr): New typedef.
13219 (struct value_deleter): Remove.
13220 (gdb_value_up): Remove typedef.
13221 (release_value): Change return type.
13222 (release_value_or_incref): Remove.
13223 * value.c (set_value_parent): Update.
13224 (value_incref): Change return type.
13225 (value_decref): Rename from value_free.
13226 (value_free_to_mark, free_all_values, free_value_chain): Update.
13227 (release_value): Return value_ref_ptr.
13228 (release_value_or_incref): Remove.
13229 (record_latest_value, set_internalvar, clear_internalvar):
13230 Update.
13231 * stack.c (info_frame_command): Don't call value_free.
13232 * python/py-value.c (valpy_dealloc, valpy_new)
13233 (value_to_value_object): Update.
13234 * printcmd.c (do_examine): Update.
13235 * opencl-lang.c (lval_func_free_closure): Update.
13236 * mi/mi-main.c (register_changed_p): Don't call value_free.
13237 * mep-tdep.c (mep_frame_prev_register): Don't call value_free.
13238 * m88k-tdep.c (m88k_frame_prev_register): Don't call value_free.
13239 * m68hc11-tdep.c (m68hc11_frame_prev_register): Don't call
13240 value_free.
13241 * guile/scm-value.c (vlscm_free_value_smob)
13242 (vlscm_scm_from_value): Update.
13243 * frame.c (frame_register_unwind, frame_unwind_register_signed)
13244 (frame_unwind_register_unsigned, get_frame_register_bytes)
13245 (put_frame_register_bytes): Don't call value_free.
13246 * findvar.c (address_from_register): Don't call value_free.
13247 * dwarf2read.c (dwarf2_compute_name): Don't call value_free.
13248 * dwarf2loc.c (entry_data_value_free_closure)
13249 (value_of_dwarf_reg_entry, free_pieced_value_closure)
13250 (dwarf2_evaluate_loc_desc_full): Update.
13251 * breakpoint.c (update_watchpoint, breakpoint_init_inferior)
13252 (~bpstats, bpstats, bpstat_clear_actions, watchpoint_check)
13253 (~watchpoint, watch_command_1)
13254 (invalidate_bp_value_on_memory_change): Update.
13255 * alpha-tdep.c (alpha_register_to_value): Don't call value_free.
13256
13257 2018-04-06 Simon Marchi <simon.marchi@polymtl.ca>
13258
13259 PR gdb/23022
13260 * warning.m4: Add -Wno-error=deprecated-register.
13261 * configure: Re-generate.
13262
13263 2018-04-05 Tom Tromey <tom@tromey.com>
13264
13265 * linespec.h: Remove include of "vec.h".
13266
13267 2018-04-05 Tom Tromey <tom@tromey.com>
13268
13269 * linespec.c (typep): Remove typedef.
13270 (find_methods, find_superclass_methods): Take a std::vector.
13271 (find_method): Use std::vector.
13272
13273 2018-04-05 Tom Tromey <tom@tromey.com>
13274
13275 * utils.c (compare_strings): Remove.
13276 * utils.h (compare_strings): Remove.
13277 * objc-lang.h (find_imps): Update.
13278 * objc-lang.c (find_methods): Take a std::vector.
13279 (uniquify_strings, find_imps): Likewise.
13280 * linespec.c (find_methods): Take a std::vector.
13281 (decode_objc): Use std::vector.
13282 (add_all_symbol_names_from_pspace, find_superclass_methods): Take
13283 a std::vector.
13284 (find_method, find_function_symbols): Use std::vector.
13285
13286 2018-04-05 Tom Tromey <tom@tromey.com>
13287
13288 * completer.c (completion_tracker::completion_tracker): Remove
13289 cast.
13290 (completion_tracker::discard_completions): Likewise.
13291 * breakpoint.c (ambiguous_names_p): Remove cast.
13292 * ada-lang.c (_initialize_ada_language): Remove cast.
13293 * utils.h (streq): Update.
13294 (streq_hash): Add new declaration.
13295 * utils.c (streq): Return bool.
13296 (streq_hash): New function.
13297
13298 2018-04-05 Tom Tromey <tom@tromey.com>
13299
13300 * linespec.c (event_location_to_sals) <case ADDRESS_LOCATION>:
13301 Remove a string copy.
13302
13303 2018-04-05 Tom Tromey <tom@tromey.com>
13304
13305 * linespec.c (filter_results): Use std::vector.
13306 (decode_line_2, decode_line_full): Update.
13307
13308 2018-04-05 Tom Tromey <tom@tromey.com>
13309
13310 * linespec.c (canonical_to_fullform): Return std::string.
13311 (filter_results): Update.
13312 (struct decode_line_2_item): Add constructor.
13313 <fullform, displayform>: Now std::string.
13314 (decode_line_2_compare_items): Now a std::sort comparator.
13315 (decode_line_2): Update.
13316
13317 2018-04-05 Tom Tromey <tom@tromey.com>
13318
13319 * linespec.c (copy_token_string): Return a unique_xmalloc_ptr.
13320 (unexpected_linespec_error): Update.
13321 (linespec_parse_basic, parse_linespec): Update.
13322
13323 2018-04-05 Tom Tromey <tom@tromey.com>
13324
13325 * linespec.c (linespec_parse_basic): Reindent.
13326
13327 2018-04-05 Tom Tromey <tom@tromey.com>
13328
13329 * minsyms.h (iterate_over_minimal_symbols): Update.
13330 * minsyms.c (iterate_over_minimal_symbols): Take a
13331 gdb::function_view.
13332 * linespec.c (struct collect_minsyms): Remove.
13333 (compare_msyms): Now a std::sort comparator.
13334 (add_minsym): Add parameters.
13335 (search_minsyms_for_name): Update. Use std::vector.
13336
13337 2018-04-03 Tom Tromey <tom@tromey.com>
13338
13339 * mipsread.c (read_alphacoff_dynamic_symtab): Use
13340 gdb::byte_vector.
13341
13342 2018-04-02 Weimin Pan <weimin.pan@oracle.com>
13343
13344 * MAINTAINERS (Write After Approval): Add Weimin Pan.
13345
13346 2018-04-02 Weimin Pan <weimin.pan@oracle.com>
13347
13348 PR gdb/16959
13349 * cp-valprint.c: (cp_print_static_field) Fix infinite recursion when
13350 printing static type.
13351
13352 2018-04-01 Tom Tromey <tom@tromey.com>
13353
13354 * rs6000-nat.c (rs6000_ptrace_ldinfo): Return a byte_vector.
13355 (rs6000_xfer_shared_libraries): Update.
13356
13357 2018-04-01 Simon Marchi <simon.marchi@polymtl.ca>
13358
13359 * common/gdb_vecs.h (char_ptr): Remove.
13360 * tracepoint.c (encode_actions_1): Remove usage of char_ptr.
13361
13362 2018-03-30 Simon Marchi <simon.marchi@polymtl.ca>
13363
13364 * guile/scm-utils.c (gdbscm_parse_function_args): Replace VEC
13365 with std::vector.
13366 * common/gdb_vecs.h (DEF_VEC_P (char_ptr)): Remove.
13367
13368 2018-03-30 Simon Marchi <simon.marchi@polymtl.ca>
13369
13370 * tracepoint.h (struct uploaded_tp): Initialize fields.
13371 <actions, step_actions, cmd_strings>: Change type to
13372 std::vector<char *>.
13373 * tracepoint.c (get_uploaded_tp): Allocate with new.
13374 (free_uploaded_tps): Free with delete.
13375 (parse_tracepoint_definition): Adjust to std::vector change.
13376 * breakpoint.c (read_uploaded_action): Likewise.
13377 (create_tracepoint_from_upload): Likewise.
13378 * ctf.c (ctf_write_uploaded_tp): Likewise.
13379 (SET_ARRAY_FIELD): Likewise.
13380 * tracefile-tfile.c (tfile_write_uploaded_tp): Likewise.
13381
13382 2018-03-30 Tom Tromey <tom@tromey.com>
13383
13384 * solib-svr4.c (lm_info_read): Use gdb::byte_vector. Return
13385 std::unique_ptr.
13386 (svr4_keep_data_in_core): Update.
13387 (svr4_read_so_list): Update.
13388
13389 2018-03-30 Tom Tromey <tom@tromey.com>
13390
13391 * windows-nat.c (handle_output_debug_string, handle_exception):
13392 Update.
13393 * target.h (target_read_string): Update.
13394 * target.c (target_read_string): Change "string" to
13395 unique_xmalloc_ptr.
13396 * solib-svr4.c (open_symbol_file_object, svr4_read_so_list):
13397 Update.
13398 * solib-frv.c (frv_current_sos): Update.
13399 * solib-dsbt.c (dsbt_current_sos): Update.
13400 * solib-darwin.c (darwin_current_sos): Update.
13401 * linux-thread-db.c (inferior_has_bug): Update.
13402 * expprint.c (print_subexp_standard) <case OP_OBJC_MSGCALL>:
13403 Update. Remove alloca.
13404 * ada-lang.c (ada_main_name): Update.
13405
13406 2018-03-30 Tom Tromey <tom@tromey.com>
13407
13408 * dwarf2read.c (struct free_dwo_file_cleanup_data): Remove.
13409 (struct dwo_file_deleter): New.
13410 (dwo_file_up): New typedef.
13411 (open_and_init_dwo_file): Use dwo_file_up.
13412 (free_dwo_file_cleanup): Remove.
13413
13414 2018-03-30 Tom Tromey <tom@tromey.com>
13415
13416 * dwarf2read.c (free_dwo_file): Remove "objfile" parameter.
13417 (free_dwo_file_cleanup, free_dwo_file_from_slot): Update.
13418
13419 2018-03-30 Tom Tromey <tom@tromey.com>
13420
13421 * dwarf2read.c (class free_cached_comp_units): New class.
13422 (dw2_instantiate_symtab, dwarf2_build_psymtabs_hard): Use it.
13423 (free_cached_comp_units): Remove function.
13424
13425 2018-03-30 Tom Tromey <tom@tromey.com>
13426
13427 * utils.h (make_cleanup_unpush_target): Remove.
13428 * inf-ptrace.c (struct target_unpusher): New.
13429 (target_unpush_up) New typedef.
13430 (inf_ptrace_create_inferior, inf_ptrace_attach): Use
13431 target_unpush_up.
13432 * utils.c (do_unpush_target, make_cleanup_unpush_target): Remove.
13433
13434 2018-03-27 Tom Tromey <tom@tromey.com>
13435
13436 * utils.c (prompt_for_continue): Use unique_xmalloc_ptr.
13437
13438 2018-03-27 Pedro Alves <palves@redhat.com>
13439 Tom Tromey <tom@tromey.com>
13440
13441 * top.c (class gdb_readline_wrapper_cleanup): Add constructor,
13442 destructor. Now a class.
13443 (gdb_readline_wrapper_cleanup): Remove function.
13444 (gdb_readline_wrapper): Remove cleanups.
13445
13446 2018-03-27 Tom Tromey <tom@tromey.com>
13447
13448 * typeprint.h (struct type_print_options) <local_typedefs,
13449 global_typedefs>: Remove "struct" keyword.
13450 (class typedef_hash_table): New class.
13451 (recursively_update_typedef_hash, add_template_parameters)
13452 (create_typedef_hash, free_typedef_hash, copy_typedef_hash)
13453 (find_typedef_in_hash): Don't declare.
13454 * typeprint.c (struct typedef_hash_table): Move to typeprint.h.
13455 (typedef_hash_table::recursively_update): Rename from
13456 recursively_update_typedef_hash. Now a member.
13457 (typedef_hash_table::add_template_parameters): Rename from
13458 add_template_parameters. Now a member.
13459 (typedef_hash_table::typedef_hash_table): Now a constructor;
13460 rename from create_typedef_hash.
13461 (typedef_hash_table::~typedef_hash_table): Now a destructor;
13462 rename from free_typedef_hash.
13463 (do_free_typedef_hash, make_cleanup_free_typedef_hash)
13464 (do_free_global_table): Remove.
13465 (typedef_hash_table::typedef_hash_table): New constructor; renamed
13466 from copy_type_recursive.
13467 (create_global_typedef_table): Remove.
13468 (typedef_hash_table::find_global_typedef): Now a member of
13469 typedef_hash_table.
13470 (typedef_hash_table::find_typedef): Rename from
13471 find_typedef_in_hash; now a member.
13472 (whatis_exp): Update.
13473 * extension.h (struct ext_lang_type_printers): Add constructor and
13474 destructor.
13475 (start_ext_lang_type_printers, free_ext_lang_type_printers): Don't
13476 declare.
13477 * extension.c (ext_lang_type_printers::ext_lang_type_printers):
13478 Now a constructor; rename from start_ext_lang_type_printers.
13479 (ext_lang_type_printers): Now a destructor; rename from
13480 free_ext_lang_type_printers.
13481 * c-typeprint.c (find_typedef_for_canonicalize, c_print_type_1):
13482 Update.
13483 (c_type_print_base_struct_union): Update. Remove cleanups.
13484
13485 2018-03-27 Tom Tromey <tom@tromey.com>
13486
13487 * dwarf-index-write.c: Include <cmath>.
13488
13489 2018-03-27 Joel Brobecker <brobecker@adacore.com>
13490
13491 * NEWS: Add entry describing new "set|show varsize-limit" command.
13492 * ada-lang.c (_initialize_ada_language): Add "set/show varsize-limit"
13493 command.
13494 * printcmd.c (_initialize_printcmd): Add "set var" alias of
13495 "set variable".
13496
13497 2018-03-27 Simon Marchi <simon.marchi@ericsson.com>
13498
13499 * Makefile.in (COMMON_SFILES): Add dwarf-index-common.c and
13500 dwarf-index-write.c
13501 (HFILES_NO_SRCDIR): Add dwarf-index-common.h and dwarf2read.h.
13502 * dwarf-index-common.c: New file.
13503 * dwarf-index-common.h: New file.
13504 * dwarf-index-write.c: New file.
13505 * dwarf2read.c: Include dwarf2read.h and dwarf-index-common.h.
13506 (struct dwarf2_section_info): Move from here.
13507 (dwarf2_section_info_def): Likewise.
13508 (DEF_VEC_O (dwarf2_section_info_def)): Likewise.
13509 (offset_type): Likewise.
13510 (DW2_GDB_INDEX_SYMBOL_STATIC_SET_VALUE): Likewise.
13511 (DW2_GDB_INDEX_SYMBOL_KIND_SET_VALUE): Likewise.
13512 (DW2_GDB_INDEX_CU_SET_VALUE): Likewise.
13513 (byte_swap): Likewise.
13514 (MAYBE_SWAP): Likewise.
13515 (dwarf2_per_cu_ptr): Likewise.
13516 (DEF_VEC_P (dwarf2_per_cu_ptr)): Likewise.
13517 (struct tu_stats): Likewise.
13518 (struct dwarf2_per_objfile): Likewise.
13519 (struct dwarf2_per_cu_data): Likewise.
13520 (struct signatured_type): Likewise.
13521 (sig_type_ptr): Likewise.
13522 (DEF_VEC_P (sig_type_ptr)): Likewise.
13523 (INDEX4_SUFFIX): Likewise.
13524 (INDEX5_SUFFIX): Likewise.
13525 (DEBUG_STR_SUFFIX): Likewise.
13526 (dwarf2_read_section): Make non-static.
13527 (mapped_index_string_hash): Move from here.
13528 (dwarf5_djb_hash): Likewise.
13529 (file_write): Likewise.
13530 (class data_buf): Likewise.
13531 (struct symtab_index_entry): Likewise.
13532 (struct mapped_symtab): Likewise.
13533 (find_slot): Likewise.
13534 (hash_expand): Likewise.
13535 (add_index_entry): Likewise.
13536 (uniquify_cu_indices): Likewise.
13537 (class c_str_view): Likewise.
13538 (class c_str_view_hasher): Likewise.
13539 (class vector_hasher): Likewise.
13540 (write_hash_table): Likewise.
13541 (psym_index_map): Likewise.
13542 (struct addrmap_index_data): Likewise.
13543 (add_address_entry): Likewise.
13544 (add_address_entry_worker): Likewise.
13545 (write_address_map): Likewise.
13546 (symbol_kind): Likewise.
13547 (write_psymbols): Likewise.
13548 (struct signatured_type_index_data): Likewise.
13549 (write_one_signatured_type): Likewise.
13550 (recursively_count_psymbols): Likewise.
13551 (recursively_write_psymbols): Likewise.
13552 (class debug_names): Likewise.
13553 (check_dwarf64_offsets): Likewise.
13554 (psyms_seen_size): Likewise.
13555 (write_gdbindex): Likewise.
13556 (write_debug_names): Likewise.
13557 (assert_file_size): Likewise.
13558 (write_psymtabs_to_index): Likewise.
13559 (save_gdb_index_command): Likewise.
13560 (_initialize_dwarf2_read): Don't register the "save gdb-index"
13561 command.
13562 * dwarf2read.h: New file.
13563
13564 2018-03-27 Joel Brobecker <brobecker@adacore.com>
13565
13566 PR gdb/22670
13567 * dwarf2read.c (dwarf2_physname): Do not return the demangled
13568 symbol name if the CU's language stores symbol names in linkage
13569 format.
13570 * language.h (struct language_defn)
13571 <la_store_sym_names_in_linkage_form_p>: New field. Adjust
13572 all instances of this struct.
13573
13574 2018-03-26 Tom Tromey <tom@tromey.com>
13575
13576 * stack.c (backtrace_command_1): Remove verbose code.
13577
13578 2018-03-26 Tom Tromey <tom@tromey.com>
13579
13580 * python/py-framefilter.c (py_print_type): Don't catch
13581 exceptions. Return void.
13582 (py_print_value): Likewise.
13583 (py_print_single_arg): Likewise.
13584 (enumerate_args): Don't catch exceptions.
13585 (py_print_args): Likewise.
13586 (py_print_frame): Likewise.
13587 (gdbpy_apply_frame_filter): Catch exceptions here.
13588
13589 2018-03-26 Tom Tromey <tom@tromey.com>
13590
13591 * stack.c (_initialize_stack): Remove trailing newlines from help
13592 text. Add "Usage" line to "backtrace" help.
13593
13594 2018-03-26 Tom Tromey <tom@tromey.com>
13595
13596 PR python/16486:
13597 * python/py-framefilter.c (py_print_args): Call wrap_hint.
13598
13599 2018-03-26 Tom Tromey <tom@tromey.com>
13600
13601 * python/py-framefilter.c (py_print_single_arg): Return
13602 EXT_LANG_BT_ERROR from catch.
13603
13604 2018-03-26 Tom Tromey <tom@tromey.com>
13605
13606 PR backtrace/15584:
13607 * stack.c (backtrace_command_1): Move some code into no-filters
13608 "if".
13609
13610 2018-03-26 Tom Tromey <tom@tromey.com>
13611
13612 * python/py-framefilter.c (throw_quit_or_print_exception): New
13613 function.
13614 (gdbpy_apply_frame_filter): Use it.
13615
13616 2018-03-26 Tom Tromey <tom@tromey.com>
13617
13618 PR cli/17716:
13619 * python/py-framefilter.c (py_print_type, py_print_value)
13620 (enumerate_args, py_print_args, gdbpy_apply_frame_filter): Use
13621 RETURN_MASK_ERROR.
13622
13623 2018-03-26 Tom Tromey <tom@tromey.com>
13624
13625 * python/py-framefilter.c (enumerate_args): Use
13626 gdb::unique_xmalloc_ptr.
13627
13628 2018-03-26 Tom Tromey <tom@tromey.com>
13629
13630 * python/py-framefilter.c (py_print_frame): Return
13631 EXT_LANG_BT_OK.
13632 (gdbpy_apply_frame_filter): Update comment.
13633 * extension.h (enum ext_lang_bt_status) <EXT_LANG_BT_COMPLETED>:
13634 Remove.
13635 <EXT_LANG_BT_NO_FILTERS>: Change value.
13636
13637 2018-03-26 Tom Tromey <tom@tromey.com>
13638
13639 PR backtrace/15582:
13640 * stack.c (backtrace_command): Parse "hide" argument.
13641 * python/py-framefilter.c (py_print_frame): Handle PRINT_HIDE.
13642 * extension.h (enum frame_filter_flags) <PRINT_HIDE>: New
13643 constant.
13644
13645 2018-03-26 Tom Tromey <tom@tromey.com>
13646
13647 * stack.c (backtrace_command_1): Remove "show_locals" parameter,
13648 add "flags".
13649 (backtrace_command): Remove "fulltrace", add "flags".
13650
13651 2018-03-26 Tom Tromey <tom@tromey.com>
13652
13653 * stack.c (backtrace_command): Rewrite command line parsing.
13654
13655 2018-03-26 Simon Marchi <simon.marchi@ericsson.com>
13656
13657 * dwarf2read.c (DEF_VEC_I(offset_type)): Remove.
13658
13659 2018-03-26 Simon Marchi <simon.marchi@ericsson.com>
13660
13661 * filename-seen-cache.h: Add include guard.
13662
13663 2018-03-26 Keith Seitz <keiths@redhat.com>
13664
13665 * symfile.c (place_section): Remove "struct" from section_addr_info
13666 in comment.
13667 * windows-nat.c (struct safe_symbol_file_add_args) <addrs>: Remove
13668 "struct" keyword from section_addr_info.
13669
13670 2018-03-26 Alan Hayward <alan.hayward@arm.com>
13671
13672 * regformats/regdef.h (reg): Add constructors.
13673
13674 2018-03-25 Pedro Alves <palves@redhat.com>
13675
13676 * eval.c (evaluate_funcall): Swap OP_VAR_MSYM_VALUE/OP_VAR_VALUE
13677 if then/else bodies in var_func_name extraction.
13678
13679 2018-03-23 Weimin Pan <weimin.pan@oracle.com>
13680
13681 * minsyms.c (lookup_minimal_symbol_and_objfile): Use
13682 lookup_minimal_symbol() to find symbol entry.
13683 * minsyms.h (lookup_minimal_symbol_and_objfile): Update comment.
13684
13685 2018-03-23 Keith Seitz <keiths@redhat.com>
13686
13687 PR c++/22968
13688 * dwarf2read.c (scan_partial_symbols): Scan structs/classes for
13689 nested type definitions for C++, too.
13690
13691 2018-03-23 Tom Tromey <tom@tromey.com>
13692
13693 * machoread.c (struct oso_el): Add a constructor. Don't define as
13694 a typedef.
13695 (macho_register_oso): Remove.
13696 (macho_symtab_read): Take a std::vector.
13697 (oso_el_compare_name): Now a std::sort comparator.
13698 (macho_symfile_read_all_oso): Take a std::vector.
13699 (macho_symfile_read): Use std::vector. Remove cleanups.
13700
13701 2018-03-22 Tom Tromey <tom@tromey.com>
13702
13703 * record-full.c (record_full_exec_insn): Use gdb::byte_vector.
13704 (record_full_goto_bookmark): Use std::string.
13705
13706 2018-03-22 Pedro Franco de Carvalho <pedromfc@linux.vnet.ibm.com>
13707
13708 PR tdep/18295
13709 * rs6000-tdep.c (skip_prologue): Match both stwux and stdux
13710 a single mask.
13711
13712 2018-03-22 Pedro Franco de Carvalho <pedromfc@linux.vnet.ibm.com>
13713
13714 * rs6000-tdep.c (store_insn_p): New function.
13715 (skip_prologue): New variable alloca_reg_offset. Set lr_reg
13716 and cr_reg to their unshifted values. Use store_insn_p to
13717 match LR saves using either R1 or fdata->alloca_reg. Use
13718 store_insn_p to match CR saves. Set alloca_reg_offset
13719 when alloca_reg and framep are set. Remove lr_reg shift
13720 when assigning to fdata->lr_register.
13721
13722 2018-03-22 Andreas Arnez <arnez@linux.vnet.ibm.com>
13723
13724 * linux-tdep.c (linux_info_proc): For "info proc cmdline", print
13725 command line args instead of emitting a warning.
13726
13727 2018-03-22 Simon Marchi <simon.marchi@polymtl.ca>
13728
13729 * tracepoint.h (struct static_tracepoint_marker): Initialize
13730 fields, define default constructor, move constructor and move
13731 assignment, disable the rest.
13732 <str_id, extra>: Make std::string.
13733 (release_static_tracepoint_marker): Remove.
13734 (free_current_marker): Remove.
13735 * tracepoint.c (free_current_marker): Remove.
13736 (parse_static_tracepoint_marker_definition): Adjust to
13737 std::string, use new hex2str overload.
13738 (release_static_tracepoint_marker): Remove.
13739 (print_one_static_tracepoint_marker): Get marker by reference
13740 and adjust to std::string.
13741 (info_static_tracepoint_markers_command): Adjust to std::vector
13742 changes
13743 * target.h (static_tracepoint_marker_p): Remove typedef.
13744 (DEF_VEC_P(static_tracepoint_marker_p)): Remove.
13745 (struct target_ops) <to_static_tracepoint_marker_at>: Return
13746 bool.
13747 <to_static_tracepoint_markers_by_strid>: Return std::vector.
13748 * target-debug.h
13749 (target_debug_print_VEC_static_tracepoint_marker_p_p): Remove.
13750 (target_debug_print_std_vector_static_tracepoint_marker): New.
13751 (target_debug_print_struct_static_tracepoint_marker_p): Rename
13752 to...
13753 (target_debug_print_static_tracepoint_marker_p): ... this.
13754 * target-delegates.c: Re-generate.
13755 * breakpoint.h (struct tracepoint) <static_trace_marker_id>:
13756 Make std::string.
13757 * breakpoint.c (init_breakpoint_sal): Adjust to std::string.
13758 (decode_static_tracepoint_spec): Adjust to std::vector.
13759 (tracepoint_print_one_detail): Adjust to std::string.
13760 (strace_marker_decode_location): Adjust to std::string.
13761 (update_static_tracepoint): Adjust to std::string, remove call
13762 to release_static_tracepoint_marker.
13763 * linux-nat.c (linux_child_static_tracepoint_markers_by_strid):
13764 Adjust to std::vector.
13765 * remote.c (remote_static_tracepoint_marker_at): Return bool.
13766 (remote_static_tracepoint_markers_by_strid): Adjust to
13767 std::vector.
13768 * common/rsp-low.h (hex2str): New overload with explicit count
13769 of bytes.
13770 * common/rsp-low.c (hex2str): New overload with explicit count
13771 of bytes.
13772 * unittests/rsp-low-selftests.c (test_hex2str): New function.
13773 (_initialize_rsp_low_selftests): Add test_hex2str test.
13774 * unittests/tracepoint-selftests.c
13775 (test_parse_static_tracepoint_marker_definition): Adjust to
13776 std::string.
13777
13778 2018-03-22 Simon Marchi <simon.marchi@polymtl.ca>
13779
13780 * tracepoint.c (parse_static_tracepoint_marker_definition):
13781 Consider case where the definition is followed by more
13782 definitions.
13783 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
13784 tracepoint-selftests.c.
13785 * unittests/tracepoint-selftests.c: New.
13786
13787 2018-03-21 Pedro Franco de Carvalho <pedromfc@linux.vnet.ibm.com>
13788
13789 * MAINTAINERS (Write After Approval): Add Pedro Franco de
13790 Carvalho.
13791
13792 2018-03-20 Stephen Roberts <stephen.roberts@arm.com>
13793
13794 * symtab.c (find_pc_sect_line): fixed indentation.
13795
13796 2018-03-20 Stephen Roberts <stephen.roberts@arm.com>
13797
13798 * symtab.c (find_pc_sect_line): now uses binary search.
13799
13800 2018-03-19 Tom Tromey <tom@tromey.com>
13801
13802 * rust-exp.y (struct_expr_tail, struct_expr_list): Add plain
13803 "IDENT" production.
13804
13805 2018-03-19 Pedro Alves <palves@redhat.com>
13806 Tom Tromey <tom@tromey.com>
13807
13808 * unittests/observable-selftests.c: New file.
13809 * common/observable.h: New file.
13810 * observable.h: New file.
13811 * ada-lang.c, ada-tasks.c, agent.c, aix-thread.c, annotate.c,
13812 arm-tdep.c, auto-load.c, auxv.c, break-catch-syscall.c,
13813 breakpoint.c, bsd-uthread.c, cli/cli-interp.c, cli/cli-setshow.c,
13814 corefile.c, dummy-frame.c, event-loop.c, event-top.c, exec.c,
13815 extension.c, frame.c, gdbarch.c, guile/scm-breakpoint.c,
13816 infcall.c, infcmd.c, inferior.c, inflow.c, infrun.c, jit.c,
13817 linux-tdep.c, linux-thread-db.c, m68klinux-tdep.c,
13818 mi/mi-cmd-break.c, mi/mi-interp.c, mi/mi-main.c, objfiles.c,
13819 ppc-linux-nat.c, ppc-linux-tdep.c, printcmd.c, procfs.c,
13820 python/py-breakpoint.c, python/py-finishbreakpoint.c,
13821 python/py-inferior.c, python/py-unwind.c, ravenscar-thread.c,
13822 record-btrace.c, record-full.c, record.c, regcache.c, remote.c,
13823 riscv-tdep.c, sol-thread.c, solib-aix.c, solib-spu.c, solib.c,
13824 spu-multiarch.c, spu-tdep.c, stack.c, symfile-mem.c, symfile.c,
13825 symtab.c, thread.c, top.c, tracepoint.c, tui/tui-hooks.c,
13826 tui/tui-interp.c, valops.c: Update all users.
13827 * tui/tui-hooks.c (tui_bp_created_observer)
13828 (tui_bp_deleted_observer, tui_bp_modified_observer)
13829 (tui_inferior_exit_observer, tui_before_prompt_observer)
13830 (tui_normal_stop_observer, tui_register_changed_observer):
13831 Remove.
13832 (tui_observers_token): New global.
13833 (attach_or_detach, tui_attach_detach_observers): New functions.
13834 (tui_install_hooks, tui_remove_hooks): Use
13835 tui_attach_detach_observers.
13836 * record-btrace.c (record_btrace_thread_observer): Remove.
13837 (record_btrace_thread_observer_token): New global.
13838 * observer.sh: Remove.
13839 * observer.c: Rename to observable.c.
13840 * observable.c (namespace gdb_observers): Define new objects.
13841 (observer_debug): Move into gdb_observers namespace.
13842 (struct observer, struct observer_list, xalloc_observer_list_node)
13843 (xfree_observer_list_node, generic_observer_attach)
13844 (generic_observer_detach, generic_observer_notify): Remove.
13845 (_initialize_observer): Update.
13846 Don't include observer.inc.
13847 * Makefile.in (generated_files): Remove observer.h, observer.inc.
13848 (clean mostlyclean): Likewise.
13849 (observer.h, observer.inc): Remove targets.
13850 (SUBDIR_UNITTESTS_SRCS): Add observable-selftests.c.
13851 (COMMON_SFILES): Use observable.c, not observer.c.
13852 * .gitignore: Remove observer.h.
13853
13854 2018-03-18 Tom Tromey <tom@tromey.com>
13855
13856 * solib.c (gdb_bfd_lookup_symbol_from_symtab): Use
13857 gdb::def_vector.
13858 (bfd_lookup_symbol_from_dyn_symtab): Likewise.
13859
13860 2018-03-17 Tom Tromey <tom@tromey.com>
13861
13862 * auto-load.c (auto_load_objfile_script_1): Use std::string.
13863
13864 2018-03-17 Tom Tromey <tom@tromey.com>
13865
13866 * target.c (class scoped_target_fd): New.
13867 (target_fileio_close_cleanup): Remove.
13868 (target_fileio_read_alloc_1): Use scoped_target_fd.
13869
13870 2018-03-16 Simon Marchi <simon.marchi@polymtl.ca>
13871
13872 * silent-rules.mk: New.
13873 * Makefile.in: Include silent-rules.mk
13874 (srcdir, VPATH, top_srcdir): Move up.
13875 (COMPILE): Add ECHO_CXX.
13876 (test-cp-name-parser$(EXEEXT)): Add ECHO_CXXLD.
13877 (init.c): Add ECHO_INIT_C.
13878 (gdb$(EXEEXT)): Add SILENCE and ECHO_CXXLD.
13879 (version.c): Add ECHO_GEN.
13880 (printcmd.o): Add ECHO_CXX.
13881 (target-float.o): Add ECHO_CXX.
13882 (ada-exp.o): Add ECHO_CXX.
13883 (stamp-xml): Add SILENCE and ECHO_GEN_XML_BUILTIN.
13884 (insight$(EXEEXT)): Add ECHO_CXXLD.
13885 * gnulib/configure.ac: Add AM_SILENT_RULES.
13886 * gnulib/aclocal.m4: Re-generate.
13887 * gnulib/configure: Re-generate.
13888 * gnulib/import/Makefile.in: Re-generate.
13889
13890 2018-03-16 Tom Tromey <tom@tromey.com>
13891
13892 * xcoffread.c (xcoff_symfile_offsets): Change type of "addrs".
13893 * utils.h (make_cleanup_free_section_addr_info): Don't declare.
13894 * utils.c (do_free_section_addr_info)
13895 (make_cleanup_free_section_addr_info): Remove.
13896 * symfile.h (struct other_sections): Add constructor.
13897 (struct section_addr_info): Remove.
13898 (section_addr_info): New typedef.
13899 (struct sym_fns) <sym_offsets>: Change type of parameter.
13900 (build_section_addr_info_from_objfile)
13901 (relative_addr_info_to_section_offsets, addr_info_make_relative)
13902 (default_symfile_offsets, symbol_file_add)
13903 (symbol_file_add_from_bfd)
13904 (build_section_addr_info_from_section_table): Update.
13905 (alloc_section_addr_info, free_section_addr_info): Don't declare.
13906 * symfile.c (alloc_section_addr_info): Remove.
13907 (build_section_addr_info_from_section_table): Change return type.
13908 Update.
13909 (build_section_addr_info_from_bfd)
13910 (build_section_addr_info_from_objfile): Likewise.
13911 (free_section_addr_info): Remove.
13912 (relative_addr_info_to_section_offsets): Change type of "addrs".
13913 (addrs_section_compar): Now a std::sort comparator.
13914 (addrs_section_sort): Change return type.
13915 (addr_info_make_relative): Change type of "addrs". Update.
13916 (default_symfile_offsets, syms_from_objfile_1)
13917 (syms_from_objfile, symbol_file_add_with_addrs): Likewise.
13918 (symbol_file_add_separate): Update.
13919 (symbol_file_add): Change type of "addrs". Update.
13920 (add_symbol_file_command): Update. Remove cleanups.
13921 * symfile-mem.c (symbol_file_add_from_memory): Update. Remove
13922 cleanups.
13923 * symfile-debug.c (debug_sym_offsets): Change type of "info".
13924 * solib.c (solib_read_symbols): Update.
13925 * objfiles.c (objfile_relocate): Update. Remove cleanups.
13926 * machoread.c (macho_symfile_offsets): Update.
13927 * jit.c (jit_bfd_try_read_symtab): Update.
13928
13929 2018-03-15 Simon Marchi <simon.marchi@polymtl.ca>
13930
13931 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
13932 unittests/utils-selftests.c.
13933 * unittests/utils-selftests.c: New file.
13934
13935 2018-03-14 Tom Tromey <tom@tromey.com>
13936
13937 PR cli/14977:
13938 * printcmd.c (printf_c_string, printf_wide_c_string): Special case
13939 for NULL.
13940
13941 2018-03-14 Tom Tromey <tom@tromey.com>
13942
13943 PR cli/19918:
13944 * printcmd.c (printf_pointer): Allow "-" in format.
13945
13946 2018-03-14 Tom Tromey <tom@tromey.com>
13947
13948 * printcmd.c (_initialize_printcmd): Add usage to printf.
13949
13950 2018-03-14 Yao Qi <qiyao@sourceware.org>
13951
13952 * MAINTAINERS: Update my email address.
13953
13954 2018-03-13 Tom Tromey <tom@tromey.com>
13955
13956 * machoread.c (macho_check_dsym): Change filenamep to a
13957 std::string*.
13958 (macho_symfile_read): Update.
13959 * symfile.c (load_command): Use std::string.
13960
13961 2018-03-12 Andrew Burgess <andrew.burgess@embecosm.com>
13962
13963 * riscv-tdep.c (riscv_sw_breakpoint_from_kind): Add localization
13964 to error message string.
13965 (riscv_register_name): Use xsnprintf instead of sprintf.
13966 (riscv_insn::fetch_instruction): Use gdb_assert instead of
13967 internal_error.
13968 (riscv_print_arg_location): Use gdb_assert_not_reached instead of
13969 error.
13970 (riscv_push_dummy_call): Likewise.
13971
13972 2018-03-12 Tom Tromey <tom@tromey.com>
13973
13974 * rs6000-aix-tdep.c (rs6000_aix_core_xfer_shared_libraries_aix):
13975 Use gdb::byte_vector.
13976 * arm-tdep.c (arm_exidx_new_objfile): Use gdb::byte_vector.
13977
13978 2018-03-12 Yao Qi <yao.qi@linaro.org>
13979
13980 * ia64-libunwind-tdep.c (libunwind_get_reg_special): Change
13981 parameter type to readable_regcache.
13982 * ia64-libunwind-tdep.h (libunwind_get_reg_special): Update
13983 the declaration.
13984
13985 2018-03-11 Tom Tromey <tom@tromey.com>
13986
13987 * dwarf2read.c (struct nextfield): Add initializers.
13988 (struct nextfnfield): Remove.
13989 (struct fnfieldlist): Add initializers. Remove "length" and
13990 "head", use std::vector.
13991 (struct decl_field_list): Remove.
13992 (struct field_info): Add initializers.
13993 <fields, baseclasses>: Now std::vector.
13994 <nbaseclasses, nfnfields, typedef_field_list_count,
13995 nested_types_list_count>: Remove.
13996 (dwarf2_add_field, dwarf2_add_type_defn)
13997 (dwarf2_attach_fields_to_type, dwarf2_add_member_fn)
13998 (dwarf2_attach_fn_fields_to_type, handle_struct_member_die)
13999 (process_structure_scope): Update.
14000
14001 2018-03-11 Tom Tromey <tom@tromey.com>
14002
14003 * dwarf2read.c (sort_tu_by_abbrev_offset): Change to be suitable
14004 for use by std::sort.
14005 (build_type_psymtabs_1): Use std::vector.
14006
14007 2018-03-09 Eli Zaretskii <eliz@gnu.org>
14008
14009 * top.c (print_gdb_configuration): Reflect LIBIPT, LIBMEMCHECK,
14010 and LIBMPFR in the printed configuration.
14011
14012 2018-03-08 Tom Tromey <tom@tromey.com>
14013
14014 * source.c (get_filename_and_charpos): Use scoped_fd.
14015 * nto-procfs.c (procfs_open_1): Use scoped_fd.
14016 (procfs_pidlist): Likewise.
14017 * procfs.c (proc_get_LDT_entry): Use scoped_fd.
14018 (iterate_over_mappings): Likewise.
14019
14020 2018-03-08 Tom Tromey <tom@tromey.com>
14021
14022 * infcall.c (struct call_return_meta_info)
14023 <stack_temporaries_enabled>: Remove.
14024 (get_call_return_value, call_function_by_hand_dummy): Update.
14025 * thread.c (disable_thread_stack_temporaries): Remove.
14026 (enable_thread_stack_temporaries): Remove.
14027 (thread_stack_temporaries_enabled_p): Return bool.
14028 (push_thread_stack_temporary, value_in_thread_stack_temporaries)
14029 (get_last_thread_stack_temporary): Update.
14030 * eval.c (evaluate_subexp): Update.
14031 * gdbthread.h (class enable_thread_stack_temporaries): Now a
14032 class, not a function.
14033 (value_ptr, value_vec): Remove typedefs.
14034 (class thread_info) <stack_temporaries_enabled>: Now bool.
14035 <stack_temporaries>: Now a std::vector.
14036 (thread_stack_temporaries_enabled_p)
14037 (value_in_thread_stack_temporaries): Return bool.
14038
14039 2018-03-08 Simon Marchi <simon.marchi@ericsson.com>
14040
14041 * remote.c (putpkt_binary): Fix omitted bytes reporting.
14042 (getpkt_or_notif_sane_1): Likewise.
14043
14044 2018-03-08 Simon Marchi <simon.marchi@polymtl.ca>
14045
14046 * build-id.c (build_id_to_debug_bfd): Use std::string.
14047
14048 2018-03-08 Simon Marchi <simon.marchi@polymtl.ca>
14049
14050 * build-id.c (find_separate_debug_file_by_buildid): Return
14051 std::string.
14052 * build-id.h (find_separate_debug_file_by_buildid): Return
14053 std::string.
14054 * coffread.c (coff_symfile_read): Adjust to std::string.
14055 * elfread.c (elf_symfile_read): Adjust to std::string.
14056 * symfile.c (separate_debug_file_exists): Change parameter to
14057 std::string.
14058 (find_separate_debug_file): Return std::string.
14059 (find_separate_debug_file_by_debuglink): Return std::string.
14060 * symfile.h (find_separate_debug_file_by_debuglink): Return
14061 std::string.
14062
14063 2018-03-08 Simon Marchi <simon.marchi@polymtl.ca>
14064
14065 * common/xml-utils.c (xml_escape_text): Move code to...
14066 (xml_escape_text_append): ... this new function.
14067 * common/xml-utils.h (xml_escape_text_append): New declaration.
14068 * unittests/xml-utils-selftests.c (test_xml_escape_text_append):
14069 New function.
14070 (_initialize_xml_utils): register test_xml_escape_text_append as
14071 a selftest.
14072
14073 2018-03-07 Alan Hayward <alan.hayward@arm.com>
14074
14075 * defs.h: Remove MAX_REGISTER_SIZE.
14076 * regcache.c (init_regcache_descr): Remove MAX_REGISTER_SIZE
14077 asserts.
14078 * python/py-unwind.c (pyuw_sniffer): Likewise.
14079
14080 2018-03-07 Tom Tromey <tom@tromey.com>
14081
14082 * linux-tdep.c (linux_info_proc): Update.
14083 * target.h (struct target_ops) <to_fileio_readlink>: Return
14084 optional<string>.
14085 (target_fileio_readlink): Return optional<string>.
14086 * remote.c (remote_hostio_readlink): Return optional<string>.
14087 * inf-child.c (inf_child_fileio_readlink): Return
14088 optional<string>.
14089 * target.c (target_fileio_readlink): Return optional<string>.
14090
14091 2018-03-07 Andrew Burgess <andrew.burgess@embecosm.com>
14092
14093 * regcache.c (cooked_read_test): Add riscv to the list of
14094 architectures that have a save_reggroup.
14095
14096 2018-03-07 Andreas Arnez <arnez@linux.vnet.ibm.com>
14097
14098 * gnu-v3-abi.c (gnuv3_rtti_type): Add early exit if the given
14099 value is not a dynamic class object.
14100
14101 2018-03-06 Tom Tromey <tom@tromey.com>
14102
14103 * rust-exp.y: Formatting fixes.
14104
14105 2018-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
14106
14107 * riscv-tdep.c (riscv_register_name): Remove target description
14108 support.
14109 (riscv_gdbarch_init): Remove target description check.
14110
14111 2018-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
14112
14113 * riscv-tdep.c: Remove 'Contributed by ...' lines from header
14114 comment.
14115 * riscv-tdep.h: Likewise.
14116
14117 2018-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
14118
14119 * riscv-tdep.c (riscv_pseudo_register_read): Delete.
14120 (riscv_pseudo_register_write): Delete.
14121 (riscv_gdbarch_init): Remove all use of pseudo registers.
14122
14123 2018-03-06 Simon Marchi <simon.marchi@polymtl.ca>
14124
14125 * record-btrace.c (btrace_print_lines): Replace cleanup
14126 parameter with RAII equivalents.
14127 (btrace_insn_history): Replace cleanup with RAII equivalents.
14128 * ui-out.h (make_cleanup_ui_out_list_begin_end,
14129 make_cleanup_ui_out_tuple_begin_end): Remove.
14130 * ui-out.c (struct ui_out_end_cleanup_data, do_cleanup_end,
14131 make_cleanup_ui_out_end, make_cleanup_ui_out_tuple_begin_end,
14132 make_cleanup_ui_out_list_begin_end): Remove.
14133
14134 2018-03-06 Simon Marchi <simon.marchi@polymtl.ca>
14135
14136 * record-btrace.c (record_btrace_maybe_mark_async_event): Change
14137 parameter types to std::vector. Use bool.
14138 (record_btrace_wait): Replace VEC(tp_t) with
14139 std::vector<thread_info *>.
14140 * common/gdb_vecs.h (unordered_remove, ordered_remove): New.
14141
14142 2018-03-06 Simon Marchi <simon.marchi@polymtl.ca>
14143
14144 * record-btrace.c (record_btrace_disable_callback): Remove.
14145 (struct scoped_btrace_disable): New.
14146 (record_btrace_open): Use scoped_btrace_disable.
14147
14148 2018-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
14149
14150 * riscv-tdep.c (riscv_return_value): Change type to ULONGEST for
14151 reading values from registers.
14152
14153 2018-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
14154
14155 * riscv-tdep.c (riscv_push_dummy_call): Use core_addr_to_string_nz
14156 where appropriate.
14157
14158 2018-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
14159
14160 * riscv-tdep.c (riscv_print_arg_location): Add header comment,
14161 change parameter type. Use GDB's print functions, and use
14162 core_addr_to_string where appropriate.
14163 (riscv_push_dummy_call): Use core_addr_to_string where
14164 appropriate, update call to riscv_print_arg_location, and reindent
14165 a few lines.
14166 (riscv_return_value): Update call to riscv_print_arg_location.
14167
14168 2018-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
14169 Tim Newsome <tim@sifive.com>
14170 Albert Ou <a0u@eecs.berkeley.edu>
14171 Darius Rad <darius@bluespec.com>
14172
14173 * Makefile.in (ALL_TARGET_OBS): Add riscv-tdep.o
14174 (HFILES_NO_SRCDIR): Add riscv-tdep.h.
14175 (ALLDEPFILES): Add riscv-tdep.c
14176 * configure.tgt: Add riscv support.
14177 * riscv-tdep.c: New file.
14178 * riscv-tdep.h: New file.
14179 * NEWS: Mention new target.
14180 * MAINTAINERS: Add entry for riscv.
14181
14182 2018-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
14183
14184 * amd64-tdep.c (amd64_classify_aggregate): Ignore zero sized
14185 fields within aggregates.
14186
14187 2018-03-04 Simon Marchi <simon.marchi@polymtl.ca>
14188
14189 * record-btrace.c (btrace_print_lines): Change type of flags to
14190 gdb_disassembly_flags.
14191
14192 2018-03-04 John Baldwin <jhb@FreeBSD.org>
14193
14194 * fbsd-nat.c: Include "inf-ptrace.h".
14195 (USE_SIGTRAP_SIGINFO): Conditionally define.
14196 [USE_SIGTRAP_SIGINFO] (fbsd_handle_debug_trap): New function.
14197 (fbsd_wait) [USE_SIGTRAP_SIGINFO]: Call "fbsd_handle_debug_trap".
14198 [USE_SIGTRAP_SIGINFO] (fbsd_stopped_by_sw_breakpoint): New
14199 function.
14200 [USE_SIGTRAP_SIGINFO] (fbsd_supports_stopped_by_sw_breakpoint):
14201 Likewise.
14202 [USE_SIGTRAP_SIGINFO] (fbsd_supports_stopped_by_hw_breakpoint):
14203 Likewise.
14204 (fbsd_nat_add_target) [USE_SIGTRAP_SIGINFO]: Set
14205 "stopped_by_sw_breakpoint", "supports_stopped_by_sw_breakpoint",
14206 "supports_stopped_by_hw_breakpoint" target methods.
14207
14208 2018-03-04 John Baldwin <jhb@FreeBSD.org>
14209
14210 * NEWS (Changes since GDB 8.1): Add "set/show debug fbsd-nat".
14211 * fbsd-nat.c (debug_fbsd_nat): New variable.
14212 (show_fbsd_nat_debug): New function.
14213 (fbsd_wait): Log LWP info if "debug_fbsd_nat" is enabled.
14214 (_initialize_fbsd_nat): Add "fbsd-nat" debug boolean command.
14215
14216 2018-03-04 John Baldwin <jhb@FreeBSD.org>
14217
14218 * nat/x86-dregs.c (x86_dr_stopped_by_hw_breakpoint): New function.
14219 * nat/x86-dregs.h (x86_dr_stopped_by_hw_breakpoint): New
14220 prototype.
14221 * x86-nat.c (x86_stopped_by_hw_breakpoint): New function.
14222 (x86_use_watchpoints): Set "stopped_by_hw_breakpoint" target
14223 method.
14224
14225 2018-03-02 Simon Marchi <simon.marchi@polymtl.ca>
14226
14227 * common/gdb_vecs.c (free_char_ptr_vec): Remove.
14228 * common/gdb_vecs.h (free_char_ptr_vec): Remove.
14229
14230 2018-03-02 Simon Marchi <simon.marchi@polymtl.ca>
14231
14232 * charset.c (struct charset_vector): New.
14233 (charsets): Change type to charset_vector.
14234 (find_charset_names): Adjust.
14235 (add_one): Adjust.
14236 (_initialize_charset): Adjust.
14237
14238 2018-03-02 Simon Marchi <simon.marchi@polymtl.ca>
14239
14240 * progspace.h (struct program_space) <deleted_solibs>: Change
14241 type to std::vector<std::string>.
14242 * progspace.c (clear_program_space_solib_cache): Adjust.
14243 * breakpoint.c (print_solib_event): Adjust.
14244 (check_status_catch_solib): Adjust.
14245 * solib.c (update_solib_list): Adjust.
14246 * ui-out.h (class ui_out) <field_string>: New overload.
14247 * ui-out.c (ui_out::field_string): New overload.
14248
14249 2018-03-02 Simon Marchi <simon.marchi@polymtl.ca>
14250
14251 * progspace.h (struct program_space): Add constructor and
14252 destructor, initialize fields.
14253 (add_program_space): Remove.
14254 * progspace.c (add_program_space): Rename to...
14255 (program_space::program_space): ... this.
14256 (release_program_space): Rename to...
14257 (program_space::~program_space): ... this.
14258 (delete_program_space): Use delete to delete program_space.
14259 (initialize_progspace): Use new to allocate program_space.
14260 * inferior.c (add_inferior_with_spaces): Likewise.
14261 (clone_inferior_command): Likewise.
14262 * infrun.c (follow_fork_inferior): Likewise.
14263 (handle_vfork_child_exec_or_exit): Likewise.
14264
14265 2018-03-02 Simon Marchi <simon.marchi@polymtl.ca>
14266
14267 * common/gdb_vecs.h (make_cleanup_free_char_ptr_vec): Remove.
14268 (delim_string_to_char_ptr_vec): Return std::vector of
14269 gdb::unique_xmalloc_ptr.
14270 (dirnames_to_char_ptr_vec_append): Take std::vector of
14271 gdb::unique_xmalloc_ptr.
14272 (dirnames_to_char_ptr_vec): Return std::vector of
14273 gdb::unique_xmalloc_ptr.
14274 * common/gdb_vecs.c (delim_string_to_char_ptr_vec_append):
14275 Take std::vector of gdb::unique_xmalloc_ptr, adjust the code.
14276 (delim_string_to_char_ptr_vec): Return an std::vector of
14277 gdb::unique_xmalloc_ptr, adjust the code.
14278 (dirnames_to_char_ptr_vec_append): Take an std::vector of
14279 gdb::unique_xmalloc_ptr, adjust the code.
14280 (dirnames_to_char_ptr_vec): Return an std::vector of
14281 gdb::unique_xmalloc_ptr, adjust the code.
14282 * auto-load.c (auto_load_safe_path_vec): Change type to
14283 std::vector of gdb::unique_xmalloc_ptr.
14284 (auto_load_expand_dir_vars): Return an std::vector of
14285 gdb::unique_xmalloc_ptr, adjust the code.
14286 (auto_load_safe_path_vec_update): Adjust.
14287 (filename_is_in_auto_load_safe_path_vec): Adjust.
14288 (auto_load_objfile_script_1): Adjust.
14289 * build-id.c (build_id_to_debug_bfd): Adjust.
14290 * linux-thread-db.c (thread_db_load_search): Adjust.
14291 * source.c (add_path): Adjust.
14292 (openp): Adjust.
14293 * symfile.c (find_separate_debug_file): Adjust.
14294 * utils.c (do_free_char_ptr_vec): Remove.
14295 (make_cleanup_free_char_ptr_vec): Remove.
14296
14297 2018-03-01 Sergio Durigan Junior <sergiodj@redhat.com>
14298
14299 PR gdb/22907
14300 * common/pathstuff.c: Conditionally include "<windows.h>".
14301
14302 2018-03-01 Georg Sauthoff <mail@georg.so>
14303
14304 PR gdb/22888
14305 * gcore.in: Quote variables and switch interpreter to bash.
14306
14307 2018-03-01 Tom Tromey <tom@tromey.com>
14308
14309 * dwarf2read.c (alloc_discriminant_info): Fix default_index
14310 assertion. Add assertion for discriminant_index.
14311 (quirk_rust_enum): Use correct base type name in univariant case.
14312
14313 2018-03-01 Simon Marchi <simon.marchi@ericsson.com>
14314
14315 * record.c (get_call_history_modifiers): Return a
14316 record_print_flags.
14317 (cmd_record_call_history): Adjust.
14318 * record-btrace.c (record_btrace_call_history): Adjust.
14319 (record_btrace_call_history_range): Adjust.
14320 (record_btrace_call_history_from): Adjust.
14321 * target-debug.h (target_debug_print_record_print_flags): New.
14322 * target-delegates.c: Re-generate.
14323 * target.c (target_call_history): Change flags type.
14324 (target_call_history_from): Likewise.
14325 (target_call_history_range): Likewise.
14326 * target.h (struct target_ops) <target_call_history>: Likewise.
14327 (target_call_history_from): Likewise.
14328 (target_call_history_range): Likewise.
14329
14330 2018-02-28 Sergio Durigan Junior <sergiodj@redhat.com>
14331 Simon Marchi <simon.marchi@polymtl.ca>
14332
14333 * common/common-utils.c: Include "sys/stat.h".
14334 (is_regular_file): Move here from "source.c"; change return
14335 type to "bool".
14336 * common/common-utils.h (is_regular_file): New prototype.
14337 * common/pathstuff.c (contains_dir_separator): New function.
14338 * common/pathstuff.h (contains_dir_separator): New prototype.
14339 * source.c: Don't include "sys/stat.h".
14340 (is_regular_file): Move to "common/common-utils.c".
14341
14342 2018-02-28 Sergio Durigan Junior <sergiodj@redhat.com>
14343
14344 * Makefile.in (COMMON_SFILES): Add "common/pathstuff.c".
14345 (HFILES_NO_SRCDIR): Add "common/pathstuff.h".
14346 * auto-load.c: Include "common/pathstuff.h".
14347 * common/common-def.h (current_directory): Move here.
14348 * common/gdb_tilde_expand.c (gdb_tilde_expand_up): New
14349 function.
14350 * common/gdb_tilde_expand.h (gdb_tilde_expand_up): New
14351 prototype.
14352 * common/pathstuff.c: New file.
14353 * common/pathstuff.h: New file.
14354 * compile/compile.c: Include "common/pathstuff.h".
14355 * defs.h (current_directory): Move to "common/common-defs.h".
14356 * dwarf2read.c: Include "common/pathstuff.h".
14357 * exec.c: Likewise.
14358 * guile/scm-safe-call.c: Likewise.
14359 * linux-thread-db.c: Likewise.
14360 * main.c: Likewise.
14361 * nto-tdep.c: Likewise.
14362 * objfiles.c: Likewise.
14363 * source.c: Likewise.
14364 * symtab.c: Likewise.
14365 * utils.c: Include "common/pathstuff.h".
14366 (gdb_realpath): Move to "common/pathstuff.c".
14367 (gdb_realpath_keepfile): Likewise.
14368 (gdb_abspath): Likewise.
14369 * utils.h (gdb_realpath): Move to "common/pathstuff.h".
14370 (gdb_realpath_keepfile): Likewise.
14371 (gdb_abspath): Likewise.
14372
14373 2018-02-28 John Baldwin <jhb@FreeBSD.org>
14374
14375 * fbsd-nat.c (fbsd_resume): Use PT_SETSTEP for stepping and a
14376 wildcard process pid for super_resume for kernels with a
14377 specific bug.
14378
14379 2018-02-27 Phil Muldoon <pmuldoon@redhat.com>
14380
14381 * compile/compile.c (get_args): Add additional comments
14382 explaining function.
14383
14384 2018-02-27 Simon Marchi <simon.marchi@polymtl.ca>
14385 Tom Tromey <tom@tromey.com>
14386
14387 * target.h (memory_write_request_s): Remove typedef. Don't define
14388 VEC.
14389 (target_write_memory_blocks): Change argument to std::vector.
14390 (struct memory_write_request): Add constructor.
14391 * target-memory.c (compare_block_starting_address): Return bool.
14392 Change argument types.
14393 (claim_memory): Change arguments to use std::vector.
14394 (split_regular_and_flash_blocks, blocks_to_erase)
14395 (compute_garbled_blocks): Likewise.
14396 (cleanup_request_data, cleanup_write_requests_vector): Remove.
14397 (target_write_memory_blocks): Change argument to std::vector.
14398 * symfile.c (struct load_section_data): Add constructor and
14399 destructor. Use std::vector for "requests".
14400 (struct load_progress_data): Add initializers.
14401 (load_section_callback): Update. Use "new".
14402 (clear_memory_write_data): Remove.
14403 (generic_load): Update.
14404
14405 2018-02-27 Alan Hayward <alan.hayward@arm.com>
14406
14407 * arch/aarch64.h: Use common/tdesc.h.
14408
14409 2018-02-26 Maciej W. Rozycki <macro@mips.com>
14410
14411 * mips-tdep.c (mips_gdbarch_init): Don't use a 32-bit BFD
14412 architecture with a 64-bit ABI.
14413
14414 2018-02-26 Maciej W. Rozycki <macro@mips.com>
14415
14416 * gdb/mips-tdep.c (mips_gdbarch_init): Reorder ABI determination
14417 ahead of target description loading.
14418
14419 2018-02-26 Tom Tromey <tom@tromey.com>
14420
14421 * stack.c (backtrace_command_1): Update.
14422 * python/python-internal.h (gdbpy_apply_frame_filter): Change type
14423 of "flags".
14424 * python/py-framefilter.c (py_print_frame)
14425 (gdbpy_apply_frame_filter): Change type of "flags".
14426 * mi/mi-cmd-stack.c (mi_apply_ext_lang_frame_filter): Change type
14427 of "flags".
14428 (mi_cmd_stack_list_frames, mi_cmd_stack_list_locals)
14429 (mi_cmd_stack_list_args, mi_cmd_stack_list_variables): Update.
14430 * extension.h (enum frame_filter_flag): Rename from
14431 frame_filter_flags.
14432 (frame_filter_flags): Define using DEF_ENUM_FLAGS_TYPE.
14433 (apply_ext_lang_frame_filter): Change type of "flags".
14434 * extension.c (apply_ext_lang_frame_filter): Change type of
14435 "flags".
14436 * extension-priv.h (struct extension_language_ops)
14437 <apply_frame_filter>: Change type of "flags".
14438
14439 2018-02-26 Tom Tromey <tom@tromey.com>
14440
14441 PR python/16497:
14442 * stack.c (backtrace_command_1): Set PRINT_MORE_FRAMES flag. Fix
14443 off-by-one in py_end computation.
14444 * python/py-framefilter.c (gdbpy_apply_frame_filter): Handle
14445 PRINT_MORE_FRAMES.
14446 * extension.h (enum frame_filter_flags) <PRINT_MORE_FRAMES>: New
14447 constant.
14448
14449 2018-02-26 Tom Tromey <tom@tromey.com>
14450
14451 * dwarf2read.c (struct variant_field): New.
14452 (struct nextfield) <variant>: New field.
14453 (dwarf2_add_field): Handle DW_TAG_variant_part.
14454 (dwarf2_attach_fields_to_type): Attach a discriminant_info to a
14455 discriminated union.
14456 (read_structure_type): Handle DW_TAG_variant_part.
14457 (handle_struct_member_die): New function, extracted from
14458 process_structure_scope. Handle DW_TAG_variant.
14459 (process_structure_scope): Handle discriminated unions. Call
14460 handle_struct_member_die.
14461
14462 2018-02-26 Tom Tromey <tom@tromey.com>
14463
14464 * rust-lang.h (rust_last_path_segment): Declare.
14465 * rust-lang.c (rust_last_path_segment): Now public. Change
14466 contract.
14467 (struct disr_info): Remove.
14468 (RUST_ENUM_PREFIX, RUST_ENCODED_ENUM_REAL)
14469 (RUST_ENCODED_ENUM_HIDDEN, rust_union_is_untagged)
14470 (rust_get_disr_info, rust_tuple_variant_type_p): Remove.
14471 (rust_enum_p, rust_enum_variant): New function.
14472 (rust_underscore_fields): Remove "offset" parameter.
14473 (rust_print_enum): New function.
14474 (rust_val_print) <TYPE_CODE_UNION>: Remove enum code.
14475 <TYPE_CODE_STRUCT>: Call rust_print_enum when appropriate.
14476 (rust_print_struct_def): Add "for_rust_enum" parameter. Handle
14477 enums.
14478 (rust_internal_print_type): New function, from rust_print_type.
14479 Remove enum code.
14480 (rust_print_type): Call rust_internal_print_type.
14481 (rust_evaluate_subexp) <STRUCTOP_ANONYMOUS, STRUCTOP_STRUCT>:
14482 Update enum handling.
14483 * dwarf2read.c (struct dwarf2_cu) <rust_unions>: New field.
14484 (rust_fully_qualify, alloc_discriminant_info, quirk_rust_enum)
14485 (rust_union_quirks): New functions.
14486 (process_full_comp_unit, process_full_type_unit): Call
14487 rust_union_quirks.
14488 (process_structure_scope): Update rust_unions if necessary.
14489
14490 2018-02-26 Tom Tromey <tom@tromey.com>
14491
14492 * value.h (value_union_variant): Declare.
14493 * valops.c (value_union_variant): New function.
14494 * gdbtypes.h (TYPE_FLAG_DISCRIMINATED_UNION): New macro.
14495 (struct discriminant_info): New.
14496 (enum dynamic_prop_node_kind) <DYN_PROP_DISCRIMINATED>: New
14497 enumerator.
14498 (struct main_type) <flag_discriminated_union>: New field.
14499
14500 2018-02-26 Tom Tromey <tom@tromey.com>
14501
14502 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
14503 unittests/unpack-selftests.c.
14504 * unittests/unpack-selftests.c: New file.
14505 * value.c (unpack_bits_as_long): Fix bugs in non-bitfield cases.
14506
14507 2018-02-26 Yao Qi <yao.qi@linaro.org>
14508
14509 * dwarf2read.c (struct partial_die_info) <read>: New method.
14510 (read_partial_die): Remove the declaration.
14511 (load_partial_dies): Update.
14512 (partial_die_info::partial_die_info):
14513 (read_partial_die): Change it to partial_die_info::read.
14514
14515 2018-02-26 Yao Qi <yao.qi@linaro.org>
14516
14517 * dwarf2read.c (struct partial_die_info) <fixup>: New method.
14518 (fixup_partial_die): Remove declaration.
14519 (scan_partial_symbols): Update.
14520 (partial_die_parent_scope): Likewise.
14521 (partial_die_full_name): Likewise.
14522 (fixup_partial_die): Change it to partial_die_info::fixup.
14523
14524 2018-02-26 Yao Qi <yao.qi@linaro.org>
14525
14526 * dwarf2read.c (read_partial_die): Update the declaration.
14527 (load_partial_dies): Caller update.
14528 (read_partial_die): Remove one argument abbrev_len.
14529
14530 2018-02-26 Yao Qi <yao.qi@linaro.org>
14531
14532 * dwarf2read.c (struct partial_die_info): Add ctor, delete
14533 assignment operator.
14534 (load_partial_dies): Use ctor and copy ctor.
14535 (read_partial_die): Update.
14536 (dwarf2_cu::find_partial_die): Use ctor.
14537
14538 2018-02-26 Yao Qi <yao.qi@linaro.org>
14539
14540 * dwarf2read.c (struct dwarf2_cu) <find_partial_die>: New method.
14541 (find_partial_die_in_comp_unit): Change it to
14542 dwarf2_cu::find_partial_die.
14543 (find_partial_die): Update.
14544
14545 2018-02-26 Yao Qi <yao.qi@linaro.org>
14546
14547 * dwarf2read.c (read_partial_die): Remove the code checking abbrev
14548 is NULL.
14549
14550 2018-02-26 Yao Qi <yao.qi@linaro.org>
14551
14552 * dwarf2read.c (load_partial_dies): Move the location of XOBNEW.
14553
14554 2018-02-26 Alan Hayward <alan.hayward@arm.com>
14555
14556 * arch/amd64.h: Use common/tdesc.h.
14557 * arch/i386.c: Likewise.
14558 * arch/i386.h: Likewise.
14559 * arch/tic6x.c: Likewise.
14560 * arch/tdesc.h: Move file from here...
14561 * common/tdesc.h: ...to here.
14562 * features/aarch64-core.c: Regenerate.
14563 * features/aarch64-fpu.c: Regenerate.
14564 * features/i386/32bit-avx.c: Regenerate.
14565 * features/i386/32bit-avx512.c: Regenerate.
14566 * features/i386/32bit-core.c: Regenerate.
14567 * features/i386/32bit-linux.c: Regenerate.
14568 * features/i386/32bit-mpx.c: Regenerate.
14569 * features/i386/32bit-pkeys.c: Regenerate.
14570 * features/i386/32bit-sse.c: Regenerate.
14571 * features/i386/64bit-avx.c: Regenerate.
14572 * features/i386/64bit-avx512.c: Regenerate.
14573 * features/i386/64bit-core.c: Regenerate.
14574 * features/i386/64bit-linux.c: Regenerate.
14575 * features/i386/64bit-mpx.c: Regenerate.
14576 * features/i386/64bit-pkeys.c: Regenerate.
14577 * features/i386/64bit-segments.c: Regenerate.
14578 * features/i386/64bit-sse.c: Regenerate.
14579 * features/i386/x32-core.c: Regenerate.
14580 * features/tic6x-c6xp.c: Regenerate.
14581 * features/tic6x-core.c: Regenerate.
14582 * features/tic6x-gp.c: Regenerate.
14583 * target-descriptions.c: Use common/tdesc.h.
14584 * target-descriptions.h: Likewise.
14585
14586 2018-02-24 Tom Tromey <tom@tromey.com>
14587
14588 * linux-thread-db.c (try_thread_db_load_from_pdir_1)
14589 (try_thread_db_load_from_dir, thread_db_load_search): Use
14590 std::string.
14591 (info_auto_load_libthread_db_compare): Return bool. Change
14592 argument types.
14593 (info_auto_load_libthread_db): Use std::vector, std::string.
14594 Remove cleanups.
14595
14596 2018-02-24 Tom Tromey <tom@tromey.com>
14597
14598 * i386-tdep.c (i386_fast_tracepoint_valid_at): "msg" now a
14599 std::string.
14600 * gdbarch.sh (fast_tracepoint_valid_at): Change "msg" to a
14601 std::string*.
14602 * gdbarch.c: Rebuild.
14603 * gdbarch.h: Rebuild.
14604 * breakpoint.c (check_fast_tracepoint_sals): Use std::string.
14605 * arch-utils.h (default_fast_tracepoint_valid_at): Update.
14606 * arch-utils.c (default_fast_tracepoint_valid_at): "msg" now a
14607 std::string*.
14608
14609 2018-02-23 Simon Marchi <simon.marchi@polymtl.ca>
14610
14611 * gdbtypes.h (sect_offset): Change type to uint64_t.
14612 (sect_offset_str): New function.
14613 * dwarf2read.c (create_addrmap_from_aranges): Use
14614 sect_offset_str.
14615 (error_check_comp_unit_head): Likewise.
14616 (create_debug_type_hash_table): Likewise.
14617 (read_cutu_die_from_dwo): Likewise.
14618 (init_cutu_and_read_dies): Likewise.
14619 (init_cutu_and_read_dies_no_follow): Likewise.
14620 (process_psymtab_comp_unit_reader): Likewise.
14621 (partial_die_parent_scope): Likewise.
14622 (peek_die_abbrev): Likewise.
14623 (process_queue): Likewise.
14624 (dwarf2_physname): Likewise.
14625 (read_namespace_alias): Likewise.
14626 (read_import_statement): Likewise.
14627 (create_dwo_cu_reader): Likewise.
14628 (create_cus_hash_table): Likewise.
14629 (lookup_dwo_cutu): Likewise.
14630 (inherit_abstract_dies): Likewise.
14631 (read_func_scope): Likewise.
14632 (read_call_site_scope): Likewise.
14633 (dwarf2_add_member_fn): Likewise.
14634 (read_common_block): Likewise.
14635 (read_module_type): Likewise.
14636 (read_typedef): Likewise.
14637 (read_subrange_type): Likewise.
14638 (load_partial_dies): Likewise.
14639 (read_partial_die): Likewise.
14640 (find_partial_die): Likewise.
14641 (read_str_index): Likewise.
14642 (dwarf2_string_attr): Likewise.
14643 (build_error_marker_type): Likewise.
14644 (lookup_die_type): Likewise.
14645 (dump_die_shallow): Likewise.
14646 (follow_die_ref): Likewise.
14647 (dwarf2_fetch_die_loc_sect_off): Likewise.
14648 (dwarf2_fetch_constant_bytes): Likewise.
14649 (follow_die_sig): Likewise.
14650 (get_signatured_type): Likewise.
14651 (get_DW_AT_signature_type): Likewise.
14652 (dwarf2_find_containing_comp_unit): Likewise.
14653 (set_die_type): Likewise.
14654
14655 2018-02-21 John Baldwin <jhb@FreeBSD.org>
14656
14657 * arch/aarch64.c: Include "common-defs.h".
14658 * arch/amd64.c: Likewise.
14659 * arch/i386.c: Likewise.
14660
14661 2018-02-21 Tom Tromey <tom@tromey.com>
14662
14663 * value.h: (extract_field_op): Update.
14664 * eval.c (extract_field_op): Return a const char *.
14665 * expression.h (parse_expression_for_completion): Update.
14666 * completer.c (complete_expression): Update.
14667 (add_struct_fields): Make fieldname const.
14668 * parse.c (expout_completion_name): Now a unique_xmalloc_ptr.
14669 (mark_completion_tag, parse_exp_in_context_1): Update.
14670 (parse_expression_for_completion): Change "name" to
14671 unique_xmalloc_ptr*.
14672
14673 2018-02-21 Tom Tromey <tom@tromey.com>
14674
14675 * infcall.c (call_function_by_hand_dummy): Use std::vector.
14676
14677 2018-02-21 Yao Qi <yao.qi@linaro.org>
14678
14679 * avr-tdep.c (avr_read_pc): Change parameter type to
14680 readable_regcache.
14681 * gdbarch.sh (read_pc): Likewise.
14682 * gdbarch.c: Re-generated.
14683 * gdbarch.h: Re-generated.
14684 * hppa-tdep.c (hppa_read_pc): Change parameter type to
14685 readable_regcache.
14686 * ia64-tdep.c (ia64_read_pc): Likewise.
14687 * mips-tdep.c (mips_read_pc): Likewise.
14688 * spu-tdep.c (spu_read_pc): Likewise.
14689
14690 2018-02-21 Yao Qi <yao.qi@linaro.org>
14691
14692 * Makefile.in (COMMON_SFILES): Add regcache-dump.c
14693 * regcache-dump.c: New file.
14694 * regcache.c: Move register_dump to regcache-dump.c.
14695 (maintenance_print_registers): Likewise.
14696 (maintenance_print_raw_registers): Likewise.
14697 (maintenance_print_cooked_registers): Likewise.
14698 (maintenance_print_register_groups): Likewise.
14699 (maintenance_print_remote_registers): Likewise.
14700 (_initialize_regcache): Likewise.
14701 * regcache.h (register_dump): Moved from regcache.c.
14702
14703 2018-02-21 Yao Qi <yao.qi@linaro.org>
14704
14705 * regcache.c (regcache::regcache): Update.
14706 (regcache::invalidate): Move it to detached_regcache::invalidate.
14707 (get_thread_arch_aspace_regcache): Update.
14708 (regcache::raw_update): Update.
14709 (regcache::cooked_read): Remove some code.
14710 (regcache::cooked_read_value): Likewise.
14711 (regcache::raw_write): Remove assert on m_readonly_p.
14712 (regcache::raw_supply_integer): Move it to
14713 detached_regcache::raw_supply_integer.
14714 (regcache::raw_supply_zeroed): Likewise.
14715 * regcache.h (detached_regcache) <raw_supply_integer>: New
14716 declaration.
14717 <raw_supply_zeroed, invalidate>: Likewise.
14718 (regcache) <raw_supply_integer, raw_supply_zeroed>: Removed.
14719 <invalidate>: Likewise.
14720 <m_readonly_p>: Removed.
14721
14722 2018-02-21 Yao Qi <yao.qi@linaro.org>
14723
14724 * infcmd.c (get_return_value): Let stop_regs point to
14725 get_current_regcache.
14726 * regcache.c (regcache::regcache): Remove.
14727 (register_dump_reg_buffer): New class.
14728 (regcache_print): Adjust.
14729 * regcache.h (regcache): Remove constructors.
14730
14731 2018-02-21 Yao Qi <yao.qi@linaro.org>
14732
14733 * regcache.c (class register_dump): New class.
14734 (register_dump_regcache, register_dump_none): New class.
14735 (register_dump_remote, register_dump_groups): New class.
14736 (regcache_print): Update.
14737 * regcache.h (regcache_dump_what): Move it to regcache.c.
14738 (regcache) <dump>: Remove.
14739
14740 2018-02-21 Yao Qi <yao.qi@linaro.org>
14741
14742 * jit.c (struct jit_unwind_private) <regcache>: Change its type to
14743 reg_buffer_rw *.
14744 (jit_unwind_reg_set_impl): Call raw_supply.
14745 (jit_frame_sniffer): Use reg_buffer_rw.
14746 * record-full.c (record_full_core_regbuf): Change its type.
14747 (record_full_core_open_1): Use reg_buffer_rw.
14748 (record_full_close): Likewise.
14749 (record_full_core_fetch_registers): Use regcache->raw_supply.
14750 (record_full_core_store_registers): Likewise.
14751 * regcache.c (regcache::get_register_status): Move it to
14752 reg_buffer.
14753 (regcache_raw_set_cached_value): Remove.
14754 (regcache::raw_set_cached_value): Remove.
14755 (regcache::raw_write): Call raw_supply.
14756 (regcache::raw_supply): Move it to reg_buffer_rw.
14757 * regcache.h (regcache_raw_set_cached_value): Remove.
14758 (reg_buffer_rw): New class.
14759
14760 2018-02-21 Yao Qi <yao.qi@linaro.org>
14761
14762 * dummy-frame.c (dummy_frame_cache) <prev_regcache>: Use
14763 readonly_detached_regcache.
14764 (dummy_frame_prev_register): Use regcache->cooked_read.
14765 * frame.c (frame_save_as_regcache): Change return type.
14766 (frame_pop): Update.
14767 * frame.h (frame_save_as_regcache): Update declaration.
14768 * inferior.h (get_infcall_suspend_state_regcache): Update
14769 declaration.
14770 * infrun.c (infcall_suspend_state) <registers>: use
14771 readonly_detached_regcache.
14772 (save_infcall_suspend_state): Don't use regcache_dup.
14773 (get_infcall_suspend_state_regcache): Change return type.
14774 * linux-fork.c (struct fork_info) <savedregs>: Change to
14775 readonly_detached_regcache.
14776 <pc>: New field.
14777 (fork_save_infrun_state): Don't use regcache_dup.
14778 (info_checkpoints_command): Adjust.
14779 * mi/mi-main.c (register_changed_p): Update declaration.
14780 (mi_cmd_data_list_changed_registers): Use
14781 readonly_detached_regcache.
14782 (register_changed_p): Change parameter type to
14783 readonly_detached_regcache.
14784 * ppc-linux-tdep.c (ppu2spu_cache) <regcache>: Use
14785 readonly_detached_regcache.
14786 (ppu2spu_sniffer): Construct a new readonly_detached_regcache.
14787 * regcache.c (readonly_detached_regcache::readonly_detached_regcache):
14788 New.
14789 (regcache::save): Move it to reg_buffer.
14790 (regcache::restore): Change parameter type.
14791 (regcache_dup): Remove.
14792 * regcache.h (reg_buffer) <save>: New method.
14793 (readonly_detached_regcache): New class.
14794 * spu-tdep.c (spu2ppu_cache) <regcache>: Use
14795 readonly_detached_regcache.
14796 (spu2ppu_sniffer): Construct a new readonly_detached_regcache.
14797
14798 2018-02-21 Yao Qi <yao.qi@linaro.org>
14799
14800 * frame.c (frame_save_as_regcache): Use regcache method save.
14801 (frame_pop): Use regcache method restore.
14802 * infrun.c (restore_infcall_suspend_state): Likewise.
14803 * linux-fork.c (fork_load_infrun_state): Likewise.
14804 * ppc-linux-tdep.c (ppu2spu_sniffer): User regcache method
14805 save.
14806 * regcache.c (regcache_save): Remove.
14807 (regcache::restore): More asserts.
14808 (regcache_cpy): Remove.
14809 * regcache.h (regcache_save): Remove the declaration.
14810 (regcache::restore): Move from private to public.
14811 Remove the friend declaration of regcache_cpy.
14812 (regcache_cpy): Remove declaration.
14813
14814 2018-02-21 Yao Qi <yao.qi@linaro.org>
14815
14816 * aarch64-tdep.c (aarch64_pseudo_register_read_value): Change
14817 parameter type to 'readable_regcache *'.
14818 * amd64-tdep.c (amd64_pseudo_register_read_value): Likewise.
14819 * arm-tdep.c (arm_neon_quad_read): Likewise.
14820 (arm_pseudo_read): Likewise.
14821 * avr-tdep.c (avr_pseudo_register_read): Likewise.
14822 * bfin-tdep.c (bfin_pseudo_register_read): Likewise.
14823 * frv-tdep.c (frv_pseudo_register_read): Likewise.
14824 * gdbarch.c: Re-generated.
14825 * gdbarch.h: Re-generated.
14826 * gdbarch.sh (pseudo_register_read): Change parameter type to
14827 'readable_regcache *'.
14828 (pseudo_register_read_value): Likewise.
14829 * h8300-tdep.c (pseudo_from_raw_register): Likewise.
14830 (h8300_pseudo_register_read): Likewise.
14831 * hppa-tdep.c (hppa_pseudo_register_read): Likewise.
14832 * i386-tdep.c (i386_mmx_regnum_to_fp_regnum): Likewise.
14833 (i386_pseudo_register_read_into_value): Likewise.
14834 (i386_pseudo_register_read_value): Likewise.
14835 * i386-tdep.h (i386_pseudo_register_read_into_value): Update
14836 declaration.
14837 * ia64-tdep.c (ia64_pseudo_register_read): Likewise.
14838 * m32c-tdep.c (m32c_raw_read): Likewise.
14839 (m32c_read_flg): Likewise.
14840 (m32c_banked_register): Likewise.
14841 (m32c_banked_read): Likewise.
14842 (m32c_sb_read): Likewise.
14843 (m32c_part_read): Likewise.
14844 (m32c_cat_read): Likewise.
14845 (m32c_r3r2r1r0_read): Likewise.
14846 (m32c_pseudo_register_read): Likewise.
14847 * m68hc11-tdep.c (m68hc11_pseudo_register_read): Likewise.
14848 * mep-tdep.c (mep_pseudo_cr32_read): Likewise.
14849 (mep_pseudo_cr64_read): Likewise.
14850 (mep_pseudo_register_read): Likewise.
14851 * mips-tdep.c (mips_pseudo_register_read): Likewise.
14852 * msp430-tdep.c (msp430_pseudo_register_read): Likewise.
14853 * nds32-tdep.c (nds32_pseudo_register_read): Likewise.
14854 * regcache.c (regcache::raw_read): Move it to readable_regcache.
14855 (regcache::cooked_read): Likewise.
14856 (regcache::cooked_read_value): Likewise.
14857 (regcache_cooked_read_signed):
14858 (regcache::cooked_read): Likewise.
14859 * regcache.h (readable_regcache): New class.
14860 (regcache): Inherit readable_regcache. Move some methods to
14861 readable_regcache.
14862 * rl78-tdep.c (rl78_pseudo_register_read): Change
14863 parameter type to 'readable_regcache *'.
14864 * rs6000-tdep.c (do_regcache_raw_read): Remove.
14865 (e500_pseudo_register_read): Change parameter type to
14866 'readable_regcache *'.
14867 (dfp_pseudo_register_read): Likewise.
14868 (vsx_pseudo_register_read): Likewise.
14869 (efpr_pseudo_register_read): Likewise.
14870 * s390-tdep.c (s390_pseudo_register_read): Likewise.
14871 * sh-tdep.c (sh_pseudo_register_read): Likewise.
14872 * sh64-tdep.c (pseudo_register_read_portions): Likewise.
14873 (sh64_pseudo_register_read): Likewise.
14874 * sparc-tdep.c (sparc32_pseudo_register_read): Likewise.
14875 * sparc64-tdep.c (sparc64_pseudo_register_read): Likewise.
14876 * spu-tdep.c (spu_pseudo_register_read_spu): Likewise.
14877 (spu_pseudo_register_read): Likewise.
14878 * xtensa-tdep.c (xtensa_register_read_masked): Likewise.
14879 (xtensa_pseudo_register_read): Likewise.
14880
14881 2018-02-21 Yao Qi <yao.qi@linaro.org>
14882
14883 * regcache.c (regcache::regcache): Call reg_buffer ctor.
14884 (regcache::arch): Move it to reg_buffer::arch.
14885 (regcache::register_buffer): Likewise.
14886 (regcache::assert_regnum): Likewise.
14887 (regcache::num_raw_registers): Likewise.
14888 * regcache.h (reg_buffer): New class.
14889 (regcache): Inherit reg_buffer.
14890
14891 2018-02-20 Simon Marchi <simon.marchi@ericsson.com>
14892
14893 * remote-sim.c (gdb_os_printf_filtered, gdb_os_vprintf_filtered,
14894 gdb_os_evprintf_filtered, gdb_os_error): Add ATTRIBUTE_PRINTF.
14895
14896 2018-02-20 Markus Metzger <markus.t.metzger@intel.com>
14897
14898 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add mkstemp.
14899
14900 2018-02-19 Alan Hayward <alan.hayward@arm.com>
14901
14902 * Makefile.in: (COMMON_SFILES): Add common/*.c files.
14903 (SFILES): Remove common/*.c files.
14904 (COMMON_OBS): Remove some *.o files built from common/*.c files.
14905 * common/common.host: Add common reference.
14906 * configure.ac: Likewise.
14907 * configure: Regenerate.
14908
14909 2018-02-16 Yao Qi <yao.qi@linaro.org>
14910
14911 * block.c (block_namespace_info): Inherit allocate_on_obstack.
14912 (block_initialize_namespace): Use new.
14913 * dwarf2read.c (dwarf2_per_objfile): Inherit allocate_on_obstack.
14914 (dwarf2_free_objfile): Use delete.
14915 * gdbtypes.c (type_pair): Inherit allocate_on_obstack.
14916 (copy_type_recursive): Use new.
14917 * gdb_obstack.h (allocate_on_obstack): New.
14918
14919 2018-02-15 Yao Qi <yao.qi@linaro.org>
14920
14921 PR gdb/22849
14922 * inferior.c (exit_inferior_1): Reset inf->control.
14923
14924 2018-02-15 Joel Brobecker <brobecker@adacore.com>
14925
14926 * ada-lang.c (ada_to_fixed_value_create): Delete advance
14927 declaration.
14928
14929 2018-02-14 Pedro Alves <palves@redhat.com>
14930
14931 * frame-unwind.c (frame_unwind_try_unwinder): Always call
14932 frame_cleanup_after_sniffer on exception.
14933
14934 2018-02-14 Tom Tromey <tom@tromey.com>
14935
14936 * solist.h (struct target_so_ops) <bfd_open>: Make pathname
14937 const.
14938 (solib_bfd_open): Make pathname const.
14939 * solib.c (solib_bfd_open): Make pathname const.
14940 * solib-spu.c (spu_bfd_fopen): Make name const.
14941 (spu_bfd_open): Make pathname const.
14942 * solib-darwin.c (darwin_bfd_open): Make pathname const.
14943 * solib-aix.c (solib_aix_bfd_open): Make pathname const.
14944
14945 2018-02-14 Tom Tromey <tom@tromey.com>
14946
14947 * symfile.c (symfile_bfd_open): Update.
14948 * source.h (openp, source_full_path_of, find_and_open_source):
14949 Change argument type to unique_xmalloc_ptr.
14950 * source.c (openp): Take a unique_xmalloc_ptr.
14951 (source_full_path_of, find_and_open_source): Likewise.
14952 (open_source_file, symtab_to_fullname): Update.
14953 * solist.h (struct target_so_ops) <find_and_open_solib>: Take a
14954 unique_xmalloc_ptr.
14955 * solib.c (solib_find_1): Use unique_xmalloc_ptr.
14956 (exec_file_find): Update.
14957 * psymtab.c (psymtab_to_fullname): Update.
14958 * nto-tdep.h (nto_find_and_open_solib): Update.
14959 * nto-tdep.c (nto_find_and_open_solib): Change temp_path to a
14960 unique_xmalloc_ptr.
14961 * exec.c (exec_file_attach): Update.
14962 * dwarf2read.c (try_open_dwop_file): Use unique_xmalloc_ptr.
14963 * cli/cli-cmds.c (find_and_open_script): Use unique_xmalloc_ptr.
14964
14965 2018-02-14 Tom Tromey <tom@tromey.com>
14966
14967 * solib.c: Include source.h.
14968 * nto-tdep.c: Include source.h.
14969 * mi/mi-cmd-env.c: Include source.h.
14970 * infcmd.c: Include source.h.
14971 * exec.c: Include source.h.
14972 * defs.h (enum openp_flag, openp, source_full_path_of, mod_path)
14973 (add_path, directory_switch, source_path, init_source_path): Move
14974 declarations...
14975 * source.h (enum openp_flag, openp, source_full_path_of, mod_path)
14976 (add_path, directory_switch, source_path, init_source_path):
14977 ...here.
14978
14979 2018-02-14 Tom Tromey <tom@tromey.com>
14980
14981 * solist.h (exec_file_find, solib_find): Return
14982 unique_xmalloc_ptr.
14983 (solib_bfd_fopen): Take a const char *.
14984 * solib.c (solib_find_1): Return unique_xmalloc_ptr.
14985 (exec_file_find, solib_find): Likewise.
14986 (solib_bfd_fopen): Do not take ownership of "pathname".
14987 (solib_bfd_open): Use unique_xmalloc_ptr.
14988 * solib-darwin.c (darwin_bfd_open): Use unique_xmalloc_ptr.
14989 * solib-aix.c (solib_aix_bfd_open): Use unique_xmalloc_ptr.
14990 * infrun.c (follow_exec): Use unique_xmalloc_ptr.
14991 * exec.c (exec_file_locate_attach): Use unique_xmalloc_ptr.
14992
14993 2018-02-14 Joel Brobecker <brobecker@adacore.com>
14994
14995 * ada-lang.c (name_match_type_from_name): Remove reference to
14996 ada_name_for_lookup in function's documentation.
14997 * ada-lang.h (ada_name_for_lookup): Delete declaration.
14998
14999 2018-02-13 Simon Marchi <simon.marchi@polymtl.ca>
15000
15001 * defs.h (enum openp_flags): New enum.
15002 (OPF_TRY_CWD_FIRST, OPF_SEARCH_IN_PATH, OPF_RETURN_REALPATH):
15003 Move to enum openp_flags.
15004 (openp_flags): New enum flags.
15005 (openp): Change parameter type to openp_flags.
15006 * source.c (openp): Change parameter type to openp_flags.
15007 * cli/cli-cmds.c (find_and_open_script): Use openp_flags.
15008 * dwarf2read.c (try_open_dwop_file): Use openp_flags.
15009
15010 2018-02-13 Simon Marchi <simon.marchi@polymtl.ca>
15011
15012 * maint.c (_initialize_maint_cmds): Fix prefix of maint set/show
15013 per-command.
15014
15015 2018-02-12 Andrew Burgess <andrew.burgess@embecosm.com>
15016
15017 * dwarf2read.c (dwarf2_release_queue): Delete function, move body
15018 into...
15019 (class dwarf2_queue_guard): ...the destructor of this new class.
15020 (dw2_do_instantiate_symtab): Create instance of the new class
15021 dwarf2_queue_guard, remove cleanup.
15022
15023 2018-02-09 Tom Tromey <tom@tromey.com>
15024
15025 * source.c (find_source_lines): Don't reference past the end of
15026 the vector.
15027
15028 2018-02-09 Markus Metzger <markus.t.metzger@intel.com>
15029
15030 * remote.c (remote_btrace_maybe_reopen): Change error message.
15031 * btrace.c (btrace_enable): Likewise.
15032 (parse_xml_btrace): Likewise.
15033 (parse_xml_btrace_conf): Likewise.
15034
15035 2018-02-09 Markus Metzger <markus.t.metzger@intel.com>
15036
15037 * nat/linux-btrace.c (diagnose_perf_event_open_fail): New.
15038 (linux_enable_pt, linux_enable_bts): Call
15039 diagnose_perf_event_open_fail.
15040
15041 2018-02-09 Markus Metzger <markus.t.metzger@intel.com>
15042
15043 * nat/linux-btrace.c (perf_event_pt_event_type): Improve error message.
15044 Remove parameter and change return type. Update callers. Move it.
15045 (linux_enable_bts, linux_enable_pt): Improve error message.
15046 (linux_enable_pt): Remove zero buffer size check.
15047 (linux_enable_btrace): Improve error messages. Remove NULL return
15048 check.
15049
15050 2018-02-09 Markus Metzger <markus.t.metzger@intel.com>
15051
15052 * btrace.c (btrace_enable): Remove target_supports_btrace call.
15053 * nat/linux-btrace.c (perf_event_pt_event_type): Move.
15054 (kernel_supports_bts, kernel_supports_pt, linux_supports_bts)
15055 (linux_supports_pt, linux_supports_btrace): Remove.
15056 (linux_enable_bts): Call cpu_supports_bts.
15057 * nat/linux-btrace.h (linux_supports_btrace): Remove.
15058 * remote.c (remote_supports_btrace): Remove.
15059 (init_remote_ops): Remove remote_supports_btrace.
15060 * target-delegates.c: Regenerated.
15061 * target.c (target_supports_btrace): Remove.
15062 * target.h (target_ops) <to_supports_btrace>: Remove
15063 (target_supports_btrace): Remove.
15064 * x86-linux-nat.c (x86_linux_create_target): Remove
15065 linux_supports_btrace.
15066
15067 2018-02-09 Markus Metzger <markus.t.metzger@intel.com>
15068
15069 * nat/linux-btrace.c (linux_enable_btrace): Throw exception if enabling
15070 btrace failed.
15071 * x86-linux-nat.c (x86_linux_enable_btrace): Catch btrace enabling
15072 exception and use message in own exception.
15073
15074 2018-02-09 Markus Metzger <markus.t.metzger@intel.com>
15075
15076 * nat/linux-btrace.c: Include scoped_fd.h and scoped_mmap.h.
15077 (perf_event_pt_event_type): Use gdb_file_up.
15078 (linux_enable_bts, linux_enable_pt): Use gdb::unique_xmalloc_ptr,
15079 scoped_fd, and scoped_mmap.
15080
15081 2018-02-09 Markus Metzger <markus.t.metzger@intel.com>
15082
15083 * common/scoped_mmap.h: New.
15084 * unittests/scoped_mmap-selftest.c: New.
15085 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
15086 unittests/scoped_mmap-selftest.c.
15087
15088 2018-02-09 Markus Metzger <markus.t.metzger@intel.com>
15089
15090 * common/scoped_fd.h: New.
15091 * unittests/scoped_fd-selftest.c: New.
15092 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
15093 unittests/scoped_fd-selftest.c.
15094
15095 2018-02-09 Tom Tromey <tom@tromey.com>
15096
15097 * auto-load.c (auto_load_section_scripts): Use
15098 gdb::unique_xmalloc_ptr.
15099
15100 2018-02-09 Tom Tromey <tom@tromey.com>
15101
15102 * auto-load.c (execute_script_contents): Use std::string.
15103
15104 2018-02-09 Joel Brobecker <brobecker@adacore.com>
15105
15106 * NEWS <Changes in GDB 8.1>: Clarify that "rbreak" is a new
15107 Python function, rather than a new command.
15108
15109 2018-02-08 Tom Tromey <tom@tromey.com>
15110
15111 * solib.c (solib_find_1): Use std::string.
15112 (solib_bfd_fopen): Use unique_xmalloc_ptr.
15113
15114 2018-02-08 Tom Tromey <tom@tromey.com>
15115
15116 * build-id.c (build_id_to_debug_bfd): Use unique_xmalloc_ptr.
15117
15118 2018-02-08 Tom Tromey <tom@tromey.com>
15119
15120 * source.c (find_source_lines): Use gdb::def_vector.
15121
15122 2018-02-08 Tom Tromey <tom@tromey.com>
15123
15124 * macrocmd.c (struct temporary_macro_definition): New.
15125 (macro_define_command): Use temporary_macro_definition. Remove
15126 cleanups.
15127 (free_macro_definition_ptr): Remove.
15128
15129 2018-02-08 Tom Tromey <tom@tromey.com>
15130
15131 * macroexp.c (maybe_expand): Use std::string.
15132
15133 2018-02-08 Tom Tromey <tom@tromey.com>
15134
15135 * macroexp.c (struct macro_buffer): Add initializers for some
15136 members.
15137 (init_buffer, init_shared_buffer, free_buffer)
15138 (free_buffer_return_text): Remove.
15139 (macro_buffer): New constructors.
15140 (~macro_buffer): New destructor.
15141 (macro_buffer::set_shared): New method.
15142 (macro_buffer::resize_buffer, macro_buffer::appendc)
15143 (macro_buffer::appendmem): Now methods, not free functions.
15144 (set_token, append_tokens_without_splicing, stringify)
15145 (macro_stringify): Update.
15146 (gather_arguments): Change return type. Remove argc_p argument,
15147 add args_ptr argument. Use std::vector.
15148 (substitute_args): Remove argc argument. Accept std::vector.
15149 (expand): Update. Use std::vector.
15150 (scan, macro_expand, macro_expand_next): Update.
15151
15152 2018-02-08 Tom Tromey <tom@tromey.com>
15153
15154 * symtab.c (default_collect_symbol_completion_matches_break_on):
15155 Use unique_xmalloc_ptr.
15156 * macroscope.h: (sal_macro_scope, user_macro_scope)
15157 (default_macro_scope): Return unique_xmalloc_ptr.
15158 * macroscope.c (sal_macro_scope, user_macro_scope)
15159 (default_macro_scope): Return unique_xmalloc_ptr.
15160 * macroexp.h (macro_expand, macro_expand_once): Return
15161 unique_xmalloc_ptr.
15162 * macroexp.c (macro_expand, macro_expand_once): Return
15163 unique_xmalloc_ptr.
15164 * macrocmd.c (macro_expand_command, macro_expand_once_command)
15165 (info_macro_command, info_macros_command): Use
15166 unique_xmalloc_ptr.
15167 * compile/compile-c-support.c (write_macro_definitions): Use
15168 unique_xmalloc_ptr.
15169 * c-exp.y (c_parse): Use unique_xmalloc_ptr.
15170
15171 2018-02-07 Simon Marchi <simon.marchi@ericsson.com>
15172
15173 * value.c (value_static_field): Assign field type instead of
15174 containing type when returning an optimized out value.
15175
15176 2018-02-06 Yao Qi <yao.qi@linaro.org>
15177
15178 * ft32-tdep.c (ft32_read_pc): Remove.
15179 (ft32_write_pc): Remove.
15180 (ft32_gdbarch_init): Update.
15181 * m32r-tdep.c (m32r_read_pc): Remove.
15182 (m32r_gdbarch_init): Update.
15183 * mep-tdep.c (mep_read_pc): Remove.
15184 (mep_gdbarch_init): Update.
15185 * microblaze-tdep.c (microblaze_write_pc): Remove.
15186 (microblaze_gdbarch_init): Update.
15187 * mn10300-tdep.c (mn10300_read_pc): Remove.
15188 (mn10300_write_pc): Remove.
15189 (mn10300_gdbarch_init): Update.
15190 * moxie-tdep.c (moxie_read_pc): Remove.
15191 (moxie_write_pc): Remove.
15192 (moxie_gdbarch_init): Update.
15193
15194 2018-02-06 Yao Qi <yao.qi@linaro.org>
15195
15196 * expprint.c (print_subexp_standard): Handle
15197 OP_F77_UNDETERMINED_ARGLIST.
15198 (dump_subexp_body_standard): Likewise.
15199
15200 2018-02-05 Alan Hayward <alan.hayward@arm.com>
15201
15202 * target-descriptions.c (tdesc_element_visitor) Add empty
15203 implementations.
15204 (tdesc_type): Move make_gdb_type from here.
15205 (tdesc_type_builtin): Likewise.
15206 (tdesc_type_vector): Likewise.
15207 (tdesc_type_with_fields): Move make_gdb_type_ functions from here.
15208 (make_gdb_type_struct): Move from tdesc_type_with_fields.
15209 (make_gdb_type_union): Likewise.
15210 (make_gdb_type_flags): Likewise.
15211 (make_gdb_type_enum): Likewise.
15212 (make_gdb_type): New function.
15213 (tdesc_register_type): Use static make_gdb_type.
15214
15215 2018-02-05 Ruslan Kabatsayev <b7.10110111@gmail.com>
15216
15217 * infcmd.c (default_print_one_register_info): Align natural-format
15218 column values consistently one under another.
15219 (pad_to_column): New function.
15220
15221 2018-02-05 Joel Brobecker <brobecker@adacore.com>
15222
15223 * dwarf2read.c (dwarf2_physname): Move commment.
15224
15225 2018-02-01 Leszek Swirski <leszeks@google.com>
15226
15227 * varobj.c (varobj_formatted_print_options): Allow recursive
15228 pretty printing if pretty printing is enabled.
15229
15230 2018-02-01 Leszek Swirski <leszeks@google.com>
15231
15232 * c-exp.y (lex_one_token, classify_name, yylex): Don't classify
15233 names after a structop as a filename.
15234
15235 2018-02-01 Yao Qi <yao.qi@linaro.org>
15236
15237 * arm-tdep.c (arm_record_data_proc_misc_ld_str): Rewrite it.
15238 (arm_record_coproc_data_proc): Likewise.
15239
15240 2018-02-01 Yao Qi <yao.qi@linaro.org>
15241
15242 * arm-tdep.c (arm_record_extension_space): Change ret to signed.
15243
15244 2018-01-31 Nikola Prica <nikola.prica@rt-rk.com>
15245
15246 * rs6000-tdep.c (skip_prologue): Remove shifting for lr_reg and
15247 assign shifted lr_reg to fdata->lr_register when lr_reg is set.
15248
15249 2018-01-31 Pedro Alves <palves@redhat.com>
15250
15251 * darwin-nat.c (darwin_interrupt): Remove ptid_t parameter.
15252 * inflow.c (child_terminal_save_inferior): Wrap reference to
15253 tcgetpgrp in HAVE_TERMIOS_H.
15254 (child_interrupt, child_pass_ctrlc): Wrap references to signal in
15255 _WIN32.
15256 * remote-sim.c (gdbsim_interrupt): Remove ptid_t parameter and
15257 always iterate over all inferiors.
15258 (gdbsim_cntrl_c): Adjust.
15259 * windows-nat.c (windows_interrupt): Remove 'ptid_t' parameter.
15260
15261 2018-01-31 Joel Brobecker <brobecker@adacore.com>
15262
15263 * gdbtypes.c (lookup_array_range_type): Make sure the array's
15264 index type is objfile-owned if the element type is as well.
15265
15266 2018-01-31 Joel Brobecker <brobecker@adacore.com>
15267
15268 GDB 8.1 released.
15269
15270 2018-01-30 Philipp Rudo <prudo@linux.vnet.ibm.com>
15271
15272 * s390-linux-tdep.c: Remove includes "features/s390-linux32.c" and
15273 "features/s390x-linux64.c".
15274 (_initialize_s390_linux_tdep): Remove initialization of tdescs
15275 s390_linux32 and s390x_linux64.
15276 (s390_linux_init_abi_31, s390_linux_init_abi_64): Don't set
15277 default tdesc.
15278 * s390-tdep.c: Include "features/s390-linux32.c" and
15279 "features/s390x-linux64.c".
15280 (s390_tdesc_valid): Add check for tdesc_has_registers.
15281 (s390_gdbarch_init): Make sure there is always a valid tdesc.
15282 (_initialize_s390_tdep): Initialize tdesc_s390_linux32 and
15283 tdesc_s390x_linux64.
15284 * s390-linux-tdep.h: Move export of tdesc_s390_linux32 and
15285 tdesc_s390x_linux64 to...
15286 * s390-tdep.h: ...here.
15287
15288 2018-01-30 Pedro Alves <palves@redhat.com>
15289
15290 PR gdb/13211
15291 * config.in, configure: Regenerate.
15292 * configure.ac: Check for getpgid.
15293 * go32-nat.c (go32_pass_ctrlc): New.
15294 (go32_target): Install it.
15295 * inf-child.c (inf_child_target): Install
15296 child_terminal_save_inferior, child_pass_ctrlc and
15297 child_interrupt.
15298 * inf-ptrace.c (inf_ptrace_interrupt): Delete.
15299 (inf_ptrace_target): No longer install it.
15300 * infcmd.c (interrupt_target_1): Adjust.
15301 * inferior.h (child_terminal_save_inferior, child_pass_ctrlc)
15302 (child_interrupt): Declare.
15303 (inferior::terminal_state): New.
15304 * inflow.c (struct terminal_info): Update comments.
15305 (inferior_process_group): Delete.
15306 (terminal_is_ours): Delete.
15307 (gdb_tty_state): New.
15308 (child_terminal_init): Adjust.
15309 (is_gdb_terminal, sharing_input_terminal_1)
15310 (sharing_input_terminal): New functions.
15311 (child_terminal_inferior): Adjust. Use sharing_input_terminal.
15312 Set the process's actual process group in the foreground if
15313 possible. Handle is_ours_for_output/is_ours distinction. Don't
15314 mark terminal as the inferior's if not sharing GDB's terminal.
15315 Don't check attach_flag.
15316 (child_terminal_ours_for_output, child_terminal_ours): Adjust to
15317 pass down a target_terminal_state.
15318 (child_terminal_save_inferior): New, factored out from ...
15319 (child_terminal_ours_1): ... this. Handle
15320 target_terminal_state::is_ours_for_output.
15321 (child_interrupt, child_pass_ctrlc): New.
15322 (inflow_inferior_exit): Clear the inferior's terminal_state.
15323 (copy_terminal_info): Copy the inferior's terminal state.
15324 (_initialize_inflow): Remove reference to terminal_is_ours.
15325 * inflow.h (inferior_process_group): Delete.
15326 * nto-procfs.c (nto_handle_sigint, procfs_interrupt): Adjust.
15327 * procfs.c (procfs_target): Don't install procfs_interrupt.
15328 (procfs_interrupt): Delete.
15329 * remote.c (remote_serial_quit_handler): Adjust.
15330 (remote_interrupt): Remove ptid parameter. Adjust.
15331 * target-delegates.c: Regenerate.
15332 * target.c: Include "terminal.h".
15333 (target_terminal::terminal_state): Rename to ...
15334 (target_terminal::m_terminal_state): ... this.
15335 (target_terminal::init): Adjust.
15336 (target_terminal::inferior): Adjust to per-inferior
15337 terminal_state.
15338 (target_terminal::restore_inferior, target_terminal_is_ours_kind): New.
15339 (target_terminal::ours, target_terminal::ours_for_output): Use
15340 target_terminal_is_ours_kind.
15341 (target_interrupt): Remove ptid parameter. Adjust.
15342 (default_target_pass_ctrlc): Adjust.
15343 * target.h (target_ops::to_terminal_save_inferior): New field.
15344 (target_ops::to_interrupt): Remove ptid_t parameter.
15345 (target_interrupt): Remove ptid_t parameter. Update comment.
15346 (target_pass_ctrlc): Update comment.
15347 * target/target.h (target_terminal_state): New scoped enum,
15348 factored out of ...
15349 (target_terminal::terminal_state): ... here.
15350 (target_terminal::inferior): Update comments.
15351 (target_terminal::restore_inferior): New.
15352 (target_terminal::is_inferior, target_terminal::is_ours)
15353 (target_terminal::is_ours_for_output): Adjust.
15354 (target_terminal::scoped_restore_terminal_state): Adjust to
15355 rename, and call restore_inferior() instead of inferior().
15356 (target_terminal::scoped_restore_terminal_state::m_state): Change
15357 type.
15358 (target_terminal::terminal_state): Rename to ...
15359 (target_terminal::m_terminal_state): ... this and change type.
15360
15361 2018-01-30 Pedro Alves <palves@redhat.com>
15362
15363 * linux-nat.c (wait_for_signal): New function.
15364 (wait_lwp, linux_nat_wait_1): Use it instead of calling sigsuspend
15365 directly.
15366 (async_terminal_is_ours)
15367 (linux_nat_terminal_inferior, linux_nat_terminal_ours): Delete.
15368 (linux_nat_add_target): Don't override
15369 to_terminal_inferior/to_terminal_ours.
15370
15371 2018-01-29 Sergio Durigan Junior <sergiodj@redhat.com>
15372
15373 * remote.c (remote_follow_fork): Don't call "detach_inferior".
15374
15375 2018-01-28 Simon Marchi <simon.marchi@ericsson.com>
15376
15377 * dwarf2read.c (free_dwo_files): Add forward-declaration.
15378 (dwarf2_per_objfile::~dwarf2_per_objfile): Move content from
15379 dwarf2_per_objfile_free here.
15380 (dwarf2_per_objfile_free): Remove.
15381 (_initialize_dwarf2_read): Don't register
15382 dwarf2_per_objfile_free as a registry cleanup.
15383
15384 2018-01-27 Eli Zaretskii <eliz@gnu.org>
15385
15386 Avoid compilation errors in MinGW native builds
15387
15388 The error is triggered by including python-internal.h, and the
15389 error message is:
15390
15391 In file included from d:\usr\lib\gcc\mingw32\6.3.0\include\c++\math.h:36:0,
15392 from build-gnulib/import/math.h:27,
15393 from d:/usr/Python26/include/pyport.h:235,
15394 from d:/usr/Python26/include/Python.h:58,
15395 from python/python-internal.h:94,
15396 from python/py-arch.c:24:
15397 d:\usr\lib\gcc\mingw32\6.3.0\include\c++\cmath:1157:11: error: '::hypot' has not been declared
15398 using ::hypot;
15399 ^~~~~
15400
15401 This happens because Python headers define 'hypot' to expand t
15402 '_hypot' in the Windows builds.
15403 * python/python-internal.h (_hypot) [__MINGW32__]: Define back to
15404 'hypoth'. This avoids a compilation error.
15405
15406 2018-01-26 Alan Hayward <alan.hayward@arm.com>
15407
15408 * MAINTAINERS (Write After Approval): Fix ordering.
15409
15410 2018-01-26 Alan Hayward <alan.hayward@arm.com>
15411
15412 * MAINTAINERS (Write After Approval): Add Alan Hayward.
15413
15414 2018-01-26 Alan Modra <amodra@gmail.com>
15415
15416 * ppc-linux-tdep.c (powerpc32_plt_stub): Make const.
15417 (powerpc32_plt_stub_so_1): Rename from powerpc32_plt_stub_so.
15418 Remove nop. Make const. Comment.
15419 (powerpc32_plt_stub_so_2): New.
15420 (POWERPC32_PLT_CHECK_LEN): Rename from POWERPC32_PLT_STUB_LEN.
15421 Correct count. Update uses.
15422 (ppc_skip_trampoline_code): Match powerpc32_plt_stub_so_2 too.
15423 Move common code reading PLT entry word. Correct
15424 powerpc32_plt_stub PLT address calculation.
15425 * ppc64-tdep.c (ppc64_standard_linkage1): Make const.
15426 (ppc64_standard_linkage2, ppc64_standard_linkage3): Likewise.
15427 (ppc64_standard_linkage4, ppc64_standard_linkage5): Likewise.
15428 (ppc64_standard_linkage6, ppc64_standard_linkage7): Likewise.
15429 (ppc64_standard_linkage8): Likewise.
15430 * rs6000-tdep.c (ppc_insns_match_pattern): Make pattern const.
15431 Correct insns description.
15432 * ppc-tdep.h (ppc_insns_match_pattern): Update prototype.
15433
15434 2018-01-24 Pedro Alves <palves@redhat.com>
15435
15436 GCC PR libstdc++/83906
15437 * gdbtypes.c (operator==(const dynamic_prop &,
15438 const dynamic_prop &)): New.
15439 (operator==(const range_bounds &, const range_bounds &)): New.
15440 (check_types_equal): Use them instead of memcmp.
15441 * gdbtypes.h (operator==(const dynamic_prop &,
15442 const dynamic_prop &)): Declare.
15443 (operator!=(const dynamic_prop &, const dynamic_prop &)): Declare.
15444 (operator==(const range_bounds &, const range_bounds &)): Declare.
15445 (operator!=(const range_bounds &, const range_bounds &)): Declare.
15446
15447 2018-01-23 Philipp Rudo <prudo@linux.vnet.ibm.com>
15448
15449 * s390-linux-tdep.c (s390_record_address_mask)
15450 (s390_record_calc_disp_common, s390_record_calc_disp)
15451 (s390_record_calc_disp_vsce, s390_record_calc_rl, s390_popcnt)
15452 (s390_record_gpr_g, s390_record_gpr_h, s390_record_vr)
15453 (s390_process_record): Move to s390-tdep.c.
15454 (s390_linux_init_abi_any): Adjust.
15455 * s390-tdep.c (s390_record_address_mask)
15456 (s390_record_calc_disp_common, s390_record_calc_disp)
15457 (s390_record_calc_disp_vsce, s390_record_calc_rl, s390_popcnt)
15458 (s390_record_gpr_g, s390_record_gpr_h, s390_record_vr)
15459 (s390_process_record): Moved from s390-linux-tdep.c
15460 (s390_gdbarch_init): Adjust.
15461
15462 2018-01-23 Philipp Rudo <prudo@linux.vnet.ibm.com>
15463
15464 * s390-linux-nat.c (s390-tdep.h): New include.
15465 * Makefile.in (ALL_TARGET_OBS): Add s390-tdep.o.
15466 (HFILES_NO_SRCDIR): Add s390-tdep.h.
15467 (ALLDEPFILES): Add s390-tdep.c.
15468 * configure.tgt (s390*-*-linux*): Add s390-tdep.o.
15469 * s390-linux-tdep.h (HWCAP_S390_*, S390_*_REGNUM): Move to...
15470 * s390-tdep.h: ...this. New file.
15471 * s390-linux-tdep.c (s390-tdep.h): New include.
15472 (_initialize_s390_tdep): Rename to...
15473 (_initialize_s390_linux_tdep): ...this and adjust.
15474 (s390_abi_kind, s390_vector_abi_kind, gdbarch_tdep)
15475 (enum named opcodes, S390_NUM_GPRS, S390_NUM_FPRS): Move to
15476 s390-tdep.h.
15477 (s390_break_insn, s390_breakpoint, s390_readinstruction, is_ri)
15478 (is_ril, is_rr, is_rre, is_rs, is_rsy, is_rx, is_rxy)
15479 (s390_is_partial_instruction, s390_software_single_step)
15480 (is_non_branch_ril, s390_displaced_step_copy_insn)
15481 (s390_displaced_step_fixup, s390_displaced_step_hw_singlestep)
15482 (s390_prologue_data, s390_addr, s390_store, s390_load)
15483 (s390_check_for_saved, s390_analyze_prologue, s390_skip_prologue)
15484 (s390_register_call_saved, s390_guess_tracepoint_registers)
15485 (s390_register_name, s390_dwarf_regmap, s390_dwarf_reg_to_regnum)
15486 (regnum_is_gpr_full, regnum_is_vxr_full, s390_value_from_register)
15487 (s390_pseudo_register_name, s390_pseudo_register_type)
15488 (s390_pseudo_register_read, s390_pseudo_register_write)
15489 (s390_pseudo_register_reggroup_p, s390_ax_pseudo_register_collect)
15490 (s390_ax_pseudo_register_push_stack, s390_gen_return_address)
15491 (s390_addr_bits_remove, s390_address_class_type_flags)
15492 (s390_address_class_type_flags_to_name)
15493 (s390_address_class_name_to_type_flags, s390_effective_inner_type)
15494 (s390_function_arg_float, s390_function_arg_vector)
15495 (is_power_of_two, s390_function_arg_integer, s390_arg_state)
15496 (s390_handle_arg, s390_push_dummy_call, s390_dummy_id)
15497 (s390_frame_align, s390_register_return_value, s390_return_value)
15498 (s390_stack_frame_destroyed_p, s390_unwind_pc, s390_unwind_sp)
15499 (s390_unwind_pseudo_register, s390_adjust_frame_regnum)
15500 (s390_dwarf2_prev_register, s390_dwarf2_frame_init_reg)
15501 (s390_trad_frame_prev_register, s390_unwind_cache)
15502 (s390_prologue_frame_unwind_cache)
15503 (s390_backchain_frame_unwind_cache, s390_frame_unwind_cache)
15504 (s390_frame_this_id, s390_frame_prev_register, s390_frame_unwind)
15505 (s390_stub_unwind_cache, s390_stub_frame_unwind_cache)
15506 (s390_stub_frame_this_id, s390_stub_frame_prev_register)
15507 (s390_stub_frame_sniffer, s390_stub_frame_unwind)
15508 (s390_frame_base_address, s390_local_base_address)
15509 (s390_frame_base, s390_gcc_target_options)
15510 (s390_gnu_triplet_regexp, s390_stap_is_single_operand)
15511 (s390_validate_reg_range, s390_tdesc_valid)
15512 (s390_gdbarch_tdep_alloc, s390_gdbarch_init): Move to...
15513 * s390-tdep.c: ...this. New file.
15514
15515 2018-01-23 Philipp Rudo <prudo@linux.vnet.ibm.com>
15516
15517 * s390-linux-tdep.c (gdbarch_tdep.s390_syscall_record): New hook.
15518 (s390_process_record, s390_gdbarch_tdep_alloc)
15519 (s390_linux_init_abi_any): Use/set new hook.
15520
15521 2018-01-23 Philipp Rudo <prudo@linux.vnet.ibm.com>
15522
15523 * s390-linux-tdep.c (osabi.h): New include.
15524 (s390_linux_init_abi_31, s390_linux_init_abi_64)
15525 (s390_linux_init_abi_any): New functions.
15526 (s390_gdbarch_init, _initialize_s390_tdep): Adjust.
15527
15528 2018-01-23 Philipp Rudo <prudo@linux.vnet.ibm.com>
15529
15530 * s390-linux-tdep.c (s390_gdbarch_init): Use gdb_assert for
15531 tdesc_has_registers check
15532
15533 2018-01-23 Philipp Rudo <prudo@linux.vnet.ibm.com>
15534
15535 * s390-linux-tdep.c (s390_tdesc_valid): New function.
15536 (s390_validate_reg_range): New macro.
15537 (s390_gdbarch_init): Adjust.
15538
15539 2018-01-23 Philipp Rudo <prudo@linux.vnet.ibm.com>
15540
15541 * s390-linux-tdep.c (gdbarch_tdep) <tdesc>: New field.
15542 (s390_gdbarch_tdep_alloc): Adjust.
15543 (s390_gdbarch_init): Adjust.
15544
15545 2018-01-23 Philipp Rudo <prudo@linux.vnet.ibm.com>
15546
15547 * s390-linux-tdep.c (gdbarch_tdep) <have_linux_v1, have_linux_v2>
15548 <have_tdb>: Change type to bool.
15549 (s390_gdbarch_tdep_alloc): Adjust.
15550 (s390_gdbarch_init): Adjust.
15551
15552 2018-01-23 Philipp Rudo <prudo@linux.vnet.ibm.com>
15553
15554 * s390-linux-tdep (s390_abi_kind) <ABI_NONE>: New default field.
15555 (gdbarch_tdep) <have_upper, have_vx>: New fields.
15556 (s390_gdbarch_tdep_alloc): New function.
15557 (s390_gdbarch_init): Allocate tdep at start and use its fields
15558 instead of separate variables.
15559
15560 2018-01-23 Philipp Rudo <prudo@linux.vnet.ibm.com>
15561
15562 * s390-linux-tdep.c (s390_gdbarch_init): Remove duplicate checks
15563 when looking for cached gdbarch and add comment for remaining.
15564
15565 2018-01-22 Pedro Alves <palves@redhat.com>
15566 Sergio Durigan Junior <sergiodj@redhat.com>
15567
15568 * typeprint.c (whatis_exp): Initialize "val" in the "whatis type"
15569 case.
15570
15571 2018-01-22 Maciej W. Rozycki <macro@mips.com>
15572
15573 * MAINTAINERS: Update my company e-mail address.
15574
15575 2018-01-22 Yao Qi <yao.qi@linaro.org>
15576
15577 * regcache.c (cooked_write_test): New function.
15578 (_initialize_regcache): Register the test.
15579
15580 2018-01-22 Yao Qi <yao.qi@linaro.org>
15581
15582 * ia64-tdep.c (ia64_pseudo_register_read): Call
15583 regcache->cooked_read instead of regcache_cooked_read_unsigned.
15584 * m32c-tdep.c (m32c_cat_read): Likewise.
15585 (m32c_r3r2r1r0_read): Likewise.
15586 * m68hc11-tdep.c (m68hc11_pseudo_register_read): Likewise.
15587 * xtensa-tdep.c (xtensa_register_read_masked): Likewise.
15588
15589 2018-01-22 Yao Qi <yao.qi@linaro.org>
15590
15591 * aarch64-tdep.c (aarch64_pseudo_read_value): Call regcache
15592 method raw_read instead of regcache_raw_read.
15593 * amd64-tdep.c (amd64_pseudo_register_read_value): Likewise.
15594 * arm-tdep.c (arm_neon_quad_read): Likewise.
15595 * avr-tdep.c (avr_pseudo_register_read): Likewise.
15596 * bfin-tdep.c (bfin_pseudo_register_read): Likewise.
15597 * frv-tdep.c (frv_pseudo_register_read): Likewise.
15598 * h8300-tdep.c (h8300_pseudo_register_read): Likewise.
15599 * i386-tdep.c (i386_mmx_regnum_to_fp_regnum): Likewise.
15600 (i386_pseudo_register_read_into_value): Likewise.
15601 * mep-tdep.c (mep_pseudo_cr32_read): Likewise.
15602 * msp430-tdep.c (msp430_pseudo_register_read): Likewise.
15603 * nds32-tdep.c (nds32_pseudo_register_read): Likewise.
15604 * rl78-tdep.c (rl78_pseudo_register_read): Likewise.
15605 * s390-linux-tdep.c (s390_pseudo_register_read): Likewise.
15606 * sparc-tdep.c (sparc32_pseudo_register_read): Likewise.
15607 * sparc64-tdep.c (sparc64_pseudo_register_read): Likewise.
15608 * spu-tdep.c (spu_pseudo_register_read_spu): Likewise.
15609 * xtensa-tdep.c (xtensa_pseudo_register_read): Likewise.
15610
15611 2018-01-22 Yao Qi <yao.qi@linaro.org>
15612
15613 * Makefile.in (ALL_TARGET_OBS): Remove mt-tdep.o.
15614 * configure.tgt: Remove target mt.
15615 * mt-tdep.c: Remove.
15616 * regcache.c (cooked_read_test): Remove the check for mt.
15617
15618 2018-01-22 Yao Qi <yao.qi@linaro.org>
15619
15620 * jit.c (jit_frame_prev_register): Call regcache::cooked_read
15621 instead of gdbarch_pseudo_register_read_value.
15622
15623 2018-01-22 Joel Brobecker <brobecker@adacore.com>
15624
15625 * dwarf2read.c (need_gnat_info): Return nonzero if the cu's
15626 language is Ada.
15627
15628 2018-01-22 Joel Brobecker <brobecker@adacore.com>
15629
15630 * linespec.c (create_sals_line_offset): Remove code that preserved
15631 the symtab_and_line's line number.
15632
15633 2018-01-21 Andrew Burgess <andrew.burgess@embecosm.com>
15634
15635 * varobj.c (varobj_create): Don't set valid_block when creating a
15636 floating varobj.
15637
15638 2018-01-21 Andrew Burgess <andrew.burgess@embecosm.com>
15639
15640 * varobj.c (varobj_create): Remove out of date comment.
15641
15642 2018-01-21 Andrew Burgess <andrew.burgess@embecosm.com>
15643
15644 PR mi/20395
15645 * ada-exp.y (write_var_from_sym): Pass extra parameter when
15646 updating innermost block.
15647 * parse.c (innermost_block_tracker::update): Take extra type
15648 parameter, and check types match before updating innermost block.
15649 (write_dollar_variable): Update innermost block for registers.
15650 * parser-defs.h (enum innermost_block_tracker_type): New enum.
15651 (innermost_block_tracker::innermost_block_tracker): Initialise
15652 m_types member.
15653 (innermost_block_tracker::reset): Take type parameter.
15654 (innermost_block_tracker::update): Take type parameter, and pass
15655 type through as needed.
15656 (innermost_block_tracker::m_types): New member.
15657 * varobj.c (varobj_create): Pass type when reseting innermost
15658 block.
15659
15660 2018-01-21 Andrew Burgess <andrew.burgess@embecosm.com>
15661
15662 * ada-exp.y (write_var_from_sym): Switch to innermost_block API.
15663 * ada-lang.c (resolve_subexp): Likewise.
15664 * breakpoint.c (set_breakpoint_condition) Likewise.
15665 (watch_command_1) Likewise.
15666 * c-exp.y (variable): Likewise.
15667 * d-exp.y (PrimaryExpression): Likewise.
15668 * f-exp.y (variable): Likewise.
15669 * go-exp.y (variable): Likewise.
15670 * m2-exp.y (variable): Likewise.
15671 * objfiles.c (objfile::~objfile): Likewise.
15672 * p-exp.y (variable): Likewise.
15673 * parse.c (innermost_block): Change type.
15674 * parser-defs.h (class innermost_block_tracker): New.
15675 (innermost_block): Change to innermost_block_tracker.
15676 * printcmd.c (display_command): Switch to innermost_block API.
15677 (do_one_display): Likewise.
15678 * rust-exp.y (do_one_display): Likewise.
15679 * symfile.c (clear_symtab_users): Likewise.
15680 * varobj.c (varobj_create): Switch to innermost_block API, replace
15681 use of innermost_block with block stored on varobj object.
15682
15683 2018-01-21 Andrew Burgess <andrew.burgess@embecosm.com>
15684
15685 * expression.h (innermost_block): Remove declaration.
15686 * varobj.c: Add 'parser-defs.h' include.
15687
15688 2018-01-19 Tom Tromey <tom@tromey.com>
15689
15690 * rust-lang.c (rust_lookup_symbol_nonlocal): Look up qualified
15691 symbols in the static and global blocks.
15692
15693 2018-01-19 James Clarke <jrtc27@jrtc27.com>
15694
15695 * nat/linux-ptrace.c: Remove unnecessary reinclusion of
15696 gdb_ptrace.h, and move including gdb_wait.h ...
15697 * nat/linux-ptrace.h: ... to here.
15698
15699 2018-01-19 Simon Marchi <simon.marchi@ericsson.com>
15700
15701 * inf-ptrace.c (inf_ptrace_detach): Adjust call to
15702 inf_ptrace_detach_success.
15703 (inf_ptrace_detach_success): Add inferior parameter, use it
15704 instead of inferior_ptid, pass it to detach_inferior.
15705 * inf-ptrace.h (inf_ptrace_detach_success): Add inferior
15706 parameter.
15707 * inferior.c (detach_inferior): Add overload that takes an
15708 inferior object.
15709 * inferior.h (detach_inferior): Likewise.
15710 * linux-nat.c (linux_nat_detach): Use the inf parameter, don't
15711 use inferior_ptid, adjust call to inf_ptrace_detach_success.
15712 * linux-thread-db.c (thread_db_detach): Use inf parameter.
15713
15714 2018-01-19 Simon Marchi <simon.marchi@ericsson.com>
15715
15716 * target.h (struct target_ops) <to_detach>: Add inferior
15717 parameter.
15718 (target_detach): Likewise.
15719 * target.c (dispose_inferior): Pass inferior down.
15720 (target_detach): Pass inferior down. Assert that it is equal to
15721 the current inferior.
15722 * aix-thread.c (aix_thread_detach): Pass inferior down.
15723 * corefile.c (core_file_command): Pass current_inferior() down.
15724 * corelow.c (core_detach): Add inferior parameter.
15725 * darwin-nat.c (darwin_detach): Likewise.
15726 * gnu-nat.c (gnu_detach): Likewise.
15727 * inf-ptrace.c (inf_ptrace_detach): Likewise.
15728 * infcmd.c (detach_command): Pass current_inferior() down to
15729 target_detach.
15730 * infrun.c (follow_fork_inferior): Pass parent_inf to
15731 target_detach.
15732 (handle_vfork_child_exec_or_exit): Pass inf->vfork_parent to
15733 target_detach.
15734 * linux-nat.c (linux_nat_detach): Add inferior parameter.
15735 * linux-thread-db.c (thread_db_detach): Likewise.
15736 * nto-procfs.c (procfs_detach): Likewise.
15737 * procfs.c (procfs_detach): Likewise.
15738 * record.c (record_detach): Likewise.
15739 * record.h (struct inferior): Forward-declare.
15740 (record_detach): Add inferior parameter.
15741 * remote-sim.c (gdbsim_detach): Likewise.
15742 * remote.c (remote_detach_1): Likewise.
15743 (remote_detach): Likewise.
15744 (extended_remote_detach): Likewise.
15745 * sol-thread.c (sol_thread_detach): Likewise.
15746 * target-debug.h (target_debug_print_inferior_p): New macro.
15747 * target-delegates.c: Re-generate.
15748 * top.c (kill_or_detach): Pass inferior down to target_detach.
15749 * windows-nat.c (windows_detach): Add inferior parameter.
15750
15751 2018-01-19 Simon Marchi <simon.marchi@ericsson.com>
15752
15753 * target.h (struct target_ops) <to_detach>: Remove args
15754 parameter.
15755 (target_detach): Likewise.
15756 * target.c (dispose_inferior): Adjust.
15757 (target_detach): Remove args parameter, adjust.
15758 * aix-thread.c (aix_thread_detach): Adjust.
15759 * corefile.c (core_file_command): Adjust.
15760 * corelow.c (core_detach): Adjust.
15761 * darwin-nat.c (darwin_detach): Adjust.
15762 * gnu-nat.c (gnu_detach): Adjust.
15763 * inf-ptrace.c (inf_ptrace_detach): Adjust.
15764 * infcmd.c (detach_command): Adjust
15765 * infrun.c (follow_fork_inferior): Adjust.
15766 (handle_vfork_child_exec_or_exit): Adjust.
15767 * linux-fork.c (linux_fork_detach): Remove args parameter.
15768 * linux-fork.h (linux_fork_detach): Likewise.
15769 * linux-nat.c (linux_nat_detach): Likewise, and adjust.
15770 * linux-thread-db.c (thread_db_detach): Likewise.
15771 * nto-procfs.c (procfs_detach): Likewise.
15772 * procfs.c (procfs_detach): Likewise.
15773 (do_detach): Remove signo parameter.
15774 * record.c (record_detach): Remove args parameter.
15775 * record.h (record_detach): Likewise.
15776 * remote-sim.c (gdbsim_detach): Likewise.
15777 * remote.c (remote_detach_1): Likewise.
15778 (remote_detach): Likewise.
15779 (extended_remote_detach): Likewise.
15780 * sol-thread.c (sol_thread_detach): Likewise.
15781 * target-delegates.c: Re-generate.
15782 * top.c (struct qt_args) <args>: Remove field.
15783 (kill_or_detach): Don't pass args.
15784 (quit_force): Don't set args.
15785 * windows-nat.c (windows_detach): Remove args parameter.
15786
15787 2018-01-19 Yao Qi <yao.qi@linaro.org>
15788
15789 * arm-linux-tdep.c (arm_linux_gcc_target_options): New function.
15790 (arm_linux_init_abi): Install it.
15791
15792 2018-01-19 Yao Qi <yao.qi@linaro.org>
15793
15794 * osabi.c (gdb_osabi_names): Extend the regexp for
15795 arm-linux-gnueabihf.
15796
15797 2018-01-18 Yao Qi <yao.qi@linaro.org>
15798
15799 * dwarf2read.c (abbrev_table) <abbrevs>: Rename it to
15800 m_abbrevs.
15801 (abbrev_table::add_abbrev): Update.
15802 (abbrev_table::lookup_abbrev): Update.
15803
15804 2018-01-18 Yao Qi <yao.qi@linaro.org>
15805
15806 * ppc-linux-tdep.c (ppu2spu_prev_register): Call cooked_read.
15807
15808 2018-01-17 Sergio Durigan Junior <sergiodj@redhat.com>
15809
15810 * compile/compile.c (compile_to_object): Convert "triplet_rx"
15811 to "std::string".
15812
15813 2018-01-17 Tom Tromey <tom@tromey.com>
15814
15815 * dwarf2read.c (symbolp): Remove typedef. Don't instantiate VEC.
15816
15817 2018-01-17 Tom Tromey <tom@tromey.com>
15818
15819 * gdbtypes.h (add_dyn_prop): Remove objfile parameter.
15820 * gdbtypes.c (add_dyn_prop): Remove objfile parameter.
15821 (create_array_type_with_stride): Update.
15822 * dwarf2read.c (set_die_type): Update.
15823
15824 2018-01-17 Tom Tromey <tom@tromey.com>
15825
15826 * dwarf2read.c (delayed_method_info): Remove typedef.
15827 (dwarf2_cu::method_info): Now a std::vector.
15828 (add_to_method_list): Update.
15829 (free_delayed_list): Remove.
15830 (compute_delayed_physnames): Update.
15831 (process_full_comp_unit, process_full_type_unit): Clear the method
15832 list. Remove cleanups.
15833 (psymtab_include_file_name): Add name_holder parameter. Use
15834 unique_xmalloc_ptr.
15835 (dwarf_decode_lines): Update.
15836
15837 2018-01-17 Tom Tromey <tom@tromey.com>
15838 Simon Marchi <simon.marchi@ericsson.com>
15839
15840 * dwarf2read.c (struct dwarf2_cu): Add constructor, destructor.
15841 (dwarf2_per_objfile::free_cached_comp_units)
15842 (init_tu_and_read_dwo_dies, init_cutu_and_read_dies)
15843 (init_cutu_and_read_dies_no_follow): Update.
15844 (dwarf2_cu::dwarf2_cu): Rename from init_one_comp_unit.
15845 (dwarf2_cu::~dwarf2_cu): New.
15846 (free_heap_comp_unit, free_stack_comp_unit): Remove.
15847 (age_cached_comp_units, free_one_cached_comp_unit): Update.
15848
15849 2018-01-17 Tom Tromey <tom@tromey.com>
15850 Simon Marchi <simon.marchi@ericsson.com>
15851
15852 * dwarf2read.c (struct dwarf2_cu) <abbrev_table>: Remove.
15853 (struct die_reader_specs) <abbrev_table>: New member.
15854 (struct abbrev_table): Add constructor.
15855 <alloc_abbrev, add_abbrev, lookup_abbrev>: Declare.
15856 <abbrev_obstack>: Now an auto_obstack.
15857 (abbrev_table_up): New typedef.
15858 (init_cu_die_reader): Add abbrev_table parameter.
15859 (read_cutu_die_from_dwo): Remove abbrev_table_provided parameter.
15860 Add result_dwo_abbrev_table.
15861 (init_tu_and_read_dwo_dies, init_cutu_and_read_dies)
15862 (init_cutu_and_read_dies_no_follow, build_type_psymtabs_1):
15863 Update.
15864 (peek_die_abbrev): Take die_reader_specs, not dwarf_cu as
15865 parameter.
15866 (skip_children): Update.
15867 (abbrev_table::alloc_abbrev): Rename from
15868 abbrev_table_alloc_abbrev.
15869 (abbrev_table::add_abbrev): Rename from abbrev_table_add_abbrev.
15870 (abbrev_table::lookup_abbrev): Rename from
15871 abbrev_table_lookup_abbrev.
15872 (abbrev_table_read_table): Return abbrev_table_up.
15873 (abbrev_table_free, abbrev_table_free_cleanup)
15874 (dwarf2_read_abbrevs, dwarf2_free_abbrev_table): Remove.
15875 (load_partial_dies): Update.
15876
15877 2018-01-17 Tom Tromey <tom@tromey.com>
15878
15879 * dwarf2read.c (dwarf2_compute_name): Update comment.
15880 (read_func_scope, read_variable): Update.
15881 (new_symbol): Remove.
15882 (new_symbol_full): Rename to new_symbol.
15883
15884 2018-01-17 Mike Gulick <mgulick@mathworks.com>
15885
15886 PR gdb/16577
15887 * gdb_bfd.c (gdb_bfd_map_section): If unable to read object file, issue
15888 a warning instead of throwing an error, set section size to 0 and return
15889 NULL.
15890 * gdb_bfd.h (gdb_bfd_map_section): Update description.
15891
15892 2018-01-17 Simon Marchi <simon.marchi@ericsson.com>
15893
15894 * nat/linux-ptrace.h (linux_ptrace_attach_fail_reason): Return
15895 std::string.
15896 (linux_ptrace_attach_fail_reason_string): Likewise.
15897 * nat/linux-ptrace.c (linux_ptrace_attach_fail_reason):
15898 Likewise.
15899 (linux_ptrace_attach_fail_reason_string): Likewise.
15900 * linux-nat.c (attach_proc_task_lwp_callback): Adjust.
15901
15902 2018-01-17 Simon Marchi <simon.marchi@ericsson.com>
15903
15904 * linux-nat.c (linux_nat_attach): Remove xstrdup.
15905
15906 2018-01-17 Eldar Abusalimov <eldar.abusalimov@jetbrains.com>
15907
15908 PR gdb/21559
15909 * configure.ac: Include <sys/types.h> prior to <sys/user.h> when
15910 checking for fs_base/gs_base fields in struct user_regs_struct.
15911 * configure: Regenerate.
15912
15913 2018-01-17 Yao Qi <yao.qi@linaro.org>
15914
15915 * aarch64-linux-tdep.c (aarch64_linux_gcc_target_options): New
15916 function.
15917 (aarch64_linux_init_abi): Install it to gdbarch hook
15918 gcc_target_options.
15919
15920 2018-01-15 Pedro Alves <palves@redhat.com>
15921
15922 * common/signals-state-save-restore.c
15923 (save_original_signals_state): Fix typos.
15924
15925 2017-01-12 Tom Tromey <tom@tromey.com>
15926 Sergio Durigan Junior <sergiodj@redhat.com>
15927
15928 * Makefile.in (install-only): Install gdb-add-index.
15929
15930 2018-01-12 John Baldwin <jhb@FreeBSD.org>
15931
15932 * fbsd-tdep.c (KVE_PROTECTION): Correct value.
15933
15934 2018-01-12 Andreas Arnez <arnez@linux.vnet.ibm.com>
15935
15936 * infrun.c (keep_going_pass_signal): Clear step-over info when
15937 insert_breakpoints fails.
15938
15939 2018-01-11 Pedro Alves <palves@redhat.com>
15940
15941 PR gdb/22583
15942 * infrun.c (resume): Rename to ...
15943 (resume_1): ... this.
15944 (resume): Reimplement as wrapper around resume_1.
15945
15946 2018-01-11 Pedro Alves <palves@redhat.com>
15947
15948 PR remote/22597
15949 * remote.c (remote_parse_stop_reply): Default to the last-set
15950 general thread instead of to 'magic_null_ptid'.
15951
15952 2018-01-10 Pedro Alves <palves@redhat.com>
15953
15954 * language.h (language_get_symbol_name_matcher): Rename ...
15955 (get_symbol_name_matcher): ... this.
15956 * language.c (language_get_symbol_name_matcher): Ditto.
15957 * dictionary.c, linespec.c, minsyms.c, psymtab.c, symtab.c: All
15958 callers adjusted.
15959
15960 2018-01-10 Pedro Alves <palves@redhat.com>
15961
15962 PR gdb/22670
15963 * dwarf2read.c
15964 (gdb_index_symbol_name_matcher::gdb_index_symbol_name_matcher):
15965 Adjust to use language_get_symbol_name_matcher instead of
15966 language_defn::la_get_symbol_name_matcher.
15967 * language.c (language_get_symbol_name_matcher): If in Ada mode
15968 and the lookup name is a verbatim match, return Ada's matcher.
15969 * language.h (language_get_symbol_name_matcher): Adjust comment.
15970 (ada_lookup_name_info::verbatim_p):: New method.
15971
15972 2018-01-10 Pedro Alves <palves@redhat.com>
15973
15974 PR gdb/22670
15975 * ada-lang.c (ada_collect_symbol_completion_matches): If the
15976 minsym's language is language_auto or language_cplus, pass down
15977 language_ada instead.
15978 * symtab.c (compare_symbol_name): Don't frob symbol language here.
15979
15980 2018-01-10 Pedro Alves <palves@redhat.com>
15981
15982 PR gdb/22670
15983 * minsyms.c (linkage_name_str): New function.
15984 (iterate_over_minimal_symbols): Use it.
15985
15986 2018-01-09 John Baldwin <jhb@FreeBSD.org>
15987
15988 * NEWS: Document that 'info proc' now works on FreeBSD.
15989
15990 2018-01-09 John Baldwin <jhb@FreeBSD.org>
15991
15992 * configure.ac: Check for kinfo_getfile in libutil.
15993 * configure: Regenerate.
15994 * config.in: Regenerate.
15995 * fbsd-nat.c: Include "fbsd-tdep.h".
15996 (fbsd_fetch_cmdline): New.
15997 (fbsd_fetch_kinfo_proc): Move earlier and change to return a bool
15998 rather than calling error.
15999 (fbsd_info_proc): New.
16000 (fbsd_thread_name): Report error if fbsd_fetch_kinfo_proc fails.
16001 (fbsd_wait): Report warning if fbsd_fetch_kinfo_proc fails.
16002 (fbsd_nat_add_target): Set "to_info_proc" to "fbsd_info_proc".
16003
16004 2018-01-09 John Baldwin <jhb@FreeBSD.org>
16005
16006 * fbsd-nat.c (struct free_deleter): Remove.
16007 (fbsd_find_memory_regions): Use gdb::unique_xmalloc_ptr<>.
16008
16009 2018-01-09 John Baldwin <jhb@FreeBSD.org>
16010
16011 * fbsd-nat.c (fbsd_pid_to_exec_file) [KERN_PROC_PATHNAME]: Return
16012 NULL for an empty pathname.
16013
16014 2018-01-09 John Baldwin <jhb@FreeBSD.org>
16015
16016 * fbsd-tdep.c (KVE_STRUCTSIZE, KVE_START, KVE_END, KVE_OFFSET)
16017 (KVE_FLAGS, KVE_PROTECTION, KVE_PATH, KINFO_VME_PROT_READ)
16018 (KINFO_VME_PROT_WRITE, KINFO_VME_PROT_EXEC, KINFO_VME_FLAG_COW)
16019 (KINFO_VME_FLAG_NEEDS_COPY, KINFO_VME_FLAG_NOCOREDUMP)
16020 (KINFO_VME_FLAG_SUPER, KINFO_VME_FLAG_GROWS_UP)
16021 (KINFO_VME_FLAG_GROWS_DOWN, KF_STRUCTSIZE, KF_TYPE, KF_FD)
16022 (KF_PATH, KINFO_FILE_TYPE_VNODE, KINFO_FILE_FD_TYPE_CWD)
16023 (KINFO_FILE_FD_TYPE_TEXT, SIG_WORDS, struct kinfo_proc_layout)
16024 (kinfo_proc_layout_32, kinfo_proc_layout_i386)
16025 (kinfo_proc_layout_64, fbsd_vm_map_entry_flags)
16026 (fbsd_core_info_proc_mappings, fbsd_core_vnode_path)
16027 (fbsd_core_fetch_timeval, fbsd_print_sigset)
16028 (fbsd_core_info_proc_status, fbsd_core_info_proc): New.
16029 (fbsd_init_abi): Install gdbarch "core_info_proc" method.
16030 * fbsd-tdep.h (fbsd_vm_map_entry_flags): New.
16031
16032 2018-01-08 Samuel Thibault <samuel.thibault@ens-lyon.org>
16033
16034 * gdb/gnu-nat.c: Include <elf.h> and <link.h>.
16035 (gnu_xfer_auxv): New function.
16036 (gnu_xfer_partial): Call gnu_xfer_auxv when `object' is
16037 TARGET_OBJECT_AUXV.
16038
16039 2018-01-08 Yao Qi <yao.qi@linaro.org>
16040 Simon Marchi <simon.marchi@ericsson.com>
16041
16042 * Makefile.in (COMMON_SFILES): Remove selftest-arch.c and
16043 common/selftest.c.
16044 (COMMON_OBS): Remove selftest.o.
16045 * configure.ac: Append selftest-arch.c and common/selftest.c to
16046 CONFIG_SRCS. Append selftest-arch.o and selftest.o to COMMON_OBS.
16047 * configure: Re-generated.
16048 * maint.c (maintenance_selftest): Wrap selftests::run_tests with
16049 GDB_SELF_TEST.
16050 (maintenance_info_selftests): Likewise.
16051
16052 2018-01-08 Xavier Roirand <roirand@adacore.com>
16053
16054 * ada-valprint.c (val_print_packed_array_elements): Use
16055 proper number of elements when printing an array indexed
16056 by an enumeration type.
16057
16058 2018-01-07 Simon Marchi <simon.marchi@polymtl.ca>
16059
16060 * dwarf2read.c (struct dwarf2_cu) <dwarf2_per_objfile>: Remove.
16061 (dw2_get_file_names_reader): Adjust.
16062 (lookup_dwo_signatured_type): Adjust.
16063 (lookup_dwp_signatured_type): Adjust.
16064 (lookup_signatured_type): Adjust.
16065 (create_type_unit_group): Adjust.
16066 (get_type_unit_group): Adjust.
16067 (process_psymtab_comp_unit_reader): Adjust.
16068 (build_type_psymtabs_reader): Adjust.
16069 (scan_partial_symbols): Adjust.
16070 (add_partial_symbol): Adjust.
16071 (add_partial_subprogram): Adjust.
16072 (peek_die_abbrev): Adjust.
16073 (fixup_go_packaging): Adjust.
16074 (process_imported_unit_die): Adjust.
16075 (dwarf2_compute_name): Adjust.
16076 (dwarf2_physname): Adjust.
16077 (read_import_statement): Adjust.
16078 (handle_DW_AT_stmt_list): Adjust.
16079 (read_file_scope): Adjust.
16080 (read_func_scope): Adjust.
16081 (read_lexical_block_scope): Adjust.
16082 (read_call_site_scope): Adjust.
16083 (read_variable): Adjust.
16084 (dwarf2_rnglists_process): Adjust.
16085 (dwarf2_ranges_process): Adjust.
16086 (dwarf2_ranges_read): Adjust.
16087 (dwarf2_get_pc_bounds): Adjust.
16088 (dwarf2_record_block_ranges): Adjust.
16089 (dwarf2_add_field): Adjust.
16090 (dwarf2_add_member_fn): Adjust.
16091 (read_structure_type): Adjust.
16092 (process_structure_scope): Adjust.
16093 (read_enumeration_type): Adjust.
16094 (read_array_type): Adjust.
16095 (mark_common_block_symbol_computed): Adjust.
16096 (read_common_block): Adjust.
16097 (read_namespace_type): Adjust.
16098 (read_namespace): Adjust.
16099 (read_module_type): Adjust.
16100 (read_tag_pointer_type): Adjust.
16101 (read_tag_ptr_to_member_type): Adjust.
16102 (read_tag_string_type): Adjust.
16103 (read_subroutine_type): Adjust.
16104 (read_typedef): Adjust.
16105 (read_base_type): Adjust.
16106 (attr_to_dynamic_prop): Adjust.
16107 (read_subrange_type): Adjust.
16108 (read_unspecified_type): Adjust.
16109 (dwarf2_read_abbrevs): Adjust.
16110 (load_partial_dies): Adjust.
16111 (read_partial_die): Adjust.
16112 (find_partial_die): Adjust.
16113 (guess_partial_die_structure_name): Adjust.
16114 (fixup_partial_die): Adjust.
16115 (read_attribute_value): Adjust.
16116 (read_addr_index): Adjust.
16117 (read_addr_index_from_leb128): Adjust.
16118 (read_str_index): Adjust.
16119 (dwarf2_string_attr): Adjust.
16120 (get_debug_line_section): Adjust.
16121 (dwarf_decode_line_header): Adjust.
16122 (lnp_state_machine::check_line_address): Adjust.
16123 (dwarf_decode_lines_1): Adjust.
16124 (dwarf_decode_lines): Adjust.
16125 (dwarf2_start_symtab): Adjust.
16126 (var_decode_location): Adjust.
16127 (new_symbol_full): Adjust.
16128 (dwarf2_const_value_data): Adjust.
16129 (dwarf2_const_value_attr): Adjust.
16130 (dwarf2_const_value): Adjust.
16131 (die_type): Adjust.
16132 (die_containing_type): Adjust.
16133 (build_error_marker_type): Adjust.
16134 (lookup_die_type): Adjust.
16135 (guess_full_die_structure_name): Adjust.
16136 (anonymous_struct_prefix): Adjust.
16137 (determine_prefix): Adjust.
16138 (dwarf2_name): Adjust.
16139 (follow_die_ref_or_sig): Adjust.
16140 (follow_die_offset): Adjust.
16141 (follow_die_ref): Adjust.
16142 (follow_die_sig_1): Adjust.
16143 (follow_die_sig): Adjust.
16144 (get_signatured_type): Adjust.
16145 (get_DW_AT_signature_type): Adjust.
16146 (decode_locdesc): Adjust.
16147 (dwarf_decode_macros): Adjust.
16148 (cu_debug_loc_section): Adjust.
16149 (fill_in_loclist_baton): Adjust.
16150 (dwarf2_symbol_mark_computed): Adjust.
16151 (init_one_comp_unit): Don't assign
16152 dwarf2_cu::dwarf2_per_objfile.
16153 (set_die_type): Adjust.
16154
16155 2018-01-07 Simon Marchi <simon.marchi@ericsson.com>
16156
16157 * dwarf2read.c (struct mapped_debug_names): Add constructor.
16158 <dwarf2_per_objfile>: New field.
16159 (dwarf2_per_objfile): Remove global.
16160 (get_dwarf2_per_objfile): New function.
16161 (set_dwarf2_per_objfile): New function.
16162 (dwarf2_build_psymtabs_hard): Change objfile parameter to
16163 dwarf2_per_objfile.
16164 (abbrev_table_read_table): Add dwarf2_per_objfile parameter.
16165 (read_abbrev_offset): Likewise.
16166 (read_indirect_string): Likewise.
16167 (read_indirect_line_string): Likewise.
16168 (read_indirect_string_at_offset): Likewise.
16169 (read_indirect_string_from_dwz): Likewise.
16170 (dwarf2_find_containing_comp_unit): Change objfile parameter to
16171 dwarf2_per_objfile.
16172 (age_cached_comp_units): Add dwarf2_per_objfile parameter.
16173 (create_all_comp_units): Change objfile parameter to
16174 dwarf2_per_objfile.
16175 (create_all_type_units): Likewise.
16176 (process_queue): Add dwarf2_per_objfile parameter.
16177 (read_and_check_comp_unit_head): Likewise.
16178 (lookup_dwo_unit_in_dwp): Likewise.
16179 (get_dwp_file): Likewise.
16180 (process_cu_includes): Likewise.
16181 (struct free_dwo_file_cleanup_data): New struct.
16182 (dwarf2_has_info): Use get_dwarf2_per_objfile and
16183 set_dwarf2_per_objfile.
16184 (dwarf2_get_dwz_file): Add dwarf2_per_objfile parameter.
16185 (dw2_do_instantiate_symtab): Get dwarf2_per_objfile from
16186 context, adjust calls.
16187 (dw2_instantiate_symtab): Likewise.
16188 (dw2_get_cutu): Add dwarf2_per_objfile parameter.
16189 (dw2_get_cu): Likewise.
16190 (create_cu_from_index_list): Change objfile parameter to
16191 dwarf2_per_objfile.
16192 (create_cus_from_index_list): Get dwarf2_per_objfile from
16193 context, adjust calls.
16194 (create_cus_from_index): Likewise.
16195 (create_signatured_type_table_from_index): Change objfile
16196 parameter to dwarf2_per_objfile.
16197 (create_signatured_type_table_from_debug_names): Change objfile
16198 parameter to dwarf2_per_objfile.
16199 (create_addrmap_from_index): Likewise.
16200 (create_addrmap_from_aranges): Likewise.
16201 (dwarf2_read_index): Use get_dwarf2_per_objfile, adjust calls.
16202 (dw2_setup): Remove.
16203 (dw2_get_file_names_reader): Get dwarf2_per_objfile from
16204 context.
16205 (dw2_find_last_source_symtab): Get dwarf2_per_objfile using
16206 get_dwarf2_per_objfile.
16207 (dw2_forget_cached_source_info): Likewise.
16208 (dw2_map_symtabs_matching_filename): Likewise.
16209 (struct dw2_symtab_iterator) <index>: Remove.
16210 <dwarf2_per_objfile>: New field.
16211 (dw2_symtab_iter_init): Replace index parameter with
16212 dwarf2_per_objfile.
16213 (dw2_symtab_iter_next): Use dwarf2_per_objfile from iter.
16214 (dw2_lookup_symbol): Use get_dwarf2_per_objfile and adjust.
16215 (dw2_print_stats): Likewise.
16216 (dw2_dump): Likewise.
16217 (dw2_expand_symtabs_for_function): Likewise.
16218 (dw2_expand_all_symtabs): Likewise.
16219 (dw2_expand_symtabs_with_fullname): Likewise.
16220 (dw2_expand_marked_cus): Replace index and objfile parameters
16221 with dwarf2_per_objfile.
16222 (dw_expand_symtabs_matching_file_matcher): Add
16223 dwarf2_per_objfile parameter and adjust calls.
16224 (dw2_expand_symtabs_matching): Use get_dwarf2_per_objfile and
16225 adjust calls.
16226 (dw2_find_pc_sect_compunit_symtab): Don't call dw2_setup.
16227 (dw2_map_symbol_filenames): Use get_dwarf2_per_objfile and
16228 adjust calls.
16229 (create_cus_from_debug_names_list): Replace objfile parameter
16230 with dwarf2_per_objfile and adjust calls.
16231 (create_cus_from_debug_names): Likewise.
16232 (dwarf2_read_debug_names): Likewise.
16233 (mapped_debug_names::namei_to_name): Adjust call.
16234 (dw2_debug_names_iterator::next): Likewise.
16235 (dw2_debug_names_iterator::find_vec_in_debug_names): Likewise.
16236 (dw2_debug_names_lookup_symbol): Use get_dwarf2_per_objfile.
16237 (dw2_debug_names_dump): Likewise.
16238 (dw2_debug_names_expand_symtabs_for_function): Likewise.
16239 (dw2_debug_names_expand_symtabs_matching): Likewise.
16240 (dwarf2_initialize_objfile): Likewise.
16241 (dwarf2_build_psymtabs): Likewise.
16242 (get_abbrev_section_for_cu): Get dwarf2_per_objfile from
16243 this_cu.
16244 (error_check_comp_unit_head): Add dwarf2_per_objfile parameter.
16245 (read_and_check_comp_unit_head): Likewise.
16246 (read_abbrev_offset): Likewise.
16247 (create_debug_type_hash_table): Likewise.
16248 (create_debug_types_hash_table): Likewise.
16249 (create_all_type_units): Replace objfile parameter with
16250 dwarf2_per_objfile.
16251 (add_type_unit): Add dwarf2_per_objfile parameter.
16252 (fill_in_sig_entry_from_dwo_entry): Replace objfile parameter
16253 with dwarf2_per_objfile.
16254 (lookup_dwo_signatured_type): Get dwarf2_per_objfile from cu.
16255 (lookup_dwp_signatured_type): Likewise.
16256 (lookup_signatured_type): Likewise.
16257 (read_cutu_die_from_dwo): Likewise.
16258 (init_tu_and_read_dwo_dies): Likewise.
16259 (init_cutu_and_read_dies): Likewise.
16260 (init_cutu_and_read_dies_no_follow): Likewise.
16261 (allocate_type_unit_groups_table): Add objfile parameter.
16262 (create_type_unit_group): Use dwarf2_per_objfile from cu.
16263 (get_type_unit_group): Likewise.
16264 (process_psymtab_comp_unit): Update call.
16265 (build_type_psymtabs_reader): Use dwarf2_per_objfile from cu.
16266 (build_type_psymtabs_1): Add dwarf2_per_objfile parameter.
16267 (print_tu_stats): Likewise.
16268 (build_type_psymtab_dependencies): Use dwarf2_per_objfile passed
16269 in void* parameter.
16270 (build_type_psymtabs): Change objfile parameter to
16271 dwarf2_per_objfile.
16272 (process_skeletonless_type_unit): Use dwarf2_per_objfile
16273 passed in void* parameter.
16274 (process_skeletonless_type_units): Change objfile parameter to
16275 dwarf2_per_objfile.
16276 (set_partial_user): Likewise.
16277 (dwarf2_build_psymtabs_hard): Likewise.
16278 (read_comp_units_from_section): Likewise.
16279 (create_all_comp_units): Likewise.
16280 (scan_partial_symbols): Update calls.
16281 (add_partial_symbol): Likewise.
16282 (dwarf2_read_symtab): Use get_dwarf2_per_objfile.
16283 (maybe_queue_comp_unit): Use dwarf2_read_symtab from cu.
16284 (process_queue): Add dwarf2_per_objfile parameter.
16285 (get_compunit_symtab): Use dwarf2_per_objfile from cu.
16286 (compute_compunit_symtab_includes): Likewise.
16287 (process_cu_includes): Add dwarf2_per_objfile parameter.
16288 (process_full_comp_unit): Use dwarf2_per_objfile from cu.
16289 (process_full_type_unit): Likewise.
16290 (process_imported_unit_die): Update call.
16291 (handle_DW_AT_stmt_list): Use dwarf2_per_objfile from cu.
16292 (read_file_scope): Likewise.
16293 (allocate_dwo_file_hash_table): Add objfile parameter.
16294 (lookup_dwo_file_slot): Add dwarf2_per_objfile parameter.
16295 (create_cus_hash_table): Likewise.
16296 (create_dwp_hash_table): Likewise.
16297 (create_dwo_unit_in_dwp_v1): Likewise.
16298 (create_dwp_v2_section): Likewise.
16299 (create_dwo_unit_in_dwp_v2): Likewise.
16300 (lookup_dwo_unit_in_dwp): Likewise.
16301 (try_open_dwop_file): Likewise.
16302 (open_dwo_file): Likewise. Use dwarf2_per_objfile from cu.
16303 (open_and_init_dwo_file): Use dwarf2_per_objfile from cu, update
16304 cleanup to include a reference to dwarf2_per_objfile.
16305 (open_dwp_file): Add dwarf2_per_objfile parameter.
16306 (open_and_init_dwp_file): Likewise.
16307 (get_dwp_file): Likewise.
16308 (lookup_dwo_cutu): Use dwarf2_per_objfile from cu.
16309 (queue_and_load_all_dwo_tus): Update call.
16310 (free_dwo_file_cleanup): Use dwarf2_per_objfile from cleanup
16311 data.
16312 (dwarf2_rnglists_process): Use dwarf2_per_objfile from cu.
16313 (dwarf2_ranges_process): Likewise.
16314 (dwarf2_get_pc_bounds): Likewise.
16315 (mark_common_block_symbol_computed): Likewise.
16316 (abbrev_table_read_table): Add dwarf2_per_objfile parameter.
16317 (dwarf2_read_abbrevs): Update call.
16318 (read_partial_die): Use dwarf2_per_objfile from cu.
16319 (find_partial_die): Likewise.
16320 (fixup_partial_die): Likewise.
16321 (read_attribute_value): Likewise.
16322 (read_indirect_string_at_offset_from): Add objfile parameter.
16323 (read_indirect_string_at_offset): Add dwarf2_per_objfile
16324 parameter.
16325 (read_indirect_string_from_dwz): Add objfile parameter.
16326 (read_indirect_string): Add objfile parameter.
16327 (read_addr_index_1): Add dwarf2_per_objfile parameter.
16328 (read_addr_index): Use dwarf2_per_objfile from cu.
16329 (dwarf2_read_addr_index): Use dwarf2_per_objfile from cu, don't
16330 call dw2_setup.
16331 (read_str_index): Use dwarf2_per_objfile from cu.
16332 (get_debug_line_section): Likewise.
16333 (read_formatted_entries): Add dwarf2_per_objfile parameter.
16334 (dwarf_decode_line_header): Use dwarf2_per_objfile from cu.
16335 (new_symbol_full): Use dwarf2_per_objfile from cu.
16336 (build_error_marker_type): Likewise.
16337 (lookup_die_type): Likewise.
16338 (determine_prefix): Likewise.
16339 (follow_die_offset): Likewise.
16340 (dwarf2_fetch_die_loc_sect_off): Use get_dwarf2_per_objfile.
16341 (dwarf2_fetch_constant_bytes): Don't call dw2_setup.
16342 (dwarf2_fetch_die_type_sect_off): Likewise.
16343 (dwarf2_get_die_type): Likewise.
16344 (follow_die_sig_1): Use dwarf2_per_objfile from cu.
16345 (get_signatured_type): Likewise.
16346 (get_DW_AT_signature_type): Likewise.
16347 (dwarf_decode_macro_bytes): Add dwarf2_per_objfile parameter.
16348 (dwarf_decode_macros): Use dwarf2_per_objfile from cu.
16349 (cu_debug_loc_section): Likewise.
16350 (fill_in_loclist_baton): Likewise.
16351 (dwarf2_symbol_mark_computed): Likewise.
16352 (dwarf2_find_containing_comp_unit): Change objfile parameter to
16353 dwarf2_per_objfile.
16354 (free_cached_comp_units): Use dwarf2_per_objfile passed in void*
16355 parameter.
16356 (age_cached_comp_units): Add dwarf2_per_objfile parameter.
16357 (free_one_cached_comp_unit): Use dwarf2_per_objfile from cu.
16358 (dwarf2_free_objfile): Use get_dwarf2_per_objfile.
16359 (set_die_type): Use dwarf2_free_objfile from cu.
16360 (get_die_type_at_offset): Likewise.
16361 (dwarf2_per_objfile_free): Don't assign global variable.
16362 (debug_names) <constructor>: Add dwarf2_per_objfile
16363 parameter, update m_debugstrlookup construction.
16364 (debug_names::debug_str_lookup): Add dwarf2_per_objfile
16365 parameter.
16366 <m_dwarf2_per_objfile>: New field.
16367 <lookup>: Use m_dwarf2_per_objfile.
16368 (check_dwarf64_offsets): Add dwarf2_per_objfile parameter.
16369 (psyms_seen_size): Likewise.
16370 (write_gdbindex): Replace objfile parameter with
16371 dwarf2_per_objfile.
16372 (write_debug_names): Likewise.
16373 (write_psymtabs_to_index): Likewise.
16374 (save_gdb_index_command): Use get_dwarf2_per_objfile, update
16375 calls.
16376
16377 2018-01-07 Simon Marchi <simon.marchi@ericsson.com>
16378
16379 * dwarf2read.c (struct dwarf2_cu) <objfile>: Remove.
16380 <dwarf2_per_objfile>: New field.
16381 (struct dwarf2_per_cu_data) <objfile>: Remove.
16382 <dwarf2_per_objfile>: New field.
16383 (create_cu_from_index_list): Assign dwarf2_per_objfile instead
16384 of objfile.
16385 (create_signatured_type_table_from_index): Likewise.
16386 (create_debug_type_hash_table): Likewise.
16387 (fill_in_sig_entry_from_dwo_entry): Likewise.
16388 (lookup_dwo_unit): Access objfile through dwarf2_per_objfile.
16389 (create_type_unit_group): Assign dwarf2_per_objfile instead of
16390 objfile.
16391 (create_partial_symtab): Access objfile through
16392 dwarf2_per_objfile.
16393 (process_psymtab_comp_unit_reader): Likewise.
16394 (read_comp_units_from_section): Likewise.
16395 (scan_partial_symbols): Likewise.
16396 (add_partial_symbol): Likewise.
16397 (add_partial_subprogram): Likewise.
16398 (peek_die_abbrev): Likewise.
16399 (fixup_go_packaging): Likewise.
16400 (process_full_comp_unit): Likewise.
16401 (process_full_type_unit): Likewise.
16402 (process_imported_unit_die): Likewise.
16403 (dwarf2_compute_name): Likewise.
16404 (dwarf2_physname): Likewise.
16405 (read_import_statement): Likewise.
16406 (create_cus_hash_table): Assign dwarf2_physname instead of
16407 objfile.
16408 (read_func_scope): Access objfile through dwarf2_per_objfile.
16409 (read_lexical_block_scope): Likewise.
16410 (read_call_site_scope): Likewise.
16411 (read_variable): Likewise.
16412 (dwarf2_rnglists_process): Likewise.
16413 (dwarf2_ranges_process): Likewise.
16414 (dwarf2_ranges_read): Likewise.
16415 (dwarf2_record_block_ranges): Likewise.
16416 (dwarf2_add_field): Likewise.
16417 (dwarf2_add_member_fn): Likewise.
16418 (read_structure_type): Likewise.
16419 (process_structure_scope): Likewise.
16420 (read_enumeration_type): Likewise.
16421 (read_array_type): Likewise.
16422 (read_common_block): Likewise.
16423 (read_namespace_type): Likewise.
16424 (read_namespace): Likewise.
16425 (read_module_type): Likewise.
16426 (read_tag_pointer_type): Likewise.
16427 (read_tag_ptr_to_member_type): Likewise.
16428 (read_tag_string_type): Likewise.
16429 (read_subroutine_type): Likewise.
16430 (read_typedef): Likewise.
16431 (read_base_type): Likewise.
16432 (attr_to_dynamic_prop): Likewise.
16433 (read_subrange_type): Likewise.
16434 (read_unspecified_type): Likewise.
16435 (load_partial_dies): Likewise.
16436 (read_partial_die): Likewise.
16437 (find_partial_die): Likewise.
16438 (guess_partial_die_structure_name): Likewise.
16439 (fixup_partial_die): Likewise.
16440 (read_attribute_value): Likewise.
16441 (read_addr_index_from_leb128): Likewise.
16442 (dwarf2_read_addr_index): Likewise.
16443 (dwarf2_string_attr): Likewise.
16444 (lnp_state_machine::check_line_address): Likewise.
16445 (dwarf_decode_lines_1): Likewise.
16446 (dwarf_decode_lines): Likewise.
16447 (dwarf2_start_symtab): Likewise.
16448 (var_decode_location): Likewise.
16449 (new_symbol_full): Likewise.
16450 (dwarf2_const_value_data): Likewise.
16451 (dwarf2_const_value_attr): Likewise.
16452 (dwarf2_const_value): Likewise.
16453 (die_type): Likewise.
16454 (die_containing_type): Likewise.
16455 (lookup_die_type): Likewise.
16456 (guess_full_die_structure_name): Likewise.
16457 (anonymous_struct_prefix): Likewise.
16458 (dwarf2_name): Likewise.
16459 (follow_die_ref_or_sig): Likewise.
16460 (follow_die_offset): Likewise.
16461 (follow_die_ref): Likewise.
16462 (dwarf2_fetch_die_loc_sect_off): Likewise.
16463 (dwarf2_fetch_constant_bytes): Likewise.
16464 (dwarf2_fetch_die_type_sect_off): Likewise.
16465 (dwarf2_get_die_type): Likewise.
16466 (follow_die_sig): Likewise.
16467 (decode_locdesc): Likewise.
16468 (dwarf2_per_cu_objfile): Likewise.
16469 (dwarf2_per_cu_text_offset): Likewise.
16470 (init_one_comp_unit): Assign dwarf2_per_objfile instead of
16471 objfile.
16472 (set_die_type): Access objfile through
16473 dwarf2_per_objfile.
16474
16475 2018-01-07 Simon Marchi <simon.marchi@ericsson.com>
16476
16477 * valprint.c (converted_character_d): Remove typedef.
16478 (DEF_VEC_O (converted_character_d)): Remove.
16479 (count_next_character): Use std::vector.
16480 (print_converted_chars_to_obstack): Likewise.
16481 (generic_printstr): Likewise.
16482
16483 2018-01-07 Simon Marchi <simon.marchi@polymtl.ca>
16484
16485 * xml-support.h (struct gdb_xml_value): Add constructor.
16486 <value>: Change type to unique_xmalloc_ptr.
16487 (gdb_xml_value_s): Remove typedef.
16488 (DEF_VEC_O (gdb_xml_value_s)): Remove.
16489 (gdb_xml_element_start_handler): Change parameter type to
16490 std::vector.
16491 (xml_find_attribute): Likewise.
16492 * xml-support.c (xml_find_attribute): Change parameter type to
16493 std::vector and adjust.
16494 (gdb_xml_values_cleanup): Remove.
16495 (gdb_xml_parser::start_element): Adjust to std::vector.
16496 (xinclude_start_include): Change paraeter type to std::vector
16497 and adjust.
16498 * btrace.c (check_xml_btrace_version): Likewise.
16499 (parse_xml_btrace_block): Likewise.
16500 (parse_xml_btrace_pt_config_cpu): Likewise.
16501 (parse_xml_btrace_pt): Likewise.
16502 (parse_xml_btrace_conf_bts): Likewise.
16503 (parse_xml_btrace_conf_pt): Likewise.
16504 * memory-map.c (memory_map_start_memory): Likewise.
16505 (memory_map_start_property): Likewise.
16506 * osdata.c (osdata_start_osdata): Likewise.
16507 (osdata_start_item): Likewise.
16508 (osdata_start_column): Likewise.
16509 * remote.c (start_thread): Likewise.
16510 * solib-aix.c (library_list_start_library): Likewise.
16511 (library_list_start_list): Likewise.
16512 * solib-svr4.c (library_list_start_library): Likewise.
16513 (svr4_library_list_start_list): Likewise.
16514 * solib-target.c (library_list_start_segment): Likewise.
16515 (library_list_start_section): Likewise.
16516 (library_list_start_library): Likewise.
16517 (library_list_start_list): Likewise.
16518 * tracepoint.c (traceframe_info_start_memory): Likewise.
16519 (traceframe_info_start_tvar): Likewise.
16520 * xml-syscall.c (syscall_start_syscall): Likewise.
16521 * xml-tdesc.c (tdesc_start_target): Likewise.
16522 (tdesc_start_feature): Likewise.
16523 (tdesc_start_reg): Likewise.
16524 (tdesc_start_union): Likewise.
16525 (tdesc_start_struct): Likewise.
16526 (tdesc_start_flags): Likewise.
16527 (tdesc_start_enum): Likewise.
16528 (tdesc_start_field): Likewise.
16529 (tdesc_start_enum_value): Likewise.
16530 (tdesc_start_vector): Likewise.
16531
16532 2018-01-07 Simon Marchi <simon.marchi@polymtl.ca>
16533
16534 * extension.h (struct xmethod_worker) <clone>: Remove.
16535 * python/py-xmethods.c (struct python_xmethod_worker) <clone>:
16536 Remove.
16537 (python_xmethod_worker::clone): Remove.
16538 * valops.c (find_overload_match): Use std::move instead of
16539 clone.
16540
16541 2018-01-07 Simon Marchi <simon.marchi@polymtl.ca>
16542
16543 * extension-priv.h (enum ext_lang_rc): Remove, move to extension.h.
16544 (struct extension_language_ops) <clone_xmethod_worker_data>: Remove.
16545 <free_xmethod_worker_data>: Remove.
16546 <get_matching_xmethod_workers>: Chance VEC to std::vector.
16547 <get_xmethod_arg_types>: Remove.
16548 <get_xmethod_result_type>: Remove.
16549 <invoke_xmethod>: Remove.
16550 * extension.c (new_xmethod_worker): Remove.
16551 (clone_xmethod_worker): Remove.
16552 (get_matching_xmethod_workers): Return void, pass std::vector by
16553 pointer.
16554 (get_xmethod_arg_types): Rename to...
16555 (xmethod_worker::get_arg_types): ... this, and adjust.
16556 (get_xmethod_result_type): Rename to...
16557 (xmethod_worker::get_result_type): ... this, and adjust.
16558 (invoke_xmethod): Remove.
16559 (free_xmethod_worker): Remove.
16560 (free_xmethod_worker_vec): Remove.
16561 * extension.h (enum ext_lang_rc): Move here from
16562 extension-priv.h.
16563 (struct xmethod_worker): Add constructor and destructor.
16564 <data>: Remove.
16565 <value>: Remove.
16566 <invoke, clone, do_get_result_type, do_get_arg_types>: New
16567 virtual pure methods.
16568 <get_arg_types, get_result_type>: New methods.
16569 (xmethod_worker_ptr): Remove typedef.
16570 (DEF_VEC_P (xmethod_worker_ptr)): Remove.
16571 (xmethod_worker_vec): Remove typedef.
16572 (xmethod_worker_up): New typedef.
16573 (invoke_xmethod): Remove.
16574 (clone_xmethod_worker): Remove.
16575 (free_xmethod_worker): Remove.
16576 (free_xmethod_worker_vec): Remove.
16577 (get_xmethod_arg_types): Remove.
16578 (get_xmethod_result_type): Remove.
16579 * valops.c (find_method_list): Use std::vector, don't use
16580 intermediate vector.
16581 (value_find_oload_method_list): Use std::vector.
16582 (find_overload_match): Use std::vector.
16583 (find_oload_champ): Use std::vector.
16584 * value.c (value_free): Use operator delete.
16585 (value_of_xmethod): Rename to...
16586 (value_from_xmethod): ... this. Don't assign
16587 xmethod_worker::value, take rvalue-reference.
16588 (result_type_of_xmethod): Adjust.
16589 (call_xmethod): Adjust.
16590 * value.h: Include extension.h.
16591 (struct xmethod_worker): Don't forward-declare.
16592 (value_of_xmethod): Rename to...
16593 (value_from_xmethod): ... this, take rvalue-reference.
16594 * python/py-xmethods.c (struct gdbpy_worker_data): Rename to...
16595 (struct python_xmethod_worker): ... this, add constructor and
16596 destructor.
16597 <invoke, clone, do_get_arg_types, do_get_result_type>: Implement.
16598 (gdbpy_free_xmethod_worker_data): Rename to...
16599 (python_xmethod_worker::~python_xmethod_worker): ... this and
16600 adjust.
16601 (gdbpy_clone_xmethod_worker_data): Rename to...
16602 (python_xmethod_worker::clone): ... this and adjust.
16603 (gdbpy_get_matching_xmethod_workers): Use std::vector, don't use
16604 temporary vector.
16605 (gdbpy_get_xmethod_arg_types): Rename to...
16606 (python_xmethod_worker::do_get_arg_types): ... this and adjust.
16607 (gdbpy_get_xmethod_result_type): Rename to...
16608 (python_xmethod_worker::do_get_result_type): ... this and
16609 adjust.
16610 (gdbpy_invoke_xmethod): Rename to...
16611 (python_xmethod_worker::invoke): ... this and adjust.
16612 (new_python_xmethod_worker): Rename to...
16613 (python_xmethod_worker::python_xmethod_worker): ... this and
16614 adjust.
16615 * python/python-internal.h (gdbpy_clone_xmethod_worker_data):
16616 Remove.
16617 (gdbpy_free_xmethod_worker_data): Remove.
16618 (gdbpy_get_matching_xmethod_workers): Use std::vector.
16619 (gdbpy_get_xmethod_arg_types): Remove.
16620 (gdbpy_get_xmethod_result_type): Remove.
16621 (gdbpy_invoke_xmethod): Remove.
16622 * python/python.c (python_extension_ops): Remove obsolete
16623 callbacks.
16624
16625 2018-01-05 Pedro Alves <palves@redhat.com>
16626
16627 PR gdb/18653
16628 * common/signals-state-save-restore.c
16629 (save_original_signals_state): New parameter 'quiet'. Warn if we
16630 find a custom handler preinstalled, instead of internal erroring.
16631 But only warn if !quiet.
16632 * common/signals-state-save-restore.h
16633 (save_original_signals_state): New parameter 'quiet'.
16634 * main.c (captured_main_1): Move save_original_signals_state call
16635 after option handling, and pass QUIET.
16636
16637 2018-01-05 Pedro Alves <palves@redhat.com>
16638
16639 * spu-tdep.c (spu_catch_start): Pass
16640 symbol_name_match_type::SEARCH_NAME to block_lookup_symbol.
16641
16642 2018-01-05 Pedro Alves <palves@redhat.com>
16643
16644 PR gdb/22670
16645 * ada-lang.c (literal_symbol_name_matcher): New function.
16646 (ada_get_symbol_name_matcher): Use it for
16647 symbol_name_match_type::SEARCH_NAME.
16648 * block.c (block_lookup_symbol): New parameter 'match_type'. Pass
16649 it down instead of assuming symbol_name_match_type::FULL.
16650 * block.h (block_lookup_symbol): New parameter 'match_type'.
16651 * c-valprint.c (print_unpacked_pointer): Use
16652 lookup_symbol_search_name instead of lookup_symbol.
16653 * compile/compile-object-load.c (get_out_value_type): Pass down
16654 symbol_name_match_type::SEARCH_NAME.
16655 * cp-namespace.c (cp_basic_lookup_symbol): Pass down
16656 symbol_name_match_type::FULL.
16657 * cp-support.c (cp_get_symbol_name_matcher): Handle
16658 symbol_name_match_type::SEARCH_NAME.
16659 * infrun.c (insert_exception_resume_breakpoint): Use
16660 lookup_symbol_search_name.
16661 * p-valprint.c (pascal_val_print): Use lookup_symbol_search_name.
16662 * psymtab.c (maintenance_check_psymtabs): Use
16663 symbol_name_match_type::SEARCH_NAME and SYMBOL_SEARCH_NAME.
16664 * stack.c (print_frame_args): Use lookup_symbol_search_name and
16665 SYMBOL_SEARCH_NAME.
16666 * symtab.c (lookup_local_symbol): Don't demangle the lookup name
16667 if symbol_name_match_type::SEARCH_NAME.
16668 (lookup_symbol_in_language): Pass down
16669 symbol_name_match_type::FULL.
16670 (lookup_symbol_search_name): New.
16671 (lookup_language_this): Pass down
16672 symbol_name_match_type::SEARCH_NAME.
16673 (lookup_symbol_aux, lookup_local_symbol): New parameter
16674 'match_type'. Pass it down.
16675 * symtab.h (symbol_name_match_type::SEARCH_NAME): New enumerator.
16676 (lookup_symbol_search_name): New declaration.
16677 (lookup_symbol_in_block): New 'match_type' parameter.
16678
16679 2018-01-05 Pedro Alves <palves@redhat.com>
16680
16681 PR gdb/22670
16682 * ada-lang.c (ada_lookup_encoded_symbol): Reimplement in terms of
16683 ada_lookup_symbol.
16684 (ada_lookup_symbol): Reimplement in terms of
16685 ada_lookup_symbol_list, bits factored out from
16686 ada_lookup_encoded_symbol.
16687
16688 2018-01-05 Joel Brobecker <brobecker@adacore.com>
16689
16690 * ada-exp.y (write_object_renaming): When subscripting an array
16691 using a symbol as the index, pass the block in call to
16692 ada_lookup_encoded_symbol when looking that symbol up.
16693
16694 2018-01-05 Jerome Guitton <guitton@adacore.com>
16695
16696 * ada-lang.c (ada_array_length): Use ada_index_type instead of
16697 TYPE_INDEX_TYPE.
16698
16699 2018-01-05 Joel Brobecker <brobecker@adacore.com>
16700
16701 * ada-lang.c (ada_to_fixed_value_create): Add handling of
16702 the case where VALUE_LVAL (val0) is not lval_memory.
16703
16704 2018-01-05 Xavier Roirand <roirand@adacore.com>
16705
16706 * ada-valprint.c (print_optional_low_bound): Handle
16707 character-indexed array printing like boolean-indexed array
16708 printing.
16709
16710 2018-01-05 Joel Brobecker <brobecker@adacore.com>
16711
16712 * NEWS: Create a new section for the next release branch.
16713 Rename the section of the current branch, now that it has
16714 been cut.
16715
16716 2018-01-05 Joel Brobecker <brobecker@adacore.com>
16717
16718 GDB 8.1 branch created (5219ac6237c272b938c28517bf371429260c71e7):
16719 * version.in: Bump version to 8.1.50.DATE-git.
16720
16721 2018-01-03 Xavier Roirand <roirand@adacore.com>
16722
16723 * ada-lang.h (ada_exception_catchpoint_kind) <ada_catch_handlers>:
16724 Add field.
16725 * ada-lang.c (struct exception_support_info) <catch_handlers_sym>:
16726 Add field.
16727 (default_exception_support_info) <catch_handlers_sym>: Add field.
16728 (exception_support_info_fallback) <catch_handlers_sym>: Add field.
16729 (ada_exception_name_addr_1): Add "catch handlers" handling.
16730 (ada_exception_catchpoint_cond_string) <ex>: New parameter.
16731 Update all callers.
16732 (create_excep_cond_exprs) <ex>: Add parameter.
16733 (re_set_exception): Update create_excep_cond_exprs call.
16734 (print_it_exception, print_one_exception, print_mention_exception)
16735 (print_recreate_exception): Add "catch handler" handling.
16736 (allocate_location_catch_handlers, re_set_catch_handlers)
16737 (check_status_catch_handlers, print_it_catch_handlers)
16738 (print_one_catch_handlers, print_mention_catch_handlers)
16739 (print_recreate_catch_handlers): New function.
16740 (catch_handlers_breakpoint_ops): New variable.
16741 (catch_ada_exception_command_split) <is_catch_handlers_cmd>:
16742 Add parameter. Add "catch handler" handling.
16743 (ada_exception_sym_name, ada_exception_breakpoint_ops):
16744 Add "catch handler" handling.
16745 (ada_exception_catchpoint_cond_string): Add "catch handler"
16746 handling.
16747 (create_ada_exception_catchpoint): Update create_excep_cond_exprs
16748 call.
16749 (catch_ada_handlers_command): New function.
16750 (initialize_ada_catchpoint_ops): Initialize "catch handlers"
16751 operations structure.
16752 (_initialize_ada_language): Add "catch handlers" command entry.
16753 * NEWS: Document "catch handlers" feature.
16754
16755 2018-01-02 Joel Brobecker <brobecker@adacore.com>
16756
16757 * ada-lang.c (ada_value_slice_from_ptr): Take array stride into
16758 account when creating the array type of the slice.
16759 (ada_value_slice): Likewise.
16760
16761 2018-01-02 Joel Brobecker <brobecker@adacore.com>
16762
16763 * gdbtypes.h (enum dynamic_prop_node_kind) <DYN_PROP_BYTE_STRIDE>:
16764 New enum value.
16765 (create_array_type_with_stride): Add byte_stride_prop parameter.
16766 * gdbtypes.c (create_array_type_with_stride) <byte_stride_prop>:
16767 New parameter. Update all callers in this file.
16768 (array_type_has_dynamic_stride): New function.
16769 (is_dynamic_type_internal, resolve_dynamic_array): Add handling
16770 of arrays with dynamic byte strides.
16771 * dwarf2read.c (read_array_type): Add support for dynamic
16772 DW_AT_byte_stride attributes.
16773
16774 2018-01-02 Joel Brobecker <brobecker@adacore.com>
16775
16776 * dwarf2read.c (read_unspecified_type): Treat
16777 DW_TAG_enumeration_type DIEs from Ada units as stubs.
16778
16779 2018-01-01 Joel Brobecker <brobecker@adacore.com>
16780
16781 Update copyright year range in all GDB files.
16782
16783 2018-01-01, 18 Joel Brobecker <brobecker@adacore.com>
16784
16785 * copyright.py (BY_HAND): Remove gdb/testsuite/gdb.base/step-line.inp
16786 and gdb/testsuite/gdb.base/step-line.c.
16787
16788 2018-01-01 Joel Brobecker <brobecker@adacore.com>
16789
16790 * copyright.py (main): Dump the contents of
16791 MULTIPLE_COPYRIGHT_HEADERS (separately) from BY_HAND,
16792 even if BY_HAND is empty.
16793
16794 2018-01-01 Joel Brobecker <brobecker@adacore.com>
16795
16796 * top.c (print_gdb_version): Update Copyright year in version
16797 message.
16798
16799 2018-01-01 Joel Brobecker <brobecker@adacore.com>
16800
16801 * config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2017.
16802
16803 For older changes see ChangeLog-2017.
16804 \f
16805 Local Variables:
16806 mode: change-log
16807 left-margin: 8
16808 fill-column: 74
16809 version-control: never
16810 coding: utf-8
16811 End:
This page took 0.381086 seconds and 4 git commands to generate.