Check for sigprocmask in common.m4
[binutils-gdb.git] / gdb / ChangeLog
1 2019-10-23 Tom Tromey <tom@tromey.com>
2
3 * configure: Rebuild.
4 * configure.ac: Don't check for sigprocmask.
5 * gdbsupport/common.m4 (GDB_AC_COMMON): Check for sigprocmask.
6
7 2019-10-23 Tom Tromey <tom@tromey.com>
8
9 * configure: Rebuild.
10 * acinclude.m4: Use m4_include, not sinclude.
11
12 2019-10-23 Tom de Vries <tdevries@suse.de>
13
14 PR breakpoints/24687
15 * symtab.c (iterate_over_some_symtabs): Apply gdb_realpath on fullname.
16
17 2019-10-22 Christian Biesinger <cbiesinger@google.com>
18
19 * symtab.c (struct demangled_name_entry) <language>: Change from
20 bitfield to regular variable.
21
22 2019-10-22 Christian Biesinger <cbiesinger@google.com>
23
24 * symtab.c (struct demangled_name_entry): Add a constructor.
25 (free_demangled_name_entry): New function to call the destructor
26 for demangled_name_entry.
27 (create_demangled_names_hash): Pass free_demangled_name_entry to
28 htab_create_alloc.
29 (symbol_set_names): Call placement new for demangled_name_entry.
30 * utils.c: No longer include xxhash.h here, now that fast_hash
31 is inlined in the header.
32 * utils.h: Instead, include it here.
33
34 2019-10-22 Christian Biesinger <cbiesinger@google.com>
35
36 * Makefile.in: Link with libxxhash.
37 * config.in: Regenerate.
38 * configure: Regenerate.
39 * configure.ac: Search for libxxhash.
40 * utils.c (fast_hash): Use xxhash if present.
41
42 2019-10-22 Christian Biesinger <cbiesinger@google.com>
43
44 * utils.h (fast_hash): New function.
45 * symtab.c (hash_demangled_name_entry): Call new function
46 fast_hash.
47
48 2019-10-22 Christian Biesinger <cbiesinger@google.com>
49
50 * symtab.c (struct demangled_name_entry): Change type of mangled
51 to gdb::string_view. Also adds a constructor that takes the
52 mangled name.
53 (hash_demangled_name_entry): Update.
54 (eq_demangled_name_entry): Update.
55 (free_demangled_name_entry): New function to call the destructor
56 now that this is not a POD anymore.
57 (create_demangled_names_hash): Pass free_demangled_name_entry to
58 htab_create_alloc.
59 (symbol_set_names): Update.
60
61 2019-10-21 Ali Tamur <tamu@google.com>
62
63 * dwarf2read.c (dir_index): Change type.
64 (file_name_index): Likewise.
65 (line_header::include_dir_at): Change comment and implementation on
66 whether it is DWARF 5.
67 (line_header::is_valid_file_index): New function.
68 (line_header::file_name_at): Change comment and implementation on
69 whether it is DWARF 5.
70 (line_header::file_names): Change to private field renamed as
71 m_file_names and introduce a new accessor method.
72 (line_header::file_names_size): New method.
73 (line_header::include_dirs): Change to private field and rename as
74 m_include_dirs.
75 (dw2_get_file_names_reader): Define local var at a smaller scope and
76 reflect API change.
77 (dwarf2_cu::setup_type_unit_groups): Reflect API change.
78 (process_structure_scope): Likewise.
79 (line_header::add_include_dir): Change message and reflect renaming.
80 (line_header::add_file_name): Likewise.
81 (read_formatted_entries): Handle DW_FORM_data16.
82 (dwarf_decode_line_header): Fix line header length calculation.
83 (psymtab_include_file_name): Change comment and API.
84 (lnp_state_machine::m_file): Update comment and reflect type change.
85 (lnp_state_machine::record_line): Reflect type change.
86 (dwarf_decode_lines): Reflect API change.
87 (file_file_name): Likewise.
88 (file_full_name): Likewise.
89
90 2019-10-21 Andrew Burgess <andrew.burgess@embecosm.com>
91
92 * objfiles.c (sort_cmp): Ensure that !(a < a) holds true.
93
94 2019-10-21 Tom Tromey <tom@tromey.com>
95
96 * tui/tui-winsource.h (tui_exec_info_content): Remove typedef.
97
98 2019-10-21 Tom Tromey <tom@tromey.com>
99
100 * configure.ac (nm.h): Conditionally create nm.h link. Subst
101 NM_H. Use AC_CONFIG_LINKS.
102 * configure: Rebuild.
103 * Makefile.in (NM_H): New variable.
104 (generated_files): Add NM_H. Remove gcore.
105 (nm.h, stamp-nmh): New targets.
106
107 2019-10-20 Tom Tromey <tom@tromey.com>
108
109 * objfiles.h (unlink_objfile, put_objfile_before): Don't declare.
110 * objfiles.c (unlink_objfile): Move earlier. Now static. Remove
111 obsolete comment.
112 (put_objfile_before): Now static.
113
114 2019-10-19 Simon Marchi <simon.marchi@polymtl.ca>
115
116 * gdbsupport/common-utils.h (startswith): Change return type to
117 bool.
118
119 2019-10-19 Christian Biesinger <cbiesinger@google.com>
120
121 * bcache.c (bcache::print_statistics): Use std::sort instead of qsort.
122 * breakpoint.c (bp_locations_compare): Rename to...
123 (bp_location_is_less_than): ...this, and change to std::sort semantics.
124 (update_global_location_list): Use std::sort instead of qsort.
125 * buildsym.c (compare_line_numbers): Rename to...
126 (lte_is_less_than): ...this, and change to std::sort semantics.
127 (buildsym_compunit::end_symtab_with_blockvector): Use std::sort
128 instead of qsort.
129 * disasm.c (compare_lines): Rename to...
130 (line_is_less_than): ...this, and change to std::sort semantics.
131 (do_mixed_source_and_assembly_deprecated): Call std::sort instead
132 of qsort.
133 * dwarf2-frame.c (qsort_fde_cmp): Rename to...
134 (fde_is_less_than): ...this, and change to std::sort semantics.
135 (dwarf2_build_frame_info): Call std::sort instead of qsort.
136 * mdebugread.c (compare_blocks):
137 (block_is_less_than): ...this, and change to std::sort semantics.
138 (sort_blocks): Call std::sort instead of qsort.
139 * objfiles.c (qsort_cmp): Rename to...
140 (sort_cmp): ...this, and change to std::sort semantics.
141 (update_section_map): Call std::sort instead of qsort.
142 * remote.c (compare_pnums): Remove.
143 (map_regcache_remote_table): Call std::sort instead of qsort.
144 * utils.c (compare_positive_ints): Remove.
145 * utils.h (compare_positive_ints): Remove.
146 * xcoffread.c (compare_lte): Remove.
147 (arrange_linetable): Call std::sort instead of qsort.
148
149 2019-10-19 Sergio Durigan Junior <sergiodj@redhat.com>
150
151 * symfile.c (init_entry_point_info): Fix typo.
152 * i386-darwin-tdep.c (darwin_dwarf_signal_frame_p): Fix typo.
153
154 2019-10-18 Tom de Vries <tdevries@suse.de>
155
156 * aarch64-tdep.c: Fix typos in comments.
157 * ada-lang.c: Same.
158 * ada-tasks.c: Same.
159 * alpha-tdep.c: Same.
160 * alpha-tdep.h: Same.
161 * amd64-nat.c: Same.
162 * amd64-windows-tdep.c: Same.
163 * arc-tdep.c: Same.
164 * arc-tdep.h: Same.
165 * arch-utils.c: Same.
166 * arm-nbsd-tdep.c: Same.
167 * arm-tdep.c: Same.
168 * ax-gdb.c: Same.
169 * blockframe.c: Same.
170 * btrace.c: Same.
171 * c-varobj.c: Same.
172 * coff-pe-read.c: Same.
173 * coffread.c: Same.
174 * cris-tdep.c: Same.
175 * darwin-nat.c: Same.
176 * dbxread.c: Same.
177 * dcache.c: Same.
178 * disasm.c: Same.
179 * dtrace-probe.c: Same.
180 * dwarf-index-write.c: Same.
181 * dwarf2-frame-tailcall.c: Same.
182 * dwarf2-frame.c: Same.
183 * dwarf2read.c: Same.
184 * eval.c: Same.
185 * exceptions.c: Same.
186 * fbsd-tdep.c: Same.
187 * findvar.c: Same.
188 * frame.c: Same.
189 * frv-tdep.c: Same.
190 * gnu-v3-abi.c: Same.
191 * go32-nat.c: Same.
192 * h8300-tdep.c: Same.
193 * hppa-tdep.c: Same.
194 * i386-linux-tdep.c: Same.
195 * i386-tdep.c: Same.
196 * ia64-libunwind-tdep.c: Same.
197 * ia64-tdep.c: Same.
198 * infcmd.c: Same.
199 * infrun.c: Same.
200 * linespec.c: Same.
201 * linux-nat.c: Same.
202 * linux-thread-db.c: Same.
203 * machoread.c: Same.
204 * mdebugread.c: Same.
205 * mep-tdep.c: Same.
206 * mn10300-tdep.c: Same.
207 * namespace.c: Same.
208 * objfiles.c: Same.
209 * opencl-lang.c: Same.
210 * or1k-tdep.c: Same.
211 * osabi.c: Same.
212 * ppc-linux-nat.c: Same.
213 * ppc-linux-tdep.c: Same.
214 * ppc-sysv-tdep.c: Same.
215 * printcmd.c: Same.
216 * procfs.c: Same.
217 * record-btrace.c: Same.
218 * record-full.c: Same.
219 * remote-fileio.c: Same.
220 * remote.c: Same.
221 * rs6000-tdep.c: Same.
222 * s12z-tdep.c: Same.
223 * score-tdep.c: Same.
224 * ser-base.c: Same.
225 * ser-go32.c: Same.
226 * skip.c: Same.
227 * sol-thread.c: Same.
228 * solib-svr4.c: Same.
229 * solib.c: Same.
230 * source.c: Same.
231 * sparc-nat.c: Same.
232 * sparc-sol2-tdep.c: Same.
233 * sparc-tdep.c: Same.
234 * sparc64-tdep.c: Same.
235 * stabsread.c: Same.
236 * stack.c: Same.
237 * symfile.c: Same.
238 * symtab.c: Same.
239 * target-descriptions.c: Same.
240 * target-float.c: Same.
241 * thread.c: Same.
242 * utils.c: Same.
243 * valops.c: Same.
244 * valprint.c: Same.
245 * value.c: Same.
246 * varobj.c: Same.
247 * windows-nat.c: Same.
248 * xcoffread.c: Same.
249 * xstormy16-tdep.c: Same.
250 * xtensa-tdep.c: Same.
251
252 2019-10-17 Tom Tromey <tromey@adacore.com>
253
254 * configure: Rebuild.
255 * configure.ac: Use AC_CONFIG_HEADERS. Create stamp-h there, not
256 in AC_CONFIG_FILES invocation.
257 * Makefile.in (Makefile, data-directory/Makefile, stamp-h): Use
258 new-style config.status invocation.
259
260 2019-10-17 Tom de Vries <tdevries@suse.de>
261
262 * arm-nbsd-nat.c: Fix typos in comments.
263 * arm-tdep.c: Same.
264 * darwin-nat-info.c: Same.
265 * dwarf2read.c: Same.
266 * elfread.c: Same.
267 * event-top.c: Same.
268 * findvar.c: Same.
269 * gdbtypes.c: Same.
270 * hppa-tdep.c: Same.
271 * i386-tdep.c: Same.
272 * jit.c: Same.
273 * main.c: Same.
274 * mdebugread.c: Same.
275 * moxie-tdep.c: Same.
276 * nto-procfs.c: Same.
277 * osabi.c: Same.
278 * ppc-linux-tdep.c: Same.
279 * remote.c: Same.
280 * riscv-tdep.c: Same.
281 * s390-tdep.c: Same.
282 * sh-tdep.c: Same.
283 * sparc-linux-tdep.c: Same.
284 * sparc-nat.c: Same.
285 * stack.c: Same.
286 * target-descriptions.c: Same.
287 * top.c: Same.
288 * varobj.c: Same.
289
290 2019-10-16 Tom Tromey <tom@tromey.com>
291
292 * objfiles.h (struct objfile) <original_name>: Now const.
293
294 2019-10-16 Christian Biesinger <cbiesinger@google.com>
295
296 * gdbsupport/gdb_setjmp.h (SIGSETJMP): Allow passing in the value to
297 pass on to sigsetjmp's second argument.
298 * cp-support.c (gdb_demangle): Unblock SIGSEGV if we caught a crash.
299
300 2019-10-16 Keith Seitz <keiths@redhat.com>
301
302 PR gdb/23567
303 * dwarf2read.c (dwarf2_per_objfile::locate_sections): Discard
304 sections whose size is greater than the file size.
305
306 2019-10-16 Jim Wilson <jimw@sifive.com>
307
308 * riscv-tdep.c (riscv_gcc_target_options): New.
309 (riscv_gnu_triplet_regexp): New.
310 (riscv_gdbarch_init): Call set_gdbarch_gcc_triplet_options and
311 set_gdbarch_gnu_triplet_regexp.
312
313 2019-10-16 Christian Biesinger <cbiesinger@google.com>
314
315 * Makefile.in: Add xml-builtin.h.
316 * features/feature_to_c.sh: Add an include for xml-builtin.h
317 to ensure that the compiler checks that the types match.
318 * xml-builtin.h: New file.
319 * xml-support.c (fetch_xml_builtin): Add missing const.
320 * xml-support.h: Remove declaration of xml_builtins.
321
322 2019-10-16 Tom de Vries <tdevries@suse.de>
323
324 PR tdep/25096
325 * amd64-tdep.c (amd64_classify_aggregate_field): Factor out of ...
326 (amd64_classify_aggregate): ... here.
327 (amd64_classify_aggregate_field): Handled fiels of nested structs
328 recursively.
329
330 2019-10-16 Tom de Vries <tdevries@suse.de>
331
332 PR tdep/24104
333 * amd64-tdep.c (amd64_push_arguments): Handle AMD64_NO_CLASS in loop
334 that handles 'theclass'.
335
336 2019-10-15 Andrew Burgess <andrew.burgess@embecosm.com>
337
338 * linespec.c (decode_digits_ordinary): Update comment.
339 * make-target-delegates: No longer need to handle VEC case.
340 * memrange.c (normalize_mem_ranges): Update comment.
341 * namespace.c (add_using_directive): Update comment.
342 * objc-lang.c (uniquify_strings): Update comment.
343 * ppc-linux-nat.c (struct thread_points): Update comment.
344 * probe.h (find_probes_in_objfile): Update comment.
345 * target.h (enum flash_preserve_mode): Update comment.
346 * varobj.c (varobj_restrict_range): Update comment.
347 * varobj.h (varobj_list_children): Update comment.
348
349 2019-10-15 Andrew Burgess <andrew.burgess@embecosm.com>
350
351 * Makefile.in: Remove references to vec.h and vec.c.
352 * aarch64-tdep.c: No longer include vec.h.
353 * ada-lang.c: Likewise.
354 * ada-lang.h: Likewise.
355 * arm-tdep.c: Likewise.
356 * ax.h: Likewise.
357 * breakpoint.h: Likewise.
358 * charset.c: Likewise.
359 * cp-support.h: Likewise.
360 * dtrace-probe.c: Likewise.
361 * dwarf2read.c: Likewise.
362 * extension.h: Likewise.
363 * gdb_bfd.c: Likewise.
364 * gdbsupport/gdb_vecs.h: Likewise.
365 * gdbsupport/vec.c: Remove.
366 * gdbsupport/vec.h: Remove.
367 * gdbthread.h: Likewise.
368 * guile/scm-type.c: Likewise.
369 * inline-frame.c: Likewise.
370 * machoread.c: Likewise.
371 * memattr.c: Likewise.
372 * memrange.h: Likewise.
373 * namespace.h: Likewise.
374 * nat/linux-btrace.h: Likewise.
375 * osdata.c: Likewise.
376 * parser-defs.h: Likewise.
377 * progspace.h: Likewise.
378 * python/py-type.c: Likewise.
379 * record-btrace.c: Likewise.
380 * rust-exp.y: Likewise.
381 * solib-target.c: Likewise.
382 * stap-probe.c: Likewise.
383 * target-descriptions.c: Likewise.
384 * target-memory.c: Likewise.
385 * target.h: Likewise.
386 * varobj.c: Likewise.
387 * varobj.h: Likewise.
388 * xml-support.h: Likewise.
389
390 2019-10-15 Andrew Burgess <andrew.burgess@embecosm.com>
391
392 * gdb/dwarf2read.c (dwarf2_per_objfile::~dwarf2_per_objfile):
393 Update for new std::vector based implementation.
394 (process_psymtab_comp_unit_reader): Likewise.
395 (scan_partial_symbols): Likewise.
396 (recursively_compute_inclusions): Likewise.
397 (compute_compunit_symtab_includes): Likewise.
398 (process_imported_unit_die): Likewise.
399 (queue_and_load_dwo_tu): Likewise.
400 (follow_die_sig_1): Likewise.
401 * gdb/dwarf2read.h: Remove DEF_VEC_P.
402 (typedef dwarf2_per_cu_ptr): Remove.
403 (struct dwarf2_per_cu_data) <imported_symtabs_empty>: New
404 function.
405 (struct dwarf2_per_cu_data) <imported_symtabs_push>: New function.
406 (struct dwarf2_per_cu_data) <imported_symtabs_size>: New function.
407 (struct dwarf2_per_cu_data) <imported_symtabs_free>: New function.
408 (struct dwarf2_per_cu_data) <imported_symtabs>: Change to
409 std::vector.
410
411 2019-10-15 Tom Tromey <tromey@adacore.com>
412
413 * windows-nat.c (windows_nat_target::resume): Use %x when logging
414 TID.
415
416 2019-10-15 Tom Tromey <tromey@adacore.com>
417
418 * windows-nat.c (windows_nat_target::fetch_registers)
419 (windows_nat_target::store_registers): Rename "pid" to "tid".
420
421 2019-10-15 Tom Tromey <tromey@adacore.com>
422
423 * gdbarch.h, gdbarch.c: Rebuild.
424 * gdbarch.sh (gcc_target_options): Change return type to
425 std::string.
426 * compile/compile.c (get_args): Update.
427 * nios2-tdep.c (nios2_gcc_target_options): Return std::string.
428 * arm-linux-tdep.c (arm_linux_gcc_target_options): Return
429 std::string.
430 * aarch64-linux-tdep.c (aarch64_linux_gcc_target_options): Return
431 std::string.
432 * arch-utils.c (default_gcc_target_options): Return std::string.
433 * arch-utils.h (default_gcc_target_options): Return std::string.
434 * s390-tdep.c (s390_gcc_target_options): Return std::string.
435
436 2019-10-15 Christian Biesinger <cbiesinger@google.com>
437
438 * breakpoint.c (breakpoint_chain): Make static.
439 * tui/tui-winsource.c: Call iterate_over_breakpoints instead
440 of accessing breakpoint_chain.
441
442 2019-10-15 Christian Biesinger <cbiesinger@google.com>
443
444 * breakpoint.c (iterate_over_breakpoints): Change function pointer
445 to a gdb::function_view and return value to bool.
446 * breakpoint.h (iterate_over_breakpoints): Likewise.
447 * dummy-frame.c (pop_dummy_frame_bpt): Update.
448 (pop_dummy_frame): Update.
449 * guile/scm-breakpoint.c (bpscm_build_bp_list): Update.
450 (gdbscm_breakpoints): Update.
451 * python/py-breakpoint.c (build_bp_list): Update.
452 (gdbpy_breakpoints): Update.
453 * python/py-finishbreakpoint.c (bpfinishpy_detect_out_scope_cb):
454 Update.
455 (bpfinishpy_handle_stop): Update.
456 (bpfinishpy_handle_exit): Update.
457 * solib-svr4.c (svr4_update_solib_event_breakpoint): Update.
458 (svr4_update_solib_event_breakpoints): Update.
459
460 2019-10-15 Andreas Arnez <arnez@linux.ibm.com>
461
462 * s390-tdep.c (s390_effective_inner_type): Ignore static fields
463 when unwrapping single-field structs.
464
465 2019-10-14 Simon Marchi <simon.marchi@polymtl.ca>
466
467 * dwarf2read.c: Remove includes.
468
469 2019-10-13 Simon Marchi <simon.marchi@polymtl.ca>
470
471 * ui-out.c (ui_out::call_do_message): Silence
472 -Wformat-nonliteral warning.
473
474 2019-10-12 Simon Marchi <simon.marchi@polymtl.ca>
475
476 * breakpoint.c: Remove some includes: continuations.h, skip.h,
477 mi/mi-main.h, readline/readline.h, readline/history.h. Add
478 include: readline/tilde.h.
479
480 2019-10-12 Christian Biesinger <cbiesinger@google.com>
481
482 * remote.c (remote_target::get_trace_status): Remove declaration of
483 trace_regblock_size.
484
485 2019-10-12 Christian Biesinger <cbiesinger@google.com>
486
487 * cli/cli-cmds.c (max_user_call_depth): Move comment to header.
488 (show_user): Remove declaration of cmdlist.
489 * cli/cli-cmds.h (max_user_call_depth): Declare.
490 * cli/cli-script.c (execute_user_command): Remove declaration
491 of max_user_call_depth.
492
493 2019-10-11 Jim Wilson <jimw@sifive.com>
494
495 * gdbsupport/print-utils.h (pulongest): Fix comment.
496 (plongest): Likewise.
497 (phex): Add missing comment, mention leading zeros.
498 (phex_nz): Add mention of no leading zeros to comment.
499
500 * riscv-tdep.c (riscv_push_dummy_code): Change %lld to %s and use
501 plongest instead of unsigned long long cast.
502
503 2019-10-10 Christian Biesinger <cbiesinger@google.com>
504
505 * main.c (captured_main_1): Include gdbtk.h and remove declarations
506 for external_editor_command and gdbtk_test.
507
508 2019-10-10 Christian Biesinger <cbiesinger@google.com>
509
510 * mi/mi-cmd-var.c (varobjdebug): Remove declaration.
511 * varobj.c (varobjdebug): Move comment to...
512 * varobj.h (varobjdebug): ...here, and declare.
513
514 2019-10-09 Tom Tromey <tom@tromey.com>
515
516 * tui/tui-regs.c (tui_data_window::show_registers): Don't call
517 erase_data_content.
518
519 2019-10-09 Tom Tromey <tom@tromey.com>
520
521 * tui/tui-wingeneral.h (tui_delete_win): Don't declare.
522 * tui/tui-stack.c (tui_locator_window::rerender): Update.
523 * tui/tui-command.c (tui_cmd_window::resize)
524 (tui_refresh_cmd_win): Update.
525 * tui/tui-win.c (tui_resize_all, tui_set_focus_command): Update.
526 * tui/tui.c (tui_rl_other_window, tui_enable): Update.
527 * tui/tui-data.c (~tui_gen_win_info): Remove.
528 * tui/tui-layout.c (tui_gen_win_info::resize): Update.
529 * tui/tui-io.c (update_cmdwin_start_line, tui_putc, tui_puts)
530 (tui_redisplay_readline, tui_mld_flush)
531 (tui_mld_erase_entire_line, tui_mld_getc, tui_getc): Update.
532 * tui/tui-regs.c (tui_data_window::delete_data_content_windows)
533 (tui_data_window::erase_data_content)
534 (tui_data_item_window::rerender)
535 (tui_data_item_window::refresh_window): Update.
536 * tui/tui-wingeneral.c (tui_gen_win_info::refresh_window)
537 (box_win, tui_gen_win_info::make_window)
538 (tui_gen_win_info::make_visible): Update.
539 (tui_delete_win): Remove.
540 * tui/tui-winsource.c
541 (tui_source_window_base::do_erase_source_content): Update.
542 (tui_show_source_line, tui_source_window_base::update_tab_width)
543 (tui_source_window_base::update_exec_info): Update.
544 * tui/tui-data.h (struct curses_deleter): New.
545 (struct tui_gen_win_info) <handle>: Now a unique_ptr.
546 (struct tui_gen_win_info) <~tui_gen_win_info>: Define.
547
548 2019-10-09 Tom Tromey <tom@tromey.com>
549
550 * tui/tui-wingeneral.h (struct tui_gen_win_info): Don't declare.
551
552 2019-10-09 Tom Tromey <tom@tromey.com>
553
554 * tui/tui-data.c (tui_win_is_auxiliary): Remove.
555 * tui/tui-data.h (tui_win_is_auxiliary): Don't declare.
556
557 2019-10-09 Tom Tromey <tom@tromey.com>
558
559 * tui/tui-disasm.c (tui_get_low_disassembly_address): Compute
560 window height directly.
561 * tui/tui-layout.h (tui_default_win_viewport_height): Don't
562 declare.
563 * tui/tui-layout.c (tui_default_win_height): Remove.
564 (tui_default_win_viewport_height): Remove.
565
566 2019-10-09 Tom Tromey <tom@tromey.com>
567
568 * tui/tui.h: Remove comments.
569
570 2019-10-09 Tom de Vries <tdevries@suse.de>
571
572 * python/lib/gdb/printer/bound_registers.py: Use
573 '^builtin_type_bound128' as regexp argument for
574 add_builtin_pretty_printer.
575
576 2019-10-09 Christian Biesinger <cbiesinger@google.com>
577
578 * guile/guile.c (guile_extension_script_ops): Remove forward
579 declaration and mark as static.
580 (guile_script_ops): Likewise.
581 (extension_language_guile): Move further down in the file so
582 it can reference the definitions for guile_{extension_,}script_ops.
583
584 2019-10-09 Andreas Arnez <arnez@linux.ibm.com>
585
586 * s390-tdep.c (390_process_record): Handle new arch13 instructions
587 except SORTL, DFLTCC, and KDSA.
588
589 2019-10-08 Tom Tromey <tromey@adacore.com>
590
591 * windows-nat.c (struct windows_thread_info_struct) <sf>: Remove.
592 (struct safe_symbol_file_add_args): Remove.
593
594 2019-10-08 Tom Tromey <tromey@adacore.com>
595
596 * windows-nat.c: Don't include buildsym-legacy.h.
597
598 2019-10-08 Tom Tromey <tromey@adacore.com>
599
600 * contrib/ari/gdb_ari.sh (%p): Allow gdb-specific %p extensions.
601
602 2019-10-08 Christian Biesinger <cbiesinger@google.com>
603
604 * gdbtypes.c (overload_debug): Move comment to header.
605 * gdbtypes.h (overload_debug): Declare.
606 * valops.c: Remove declaration of overload_debug, instead
607 include gdbtypes.h.
608
609 2019-10-08 Christian Biesinger <cbiesinger@google.com>
610
611 * language.c (show_language_command): Pass lang_frame_mismatch_warn
612 through _().
613 (lang_frame_mismatch_warn): Make const, mark with N_(), and
614 move comment...
615 * language.h (lang_frame_mismatch_warn): ... here. Also add
616 declaration.
617 * top.c (lang_frame_mismatch_warn): Remove declaration.
618 (check_frame_language_change): Pass lang_frame_mismatch_warn
619 through _().
620
621 2019-10-07 Christian Biesinger <cbiesinger@google.com>
622
623 * c-lang.h (vtbl_ptr_name): Declare.
624 * cp-valprint.c (vtbl_ptr_name): Remove "extern" now that we get
625 it from the header.
626 * stabsread.c (define_symbol): Remove declaration of vtbl_ptr_name.
627
628 2019-10-07 Christian Biesinger <cbiesinger@google.com>
629
630 * charset.c (your_gdb_wchar_t_is_bogus): Replace with a
631 gdb_static_assert.
632
633 2019-10-07 Weimin Pan <weimin.pan@oracle.com>
634
635 * ../Makefile.def (dependencies): Add all-libctf to all-gdb
636 * ../Makefile.in: Add "all-gdb: maybe-all-libctf"
637 * ctfread.c: New file.
638 * ctfread.h: New file.
639 * elfread.c: Include ctfread.h.
640 (struct elfinfo text_p): New member ctfsect.
641 (elf_locate_sections): Mark CTF section.
642 (elf_symfile_read): Call elfctf_build_psymtabs.
643 * Makefile.in (LIBCTF): Add.
644 (CLIBS): Use it.
645 (CDEPS): Likewise.
646 (DIST): Add ctfread.c.
647
648 2019-10-07 Andrew Burgess <andrew.burgess@embecosm.com>
649
650 * ctfread.c (struct nextfield): Renamed to ...
651 (struct ctf_nextfield): ... this.
652 (struct field_info): Renamed to ...
653 (strut ctf_field_info): ... this.
654 (attach_fields_to_type): Update for renamed structures.
655 (ctf_add_member_cb): Likewise.
656 (ctf_add_enum_member_cb): Likewise.
657 (process_struct_members): Likewise.
658 (process_enum_type): Likewise.
659
660 2019-10-07 Weimin Pan <weimin.pan@oracle.com>
661
662 * tracectf.h: Rename, was ctf.h.
663 * tracectf.c: Rename, was ctf.c, replace ctf.h with tracectf.h.
664 * tracefile.c: Likewise.
665 * tracepoint.c: Remove unused include ctf.h.
666 * mi/mi-main.c: Likewise.
667 * Makefile.in Replace ctf.c with tracectf.c.
668
669 2019-10-06 Joel Brobecker <brobecker@adacore.com>
670
671 * version.in: Change version number to "9.0.50.DATE-git".
672
673 2019-10-03 Tom Tromey <tom@tromey.com>
674
675 PR rust/24976:
676 * dwarf2read.c (quirk_rust_enum): Handle single-element unions.
677
678 2019-10-03 Andrew Burgess <andrew.burgess@embecosm.com>
679
680 * f-lang.c (f_language_defn): Use cp_get_symbol_name_matcher and
681 cp_search_name_hash.
682 * NEWS: Add entry about nested function support.
683
684 2019-10-03 Bernhard Heckel <bernhard.heckel@intel.com>
685 Andrew Burgess <andrew.burgess@embecosm.com>
686
687 * cp-namespace.c (cp_search_static_and_baseclasses): Only search
688 for nested static variables when searchin VAR_DOMAIN.
689 * dwarf2read.c (add_partial_symbol): Add nested subroutines to the
690 global scope, update comment.
691 (add_partial_subprogram): Call add_partial_subprogram recursively
692 for nested subroutines when processinng Fortran.
693 (load_partial_dies): Process the child entities of a subprogram
694 when processing Fortran.
695 (partial_die_parent_scope): Handle building scope
696 for Fortran nested functions.
697 (process_die): Record that nested functions have a scope.
698 (new_symbol): Always record Fortran subprograms on the global
699 symbol list.
700 (determine_prefix): How to build the prefix for Fortran
701 subprograms.
702
703 2019-10-03 Andrew Burgess <andrew.burgess@embecosm.com>
704
705 * linux-nat.c (linux_nat_filter_event): Don't ignore SIGSTOP if we
706 have just sent the thread a SIGSTOP and are waiting for it to
707 arrive.
708
709 2019-10-03 Andrew Burgess <andrew.burgess@embecosm.com>
710
711 * btrace.c (btrace_add_pc): Remove whitespace before the template
712 parameter in 'std::vector <...>'.
713 (parse_xml_btrace_block): Likewise.
714 (btrace_maint_decode_pt): Likewise.
715 (btrace_maint_update_packets): Likewise.
716 (btrace_maint_print_packets): Likewise.
717 * btrace.h (struct btrace_maint_info): Likewise.
718 * dwarf2read.c (struct type_unit_group): Likewise.
719 (build_type_psymtabs_reader): Likewise.
720 * gdbsupport/btrace-common.c (btrace_data_append): Likewise.
721 * gdbsupport/btrace-common.h (struct btrace_data_bts): Likewise.
722 * nat/linux-btrace.c (perf_event_read_bts): Likewise.
723
724 2019-10-03 Tom de Vries <tdevries@suse.de>
725
726 * cli/cli-style.c (_initialize_cli_style): Adding a '.' at the end of
727 the first line of the help text for set/show style metadata.
728
729 2019-10-02 Tom Tromey <tromey@adacore.com>
730
731 * Makefile.in (COMMON_SFILES): Add common-inferior.c.
732 * gdbsupport/common-inferior.c: New file.
733 * infcmd.c (startup_with_shell): Don't define.
734 * nat/fork-inferior.h (startup_with_shell): Don't declare.
735 * gdbsupport/common-inferior.h (startup_with_shell): Declare.
736 * inferior.h (startup_with_shell): Don't declare.
737
738 2019-10-02 Christian Biesinger <cbiesinger@google.com>
739
740 * gdbsupport/gdb_assert.h: Include errors.h.
741 * gdbsupport/gdb_string_view.h: Include gdb_assert.h.
742
743 2019-10-02 Tom Tromey <tromey@adacore.com>
744
745 * NEWS: Add $_ada_exception entry.
746 * ada-lang.c (struct ada_catchpoint): Add constructor.
747 <m_kind>: New member.
748 (allocate_location_exception, re_set_exception): Remove
749 "ex" parameter.
750 (should_stop_exception): Compute $_ada_exception.
751 (check_status_exception, print_it_exception)
752 (print_one_exception, print_mention_exception): Remove
753 "ex" parameter.
754 (allocate_location_catch_exception, re_set_catch_exception)
755 (check_status_exception, print_it_catch_exception)
756 (print_one_catch_exception, print_mention_catch_exception)
757 (print_recreate_catch_exception)
758 (allocate_location_catch_exception_unhandled)
759 (re_set_catch_exception_unhandled)
760 (check_status_exception, print_it_catch_exception_unhandled)
761 (print_one_catch_exception_unhandled)
762 (print_mention_catch_exception_unhandled)
763 (print_recreate_catch_exception_unhandled)
764 (allocate_location_catch_assert, re_set_catch_assert)
765 (check_status_assert, print_it_catch_assert)
766 (print_one_catch_assert, print_mention_catch_assert)
767 (print_recreate_catch_assert)
768 (allocate_location_catch_handlers, re_set_catch_handlers)
769 (check_status_handlers, print_it_catch_handlers)
770 (print_one_catch_handlers, print_mention_catch_handlers)
771 (print_recreate_catch_handlers): Remove.
772 (create_ada_exception_catchpoint): Update.
773 (initialize_ada_catchpoint_ops): Update.
774
775 2019-10-02 Tom Tromey <tromey@adacore.com>
776
777 * ada-lang.c (ada_lookup_simple_minsyms): Remove.
778 (create_excep_cond_exprs): Simplify exception string computation.
779 (ada_exception_catchpoint_cond_string): Likewise.
780
781 2019-10-02 Tom Tromey <tromey@adacore.com>
782
783 * symmisc.c (dump_msymbols): Don't use MSYMBOL_VALUE_ADDRESS.
784 * ada-lang.c (lesseq_defined_than): Handle
785 LOC_STATIC.
786 * dwarf2read.c (dwarf2_per_objfile): Add can_copy
787 parameter.
788 (dwarf2_has_info): Likewise.
789 (new_symbol): Set maybe_copied on symbol when
790 appropriate.
791 * dwarf2read.h (dwarf2_per_objfile): Add can_copy
792 parameter.
793 <can_copy>: New member.
794 * elfread.c (record_minimal_symbol): Set maybe_copied
795 on symbol when appropriate.
796 (elf_symfile_read): Update call to dwarf2_has_info.
797 * minsyms.c (lookup_minimal_symbol_linkage): New
798 function.
799 * minsyms.h (lookup_minimal_symbol_linkage): Declare.
800 * symtab.c (get_symbol_address, get_msymbol_address):
801 New functions.
802 * symtab.h (get_symbol_address, get_msymbol_address):
803 Declare.
804 (SYMBOL_VALUE_ADDRESS, MSYMBOL_VALUE_ADDRESS): Handle
805 maybe_copied.
806 (struct symbol, struct minimal_symbol) <maybe_copied>:
807 New member.
808
809 2019-10-02 Tom Tromey <tromey@adacore.com>
810
811 * source.c (struct current_source_location): New.
812 (current_source_key): New global.
813 (current_source_symtab, current_source_line)
814 (current_source_pspace): Remove.
815 (get_source_location): New function.
816 (get_current_source_symtab_and_line)
817 (set_default_source_symtab_and_line)
818 (set_current_source_symtab_and_line)
819 (clear_current_source_symtab_and_line, select_source_symtab)
820 (info_source_command, print_source_lines_base)
821 (info_line_command, search_command_helper, _initialize_source):
822 Update.
823
824 2019-10-02 Tom Tromey <tromey@adacore.com>
825
826 * source.c (select_source_symtab): Don't call
827 decode_line_with_current_source.
828
829 2019-10-02 Andrew Burgess <andrew.burgess@embecosm.com>
830
831 * symtab.c (lookup_global_symbol): Search global block.
832
833 2019-10-02 Tom Tromey <tromey@adacore.com>
834
835 * coffread.c (process_coff_symbol): Update.
836 * dwarf2read.c (var_decode_location, new_symbol): Update.
837 * mdebugread.c (parse_symbol): Update.
838 * objfiles.c (relocate_one_symbol): Update.
839 * stabsread.c (define_symbol, fix_common_block)
840 (scan_file_globals): Update.
841 * symtab.h (SYMBOL_VALUE_ADDRESS): Expand to an rvalue.
842 (SET_SYMBOL_VALUE_ADDRESS): New macro.
843 * xcoffread.c (process_xcoff_symbol): Update.
844
845 2019-10-02 Andreas Arnez <arnez@linux.ibm.com>
846
847 * MAINTAINERS: Update my email address.
848
849 2019-10-02 Andrew Burgess <andrew.burgess@embecosm.com>
850
851 * dwarf2read.c (struct type_unit_group) <tus>: Convert to
852 std::vector.
853 (build_type_psymtabs_reader): Update for std::vector.
854 (build_type_psymtab_dependencies): Likewise.
855 * dwarf2read.h: Remove use of DEF_VEC_P.
856 (typedef sig_type_ptr): Delete.
857
858 2019-10-02 Andrew Burgess <andrew.burgess@embecosm.com>
859
860 * btrace.c (btrace_maint_clear): Update to handle change from VEC
861 to std::vector.
862 (btrace_maint_decode_pt): Likewise, and move allocation of the
863 vector outside of the loop.
864 (btrace_maint_update_packets): Update to handle change from VEC to
865 std::vector.
866 (btrace_maint_print_packets): Likewise.
867 (maint_info_btrace_cmd): Likewise.
868 * btrace.h: Remove use of DEF_VEC_O.
869 (typedef btrace_pt_packet_s): Delete.
870 (struct btrace_maint_info) <packets>: Change fromm VEC to
871 std::vector.
872 * gdbsupport/btrace-common.h: Remove 'vec.h' include.
873
874 2019-10-02 Andrew Burgess <andrew.burgess@embecosm.com>
875
876 * btrace.c (btrace_compute_ftrace_bts): Update for std::vector,
877 make accesses into the vector constant references.
878 (btrace_add_pc): Update for std::vector.
879 (btrace_stitch_bts): Likewise.
880 (parse_xml_btrace_block): Likewise.
881 (btrace_maint_update_packets): Likewise.
882 (btrace_maint_print_packets): Likewise.
883 (maint_info_btrace_cmd): Likewise.
884 * gdbsupport/btrace-common.c (btrace_data::fini): Update for
885 std::vector.
886 (btrace_data::empty): Likewise.
887 (btrace_data_append): Likewise.
888 * gdbsupport/btrace-common.h: Remove use of DEF_VEC_O.
889 (typedef btrace_block_s): Delete.
890 (struct btrace_block): Add constructor.
891 (struct btrace_data_bts) <blocks>: Change to std::vector.
892 * nat/linux-btrace.c (perf_event_read_bts): Update for
893 std::vector.
894 (linux_read_bts): Likewise.
895
896 2019-10-01 Tom Tromey <tom@tromey.com>
897
898 * cli/cli-logging.c (show_logging_filename): Use styled_string.
899
900 2019-10-01 Tom Tromey <tom@tromey.com>
901
902 * stack.c (print_frame, info_frame_command_core): Use
903 styled_string.
904 * linux-thread-db.c (try_thread_db_load_1)
905 (try_thread_db_load_from_pdir_1): Use styled_string.
906 * auto-load.c (file_is_auto_load_safe, execute_script_contents)
907 (auto_load_section_scripts, info_auto_load_local_gdbinit)
908 (maybe_print_unsupported_script_warning)
909 (maybe_print_script_not_found_warning): Use styled_string.
910 * ada-lang.c (user_select_syms): Use styled_string.
911
912 2019-10-01 Tom Tromey <tom@tromey.com>
913
914 * p-lang.c (pascal_printstr): Use metadata style.
915 * value.c (show_convenience): Use metadata style.
916 * valprint.c (valprint_check_validity, val_print_optimized_out)
917 (val_print_not_saved, val_print_unavailable)
918 (val_print_invalid_address, generic_val_print, val_print)
919 (value_check_printable, val_print_array_elements): Use metadata
920 style.
921 * ui-out.h (class ui_out) <field_fmt>: New overload.
922 <do_field_fmt>: Add style parameter.
923 * ui-out.c (ui_out::field_fmt): New overload.
924 * typeprint.c (type_print_unknown_return_type)
925 (val_print_not_allocated, val_print_not_associated): Use metadata
926 style.
927 * tui/tui-out.h (class tui_ui_out) <do_field_fmt>: Add style
928 parameter.
929 * tui/tui-out.c (tui_ui_out::do_field_fmt): Update.
930 * tracepoint.c (tvariables_info_1): Use metadata style.
931 * stack.c (print_frame_arg, print_frame_info, print_frame)
932 (info_frame_command_core): Use metadata style.
933 * skip.c (info_skip_command): Use metadata style.
934 * rust-lang.c (rust_print_enum): Use metadata style.
935 * python/py-prettyprint.c (print_stack_unless_memory_error): Use
936 metadata style.
937 * python/py-framefilter.c (py_print_single_arg): Use metadata
938 style.
939 * printcmd.c (do_one_display, print_variable_and_value): Use
940 metadata style.
941 * p-valprint.c (pascal_val_print)
942 (pascal_object_print_value_fields): Use metadata style.
943 * p-typeprint.c (pascal_type_print_base): Use metadata style.
944 * mi/mi-out.h (class mi_ui_out) <do_field_fmt>: Add style
945 parameter.
946 * mi/mi-out.c (mi_ui_out::do_field_fmt): Update.
947 * m2-valprint.c (m2_print_long_set): Use metadata style.
948 * m2-typeprint.c (m2_print_type): Use metadata style.
949 * infcmd.c (print_return_value_1): Use metadata style.
950 * gnu-v3-abi.c (print_one_vtable): Use metadata style.
951 * f-valprint.c (info_common_command_for_block): Use metadata
952 style.
953 * f-typeprint.c (f_type_print_base): Use metadata style.
954 * expprint.c (print_subexp_standard): Use metadata style.
955 * cp-valprint.c (cp_print_value_fields): Use metadata style.
956 * cli/cli-style.h (class cli_style_option): Add constructor.
957 (metadata_style): Declare.
958 * cli/cli-style.c (metadata_style): New global.
959 (_initialize_cli_style): Register metadata style.
960 * cli-out.h (class cli_ui_out) <do_field_fmt>: Add style
961 parameter.
962 * cli-out.c (cli_ui_out::do_field_fmt): Update.
963 * c-typeprint.c (c_type_print_base_struct_union)
964 (c_type_print_base_1): Use metadata style.
965 * breakpoint.c (watchpoint_value_print)
966 (print_one_breakpoint_location): Use metadata style.
967 * break-catch-syscall.c (print_one_catch_syscall): Use metadata
968 style.
969 * break-catch-sig.c (signal_catchpoint_print_one): Use metadata
970 style.
971 * ada-valprint.c (val_print_packed_array_elements, printstr)
972 (print_field_values, ada_val_print_ref, ada_val_print): Use
973 metadata style.
974 * ada-typeprint.c (print_array_type, ada_print_type): Use metadata
975 style.
976 * ada-tasks.c (print_ada_task_info, info_task): Use metadata
977 style.
978 * ada-lang.c (user_select_syms): Use metadata style.
979
980 2019-10-01 Tom Tromey <tom@tromey.com>
981
982 * cli/cli-cmds.c (pwd_command): Style output.
983
984 2019-10-01 Pedro Alves <palves@redhat.com>
985 Tom Tromey <tom@tromey.com>
986
987 * symtab.c (print_symbol_info): Use %ps.
988 (print_msymbol_info): Use %ps.
989 * symfile.c (symbol_file_add_with_addrs): Use %ps.
990 * printcmd.c (print_variable_and_value): Use %ps.
991 * macrocmd.c (show_pp_source_pos): Use %ps.
992 * infrun.c (print_exited_reason): Use ui_out::message.
993 * breakpoint.c (watchpoint_check, print_one_breakpoint_location)
994 (describe_other_breakpoints): Use ui_out::message and new
995 formats.
996 (say_where): Use new formats.
997 (bkpt_print_it, tracepoint_print_one_detail): Use ui_out::message
998 and new formats.
999
1000 2019-10-01 Pedro Alves <palves@redhat.com>
1001 Tom Tromey <tom@tromey.com>
1002
1003 * unittests/format_pieces-selftests.c: Add gdb_format parameter.
1004 (test_gdb_formats): New function.
1005 (run_tests): Call it.
1006 (test_format_specifier): Update.
1007 * utils.h (fputs_filtered): Update comment.
1008 (vfprintf_styled, vfprintf_styled_no_gdbfmt)
1009 (fputs_styled_unfiltered): Declare.
1010 * utils.c (fputs_styled_unfiltered): New function.
1011 (vfprintf_maybe_filtered): Add gdbfmt parameter.
1012 (vfprintf_filtered): Update.
1013 (vfprintf_unfiltered, vprintf_filtered): Update.
1014 (vfprintf_styled, vfprintf_styled_no_gdbfmt): New functions.
1015 * ui-out.h (enum ui_out_flag) <unfiltered_output,
1016 disallow_ui_out_field>: New constants.
1017 (enum class field_kind): New.
1018 (struct base_field_s, struct signed_field_s): New.
1019 (signed_field): New function.
1020 (struct string_field_s): New.
1021 (string_field): New function.
1022 (struct styled_string_s): New.
1023 (styled_string): New function.
1024 (class ui_out) <message>: Add comment.
1025 <vmessage, call_do_message>: New methods.
1026 <do_message>: Add style parameter.
1027 * ui-out.c (ui_out::call_do_message, ui_out::vmessage): New
1028 methods.
1029 (ui_out::message): Rewrite.
1030 * mi/mi-out.h (class mi_ui_out) <do_message>: Add style
1031 parameter.
1032 * mi/mi-out.c (mi_ui_out::do_message): Add style parameter.
1033 * gdbsupport/format.h (class format_pieces) <format_pieces>: Add
1034 gdb_extensions parameter.
1035 (class format_piece): Add parameter to constructor.
1036 (n_int_args): New field.
1037 * gdbsupport/format.c (format_pieces::format_pieces): Add
1038 gdb_extensions parameter. Handle '*'.
1039 * cli-out.h (class cli_ui_out) <do_message>: Add style parameter.
1040 * cli-out.c (cli_ui_out::do_message): Add style parameter. Call
1041 vfprintf_styled_no_gdbfmt.
1042 (cli_ui_out::do_field_string, cli_ui_out::do_spaces)
1043 (cli_ui_out::do_text, cli_ui_out::field_separator): Allow
1044 unfiltered output.
1045 * ui-style.h (struct ui_file_style) <ptr>: New method.
1046
1047 2019-10-01 Tom Tromey <tom@tromey.com>
1048
1049 * unittests/format_pieces-selftests.c: Update. Add final format.
1050 * gdbsupport/format.c (format_pieces::format_pieces): Don't add
1051 empty literal pieces.
1052
1053 2019-10-01 Tom Tromey <tom@tromey.com>
1054
1055 * ui-out.h (enum class ui_out_style_kind): Remove.
1056 (class ui_out) <field_string, field_stsream, do_field_string>:
1057 Change type of "style".
1058 * ui-out.c (ui_out::field_core_addr, ui_out::field_stream)
1059 (ui_out::field_string): Update.
1060 * tui/tui-out.h (class tui_ui_out) <do_field_string>: Change type
1061 of "style".
1062 * tui/tui-out.c (tui_ui_out::do_field_string): Update.
1063 * tracepoint.c (print_one_static_tracepoint_marker): Update.
1064 * stack.c (print_frame_arg, print_frame_info, print_frame):
1065 Update.
1066 * source.c (print_source_lines_base): Update.
1067 * solib.c (info_sharedlibrary_command): Update.
1068 * skip.c (info_skip_command): Update.
1069 * record-btrace.c (btrace_call_history_src_line)
1070 (btrace_call_history): Update.
1071 * python/py-framefilter.c (py_print_frame): Update.
1072 * mi/mi-out.h (class mi_ui_out) <do_field_string>: Change type of
1073 "style".
1074 * mi/mi-out.c (mi_ui_out::do_table_header)
1075 (mi_ui_out::do_field_signed, mi_ui_out::do_field_unsigned)
1076 (mi_ui_out::do_field_string): Update.
1077 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn):
1078 Update.
1079 * cli-out.h (class cli_ui_out) <do_field_string>: Change type of
1080 "style".
1081 * cli-out.c (cli_ui_out::do_table_header)
1082 (cli_ui_out::do_field_signed, cli_ui_out::do_field_unsigned)
1083 (cli_ui_out::do_field_skip, cli_ui_out::do_field_string)
1084 (cli_ui_out::do_field_fmt): Update.
1085 * breakpoint.c (print_breakpoint_location): Update.
1086 (update_static_tracepoint): Update.
1087
1088 2019-10-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
1089
1090 * main.c (relocate_gdbinit_path_maybe_in_datadir): Remove std::string
1091 conversion of gdb_datadir.
1092 (captured_main_1): Remove xstrdup when assigning to gdb_datadir,
1093 remove not needed c_str ().
1094
1095 2019-09-30 Ali Tamur <tamur@google.com>
1096
1097 * dwarf2read.c (skip_one_die): Handle DW_FORM_strx forms.
1098 (dwarf2_string_attr): Likewise.
1099
1100 2019-09-30 Ali Tamur <tamur@google.com>
1101
1102 * dwarf2read.c (process_full_comp_unit): Remove whitespace at the EOL.
1103 (process_full_type_unit): Likewise.
1104 (dump_die_shallow): Likewise.
1105 (cu_debug_loc_section): Likewise.
1106
1107 2019-09-28 Christian Biesinger <cbiesinger@google.com>
1108
1109 * minsyms.c (compare_minimal_symbols): Rename to...
1110 (minimal_symbol_is_less_than): ...this, and adjust to STL
1111 conventions (return bool, take arguments as references)
1112 (minimal_symbol_reader::install): Call std::sort instead
1113 of qsort.
1114
1115 2019-09-29 Christian Biesinger <cbiesinger@google.com>
1116
1117 * minsyms.h (msymbol_hash): Document that this is a case-insensitive
1118 hash and why.
1119 * objfiles.h (struct objfile_per_bfd_storage) <demangled_names_hash,
1120 msymbol_hash, msymbol_demangled_hash>: Improve comments.
1121
1122 2019-09-30 Simon Marchi <simon.marchi@polymtl.ca>
1123
1124 * psymtab.c (add_psymbol_to_list): Move comment to psympriv.h.
1125 * psympriv.h (add_psymbol_to_list): Move comment here and update
1126 it.
1127
1128 2019-09-29 Tom de Vries <tdevries@suse.de>
1129
1130 * contrib/cc-with-tweaks.sh (get_tmpdir): New function.
1131 Use $tmpdir/$(basename "$output_file").dwz instead of
1132 "${output_file}.dwz".
1133
1134 2019-09-28 Simon Marchi <simon.marchi@polymtl.ca>
1135
1136 PR gdb/25045
1137 * hppa-linux-nat.c: Include gdbarch.h.
1138
1139 2019-09-26 Christian Biesinger <cbiesinger@google.com>
1140
1141 * blockframe.c (find_pc_partial_function): Change return type to bool.
1142 * elfread.c (elf_gnu_ifunc_resolve_name): Likewise.
1143 * minsyms.c (in_gnu_ifunc_stub): Likewise.
1144 (stub_gnu_ifunc_resolve_name): Likewise.
1145 * symtab.c (compare_filenames_for_search): Likewise.
1146 (compare_glob_filenames_for_search): Likewise.
1147 (matching_obj_sections): Likewise.
1148 (symbol_matches_domain): Likewise.
1149 (find_line_symtab): Change out param EXACT_MATCH to bool *.
1150 (find_line_pc): Change return type to bool.
1151 (find_line_pc_range): Likewise.
1152 (producer_is_realview): Likewise.
1153 * symtab.h (symbol_matches_domain): Likewise.
1154 (find_pc_partial_function): Likewise.
1155 (find_pc_line_pc_range): Likewise.
1156 (in_gnu_ifunc_stub): Likewise.
1157 (struct gnu_ifunc_fns) <gnu_ifunc_resolve_name>: Likewise.
1158 (find_line_pc): Likewise.
1159 (find_line_pc_range): Likewise.
1160 (matching_obj_sections): Likewise.
1161 (find_line_symtab): Change out parameter to bool.
1162 (producer_is_realview): Change return type to bool.
1163 (compare_filenames_for_search): Likewise.
1164 (compare_glob_filenames_for_search): Likewise.
1165
1166 2019-09-26 Tom Tromey <tom@tromey.com>
1167
1168 * Makefile.in (COMMON_SFILES): Remove gdb_usleep.c.
1169 (HFILES_NO_SRCDIR): Remove gdb_usleep.h.
1170 * gdb_usleep.h: Remove.
1171 * gdb_usleep.c: Remove.
1172 * utils.c: Don't include gdb_usleep.h.
1173
1174 2019-09-26 Tom Tromey <tromey@adacore.com>
1175
1176 * python/py-type.c (type_to_type_object): Call check_typedef
1177 for stub types.
1178
1179 2019-09-26 Tom Tromey <tom@tromey.com>
1180
1181 * utils.h (initialize_utils): Don't declare.
1182 * top.c (gdb_init): Don't call initialize_utils.
1183 * utils.c (initialize_utils): Remove. Move contents...
1184 (_initialize_utils): ... here.
1185
1186 2019-09-25 Tom Tromey <tom@tromey.com>
1187
1188 * python/py-objfile.c (objfpy_get_build_id): Use bin2hex.
1189 * utils.h (make_hex_string): Don't declare.
1190 * utils.c (make_hex_string): Remove.
1191
1192 2019-09-24 Tom de Vries <tdevries@suse.de>
1193
1194 PR gdb/23815
1195 * amd64-linux-nat.c (amd64_linux_nat_target::fetch_registers):
1196 Initialize xstateregs before ptrace PTRACE_GETREGSET call.
1197
1198 2019-09-23 Dimitar Dimitrov <dimitar@dinux.eu>
1199
1200 * NEWS: Mention new simulator port for PRU.
1201
1202 2019-09-23 Christian Biesinger <cbiesinger@google.com>
1203
1204 * ada-exp.y (write_object_remaining): Update.
1205 * ada-lang.c (ada_decode): Return a std::string instead of a char*
1206 and eliminate the static buffer.
1207 (ada_decode_symbol): Update.
1208 (ada_la_decode): Update.
1209 (ada_sniff_from_mangled_name): Update.
1210 (is_valid_name_for_wild_match): Update.
1211 (ada_lookup_name_info::matches): Update and simplify.
1212 (name_matches_regex): Update.
1213 (ada_add_global_exceptions): Update.
1214 * ada-lang.h (ada_decode): Update signature.
1215 * ada-varobj.c (ada_varobj_describe_simple_array_child): Update.
1216 * dwarf-index-write.c (debug_names::insert): Update.
1217
1218 2019-09-21 Simon Marchi <simon.marchi@polymtl.ca>
1219
1220 * solib-svr4.c (svr4_iterate_over_objfiles_in_search_order): Fix
1221 formatting.
1222
1223 2019-09-21 Simon Marchi <simon.marchi@polymtl.ca>
1224
1225 * breakpoint.h (bp_location) <inserted, permanent, duplicate>:
1226 Change "nonzero" to "true" in documentation.
1227
1228 2019-09-20 Christian Biesinger <cbiesinger@google.com>
1229
1230 * solib-darwin.c (darwin_lookup_lib_symbol): Remove.
1231 (_initialize_darwin_solib): Don't set
1232 darwin_so_ops.lookup_lib_global_symbol.
1233 * solib-svr4.c (set_solib_svr4_fetch_link_map_offsets): Call
1234 set_gdbarch_iterate_over_objfiles_in_search_order.
1235 (elf_lookup_lib_symbol): Rename to...
1236 (svr4_iterate_over_objfiles_in_search_order): this, and update
1237 to iterate semantics.
1238 (_initialize_svr4_solib): Don't set lookup_lib_global_symbol.
1239 * solib.c (solib_global_lookup): Remove.
1240 * solist.h (struct target_so_ops): Remove lookup_lib_global_symbol.
1241 (solib_global_lookup): Remove.
1242 * symtab.c (lookup_global_or_static_symbol): Remove call to
1243 solib_global_lookup.
1244
1245 2019-09-20 Joel Brobecker <brobecker@adacore.com>
1246
1247 * NEWS: Move entries about default MI version now being
1248 version 3, and about the GDB/MI fix for multi-location
1249 breakpoints to the "since GDB 8.3" section.
1250
1251 2019-09-20 Joel Brobecker <brobecker@adacore.com>
1252
1253 GDB 8.3.1 released.
1254
1255 2019-09-20 Ulrich Weigand <uweigand@de.ibm.com>
1256
1257 * NEWS: Mention that Cell/B.E. debugging support was removed.
1258 * MAINTAINERS: Remove spu target.
1259
1260 * config/djgpp/fnchange.lst: Remove entries for removed files.
1261
1262 * Makefile.in (ALL_TARGET_OBS): Remove solib-spu.o,
1263 spu-multiarch.o, and spu-tdep.o.
1264 (HFILES_NO_SRCDIR): Remove solib-spu.h and spu-tdep.h.
1265 (ALLDEPFILES): Remove solib-spu.c, spu-linux-nat.c,
1266 spu-multiarch.c, and spu-tdep.c.
1267 * spu-linux-nat.c: Remove file.
1268 * spu-multiarch.c: Remove file.
1269 * spu-tdep.c: Remove file.
1270 * spu-tdep.h: Remove file.
1271 * solib-spu.c: Remove file.
1272 * solib-spu.h: Remove file.
1273
1274 * configure.host (powerpc64*-*-linux*): Remove Cell/B.E. support.
1275 * configure.nat (spu-linux): Remove.
1276 * configure.tgt (powerpc*-*-linux*): Remove solib-spu.o and
1277 solib-multiarch.o from gdb_target_obs.
1278 (spu*-*-*): Remove.
1279
1280 * arch/ppc-linux-common.h (struct ppc_linux_features): Remove "cell"
1281 feature flag.
1282 (ppc_linux_no_features): Update.
1283 * arch/ppc-linux-common.c (ppc_linux_match_description): Remove
1284 Cell/B.E. support.
1285 * arch/ppc-linux-tdesc.h (tdesc_powerpc_cell32l): Remove declaration.
1286 (tdesc_powerpc_cell64l): Likewise.
1287 * nat/ppc-linux.h (PPC_FEATURE_CELL): Remove.
1288 * ppc-linux-nat.c (ppc_linux_nat_target::read_description): Remove
1289 Cell/B.E. support.
1290 * ppc-linux-tdep.h: Do not include "solib-spu.h" or "spu-tdep.h".
1291 Do not include "features/rs6000/powerpc-cell32l.c" or
1292 "features/rs6000/powerpc-cell64l.c".
1293 (ppc_linux_spu_section): Remove.
1294 (ppc_linux_core_read_description): Remove Cell/B.E. support.
1295 (spe_context_objfile, spe_context_lm_addr, spe_context_offset,
1296 spe_context_cache_ptid, spe_context_cache_ptid): Remove.
1297 (ppc_linux_spe_context_lookup): Remove.
1298 (ppc_linux_spe_context_inferior_created): Remove.
1299 (ppc_linux_spe_context_solib_loaded): Remove.
1300 (ppc_linux_spe_context_solib_unloaded): Remove.
1301 (ppc_linux_spe_context): Remove.
1302 (struct ppu2spu_cache): Remove.
1303 (ppu2spu_prev_arch, ppu2spu_this_id, ppu2spu_prev_register): Remove.
1304 (struct ppu2spu_data): Remove.
1305 (ppu2spu_unwind_register, ppu2spu_sniffer, ppu2spu_dealloc_cache,
1306 ppu2spu_unwind): Remove.
1307 (ppc_linux_init_abi): Remove Cell/B.E. support.
1308 * rs6000-tdep.h (rs6000_gdbarch_init): Remove Cell/B.E. support.
1309
1310 * features/Makefile (rs6000/powerpc-cell32l-expedite): Remove.
1311 (rs6000/powerpc-cell64l-expedite): Likewise
1312 (WHICH): Remove rs6000/powerpc-cell32l and rs6000/powerpc-cell64l.
1313 (XMLTOC): Remove rs6000/powerpc-cell32l.xml and
1314 rs6000/powerpc-cell64l.xml.
1315 * features/rs6000/powerpc-cell32l.xml: Remove.
1316 * features/rs6000/powerpc-cell64l.xml: Likewise.
1317 * features/rs6000/powerpc-cell32l.c: Remove generated file.
1318 * features/rs6000/powerpc-cell64l.c: Likewise.
1319 * regformats/rs6000/powerpc-cell32l.dat: Remove generated file.
1320 * regformats/rs6000/powerpc-cell64l.dat: Likewise.
1321 * regformats/reg-spu.dat: Remove.
1322
1323 * target.h (enum target_object): Remove TARGET_OBJECT_SPU.
1324 * corelow.c (struct spuid_list): Remove.
1325 (add_to_spuid_list): Remove.
1326 (core_target::xfer_partial): Remove support for TARGET_OBJECT_SPU.
1327 * remote.c (PACKET_qXfer_spu_read, PACKET_qXfer_spu_write): Remove.
1328 (remote_protocol_features): Remove associated entries.
1329 (_initialize_remote): No longer initialize them.
1330 (remote_target::xfer_partial): Remove support for TARGET_OBJECT_SPU.
1331 * linux-nat.c (SPUFS_MAGIC): Remove.
1332 (linux_proc_xfer_spu): Remove.
1333 (spu_enumerate_spu_ids): Remove.
1334 (linux_nat_target::xfer_partial): Remove support for TARGET_OBJECT_SPU.
1335 * linux-tdep.c (-linux_spu_make_corefile_notes): Remove.
1336 (linux_make_corefile_notes): No longer call it.
1337
1338 * regcache.c (cooked_read_test): Remove bfd_arch_spu special case.
1339 (cooked_write_test): Likewise.
1340
1341 2019-09-20 Tom Tromey <tom@tromey.com>
1342
1343 * NEWS: Mention case-sensitivity of TUI commands.
1344 * tui/tui-win.c (tui_set_focus_command): Now case-sensitive.
1345 (tui_set_win_height_command, parse_scrolling_args): Likewise.
1346 * tui/tui-layout.c (tui_layout_command): Now case-sensitive.
1347
1348 2019-09-20 Tom Tromey <tom@tromey.com>
1349
1350 * tui/tui-source.c (tui_source_window::set_contents): Use
1351 make_unique_xstrdup.
1352 * tui/tui-disasm.c (tui_disasm_window::set_contents): Use
1353 make_unique_xstrdup.
1354
1355 2019-09-20 Tom Tromey <tom@tromey.com>
1356
1357 * tui/tui-data.c: Remove separator comments.
1358 * tui/tui-layout.c: Remove separator comments.
1359 * tui/tui-win.c: Remove separator comments.
1360 * tui/tui-wingeneral.c: Remove separator comments.
1361
1362 2019-09-20 Tom Tromey <tom@tromey.com>
1363
1364 * tui/tui.h (strcat_to_buf): Don't declare.
1365 * tui/tui.c (strcat_to_buf): Remove.
1366
1367 2019-09-20 Tom Tromey <tom@tromey.com>
1368
1369 * tui/tui-source.h (struct tui_source_window) <m_fullname>: Rename
1370 from "fullname".
1371 * tui/tui-source.c (tui_source_window::set_contents)
1372 (tui_source_window::location_matches_p)
1373 (tui_source_window::maybe_update): Update.
1374
1375 2019-09-20 Tom Tromey <tom@tromey.com>
1376
1377 * tui/tui-regs.h (struct tui_data_window) <get_current_group>:
1378 Update.
1379 <m_regs_content, m_regs_column_count, m_current_group>: Add "m_"
1380 prefix.
1381 * tui/tui-regs.c (tui_data_window::last_regs_line_no)
1382 (tui_data_window::line_from_reg_element_no)
1383 (tui_data_window::first_reg_element_no_inline)
1384 (tui_data_window::show_registers)
1385 (tui_data_window::show_register_group)
1386 (tui_data_window::display_registers_from)
1387 (tui_data_window::display_registers_from_line)
1388 (tui_data_window::first_data_item_displayed)
1389 (tui_data_window::delete_data_content_windows)
1390 (tui_data_window::erase_data_content)
1391 (tui_data_window::do_scroll_vertical)
1392 (tui_data_window::refresh_window)
1393 (tui_data_window::check_register_values): Update.
1394
1395 2019-09-20 Tom Tromey <tom@tromey.com>
1396
1397 * tui/tui-stack.h (MAX_LOCATOR_ELEMENT_LEN): Remove define.
1398 (struct tui_locator_window) <full_name, proc_name>: Now
1399 std::string.
1400 * tui/tui-stack.c (tui_locator_window::make_status_line)
1401 (tui_locator_window::set_locator_fullname)
1402 (tui_locator_window::set_locator_info): Update.
1403 * tui/tui-source.c (tui_source_window::set_contents)
1404 (tui_source_window::showing_source_p): Update.
1405
1406 2019-09-20 Tom Tromey <tom@tromey.com>
1407
1408 * tui/tui-stack.c (tui_locator_window::set_locator_fullname):
1409 Don't call tui_locator_win_info_ptr.
1410
1411 2019-09-20 Tom Tromey <tom@tromey.com>
1412
1413 * tui/tui-win.c (tui_resize_all): Don't call refresh.
1414
1415 2019-09-20 Tom Tromey <tom@tromey.com>
1416
1417 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Use 1 as
1418 height for locator.
1419 * tui/tui-stack.c (tui_locator_window::rerender): Call scrollok.
1420 * tui/tui-layout.c (show_source_disasm_command, show_data)
1421 (show_source_or_disasm_and_command): Use 1 as height for locator.
1422
1423 2019-09-20 Tom Tromey <tom@tromey.com>
1424
1425 * tui/tui.c (tui_enable): Update.
1426 * tui/tui-win.c (tui_sigwinch_handler, tui_async_resize_screen):
1427 Update.
1428 * tui/tui-data.h (tui_win_resized, tui_set_win_resized_to):
1429 Update.
1430 * tui/tui-data.c (win_resized): Now bool.
1431 (tui_win_resized): Return bool.
1432 (tui_set_win_resized_to): Accept a bool.
1433
1434 2019-09-20 Tom Tromey <tom@tromey.com>
1435
1436 * tui/tui-regs.h (struct tui_data_window) <show_register_group>:
1437 Change type of "refresh_values_only".
1438 * tui/tui-regs.c (tui_data_window::show_register_group): Change
1439 type of "refresh_values_only".
1440
1441 2019-09-20 Tom Tromey <tom@tromey.com>
1442
1443 * tui/tui-disasm.c (struct tui_asm_line) <addr_string, insn>: Now
1444 std::string.
1445 (tui_disassemble): Add "pos" parameter.
1446 (tui_disasm_window::set_contents): Simplify.
1447
1448 2019-09-20 Tom Tromey <tom@tromey.com>
1449
1450 * tui/tui-winsource.h (struct tui_source_window_base)
1451 <show_source_content>: Now private.
1452 * tui/tui-winsource.c
1453 (tui_source_window_base::show_source_content): Don't handle empty
1454 content case.
1455
1456 2019-09-20 Tom Tromey <tom@tromey.com>
1457
1458 * tui/tui-layout.c (show_source_disasm_command)
1459 (show_source_or_disasm_and_command): Don't call
1460 show_source_content.
1461
1462 2019-09-20 Tom Tromey <tom@tromey.com>
1463
1464 * tui/tui-stack.h (struct tui_locator_window) <make_status_line>:
1465 Declare.
1466 * tui/tui-stack.c (tui_locator_window::make_status_line): Rename
1467 from tui_make_status_line.
1468 (tui_locator_window::rerender): Update.
1469
1470 2019-09-20 Tom Tromey <tom@tromey.com>
1471
1472 * tui/tui-stack.c (tui_make_status_line): Return std::string.
1473 (tui_locator_window::rerender): Update.
1474
1475 2019-09-20 Tom Tromey <tom@tromey.com>
1476
1477 * tui/tui-winsource.h (struct tui_source_window_base)
1478 <~tui_source_window_base>: Don't declare.
1479 <fullname>: Remove.
1480 * tui/tui-winsource.c (~tui_source_window_base): Remove.
1481 * tui/tui-source.h (struct tui_source_window) <fullname>: New
1482 member.
1483 * tui/tui-source.c (tui_source_window::set_contents): Update.
1484 (tui_source_window::location_matches_p)
1485 (tui_source_window::maybe_update): Update.
1486
1487 2019-09-20 Tom Tromey <tom@tromey.com>
1488
1489 * tui/tui-winsource.h (~tui_source_element): Remove.
1490 (tui_source_element): Update.
1491 (struct tui_source_element) <line>: Now a unique_xmalloc_ptr.
1492 * tui/tui-winsource.c (tui_show_source_line): Update.
1493 * tui/tui-source.c (tui_source_window::set_contents): Update.
1494 * tui/tui-disasm.c (tui_disasm_window::set_contents): Update.
1495
1496 2019-09-20 Tom Tromey <tom@tromey.com>
1497
1498 * tui/tui-data.h (tui_clear_source_windows_detail): Don't
1499 declare.
1500 * tui/tui-layout.c (tui_add_win_to_layout): Don't call
1501 tui_clear_source_windows_detail.
1502 * tui/tui-winsource.h (struct tui_source_window_base)
1503 <clear_detail>: Don't declare.
1504 * tui/tui-winsource.c (tui_source_window_base::clear_detail):
1505 Remove.
1506 * tui/tui-data.c (tui_clear_source_windows_detail): Remove.
1507
1508 2019-09-20 Tom Tromey <tromey@adacore.com>
1509
1510 PR ada/24919:
1511 * block.c (contained_in): Fix final return value.
1512
1513 2019-09-20 Alan Modra <amodra@gmail.com>
1514
1515 * gdb_bfd.c (gdb_bfd_ref, gdb_bfd_unref): Use bfd_set_usrdata.
1516 * dwarf2read.c (dwarf2_read_gdb_index, dwarf2_read_debug_names),
1517 (read_indirect_string_from_dwz): Use bfd accessor.
1518 * dwarf2read.h (struct dwz_file <filename>): Likewise.
1519 * machoread.c (macho_symfile_read_all_oso): Likewise.
1520 * solib.c (solib_bfd_open): Likewise.
1521
1522 2019-09-19 Christian Biesinger <cbiesinger@google.com>
1523
1524 * eval.c: Move declaration of overload_resolution to...
1525 * value.h: ...here.
1526
1527 2019-09-19 Christian Biesinger <cbiesinger@google.com>
1528
1529 * arm-linux-nat.c: Remove extern declaration for arm_apcs_32.
1530 * arm-linux-tdep.c: Likewise.
1531 * arm-nbsd-nat.c: Likewise.
1532 * arm-tdep.h: Declare arm_apcs_32.
1533 * arm-tdep.c: Move documentation for arm_apcs_32 to arm-tdep.h.
1534
1535 2019-09-19 Christian Biesinger <cbiesinger@google.com>
1536
1537 * dwarf2loc.c: Remove extern declaration of dwarf_always_disassemble.
1538 * dwarf2read.h: Declare dwarf_always_disassemble.
1539
1540 2019-09-19 Tom de Vries <tdevries@suse.de>
1541
1542 PR gdb/25009
1543 * source-cache.c (source_cache::ensure): Catch exception thrown during
1544 construction of the highlighter.
1545
1546 2019-09-18 Alan Modra <amodra@gmail.com>
1547
1548 * aarch64-linux-tdep.c, * arm-tdep.c, * auto-load.c,
1549 * coff-pe-read.c, * coffread.c, * corelow.c, * dbxread.c,
1550 * dicos-tdep.c, * dwarf2-frame.c, * dwarf2read.c, * elfread.c,
1551 * exec.c, * fbsd-tdep.c, * gcore.c, * gdb_bfd.c, * gdb_bfd.h,
1552 * hppa-tdep.c, * i386-cygwin-tdep.c, * i386-fbsd-tdep.c,
1553 * i386-linux-tdep.c, * jit.c, * linux-tdep.c, * machoread.c,
1554 * maint.c, * mdebugread.c, * minidebug.c, * mips-linux-tdep.c,
1555 * mips-sde-tdep.c, * mips-tdep.c, * mipsread.c, * nto-tdep.c,
1556 * objfiles.c, * objfiles.h, * osabi.c, * ppc-linux-tdep.c,
1557 * ppc64-tdep.c, * record-btrace.c, * record-full.c, * remote.c,
1558 * rs6000-aix-tdep.c, * rs6000-tdep.c, * s390-linux-tdep.c,
1559 * s390-tdep.c, * solib-aix.c, * solib-dsbt.c, * solib-frv.c,
1560 * solib-spu.c, * solib-svr4.c, * solib-target.c,
1561 * spu-linux-nat.c, * spu-tdep.c, * symfile-mem.c, * symfile.c,
1562 * symmisc.c, * symtab.c, * target.c, * windows-nat.c,
1563 * xcoffread.c, * cli/cli-dump.c, * compile/compile-object-load.c,
1564 * mi/mi-interp.c: Update throughout for bfd section macro and
1565 function changes.
1566 * gcore (gcore_create_callback): Use bfd_set_section_lma.
1567 * spu-tdep.c (spu_overlay_new_objfile): Likewise.
1568
1569 2019-09-18 Tom Tromey <tom@tromey.com>
1570
1571 * NEWS: Add entry.
1572 * tui/tui.c (tui_initialize_readline): Set name of keymap. Do not
1573 call rl_initialize.
1574 (tui_enable): Do not call rl_initialize.
1575
1576 2019-09-18 Christian Groessler <chris@groessler.org>
1577
1578 * alpha-linux-nat.c: Include gdbarch.h.
1579
1580 2019-09-18 Simon Marchi <simon.marchi@polymtl.ca>
1581
1582 * ui-file.c: Include cli/cli-style.h.
1583 (term_cli_styling): Remove cli_styling declaration.
1584
1585 2019-09-18 Alan Modra <amodra@gmail.com>
1586
1587 * arm-tdep.c (arm_record_special_symbol): Update bfd_get_section
1588 to bfd_asymbol_section.
1589
1590 2019-09-18 Alan Modra <amodra@gmail.com>
1591
1592 * amd64-dicos-tdep.c (amd64_dicos_osabi_sniffer): Constify target.
1593 * i386-cygwin-tdep.c (i386_cygwin_init_abi): Likewise.
1594 * i386-dicos-tdep.c (i386_dicos_osabi_sniffer): Likewise.
1595
1596 2019-09-18 Alan Modra <amodra@gmail.com>
1597
1598 * solib-spu.c (spu_bfd_open): Use bfd_set_filename.
1599 * spu-linux-nat.c (spu_bfd_open): Likewise.
1600
1601 2019-09-18 Christian Biesinger <cbiesinger@google.com>
1602
1603 * dwarf2loc.c: Change extern declaration of dwarf_always_disassemble
1604 to bool to match definition in dwarf2read.c.
1605
1606 2019-09-17 Christian Biesinger <cbiesinger@google.com>
1607
1608 * ada-lang.c (ada_ignore_descriptive_types_p): Change to bool.
1609 (print_signatures): Likewise.
1610 (trust_pad_over_xvs): Likewise.
1611 * arch/aarch64-insn.c (aarch64_debug): Likewise.
1612 * arch/aarch64-insn.h (aarch64_debug): Likewise.
1613 * arm-linux-nat.c (arm_apcs_32): Likewise.
1614 * arm-linux-tdep.c (arm_apcs_32): Likewise.
1615 * arm-nbsd-nat.c (arm_apcs_32): Likewise.
1616 * arm-tdep.c (arm_debug): Likewise.
1617 (arm_apcs_32): Likewise.
1618 * auto-load.c (debug_auto_load): Likewise.
1619 (auto_load_gdb_scripts): Likewise.
1620 (global_auto_load): Likewise.
1621 (auto_load_local_gdbinit): Likewise.
1622 (auto_load_local_gdbinit_loaded): Likewise.
1623 * auto-load.h (global_auto_load): Likewise.
1624 (auto_load_local_gdbinit): Likewise.
1625 (auto_load_local_gdbinit_loaded): Likewise.
1626 * breakpoint.c (disconnected_dprintf): Likewise.
1627 (breakpoint_proceeded): Likewise.
1628 (automatic_hardware_breakpoints): Likewise.
1629 (always_inserted_mode): Likewise.
1630 (target_exact_watchpoints): Likewise.
1631 (_initialize_breakpoint): Update.
1632 * breakpoint.h (target_exact_watchpoints): Change to bool.
1633 * btrace.c (maint_btrace_pt_skip_pad): Likewise.
1634 * cli/cli-cmds.c (trace_commands): Likewise.
1635 * cli/cli-cmds.h (trace_commands): Likewise.
1636 * cli/cli-decode.c (add_setshow_boolean_cmd): Change int* argument
1637 to bool*.
1638 * cli/cli-logging.c (logging_overwrite): Change to bool.
1639 (logging_redirect): Likewise.
1640 (debug_redirect): Likewise.
1641 * cli/cli-option.h (option_def) <boolean>: Change return type to bool*.
1642 (struct boolean_option_def) <get_var_address_cb_>: Change return type
1643 to bool.
1644 <boolean_option_def>: Update.
1645 (struct flag_option_def): Change default type of Context to bool
1646 from int.
1647 <flag_option_def>: Change return type of var_address_cb_ to bool*.
1648 * cli/cli-setshow.c (do_set_command): Cast to bool* instead of int*.
1649 (get_setshow_command_value_string): Likewise.
1650 * cli/cli-style.c (cli_styling): Change to bool.
1651 (source_styling): Likewise.
1652 * cli/cli-style.h (source_styling): Likewise.
1653 (cli_styling): Likewise.
1654 * cli/cli-utils.h (struct qcs_flags) <quiet, cont, silent>: Change
1655 to bool.
1656 * command.h (var_types): Update comment.
1657 (add_setshow_boolean_cmd): Change int* var argument to bool*.
1658 * compile/compile-cplus-types.c (debug_compile_cplus_types): Change to
1659 bool.
1660 (debug_compile_cplus_scopes): Likewise.
1661 * compile/compile-internal.h (compile_debug): Likewise.
1662 * compile/compile.c (compile_debug): Likewise.
1663 (struct compile_options) <raw>: Likewise.
1664 * cp-support.c (catch_demangler_crashes): Likewise.
1665 * cris-tdep.c (usr_cmd_cris_version_valid): Likewise.
1666 (usr_cmd_cris_dwarf2_cfi): Likewise.
1667 * csky-tdep.c (csky_debug): Likewise.
1668 * darwin-nat.c (enable_mach_exceptions): Likewise.
1669 * dcache.c (dcache_enabled_p): Likewise.
1670 * defs.h (info_verbose): Likewise.
1671 * demangle.c (demangle): Likewise.
1672 (asm_demangle): Likewise.
1673 * dwarf-index-cache.c (debug_index_cache): Likewise.
1674 * dwarf2-frame.c (dwarf2_frame_unwinders_enabled_p): Likewise.
1675 * dwarf2-frame.h (dwarf2_frame_unwinders_enabled_p): Likewise.
1676 * dwarf2read.c (check_physname): Likewise.
1677 (use_deprecated_index_sections): Likewise.
1678 (dwarf_always_disassemble): Likewise.
1679 * eval.c (overload_resolution): Likewise.
1680 * event-top.c (set_editing_cmd_var): Likewise.
1681 (exec_done_display_p): Likewise.
1682 * event-top.h (set_editing_cmd_var): Likewise.
1683 (exec_done_display_p): Likewise.
1684 * exec.c (write_files): Likewise.
1685 * fbsd-nat.c (debug_fbsd_lwp): Likewise
1686 (debug_fbsd_nat): Likewise.
1687 * frame.h (struct frame_print_options) <print_raw_frame_arguments>:
1688 Likewise.
1689 (struct set_backtrace_options) <backtrace_past_main>: Likewise.
1690 <backtrace_past_entry> Likewise.
1691 * gdb-demangle.h (demangle): Likewise.
1692 (asm_demangle): Likewise.
1693 * gdb_bfd.c (bfd_sharing): Likewise.
1694 * gdbcore.h (write_files): Likewise.
1695 * gdbsupport/common-debug.c (show_debug_regs): Likewise.
1696 * gdbsupport/common-debug.h (show_debug_regs): Likewise.
1697 * gdbthread.h (print_thread_events): Likewise.
1698 * gdbtypes.c (opaque_type_resolution): Likewise.
1699 (strict_type_checking): Likewise.
1700 * gnu-nat.c (gnu_debug_flag): Likewise.
1701 * guile/scm-auto-load.c (auto_load_guile_scripts): Likewise.
1702 * guile/scm-param.c (pascm_variable): Add boolval.
1703 (add_setshow_generic): Update.
1704 (pascm_param_value): Update.
1705 (pascm_set_param_value_x): Update.
1706 * hppa-tdep.c (hppa_debug): Change to bool..
1707 * infcall.c (may_call_functions_p): Likewise.
1708 (coerce_float_to_double_p): Likewise.
1709 (unwind_on_signal_p): Likewise.
1710 (unwind_on_terminating_exception_p): Likewise.
1711 * infcmd.c (startup_with_shell): Likewise.
1712 * inferior.c (print_inferior_events): Likewise.
1713 * inferior.h (startup_with_shell): Likewise.
1714 (print_inferior_events): Likewise.
1715 * infrun.c (step_stop_if_no_debug): Likewise.
1716 (detach_fork): Likewise.
1717 (debug_displaced): Likewise.
1718 (disable_randomization): Likewise.
1719 (non_stop): Likewise.
1720 (non_stop_1): Likewise.
1721 (observer_mode): Likewise.
1722 (observer_mode_1): Likewise.
1723 (set_observer_mode): Update.
1724 (sched_multi): Change to bool.
1725 * infrun.h (debug_displaced): Likewise.
1726 (sched_multi): Likewise.
1727 (step_stop_if_no_debug): Likewise.
1728 (non_stop): Likewise.
1729 (disable_randomization): Likewise.
1730 * linux-tdep.c (use_coredump_filter): Likewise.
1731 (dump_excluded_mappings): Likewise.
1732 * linux-thread-db.c (auto_load_thread_db): Likewise.
1733 (check_thread_db_on_load): Likewise.
1734 * main.c (captured_main_1): Update.
1735 * maint-test-options.c (struct test_options_opts) <flag_opt, xx1_opt,
1736 xx2_opt, boolean_opt>: Change to bool.
1737 * maint-test-settings.c (maintenance_test_settings_boolean): Likewise.
1738 * maint.c (maintenance_profile_p): Likewise.
1739 (per_command_time): Likewise.
1740 (per_command_space): Likewise.
1741 (per_command_symtab): Likewise.
1742 * memattr.c (inaccessible_by_default): Likewise.
1743 * mi/mi-main.c (mi_async): Likewise.
1744 (mi_async_1): Likewise.
1745 * mips-tdep.c (mips64_transfers_32bit_regs_p): Likewise.
1746 * nat/fork-inferior.h (startup_with_shell): Likewise.
1747 * nat/linux-namespaces.c (debug_linux_namespaces): Likewise.
1748 * nat/linux-namespaces.h (debug_linux_namespaces): Likewise.
1749 * nios2-tdep.c (nios2_debug): Likewise.
1750 * or1k-tdep.c (or1k_debug): Likewise.
1751 * parse.c (parser_debug): Likewise.
1752 * parser-defs.h (parser_debug): Likewise.
1753 * printcmd.c (print_symbol_filename): Likewise.
1754 * proc-api.c (procfs_trace): Likewise.
1755 * python/py-auto-load.c (auto_load_python_scripts): Likewise.
1756 * python/py-param.c (union parmpy_variable): Add "bool boolval" field.
1757 (set_parameter_value): Update.
1758 (add_setshow_generic): Update.
1759 * python/py-value.c (copy_py_bool_obj): Change argument from int*
1760 to bool*.
1761 * python/python.c (gdbpy_parameter_value): Cast to bool* instead of
1762 int*.
1763 * ravenscar-thread.c (ravenscar_task_support): Change to bool.
1764 * record-btrace.c (record_btrace_target::store_registers): Update.
1765 * record-full.c (record_full_memory_query): Change to bool.
1766 (record_full_stop_at_limit): Likewise.
1767 * record-full.h (record_full_memory_query): Likewise.
1768 * remote-notif.c (notif_debug): Likewise.
1769 * remote-notif.h (notif_debug): Likewise.
1770 * remote.c (use_range_stepping): Likewise.
1771 (interrupt_on_connect): Likewise.
1772 (remote_break): Likewise.
1773 * ser-tcp.c (tcp_auto_retry): Likewise.
1774 * ser-unix.c (serial_hwflow): Likewise.
1775 * skip.c (debug_skip): Likewise.
1776 * solib-aix.c (solib_aix_debug): Likewise.
1777 * spu-tdep.c (spu_stop_on_load_p): Likewise.
1778 (spu_auto_flush_cache_p): Likewise.
1779 * stack.c (struct backtrace_cmd_options) <full, no_filters, hide>:
1780 Likewise.
1781 (struct info_print_options) <quiet>: Likewise.
1782 * symfile-debug.c (debug_symfile): Likewise.
1783 * symfile.c (auto_solib_add): Likewise.
1784 (separate_debug_file_debug): Likewise.
1785 * symfile.h (auto_solib_add): Likewise.
1786 (separate_debug_file_debug): Likewise.
1787 * symtab.c (basenames_may_differ): Likewise.
1788 (struct filename_partial_match_opts) <dirname, basename>: Likewise.
1789 (struct info_print_options) <quiet, exclude_minsyms>: Likewise.
1790 (struct info_types_options) <quiet>: Likewise.
1791 * symtab.h (demangle): Likewise.
1792 (basenames_may_differ): Likewise.
1793 * target-dcache.c (stack_cache_enabled_1): Likewise.
1794 (code_cache_enabled_1): Likewise.
1795 * target.c (trust_readonly): Likewise.
1796 (may_write_registers): Likewise.
1797 (may_write_memory): Likewise.
1798 (may_insert_breakpoints): Likewise.
1799 (may_insert_tracepoints): Likewise.
1800 (may_insert_fast_tracepoints): Likewise.
1801 (may_stop): Likewise.
1802 (auto_connect_native_target): Likewise.
1803 (target_stop_and_wait): Update.
1804 (target_async_permitted): Change to bool.
1805 (target_async_permitted_1): Likewise.
1806 (may_write_registers_1): Likewise.
1807 (may_write_memory_1): Likewise.
1808 (may_insert_breakpoints_1): Likewise.
1809 (may_insert_tracepoints_1): Likewise.
1810 (may_insert_fast_tracepoints_1): Likewise.
1811 (may_stop_1): Likewise.
1812 * target.h (target_async_permitted): Likewise.
1813 (may_write_registers): Likewise.
1814 (may_write_memory): Likewise.
1815 (may_insert_breakpoints): Likewise.
1816 (may_insert_tracepoints): Likewise.
1817 (may_insert_fast_tracepoints): Likewise.
1818 (may_stop): Likewise.
1819 * thread.c (struct info_threads_opts) <show_global_ids>: Likewise.
1820 (make_thread_apply_all_options_def_group): Change argument from int*
1821 to bool*.
1822 (thread_apply_all_command): Update.
1823 (print_thread_events): Change to bool.
1824 * top.c (confirm): Likewise.
1825 (command_editing_p): Likewise.
1826 (history_expansion_p): Likewise.
1827 (write_history_p): Likewise.
1828 (info_verbose): Likewise.
1829 * top.h (confirm): Likewise.
1830 (history_expansion_p): Likewise.
1831 * tracepoint.c (disconnected_tracing): Likewise.
1832 (circular_trace_buffer): Likewise.
1833 * typeprint.c (print_methods): Likewise.
1834 (print_typedefs): Likewise.
1835 * utils.c (debug_timestamp): Likewise.
1836 (sevenbit_strings): Likewise.
1837 (pagination_enabled): Likewise.
1838 * utils.h (sevenbit_strings): Likewise.
1839 (pagination_enabled): Likewise.
1840 * valops.c (overload_resolution): Likewise.
1841 * valprint.h (struct value_print_options) <prettyformat_arrays,
1842 prettyformat_structs, vtblprint, unionprint, addressprint, objectprint,
1843 stop_print_at_null, print_array_indexes, deref_ref, static_field_print,
1844 pascal_static_field_print, raw, summary, symbol_print, finish_print>:
1845 Likewise.
1846 * windows-nat.c (new_console): Likewise.
1847 (cygwin_exceptions): Likewise.
1848 (new_group): Likewise.
1849 (debug_exec): Likewise.
1850 (debug_events): Likewise.
1851 (debug_memory): Likewise.
1852 (debug_exceptions): Likewise.
1853 (useshell): Likewise.
1854 * windows-tdep.c (maint_display_all_tib): Likewise.
1855 * xml-support.c (debug_xml): Likewise.
1856
1857 2019-09-17 Mike Gulick <mgulick@mathworks.com>
1858
1859 * source.c (prepare_path_for_appending): New function.
1860 (openp): Make use of new function.
1861 (find_and_open_source): Search for the compilation directory and
1862 source file as a relative path beneath the directory search path.
1863
1864 2019-09-17 Andrew Burgess <andrew.burgess@embecosm.com>
1865
1866 * source-cache.c (source_cache::get_line_charpos): Catch
1867 exceptions and return false, this matches the behaviour documented
1868 in the header file.
1869
1870 2019-09-17 Joel Brobecker <brobecker@adacore.com>
1871
1872 * ada-tasks.c (info_task): Remove quoting of the task's name.
1873
1874 2019-09-16 Christian Biesinger <cbiesinger@google.com>
1875
1876 * symfile.c (auto_solib_add): Replace comment with a reference
1877 to the header file.
1878
1879 2019-09-14 Christian Biesinger <cbiesinger@google.com>
1880
1881 * NEWS: Mention that gdb can now be compiled with Python 3
1882 on Windows.
1883
1884 2019-09-12 Andrew Burgess <andrew.burgess@embecosm.com>
1885
1886 * maint.c (maint_print_section_data::maint_print_section_data):
1887 Force use of 'float log10 (float)' by casting the argument to
1888 float.
1889
1890 2019-09-12 Andrew Burgess <andrew.burgess@embecosm.com>
1891
1892 * maint.c: Add 'cmath' include.
1893 (struct maint_print_section_data): New structure.
1894 (print_section_index): New function.
1895 (print_bfd_section_info): Add header comment, small whitespace
1896 cleanup, and update to call new print_section_index function.
1897 (print_objfile_section_info): Likewise.
1898 (maint_obj_section_from_bfd_section): New function.
1899 (print_bfd_section_info_maybe_relocated): New function.
1900 (maintenance_info_sections): Add header comment, always use
1901 bfd_map_over_sections instead of ALL_OBJFILE_OSECTIONS.
1902
1903 2019-09-12 Andrew Burgess <andrew.burgess@embecosm.com>
1904
1905 * psymtab.c (find_pc_sect_psymtab): Move baseaddr local into more
1906 inner scope, add check that the objfile has psymtabs before
1907 checking psymtabs_addrmap.
1908 * psymtab.h (psymtab_storage) <psymtabs_addrmap>: Extend comment.
1909
1910 2019-09-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
1911
1912 * NEWS: Announce that Ada task names are now shown at more places,
1913 and between quotes (except in info task output).
1914 * gdb/ada-tasks.c (task_to_str): New function.
1915 (display_current_task_id): Call task_to_str.
1916 (task_command_1): Likewise.
1917 (print_ada_task_info): In non-mi mode, Properly align headers and data
1918 when task-id length is > 9 (9 is the default for a 32 bits CORE_ADDR).
1919
1920 2019-09-12 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
1921
1922 * procfs.c (procfs_target::wait) <PR_FAULTED>: Get signal from
1923 prstatus.pr_lwp.pr_info instead of making it up.
1924
1925 2019-09-11 Christian Biesinger <cbiesinger@google.com>
1926
1927 * auto-load.c (auto_load_expand_dir_vars): Update.
1928 * defs.h (gdb_datadir): Change to std::string.
1929 (python_libdir): Likewise.
1930 (relocate_gdb_directory): Change return type to std::string.
1931 * guile/guile.c (gdbscm_data_directory): Update.
1932 (initialize_scheme_side): Update.
1933 * jit.c (jit_reader_dir): Change to std::string.
1934 (jit_reader_load_command): Update.
1935 * main.c (gdb_datadir): Change to std::string.
1936 (python_libdir): Likewise.
1937 (set_gdb_data_directory): Update.
1938 (relocate_path): Change to return std::string.
1939 (relocate_gdb_directory): Change to return std::string.
1940 (relocate_gdbinit_path_maybe_in_datadir): Update.
1941 (captured_main_1): Update.
1942 * python/python.c (do_start_initialization): Update.
1943 * top.c (show_gdb_datadir): Update.
1944 * xml-syscall.c (xml_init_syscalls_info): Update.
1945 (init_syscalls_info): Update.
1946
1947 2019-09-11 Christian Biesinger <cbiesinger@google.com>
1948
1949 * main.c (relocate_gdbinit_path_maybe_in_datadir): Factor this code
1950 out of get_init_files.
1951 (get_init_files): Update.
1952
1953 2019-09-11 Christian Biesinger <cbiesinger@google.com>
1954
1955 * main.c (get_init_files): Change to use std::string.
1956 (captured_main_1): Update.
1957 (print_gdb_help): Update.
1958
1959 2019-09-11 Ali Tamur <tamur@google.com>
1960
1961 *gdb/target-float.c (host_float_ops<T>::to_longest): Update
1962 implementation.
1963
1964 2019-09-11 Christian Biesinger <cbiesinger@google.com>
1965
1966 * dbxread.c (read_dbx_symtab): Update.
1967 * dwarf2read.c (load_partial_dies): Update.
1968 * mdebugread.c (parse_partial_symbols): Update.
1969 (handle_psymbol_enumerators): Update.
1970 * psympriv.h (add_psymbol_to_list): Change type of copy_names to bool.
1971 * psymtab.c (add_psymbol_to_bcache): Likewise.
1972 (add_psymbol_to_list): Likewise.
1973 * symtab.c (symbol_set_names): Likewise.
1974 * symtab.h (symbol_set_names): Likewise.
1975 * xcoffread.c (scan_xcoff_symtab): Update.
1976
1977 2019-09-11 Tom Tromey <tom@tromey.com>
1978
1979 * symfile-mem.c (symbol_file_add_from_memory): Use
1980 bfd_set_filename.
1981 * solib-darwin.c (darwin_bfd_open): Use bfd_set_filename.
1982 * solib-aix.c (solib_aix_bfd_open): Use bfd_set_filename.
1983
1984 2019-09-10 Tom Tromey <tromey@adacore.com>
1985
1986 * dwarf-index-write.c (write_psymbols): Extend error message.
1987 (debug_names::insert): Add Ada code.
1988 (debug_names::write_psymbols): Remove Ada check.
1989 (debug_names) <m_string_obstack>: New member.
1990 * dwarf2read.c (gdb_index_symbol_name_matcher): Remove.
1991 (gdb_index_symbol_name_matcher::matches): Remove.
1992 (mapped_index_base::find_name_components_bounds): Add "lang"
1993 parameter.
1994 (mapped_index_base::build_name_components): Also split names
1995 according to Ada syntax.
1996 (dw2_expand_symtabs_matching_symbol): Loop over languages. Change
1997 type of "match_callback".
1998 (check_match, check_find_bounds_finds)
1999 (dw2_expand_symtabs_matching): Update.
2000 (dw2_debug_names_iterator): Add new constructor.
2001 (dw2_debug_names_map_matching_symbols): New function.
2002 (dw2_debug_names_expand_symtabs_matching): Update.
2003 (dwarf2_debug_names_functions): Use
2004 dw2_debug_names_map_matching_symbols.
2005
2006 2019-09-10 Tom Tromey <tromey@adacore.com>
2007
2008 * dwarf2read.c (dw2_get_file_names_reader): Add the
2009 CU's file name to the results.
2010
2011 2019-09-10 Tom Tromey <tromey@adacore.com>
2012
2013 * ada-lang.c (add_nonlocal_symbols): Combine calls to
2014 map_matching_symbols. Update.
2015 * dwarf2read.c (dw2_map_matching_symbols): Update.
2016 * psymtab.c (match_partial_symbol): Change type; update.
2017 (psym_map_matching_symbols): Likewise.
2018 * symfile-debug.c (debug_qf_map_matching_symbols): Change
2019 type; update.
2020 * symfile.h (struct quick_symbol_functions)
2021 <map_matching_symbols>: Change "name" to be a lookup_name_info.
2022 Remove "match".
2023
2024 2019-09-10 Tom Tromey <tromey@adacore.com>
2025
2026 * psymtab.c (map_block): Remove.
2027 (psym_map_matching_symbols): Use iterate_over_symbols_terminated.
2028 * symtab.c (iterate_over_symbols_terminated): New function.
2029 * symtab.c (iterate_over_symbols_terminated): Declare.
2030
2031 2019-09-10 Tom Tromey <tromey@adacore.com>
2032
2033 * ada-lang.c (ada_iterate_over_symbols): Return bool.
2034 * language.h (struct language_defn) <la_iterate_over_symbols>:
2035 Return bool.
2036 * symtab.c (iterate_over_symbols): Return bool.
2037 * symtab.h (iterate_over_symbols): Return bool.
2038
2039 2019-09-10 Tom Tromey <tromey@adacore.com>
2040
2041 * ada-lang.c (aux_add_nonlocal_symbols): Change type.
2042 (add_nonlocal_symbols): Update.
2043 * dwarf2read.c (dw2_map_matching_symbols): Change type.
2044 * psymtab.c (map_block, psym_map_matching_symbols): Change type.
2045 * symfile-debug.c (debug_qf_map_matching_symbols): Change type.
2046 * symfile.h (struct quick_symbol_functions) <map_matching_symbols>:
2047 Change type of "callback". Remove "data".
2048
2049
2050 2019-09-09 Ali Tamur <tamur@google.com>
2051
2052 * dwarf2read.c (comp_unit_head): Update comment.
2053 (dwarf2_dwo_name): New function declaration.
2054 (dwarf_unit_type_name): New function declaration.
2055 (read_comp_unit_head): Add support for new compilation units,
2056 DW_UT_partial, DW_UT_skeleton, DW_UT_split_compile, DW_UT_split_type.
2057 Particularly, DW_UT_skeleton and DW_UT_split_compile have dwo_id
2058 (currently named as "signature") in their header. Also clarify error
2059 messages.
2060 (lookup_dwo_id): New function. Returns the dwo id of the given
2061 compile unit.
2062 (lookup_dwo_unit): Use the new lookup_dwo_id function.
2063 (init_cutu_and_read_dies): Use the new dwarf2_dwo_name and lookup_dwo_id
2064 functions.
2065 (create_dwo_cu_reader): Use the added lookup_dwo_id function.
2066 (dwarf2_dwo_name): Get the dwo name if present.
2067 (dwarf_unit_type_name): Convert DW_UT_* types to string for diagnostic
2068 purposes.
2069
2070 2019-09-09 Tom Tromey <tom@tromey.com>
2071
2072 * tui/tui-win.c (tui_all_windows_info): Use ui_out.
2073
2074 2019-09-09 Philippe Waroquiers <philippe.waroquiers@skynet.be>
2075
2076 * python/python.c (do_start_initialization): Make progname_copy static,
2077 to avoid a leak report.
2078
2079 2019-09-08 Tom Tromey <tom@tromey.com>
2080
2081 * tui/tui-wingeneral.c (box_win): Truncate long window titles.
2082
2083 2019-09-07 Simon Marchi <simon.marchi@efficios.com>
2084
2085 * dwarf2read.c (struct dw2_symtab_iterator) <block_index>:
2086 Change type to gdb::optional<block_enum>.
2087 (dw2_symtab_iter_init): Change block_index parameter type
2088 to gdb::optional<block_enum>.
2089 (dw2_lookup_symbol): Change block_index parameter
2090 type to block_enum.c
2091 (dw2_debug_names_lookup_symbol): Likewise.
2092 * psymtab.c (psym_lookup_symbol): Likewise.
2093 * symfile-debug.c (debug_qf_lookup_symbol): Likewise.
2094 * symfile.h (struct quick_symbol_functions) <lookup_symbol>:
2095 Likewise.
2096
2097 2019-09-06 Christian Biesinger <cbiesinger@google.com>
2098
2099 * defs.h (relocate_gdb_directory): Change int to bool in
2100 signature and rename flag to relocatable.
2101 * main.c (relocate_path): Likewise.
2102 (relocate_gdb_directory): Likewise.
2103
2104 2019-09-06 Alan Modra <amodra@gmail.com>
2105
2106 * coffread.c (coff_symfile_read): Constify filename variable.
2107 * dbxread.c (dbx_symfile_init, coffstab_build_psymtabs),
2108 (elfstab_build_psymtabs, stabsect_build_psymtabs): Likewise.
2109 * gdb_bfd.c (gdb_bfd_close_or_warn): Likewise.
2110 * solib.c (reload_shared_libraries_1): Likewise.
2111 * symfile.c (reread_symbols): Likewise.
2112 * solib-aix.c (solib_aix_bfd_open): Add cast for xfree of filename.
2113 * solib-darwin.c (darwin_bfd_open): Likewise.
2114 * symfile-mem.c (symbol_file_add_from_memory): Likewise.
2115
2116 2019-09-03 Andrew Burgess <andrew.burgess@embecosm.com>
2117
2118 * psymtab.c (print_partial_symbols): Handle missing domain_enum
2119 values MODULE_DOMAIN and COMMON_BLOCK_DOMAIN.
2120
2121 2019-09-03 Tom Tromey <tromey@adacore.com>
2122
2123 * ada-valprint.c (ada_val_print_num): Don't recurse for range
2124 types.
2125 (has_negatives): Unbias a range type bound.
2126 * dwarf2read.c (read_subrange_type): Handle DW_AT_GNU_bias.
2127 * gdbtypes.c (operator==): Handle new field.
2128 (create_range_type): Add "bias" parameter.
2129 (create_static_range_type, resolve_dynamic_range): Update.
2130 * gdbtypes.h (struct range_bounds) <bias>: New member.
2131 (create_range_type): Add bias parameter.
2132 * printcmd.c (print_scalar_formatted): Unbias range types.
2133 * value.c (unpack_long): Unbias range types.
2134 (pack_long): Bias range types.
2135
2136 2019-09-02 Alan Hayward <alan.hayward@arm.com>
2137
2138 * solib-svr4.c (svr4_find_and_create_probe_breakpoints): Check all
2139 probe arguments.
2140
2141 2019-09-02 Alan Hayward <alan.hayward@arm.com>
2142
2143 * break-catch-throw.c (fetch_probe_arguments): Use gdbarch.
2144 * dtrace-probe.c (dtrace_probe::get_argument_count): Likewise.
2145 * probe.c (probe_safe_evaluate_at_pc) (compute_probe_arg)
2146 (compile_probe_arg): Likewise.
2147 * probe.h (get_argument_count): Likewise.
2148 * solib-svr4.c (solib_event_probe_action): Likewise.
2149 * stap-probe.c (stap_probe::get_argument_count): Likewise.
2150
2151 2019-09-02 Alan Hayward <alan.hayward@arm.com>
2152
2153 * solib-svr4.c (svr4_find_and_create_probe_breakpoints): Move
2154 code to here...
2155 (svr4_create_solib_event_breakpoints): ...from here.
2156
2157 2019-08-30 Sergio Durigan Junior <sergiodj@redhat.com>
2158
2159 * nat/fork-inferior.c (trace_start_error): Remove "\nError: "
2160 suffix from warning message.
2161
2162 2019-08-30 Tom Tromey <tom@tromey.com>
2163
2164 * tui/tui-winsource.h (struct tui_source_window_base)
2165 <refresh_all>: Don't declare.
2166 * tui/tui-winsource.c (tui_source_window_base::refresh_all):
2167 Remove.
2168 * tui/tui-win.c (tui_refresh_all_win): Don't call refresh_all or
2169 tui_show_locator_content.
2170 * tui/tui-regs.h (struct tui_data_window) <refresh_all>: Don't
2171 declare.
2172 * tui/tui-regs.c (tui_data_window::refresh_all): Remove.
2173 * tui/tui-data.h (struct tui_win_info) <refresh_all>: Don't
2174 declare.
2175
2176 2019-08-30 Tom Tromey <tom@tromey.com>
2177
2178 * tui/tui-io.c (tui_cont_sig): Don't call wrefresh.
2179
2180 2019-08-30 Tom Tromey <tom@tromey.com>
2181
2182 * tui/tui-stack.c (_initialize_tui_stack): Move later.
2183 Remove unnecessary forward declarations.
2184
2185 2019-08-30 Tom Tromey <tom@tromey.com>
2186
2187 * tui/tui-stack.c (tui_locator_window::set_locator_fullname): Call
2188 rerender.
2189 (tui_update_locator_fullname, tui_show_frame_info): Don't call
2190 tui_show_locator_content.
2191
2192 2019-08-30 Tom Tromey <tom@tromey.com>
2193
2194 * tui/tui-stack.c (tui_show_locator_content): Move lower. Rewrite.
2195 (tui_locator_window::rerender): Rewrite using body of previous
2196 tui_show_locator_content.
2197
2198 2019-08-30 Tom Tromey <tom@tromey.com>
2199
2200 * tui/tui-stack.h (struct tui_locator_window) <set_locator_info,
2201 set_locator_fullname>: New methods.
2202 * tui/tui-stack.c (tui_locator_window::set_locator_fullname):
2203 Rename from tui_set_locator_fullname.
2204 (tui_locator_window::set_locator_info): Rename from
2205 tui_set_locator_info. Return bool.
2206 (tui_update_locator_fullname, tui_show_frame_info): Update.
2207
2208 2019-08-30 Tom Tromey <tom@tromey.com>
2209
2210 * tui/tui-layout.c (show_layout): Don't call tui_refresh_all.
2211
2212 2019-08-30 Tom Tromey <tom@tromey.com>
2213
2214 * tui/tui-wingeneral.c (tui_gen_win_info::refresh_window): Don't
2215 call touchwin.
2216
2217 2019-08-30 Tom Tromey <tom@tromey.com>
2218
2219 * tui/tui-wingeneral.c (box_win): Assume win_info and
2220 win_info->handle cannot be NULL.
2221
2222 2019-08-30 Tom Tromey <tom@tromey.com>
2223
2224 * tui/tui-regs.h (struct tui_data_item_window) <rerender,
2225 refresh_window>: Declare.
2226 * tui/tui-regs.c (tui_data_window::display_registers_from): Call
2227 resize.
2228 (tui_data_item_window::rerender): Rename from
2229 tui_display_register.
2230 (tui_data_item_window::refresh_window): New method.
2231 * tui/tui-layout.c (tui_gen_win_info::resize): Do nothing on
2232 no-op.
2233
2234 2019-08-30 Tom Tromey <tom@tromey.com>
2235
2236 * tui/tui-regs.h (struct tui_data_window) <regs_content,
2237 regs_column_count, current_group>: Move later. Now private.
2238 <get_current_group>: New method.
2239 * tui/tui-regs.c (tui_reg_command): Update.
2240 * tui/tui-layout.c (tui_set_layout): Update.
2241
2242 2019-08-30 Tom Tromey <tom@tromey.com>
2243
2244 * tui/tui-regs.c (tui_data_window::display_registers_from_line)
2245 (tui_data_window::rerender): Don't call
2246 check_and_display_highlight_if_needed.
2247 (tui_data_window::refresh_all): Remove call to
2248 erase_data_content.
2249
2250 2019-08-30 Tom Tromey <tom@tromey.com>
2251
2252 * tui/tui-regs.c (tui_data_window::last_regs_line_no)
2253 (tui_data_window::display_registers_from)
2254 (tui_data_window::display_reg_element_at_line)
2255 (tui_data_window::display_registers_from_line): Remove checks of
2256 "empty".
2257
2258 2019-08-30 Tom Tromey <tom@tromey.com>
2259
2260 * tui/tui-regs.h (struct tui_data_window) <display_all_data>:
2261 Don't declare.
2262 * tui/tui-regs.c (tui_data_window::show_registers): Call
2263 rerender.
2264 (tui_data_window::rerender): Rename from display_all_data.
2265 (tui_data_window::rerender): Remove old implementation.
2266
2267 2019-08-30 Tom Tromey <tom@tromey.com>
2268
2269 * tui/tui-regs.c (tui_data_window::display_all_data): Change
2270 text.
2271 * tui/tui-data.h (NO_DATA_STRING): Remove define.
2272
2273 2019-08-29 Bernhard Wodok <barto@gmx.net>
2274 Sergio Durigan Junior <sergiodj@redhat.com>
2275
2276 PR win32/24284
2277 * mingw-hdep.c (gdb_select): Handle case when 'n' is zero.
2278
2279 2019-08-28 Andrew Burgess <andrew.burgess@embecosm.com>
2280
2281 * symtab.c (search_symbols): Don't include MODULE_DOMAIN symbols
2282 when searching for types.
2283
2284 2019-08-28 Andrew Burgess <andrew.burgess@embecosm.com>
2285
2286 * f-lang.c (f_language_defn): Use f_print_typedef.
2287 * f-lang.h (f_print_typedef): Declare.
2288 * f-typeprint.c (f_print_typedef): Define.
2289
2290 2019-08-27 Christian Biesinger <cbiesinger@google.com>
2291
2292 * nat/linux-namespaces.c (mnsh_main): Initialize fd (to -1).
2293
2294 2019-08-27 Andrew Burgess <andrew.burgess@embecosm.com>
2295
2296 * cli/cli-utils.c (info_print_options_defs): Delete.
2297 (make_info_print_options_def_group): Delete.
2298 (extract_info_print_options): Delete.
2299 (info_print_command_completer): Delete.
2300 (info_print_args_help): Add extra parameter, and optionally
2301 include text about -n flag.
2302 * cli/cli-utils.h (struct info_print_options): Delete.
2303 (extract_info_print_options): Delete declaration.
2304 (info_print_command_completer): Delete declaration.
2305 (info_print_args_help): Add extra parameter, extend header
2306 comment.
2307 * python/python.c (gdbpy_rbreak): Pass additional parameter to
2308 search_symbols.
2309 * stack.c (struct info_print_options): New type.
2310 (info_print_options_defs): New file scoped variable.
2311 (make_info_print_options_def_group): New static function.
2312 (info_print_command_completer): New static function.
2313 (info_locals_command): Update to use new local functions.
2314 (info_args_command): Likewise.
2315 (_initialize_stack): Add extra parameter to calls to
2316 info_print_args_help.
2317 * symtab.c (search_symbols): Add extra parameter, use this to
2318 possibly excluse non-debug symbols.
2319 (symtab_symbol_info): Add extra parameter, which is passed on to
2320 search_symbols.
2321 (struct info_print_options): New type.
2322 (info_print_options_defs): New file scoped variable.
2323 (make_info_print_options_def_group): New static function.
2324 (info_print_command_completer): New static function.
2325 (info_variables_command): Update to use local functions, and pass
2326 extra parameter through to symtab_symbol_info.
2327 (info_functions_command): Likewise.
2328 (info_types_command): Pass additional argument through to
2329 symtab_symbol_info.
2330 (rbreak_command): Pass extra argument to search_symbols.
2331 (_initialize_symtab): Add extra arguments for calls to
2332 info_print_args_help, and update help text for 'info variables',
2333 'whereis', and 'info functions' commands.
2334 * symtab.h (search_symbols): Add extra argument to declaration.
2335 * NEWS: Mention new flags.
2336
2337 2019-08-26 Christian Biesinger <cbiesinger@google.com>
2338
2339 * symtab.c (lookup_static_symbol): Call the new function (and move
2340 it down to be next to lookup_global_symbol).
2341 (struct global_sym_lookup_data): Add block_enum member and rename to...
2342 (struct global_or_static_sym_lookup_data): ...this.
2343 (lookup_symbol_global_iterator_cb): Pass block_index instead of
2344 GLOBAL_BLOCK to lookup_symbol_in_objfile and rename to...
2345 (lookup_symbol_global_or_static_iterator_cb): ...this.
2346 (lookup_global_or_static_symbol): New function.
2347 (lookup_global_symbol): Call new function.
2348
2349 2019-08-26 Tom de Vries <tdevries@suse.de>
2350
2351 PR c++/24852
2352 * break-catch-throw.c (fetch_probe_arguments): Improve error mesage
2353 when pc_probe.prob == NULL.
2354
2355 2019-08-25 Simon Marchi <simon.marchi@efficios.com>
2356
2357 * dwarf2read.c (dw2_debug_names_iterator::next): Rename local
2358 variable symbol_linkage to symbol_linkage_.
2359
2360 2019-08-25 Simon Marchi <simon.marchi@efficios.com>
2361
2362 * dwarf2read.c (dw2_debug_names_iterator::next): Use enum to
2363 represent whether the symbol is static, dynamic, or we don't
2364 know.
2365
2366 2019-08-25 Yoshinori Sato <ysato@users.sourceforge.jp>
2367
2368 * gdb/rx-tdep.c (rx_register_names): New.
2369 (rx_register_name): Delete.
2370 (rx_psw_type): Delete.
2371 (rx_fpsw_type): Delete.
2372 (rx_register_type): Delete.
2373 (rx_gdbarch_init): Convert target-descriptions.
2374 (_initialize_rx_tdep): Add initialize_tdesc_rx.
2375 * gdb/features/Makefile: Add rx.xml.
2376 * gdb/features/rx.xml: New.
2377 * gdb/features/rx.c: Generated.
2378 * gdb/NEWS: Mention target description support.
2379
2380 2019-08-22 Christian Biesinger <cbiesinger@google.com>
2381
2382 * symtab.c (symbol_cache_lookup): Always initialize *bsc_ptr and
2383 *slot_ptr.
2384
2385 2019-08-23 Sergio Durigan Junior <sergiodj@redhat.com>
2386
2387 * configure.ac: Don't check for 'dlfcn.h' (moved to
2388 gdbsupport/common.m4).
2389 * Makefile.in (COMMON_SFILES): Move 'gdb-dlfcn.c' to
2390 'gdbsupport/'.
2391 (HFILES_NO_SRCDIR): Likewise, for 'gdb-dlfcn.h'.
2392 * compile/compile-c-support.c: Include
2393 'gdbsupport/gdb-dlfcn.h'.
2394 * gdbsupport/common.m4: Check for 'dlfcn.h'.
2395 * gdb-dlfcn.c: Move to...
2396 * gdbsupport/gdb-dlfcn.c: ... here.
2397 * gdb-dlfcn.h: Move to...
2398 * gdbsupport/gdb-dlfcn.h: ... here.
2399
2400 2019-08-23 Sandra Loosemore <sandra@codesourcery.com>
2401
2402 * nios2-tdep.c (struct reg_value): Improve comments. Make
2403 the offset field signed.
2404
2405 2019-08-22 Christian Biesinger <cbiesinger@google.com>
2406
2407 * python/lib/gdb/__init__.py (_execute_file): New function.
2408 * python/python.c (python_run_simple_file): Call gdb._execute_file
2409 on Windows.
2410
2411 2019-08-22 Andrew Burgess <andrew.burgess@embecosm.com>
2412
2413 * f-exp.y (yylex): Remove is_a_field_of_this local variable, and
2414 all uses as this was never set to anything but a zero value.
2415
2416 2019-08-21 Bogdan Harjoc <harjoc@gmail.com>
2417
2418 * cli/cli-cmds.c (with_command_1): Error out if no arguments.
2419
2420 2019-08-21 Christian Biesinger <cbiesinger@google.com>
2421
2422 * tui/tui-data.h (tui_gen_win_info): Add an =default
2423 move constructor, required by some GCC versions.
2424
2425 2019-08-21 Jinke Fan <fanjinke51@yeah.net>
2426
2427 * go32-nat.c (go32_sysinfo): Add hygon_p.
2428
2429 2019-08-20 Tom Tromey <tom@tromey.com>
2430
2431 * tui/tui-regs.h (struct tui_data_window) <last_regs_line_no,
2432 line_from_reg_element_no, first_reg_element_no_inline,
2433 display_all_data, delete_data_content_windows,
2434 erase_data_content>: Now private.
2435
2436 2019-08-20 Tom Tromey <tom@tromey.com>
2437
2438 * tui/tui-wingeneral.c (box_win): Change type of highlight_flag.
2439 (tui_unhighlight_win, tui_highlight_win)
2440 (tui_win_info::make_window): Update.
2441 * tui/tui-data.h (HILITE, NO_HILITE): Remove.
2442
2443 2019-08-20 Tom Tromey <tom@tromey.com>
2444
2445 * tui/tui-data.h (PROC_PREFIX, LINE_PREFIX, PC_PREFIX)
2446 (MIN_LINE_WIDTH, MIN_PROC_WIDTH, MAX_TARGET_WIDTH)
2447 (MAX_PID_WIDTH): Move to tui-stack.c.
2448 * tui/tui-stack.c (PROC_PREFIX, LINE_PREFIX, PC_PREFIX)
2449 (MIN_LINE_WIDTH, MIN_PROC_WIDTH, MAX_TARGET_WIDTH)
2450 (MAX_PID_WIDTH): Move from tui-data.h.
2451
2452 2019-08-20 Tom Tromey <tom@tromey.com>
2453
2454 * tui/tui-wingeneral.h (tui_make_window): Don't declare.
2455 * tui/tui-wingeneral.c (box_win): Change type of win_info.
2456 (box_win): Update.
2457 (tui_gen_win_info::make_window): Rename from tui_make_window.
2458 (tui_win_info::make_window): New method.
2459 (tui_gen_win_info::make_visible): Update.
2460 * tui/tui-source.c (tui_source_window::set_contents): Update.
2461 * tui/tui-regs.c (tui_data_window::show_register_group): Update.
2462 (tui_data_window::display_registers_from): Update.
2463 * tui/tui-layout.c (tui_gen_win_info::resize): Update.
2464 * tui/tui-data.h (struct tui_gen_win_info) <make_window>:
2465 Declare.
2466 <can_box>: Remove.
2467 <title>: Remove.
2468 (struct tui_win_info) <make_window>: Declare.
2469 <can_box>: Now virtual.
2470 <title>: New member.
2471 * tui/tui-data.c (~tui_gen_win_info): Don't free title.
2472 * tui/tui-command.c (tui_cmd_window::resize): Update.
2473
2474 2019-08-20 Tom Tromey <tom@tromey.com>
2475
2476 * tui/tui-regs.h (struct tui_data_window) <display_regs>: Remove.
2477 * tui/tui-regs.c (tui_data_window::show_registers): Update.
2478 (tui_data_window::check_register_values): Update.
2479
2480 2019-08-20 Tom Tromey <tom@tromey.com>
2481
2482 * tui/tui-regs.h (struct tui_data_window): Use
2483 DISABLE_COPY_AND_ASSIGN.
2484 <regs_content>: Change type, removing unique_ptr.
2485 <tui_data_window>: Add move constructor.
2486 * tui/tui-regs.c (tui_data_window::show_registers)
2487 (tui_data_window::show_register_group)
2488 (tui_data_window::display_registers_from)
2489 (tui_data_window::display_registers_from)
2490 (tui_data_window::first_data_item_displayed)
2491 (tui_data_window::delete_data_content_windows)
2492 (tui_data_window::rerender, tui_data_window::refresh_window)
2493 (tui_data_window::check_register_values): Update.
2494
2495 2019-08-20 Tom Tromey <tom@tromey.com>
2496
2497 * tui/tui-regs.h (struct tui_data_window) <show_registers,
2498 show_register_group>: Declare.
2499 (tui_show_register_group): Don't declare.
2500 * tui/tui-regs.c (tui_data_window::show_registers): Rename from
2501 tui_show_registers.
2502 (tui_data_window::show_register_group): Rename from
2503 tui_show_register_group.
2504 (tui_data_window::check_register_values, tui_reg_command):
2505 Update.
2506 * tui/tui-layout.c (tui_set_layout): Update.
2507
2508 2019-08-20 Tom Tromey <tom@tromey.com>
2509
2510 * tui/tui-regs.h (struct tui_data_window) <check_register_values>:
2511 Declare.
2512 (tui_check_register_values): Don't declare.
2513 * tui/tui-regs.c (tui_data_window::check_register_values): Rename
2514 from tui_check_register_values.
2515 * tui/tui-hooks.c (tui_register_changed): Update.
2516
2517 2019-08-20 Tom Tromey <tom@tromey.com>
2518
2519 * tui/tui-regs.c (tui_reg_layout): Move later.
2520 (tui_show_registers): Don't enable TUI mode or change layout.
2521
2522 2019-08-20 Tom Tromey <tom@tromey.com>
2523
2524 * tui/tui-regs.h (struct tui_data_item_window)
2525 <~tui_data_item_window>: Remove.
2526 <content>: Now a unique_xmalloc_ptr.
2527 * tui/tui-regs.c (tui_register_format): Return a
2528 unique_xmalloc_ptr.
2529 (tui_get_register): Update.
2530 (~tui_data_item_window): Remove.
2531 (tui_data_window::display_registers_from, tui_display_register):
2532 Update.
2533 * tui/tui-io.h (tui_expand_tabs): Update.
2534 * tui/tui-io.c (tui_expand_tabs): Return a unique_xmalloc_ptr.
2535 Remove "col" parameter.
2536
2537 2019-08-20 Tom Tromey <tom@tromey.com>
2538
2539 * tui/tui-regs.h (struct tui_data_item_window) <value>: Remove
2540 field.
2541 * tui/tui-regs.c (~tui_data_item_window): Update.
2542
2543 2019-08-20 Tom Tromey <tom@tromey.com>
2544
2545 * tui/tui-regs.c (tui_register_format, tui_get_register): Move
2546 earlier.
2547
2548 2019-08-20 Tom Tromey <tom@tromey.com>
2549
2550 * tui/tui-regs.c (tui_reg_command): Remove NULL check.
2551
2552 2019-08-20 Tom Tromey <tom@tromey.com>
2553
2554 * tui/tui-source.h (struct tui_source_window): Update.
2555 * tui/tui-regs.c (tui_show_registers): Update.
2556 * tui/tui-disasm.h (struct tui_disasm_window): Update.
2557 * tui/tui-data.h (NO_SRC_STRING, NO_DISASSEM_STRING)
2558 (NO_REGS_STRING): Remove defines.
2559
2560 2019-08-20 Conrad Meyer <cem@FreeBSD.org>
2561
2562 * remote.c (remote_target::remote_btrace_maybe_reopen): Avoid
2563 unnecessary thread walk if remote doesn't support the packet.
2564
2565 2019-08-19 Tom Tromey <tromey@adacore.com>
2566
2567 * python/py-value.c (value_has_field): Fix indentation.
2568
2569 2019-08-19 Tom Tromey <tromey@adacore.com>
2570
2571 * printcmd.c (do_one_display, info_display_command): Update.
2572 * block.h (contained_in): Return bool. Add allow_nested
2573 parameter.
2574 * block.c (contained_in): Return bool. Add allow_nested
2575 parameter.
2576
2577 2019-08-19 Tom Tromey <tom@tromey.com>
2578
2579 * configure: Rebuild.
2580 * configure.ac: Disallow the combination of -static-libstdc++ and
2581 source highlight.
2582 * source-cache.c (get_language_name): Handle rust.
2583 (source_cache::get_source_lines): Ignore highlighting exceptions.
2584
2585 2019-08-16 Tom Tromey <tom@tromey.com>
2586
2587 * tui/tui.h (enum tui_win_type) <EXEC_INFO_WIN>: Remove.
2588 * tui/tui-winsource.h (struct tui_exec_info_window): Remove.
2589 (struct tui_source_window_base) <make_visible, refresh_window,
2590 resize>: Remove methods.
2591 <execution_info>: Remove field.
2592 * tui/tui-winsource.c (tui_source_window_base::do_erase_source_content)
2593 (tui_show_source_line, tui_source_window_base)
2594 (~tui_source_window_base): Update.
2595 (tui_source_window_base::resize)
2596 (tui_source_window_base::make_visible)
2597 (tui_source_window_base::refresh_window): Remove.
2598 (tui_source_window_base::update_exec_info): Update.
2599 * tui/tui-source.c (tui_source_window::set_contents): Update.
2600 * tui/tui-disasm.c (tui_disasm_window::set_contents): Update.
2601
2602 2019-08-16 Tom Tromey <tom@tromey.com>
2603
2604 * tui/tui-hooks.c (tui_remove_hooks): Don't set
2605 deprecated_query_hook.
2606
2607 2019-08-16 Tom Tromey <tom@tromey.com>
2608
2609 * tui/tui-winsource.c (tui_update_source_windows_with_addr)
2610 (tui_update_source_windows_with_line): Update.
2611 * tui/tui-source.h (struct tui_source_window)
2612 <show_symtab_source>: Declare.
2613 (tui_show_symtab_source): Don't declare.
2614 * tui/tui-source.c (tui_show_symtab_source): Rename from
2615 tui_show_symtab_source.
2616
2617 2019-08-16 Tom Tromey <tom@tromey.com>
2618
2619 * tui/tui-winsource.h (struct tui_source_window_base)
2620 <set_contents>: Declare.
2621 * tui/tui-winsource.c
2622 (tui_source_window_base::update_source_window_as_is): Update.
2623 * tui/tui-source.h (struct tui_source_window) <set_contents>:
2624 Declare.
2625 (tui_set_source_content): Don't declare.
2626 * tui/tui-source.c (tui_source_window::set_contents): Rename from
2627 tui_set_source_content.
2628 * tui/tui-disasm.h (struct tui_disasm_window) <set_contents>:
2629 Declare.
2630 (tui_set_disassem_content): Don't declare.
2631 * tui/tui-disasm.c (tui_disasm_window::set_contents): Rename from
2632 tui_set_disassem_content.
2633
2634 2019-08-16 Tom Tromey <tom@tromey.com>
2635
2636 * tui/tui-winsource.h (struct tui_source_window_base)
2637 <update_breakpoint_info>: Declare.
2638 (tui_update_breakpoint_info): Don't declare.
2639 * tui/tui-winsource.c (tui_source_window_base::update_source_window_as_is)
2640 (tui_update_all_breakpoint_info): Update.
2641 (tui_source_window_base::update_breakpoint_info): Rename from
2642 tui_update_breakpoint_info.
2643 (tui_source_window_base::update_exec_info): Update.
2644
2645 2019-08-16 Tom Tromey <tom@tromey.com>
2646
2647 * tui/tui-winsource.h (struct tui_source_window_base)
2648 <update_source_window>: Declare.
2649 (tui_update_source_window): Don't declare.
2650 * tui/tui-winsource.c
2651 (tui_source_window_base::update_source_window): Rename from
2652 tui_update_source_window.
2653 (tui_source_window_base::rerender): Update.
2654 * tui/tui-source.c (tui_source_window::maybe_update): Update.
2655 * tui/tui-disasm.c (tui_show_disassem)
2656 (tui_show_disassem_and_update_source)
2657 (tui_disasm_window::maybe_update): Update.
2658
2659 2019-08-16 Tom Tromey <tom@tromey.com>
2660
2661 * tui/tui-winsource.h (struct tui_source_window_base)
2662 <update_source_window_as_is>: Declare.
2663 (tui_update_source_window_as_is): Don't declare.
2664 * tui/tui-winsource.c (tui_update_source_window): Update
2665 (tui_source_window_base::update_source_window_as_is): Rename from
2666 tui_update_source_window_as_is.
2667 (tui_source_window_base::refill): Update.
2668 * tui/tui-source.c (tui_show_symtab_source): Update.
2669 * tui/tui-disasm.c (tui_disasm_window::do_scroll_vertical):
2670 Update.
2671
2672 2019-08-16 Tom Tromey <tom@tromey.com>
2673
2674 * tui/tui-winsource.h (tui_update_source_window)
2675 (tui_update_source_window_as_is): Remove "noerror" parameter.
2676 * tui/tui-winsource.c (tui_update_source_window)
2677 (tui_update_source_window_as_is): Remove "noerror" parameter.
2678 (tui_update_source_windows_with_addr)
2679 (tui_update_source_windows_with_line)
2680 (tui_source_window_base::rerender)
2681 (tui_source_window_base::refill): Update.
2682 * tui/tui-source.h (tui_set_source_content)
2683 (tui_show_symtab_source): Remove "noerror" parameter.
2684 * tui/tui-source.c (tui_set_source_content): Remove "noerror"
2685 parameter.
2686 (tui_show_symtab_source): Likewise.
2687 (tui_source_window::maybe_update): Update.
2688 * tui/tui-disasm.c (tui_show_disassem)
2689 (tui_show_disassem_and_update_source)
2690 (tui_disasm_window::do_scroll_vertical)
2691 (tui_disasm_window::maybe_update): Update.
2692
2693 2019-08-16 Tom Tromey <tom@tromey.com>
2694
2695 * tui/tui.c (tui_is_window_visible): Update.
2696 * tui/tui-wingeneral.c (tui_make_window)
2697 (tui_gen_win_info::make_visible, tui_refresh_all): Update.
2698 * tui/tui-win.c (window_name_completer, tui_refresh_all_win)
2699 (tui_set_focus_command, tui_all_windows_info, update_tab_width)
2700 (tui_set_win_height_command, parse_scrolling_args): Update.
2701 * tui/tui-source.c (tui_source_window::style_changed): Update.
2702 * tui/tui-regs.c (tui_show_registers)
2703 (tui_data_window::first_data_item_displayed)
2704 (tui_data_window::delete_data_content_windows)
2705 (tui_check_register_values, tui_reg_command): Update.
2706 * tui/tui-disasm.c (tui_show_disassem): Update.
2707 * tui/tui-data.h (struct tui_gen_win_info) <is_visible>: New
2708 method.
2709 <is_visible>: Remove field.
2710 * tui/tui-data.c (tui_next_win, tui_prev_win)
2711 (tui_delete_invisible_windows): Update.
2712
2713 2019-08-16 Tom Tromey <tom@tromey.com>
2714
2715 * tui/tui-winsource.h (struct tui_source_window_base)
2716 <m_has_locator>: Remove.
2717 * tui/tui-layout.c (show_source_disasm_command, show_data)
2718 (show_source_or_disasm_and_command): Update.
2719
2720 2019-08-16 Alan Hayward <alan.hayward@arm.com>
2721
2722 * NEWS (Other MI changes): New subsection.
2723 * aarch64-tdep.c (aarch64_get_pc_address_flags): New function.
2724 (aarch64_gdbarch_init): Add aarch64_get_pc_address_flags.
2725 * arch-utils.c (default_get_pc_address_flags): New function.
2726 * arch-utils.h (default_get_pc_address_flags): New declaration.
2727 * gdbarch.sh: Add get_pc_address_flags.
2728 * gdbarch.c: Regenerate.
2729 * gdbarch.h: Likewise.
2730 * stack.c (print_pc): New function.
2731 (print_frame_info) (print_frame): Call print_pc.
2732
2733 2019-08-16 Tom de Vries <tdevries@suse.de>
2734
2735 * maint.c (maintenance_info_sections): Also handle !ALLOBJ case using
2736 print_objfile_section_info.
2737
2738 2019-08-15 Tom Tromey <tom@tromey.com>
2739
2740 * tui/tui-io.c (tui_puts_internal): Check TUI_CMD_WIN before
2741 calling update_cmdwin_start_line.
2742 * tui/tui-winsource.h (struct tui_source_window_base)
2743 <do_make_visible_with_new_height, set_new_height>: Don't declare.
2744 <rerender>: Declare.
2745 * tui/tui-winsource.c (tui_source_window_base::update_tab_width):
2746 Call rerender.
2747 (tui_source_window_base::set_new_height): Remove.
2748 (tui_source_window_base::rerender): Rename from
2749 do_make_visible_with_new_height.
2750 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Use
2751 resize method.
2752 (tui_win_info::make_invisible_and_set_new_height)
2753 (tui_win_info::make_visible_with_new_height): Remove.
2754 * tui/tui-stack.h (struct tui_locator_window) <rerender>:
2755 Declare.
2756 * tui/tui-stack.c (tui_locator_window::rerender): New method.
2757 * tui/tui-regs.h (struct tui_data_window) <set_new_height,
2758 do_make_visible_with_new_height>: Don't declare.
2759 <rerender>: Declare.
2760 * tui/tui-regs.c (tui_data_window::rerender): Rename from
2761 set_new_height.
2762 (tui_data_window::do_make_visible_with_new_height): Remove.
2763 * tui/tui-layout.c (show_source_disasm_command, show_data): Don't
2764 call tui_show_locator_content.
2765 (tui_gen_win_info::resize): Call rerender.
2766 (show_source_or_disasm_and_command): Don't call
2767 tui_show_locator_content.
2768 * tui/tui-data.h (struct tui_gen_win_info) <rerender>: New
2769 method.
2770 (struct tui_win_info) <rerender>: Declare.
2771 <set_new_height, make_invisible_and_set_new_height,
2772 make_visible_with_new_height>: Don't declare.
2773 * tui/tui-data.c (tui_win_list::rerender): New method.
2774 * tui/tui-command.h (struct tui_cmd_window)
2775 <do_make_visible_with_new_height>: Don't declare.
2776 * tui/tui-command.c
2777 (tui_cmd_window::do_make_visible_with_new_height): Remove.
2778
2779 2019-08-15 Tom Tromey <tromey@adacore.com>
2780
2781 * ada-exp.y (convert_char_literal): Handle "Q%c" encoding.
2782 * ada-lang.c (ada_enum_name): Likewise.
2783
2784 2019-08-15 Christian Biesinger <cbiesinger@google.com>
2785
2786 * python/lib/gdb/__init__.py (GdbOutputFile): Rename to have a
2787 leading underscore.
2788 (GdbOutputErrorFile): Likewise.
2789 (global scope): Adjust constructor calls to GdbOutput{,Error}File
2790 accordingly.
2791 (execute_unwinders): Rename to have a leading underscore.
2792 (auto_load_packages): Likewise.
2793 (global scope): Adjust call to auto_load_packages accordingly.
2794 (GdbSetPythonDirectory): Likewise.
2795 * python/py-unwind.c (pyuw_sniffer): Call _execute_unwinders
2796 instead of execute_unwinders.
2797
2798 2019-08-15 Tom Tromey <tom@tromey.com>
2799
2800 * tui/tui-layout.c (show_layout, show_source_disasm_command)
2801 (show_data): Don't change window visibility.
2802 (tui_gen_win_info::resize): Remove special case for command
2803 window. Use wresize, when available.
2804 (show_source_or_disasm_and_command): Don't change window
2805 visibility.
2806 * tui/tui-command.h (struct tui_cmd_window) <resize>: Declare.
2807 <make_visible>: New method.
2808 * tui/tui-command.c (tui_cmd_window::resize): New method.
2809
2810 2019-08-15 Tom Tromey <tom@tromey.com>
2811
2812 * tui/tui-winsource.h (struct tui_source_window_iterator): New.
2813 (struct tui_source_windows): New.
2814 * tui/tui-winsource.c (tui_display_main): Update.
2815 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights)
2816 (new_height_ok, parse_scrolling_args): Update.
2817 * tui/tui-layout.c (show_layout, show_data): Update.
2818 * tui/tui-data.h (tui_source_windows, tui_clear_source_windows)
2819 (tui_add_to_source_windows): Don't declare.
2820 * tui/tui-data.c (source_windows, tui_source_windows)
2821 (tui_clear_source_windows, tui_add_to_source_windows): Remove.
2822
2823 2019-08-15 Tom Tromey <tom@tromey.com>
2824
2825 * tui/tui-winsource.h (struct tui_source_window_base) <resize>:
2826 Rename from reset.
2827 * tui/tui-winsource.c (tui_source_window_base::resize): Rename.
2828 * tui/tui-layout.c (show_source_disasm_command, show_data):
2829 Update.
2830 (tui_gen_win_info::resize): Rename.
2831 (show_source_or_disasm_and_command): Update.
2832 * tui/tui-data.h (struct tui_gen_win_info) <resize>: Rename from
2833 reset.
2834
2835 2019-08-15 Tom Tromey <tom@tromey.com>
2836
2837 * tui/tui-stack.c (tui_initialize_static_data): Remove.
2838 * tui/tui-interp.c (tui_interp::init): Don't call
2839 tui_initialize_static_data.
2840 * tui/tui-data.h (tui_initialize_static_data): Don't declare.
2841
2842 2019-08-15 Tom Tromey <tom@tromey.com>
2843
2844 * tui/tui-layout.c (tui_default_win_viewport_height): Don't
2845 examine tui_win_list.
2846
2847 2019-08-15 Tom Tromey <tom@tromey.com>
2848
2849 * tui/tui-winsource.h (tui_clear_source_content): Don't declare.
2850 * tui/tui-winsource.c (tui_update_source_window_as_is): Don't call
2851 tui_clear_source_content.
2852 (tui_clear_source_content): Remove.
2853 (tui_source_window_base::do_erase_source_content): Hoist call to
2854 content.clear().
2855 * tui/tui-stack.c (tui_show_frame_info): Don't call
2856 tui_clear_source_content.
2857
2858 2019-08-15 Tom Tromey <tom@tromey.com>
2859
2860 * tui/tui-winsource.h (struct tui_source_window_base)
2861 <do_erase_source_content>: New method.
2862 <erase_source_content>: New method.
2863 (tui_erase_source_content): Don't declare.
2864 * tui/tui-winsource.c (tui_clear_source_content): Update.
2865 (tui_source_window_base::do_erase_source_content): Rename from
2866 tui_erase_source_content.
2867 (tui_source_window_base::show_source_content): Update.
2868 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Update.
2869 * tui/tui-source.h (struct tui_source_window)
2870 <erase_source_content>: New method.
2871 * tui/tui-disasm.h (struct tui_disasm_window)
2872 <erase_source_content>: New method.
2873
2874 2019-08-15 Tom Tromey <tom@tromey.com>
2875
2876 * tui/tui-winsource.h (tui_alloc_source_buffer): Don't declare.
2877 (struct tui_source_element): Add DISABLE_COPY_AND_ASSIGN, and move
2878 constructor.
2879 * tui/tui-winsource.c (tui_alloc_source_buffer): Remove.
2880 * tui/tui-source.c (tui_set_source_content): Update.
2881 * tui/tui-disasm.c (tui_set_disassem_content): Update.
2882
2883 2019-08-15 Tom Tromey <tom@tromey.com>
2884
2885 * tui/tui-winsource.h (tui_line_is_displayed): Don't declare.
2886 * tui/tui-winsource.c (tui_line_is_displayed): Move to
2887 tui-source.c.
2888 * tui/tui-source.h (struct tui_source_window) <line_is_displayed>:
2889 Declare.
2890 * tui/tui-source.c (tui_source_window::line_is_displayed): New
2891 method.
2892 (tui_source_window::maybe_update): Update.
2893
2894 2019-08-15 Tom Tromey <tom@tromey.com>
2895
2896 * tui/tui-winsource.h (tui_addr_is_displayed): Don't declare.
2897 * tui/tui-winsource.c (tui_addr_is_displayed): Move to
2898 tui-disasm.c.
2899 * tui/tui-disasm.h (struct tui_disasm_window) <addr_is_displayed>:
2900 Declare.
2901 * tui/tui-disasm.c (tui_disasm_window::addr_is_displayed): New
2902 method.
2903 (tui_disasm_window::maybe_update): Update.
2904
2905 2019-08-15 Tom Tromey <tom@tromey.com>
2906
2907 * tui/tui-winsource.h (struct tui_source_window_base)
2908 <maybe_update>: Declare.
2909 * tui/tui-stack.c (tui_show_frame_info): Call maybe_update
2910 method.
2911 * tui/tui-source.h (struct tui_source_window) <maybe_update>:
2912 Declare.
2913 * tui/tui-source.c (tui_source_window::maybe_update): New method.
2914 * tui/tui-disasm.h (struct tui_disasm_window) <maybe_update>:
2915 Declare.
2916 * tui/tui-disasm.c (tui_disasm_window::maybe_update): New method.
2917
2918 2019-08-15 Tom Tromey <tom@tromey.com>
2919
2920 * tui/tui-stack.c (tui_make_status_line): Use string constructor.
2921
2922 2019-08-15 Tom Tromey <tom@tromey.com>
2923
2924 * tui/tui-wingeneral.c: Include tui-stack.h.
2925 * tui/tui-stack.h (MAX_LOCATOR_ELEMENT_LEN)
2926 (struct tui_locator_window): Move from tui-data.h.
2927 * tui/tui-stack.c (_locator, tui_locator_win_info_ptr)
2928 (tui_initialize_static_data): Move from tui-data.c.
2929 * tui/tui-data.h (MAX_LOCATOR_ELEMENT_LEN)
2930 (struct tui_locator_window): Move to tui-stack.c.
2931 * tui/tui-data.c (_locator, tui_locator_win_info_ptr)
2932 (tui_initialize_static_data): Move to tui-stack.c.
2933
2934 2019-08-15 Tom Tromey <tom@tromey.com>
2935
2936 * tui/tui-layout.c (show_source_disasm_command)
2937 (show_source_or_disasm_and_command): Use make_visible method, not
2938 tui_make_window.
2939 * tui/tui-command.h (struct tui_cmd_window) <make_visible>:
2940 Remove.
2941
2942 2019-08-15 Tom Tromey <tom@tromey.com>
2943
2944 * tui/tui-wingeneral.h (tui_make_window): Update.
2945 * tui/tui-wingeneral.c (tui_make_window): Remove "box_it"
2946 parameter.
2947 (tui_gen_win_info::make_visible): Update.
2948 * tui/tui-regs.c (tui_data_window::display_registers_from):
2949 Update.
2950 * tui/tui-layout.c (show_source_disasm_command)
2951 (show_source_or_disasm_and_command): Update.
2952 * tui/tui-data.h (struct tui_gen_win_info) <can_box>: New method.
2953 (enum tui_box): Remove.
2954 (struct tui_win_info) <can_box>: New method.
2955 * tui/tui-command.h (struct tui_cmd_window) <can_box>: New
2956 method.
2957
2958 2019-08-15 Tom de Vries <tdevries@suse.de>
2959
2960 * linux-nat-trad.c: Include gdbarch.h.
2961
2962 2019-08-14 Alan Hayward <alan.hayward@arm.com>
2963
2964 * aarch64-tdep.c (aarch64_analyze_prologue): Allow any valid
2965 register sizes.
2966
2967 2019-08-14 Tom Tromey <tromey@adacore.com>
2968
2969 * darwin-nat.c: Include gdbarch.h.
2970 * darwin-nat-info.c: Include gdbarch.h.
2971
2972 2019-08-13 Tom Tromey <tom@tromey.com>
2973
2974 * tui/tui-data.h (struct tui_gen_win_info) <last_visible_line>:
2975 Remove.
2976 * tui/tui-data.c (tui_initialize_static_data): Update.
2977
2978 2019-08-13 Tom Tromey <tom@tromey.com>
2979
2980 * tui/tui-winsource.h (struct tui_exec_info_window)
2981 <~tui_exec_info_window, maybe_allocate_content, get_content,
2982 m_content>: Remove.
2983 (struct tui_source_window_base) <set_exec_info_content,
2984 show_exec_info_content>: Don't declare.
2985 * tui/tui-winsource.c
2986 (tui_exec_info_window::maybe_allocate_content): Remove.
2987 (tui_source_window_base::update_exec_info): Rename from
2988 set_exec_info_content.
2989 (tui_source_window_base::show_exec_info_content)
2990 (tui_source_window_base::update_exec_info): Remove.
2991
2992 2019-08-13 Tom Tromey <tom@tromey.com>
2993
2994 * tui/tui-winsource.h (tui_clear_exec_info_content): Don't
2995 declare.
2996 * tui/tui-winsource.c (tui_update_source_window_as_is)
2997 (tui_update_source_windows_with_addr, tui_erase_source_content):
2998 Update.
2999 (tui_clear_exec_info_content): Remove.
3000
3001 2019-08-13 Tom Tromey <tom@tromey.com>
3002
3003 * tui/tui-winsource.h (tui_erase_exec_info_content): Don't
3004 declare.
3005 * tui/tui-winsource.c (tui_source_window_base::refresh_all): Don't
3006 call tui_erase_exec_info_content.
3007 (tui_clear_exec_info_content): Rename from
3008 tui_erase_exec_info_content.
3009 (tui_clear_exec_info_content): Delete.
3010
3011 2019-08-13 Tom Tromey <tom@tromey.com>
3012
3013 * tui/tui-winsource.h (struct tui_source_window_base)
3014 <show_exec_info_content>: Declare.
3015 (tui_show_exec_info_content): Don't declare.
3016 * tui/tui-winsource.c
3017 (tui_source_window_base::show_exec_info_content): Rename from
3018 tui_show_exec_info_content.
3019 (tui_source_window_base::update_exec_info): Update.
3020
3021 2019-08-13 Tom Tromey <tom@tromey.com>
3022
3023 * tui/tui-data.h (enum tui_bp_flag, tui_bp_flags, struct tui_source_element)
3024 (TUI_BP_HIT_POS, TUI_BP_BREAK_POS, TUI_EXEC_POS)
3025 (TUI_EXECINFO_SIZE, tui_exec_info_content): Move ...
3026 * tui/tui-winsource.h (enum tui_bp_flag, tui_bp_flags, struct
3027 tui_source_element, TUI_BP_HIT_POS, TUI_BP_BREAK_POS)
3028 (TUI_EXEC_POS, TUI_EXECINFO_SIZE, tui_exec_info_content):
3029 ... here.
3030
3031 2019-08-13 Tom Tromey <tom@tromey.com>
3032
3033 * tui/tui-winsource.h (struct tui_source_window_base)
3034 <update_exec_info>: Declare.
3035 (tui_update_exec_info): Don't declare.
3036 * tui/tui-winsource.c (tui_update_source_window_as_is)
3037 (tui_source_window_base::refresh_all)
3038 (tui_update_all_breakpoint_info): Update.
3039 (tui_source_window_base::update_exec_info): Rename from
3040 tui_update_exec_info.
3041 * tui/tui-stack.c (tui_show_frame_info): Update.
3042
3043 2019-08-13 Tom Tromey <tom@tromey.com>
3044
3045 * tui/tui-winsource.h (struct tui_source_window_base)
3046 <set_exec_info_content>: Declare.
3047 (tui_set_exec_info_content): Don't declare.
3048 * tui/tui-winsource.c
3049 (tui_source_window_base::set_exec_info_content): Rename from
3050 tui_set_exec_info_content.
3051 (tui_update_exec_info): Update.
3052
3053 2019-08-13 Tom Tromey <tom@tromey.com>
3054
3055 * tui/tui-winsource.h (struct tui_source_window_base)
3056 <show_source_content>: Declare.
3057 (tui_show_source_content): Don't declare.
3058 * tui/tui-winsource.c (tui_update_source_window_as_is): Update.
3059 (tui_source_window_base::show_source_content): Rename from
3060 tui_show_source_content.
3061 (tui_source_window_base::refresh_all): Update.
3062 * tui/tui-layout.c (show_source_disasm_command)
3063 (show_source_or_disasm_and_command): Update.
3064
3065 2019-08-13 Tom Tromey <tom@tromey.com>
3066
3067 * tui/tui-winsource.c (tui_erase_source_content)
3068 (tui_show_source_content, tui_source_window_base::refresh_all):
3069 Update.
3070 * tui/tui-wingeneral.h
3071 (tui_check_and_display_highlight_if_needed): Don't declare.
3072 * tui/tui-wingeneral.c
3073 (tui_win_info::check_and_display_highlight_if_needed): Rename from
3074 check_and_display_highlight_if_needed.
3075 * tui/tui-win.c (tui_rehighlight_all)
3076 (tui_win_info::make_visible_with_new_height): Update.
3077 * tui/tui-regs.c (tui_data_window::display_registers_from_line)
3078 (tui_data_window::erase_data_content)
3079 (tui_data_window::display_all_data): Update.
3080 * tui/tui-data.h (struct tui_win_info)
3081 <check_and_display_highlight_if_needed>: Declare.
3082
3083 2019-08-13 Tom Tromey <tom@tromey.com>
3084
3085 * tui/tui-win.c (tui_resize_all): Call
3086 tui_delete_invisible_windows.
3087 * tui/tui-layout.c (show_layout): Call
3088 tui_delete_invisible_windows.
3089 * tui/tui-data.h (tui_delete_invisible_windows): Declare.
3090 * tui/tui-data.c (tui_delete_invisible_windows): New function.
3091
3092 2019-08-13 Tom Tromey <tom@tromey.com>
3093
3094 * tui/tui-disasm.c (tui_show_disassem): Add assertion. Don't call
3095 tui_add_win_to_layout.
3096
3097 2019-08-13 Tom Tromey <tom@tromey.com>
3098
3099 * tui/tui-layout.h (tui_default_win_height): Don't declare.
3100 * tui/tui-layout.c (tui_default_win_height): Now static.
3101
3102 2019-08-13 Tom Tromey <tom@tromey.com>
3103
3104 * tui/tui-layout.c (show_layout): Unify all layout cases into a
3105 single switch.
3106 (show_source_disasm_command, show_source_or_disasm_and_command):
3107 Don't check current layout.
3108
3109 2019-08-13 Tom Tromey <tom@tromey.com>
3110
3111 * tui/tui-wingeneral.c (make_all_visible): Remove.
3112 (tui_make_all_invisible): Simplify.
3113 * tui/tui-layout.c (tui_make_all_invisible): Move from
3114 tui-wingeneral.c; simplify.
3115 (show_layout): Hoist call to tui_make_all_invisible.
3116 (show_data): Don't call tui_make_all_invisible.
3117
3118 2019-08-13 Tom Tromey <tom@tromey.com>
3119
3120 * tui/tui-wingeneral.h (tui_make_all_visible): Don't declare.
3121 * tui/tui-wingeneral.c (tui_make_all_visible): Remove.
3122
3123 2019-08-13 Tom Tromey <tom@tromey.com>
3124
3125 * tui/tui-layout.c (current_layout, tui_current_layout): Move from
3126 tui-data.c.
3127 (show_source_disasm_command, show_data)
3128 (show_source_or_disasm_and_command): Don't use
3129 tui_set_current_layout_to.
3130 * tui/tui-data.h (tui_set_current_layout_to): Don't declare.
3131 * tui/tui-data.c (current_layout, tui_current_layout): Move to
3132 tui-layout.c.
3133 (tui_set_current_layout_to): Remove.
3134
3135 2019-08-13 Tom Tromey <tom@tromey.com>
3136
3137 * tui/tui-layout.c (tui_set_layout): Update.
3138 * tui/tui-data.h (struct tui_layout_def): Remove.
3139 (tui_layout_def): Don't declare.
3140 * tui/tui-data.c (layout_def): Remove.
3141 (tui_layout_def): Remove.
3142
3143 2019-08-13 Tom Tromey <tom@tromey.com>
3144
3145 * tui/tui-winsource.h (struct tui_source_window_base)
3146 <clear_detail>: No longer "override".
3147 * tui/tui-regs.h (struct tui_data_window) <clear_detail>: Remove.
3148 * tui/tui-regs.c (tui_data_window::clear_detail): Remove.
3149 * tui/tui-data.h (struct tui_win_info) <clear_detail>: Remove.
3150 * tui/tui-command.h (struct tui_cmd_window) <clear_detail>:
3151 Remove.
3152 * tui/tui-command.c (tui_cmd_window::clear_detail): Remove.
3153
3154 2019-08-13 Tom Tromey <tromey@adacore.com>
3155
3156 * tracepoint.c: Don't include readline.h or history.h.
3157
3158 2019-08-12 Tom Tromey <tom@tromey.com>
3159
3160 * configure: Rebuild.
3161 * configure.ac: Check for readline 7.
3162 * NEWS: Mention readline 7 requirement.
3163 * README: Update.
3164
3165 2019-08-12 Tom Tromey <tom@tromey.com>
3166
3167 * mingw-hdep.c (gdb_select): Remove readline hack.
3168
3169 2019-08-09 Pedro Franco de Carvalho <pedromfc@linux.ibm.com>
3170
3171 * blockframe.c (find_pc_partial_function): Set *block to nullptr
3172 when the function fails.
3173
3174 2019-08-09 Andreas Arnez <arnez@linux.ibm.com>
3175
3176 * s390-tdep.c (s390_type_align): New function.
3177 (s390_gdbarch_init): Set it as type_align gdbarch method.
3178
3179 2019-08-09 Tom de Vries <tdevries@suse.de>
3180
3181 PR gdb/24591
3182 * dwarf2read.c (dwarf2_fetch_die_loc_sect_off): Adjust pc_high and
3183 pc_low with relocation offset.
3184
3185 2019-08-07 Tom Tromey <tromey@adacore.com>
3186
3187 * stack.c (print_frame_arg, read_frame_local, read_frame_arg)
3188 (print_frame_args): Update.
3189 * python/py-framefilter.c (py_print_single_arg, enumerate_args):
3190 Update.
3191 * mi/mi-cmd-stack.c (list_arg_or_local): Update.
3192 * frame.h (struct frame_arg): Add initializers.
3193 <error>: Now a unique_xmalloc_ptr.
3194
3195 2019-08-07 Alan Hayward <alan.hayward@arm.com>
3196
3197 * NEWS: Expand the Pointer Authentication entry.
3198 * aarch64-tdep.c (aarch64_frame_unmask_address): Rename from this.
3199 (aarch64_frame_unmask_lr): ... to this.
3200 (aarch64_prologue_prev_register, aarch64_dwarf2_prev_register):
3201 Call aarch64_frame_unmask_lr.
3202 * frame.c (struct frame_info): Add "masked" variable.
3203 (frame_set_previous_pc_masked) (frame_get_pc_masked): New functions.
3204 (fprint_frame): Check for masked pc.
3205 * frame.h (frame_set_previous_pc_masked) (frame_get_pc_masked): New
3206 declarations.
3207 * python/py-framefilter.c (py_print_frame): Check for masked pc.
3208 * stack.c (print_frame): Check for masked pc.
3209
3210 2019-08-06 Tom Tromey <tom@tromey.com>
3211
3212 * stabsread.c (patch_block_stabs, read_one_struct_field)
3213 (read_enum_type): Use obstack_strndup.
3214 * rust-exp.y (rust_parser::copy_name): Use obstack_strndup.
3215 * gdb_obstack.h (obstack_strndup): Use obstack_strndup.
3216 * dwarf2read.c (guess_full_die_structure_name)
3217 (anonymous_struct_prefix): Use obstack_strndup.
3218 * dbxread.c (cp_set_block_scope): Use obstack_strndup.
3219 * c-exp.y (yylex): Use obstack_strndup.
3220 * ada-exp.y (write_object_renaming, write_ambiguous_var)
3221 (write_var_or_type): Use obstack_strndup.
3222
3223 2019-08-06 Tom Tromey <tom@tromey.com>
3224
3225 * symfile.c (reread_symbols): Use obstack_strdup.
3226 * stabsread.c (read_type): Use obstack_strdup.
3227 * gdb_obstack.h (obstack_strdup): New overload.
3228 * dwarf2read.c (dwarf2_compute_name, create_dwo_unit_in_dwp_v1)
3229 (create_dwo_unit_in_dwp_v2, build_error_marker_type)
3230 (dwarf2_canonicalize_name): Use obstack_strdup.
3231 * dbxread.c (read_dbx_symtab): Use obstack_strdup.
3232 * cp-support.c (inspect_type, replace_typedefs_qualified_name):
3233 Use obstack_strdup.
3234
3235 2019-08-06 Tom Tromey <tom@tromey.com>
3236
3237 * gdb_obstack.h (obstack_strdup): Define.
3238 * gdb_obstack.c (obstack_strdup): Don't define.
3239
3240 2019-08-06 Tom Tromey <tom@tromey.com>
3241
3242 * xcoffread.c (SYMNAME_ALLOC, process_xcoff_symbol): Use
3243 obstack_strdup.
3244 * typeprint.c (typedef_hash_table::find_global_typedef): Use
3245 obstack_strdup.
3246 * symfile.c (allocate_compunit_symtab): Use obstack_strdup.
3247 * stabsread.c (common_block_start): Use obstack_strdup.
3248 * objfiles.c (set_objfile_main_name, objfile): Use
3249 obstack_strdup.
3250 * namespace.c (add_using_directive): Use obstack_strdup.
3251 * mdebugread.c (parse_symbol, parse_type): Use obstack_strdup.
3252 * jit.c (finalize_symtab): Use obstack_strdup.
3253 * dwarf2read.c (fixup_go_packaging, dwarf2_physname)
3254 (guess_partial_die_structure_name, partial_die_info::fixup)
3255 (dwarf2_name): Use obstack_strdup.
3256 * coffread.c (coff_read_struct_type, coff_read_enum_type): Use
3257 obstack_strdup.
3258 * c-exp.y (scan_macro_expansion): Use obstack_strdup.
3259 * buildsym.c (buildsym_compunit::end_symtab_with_blockvector): Use
3260 obstack_strdup.
3261 * ada-lang.c (ada_decode_symbol): Use obstack_strdup.
3262
3263 2019-08-07 Philippe Waroquiers <philippe.waroquiers@skynet.be>
3264
3265 * unittests/help-doc-selftests.c: New file.
3266 * Makefile.in: Add the new file.
3267
3268 2019-08-07 Philippe Waroquiers <philippe.waroquiers@skynet.be>
3269
3270 * cli/cli-decode.h (print_doc_line): Add for_value_prefix argument.
3271 * cli/cli-decode.c (print_doc_line): Likewise. It now prints
3272 the full first line, except when FOR_VALUE_PREFIX. In this case,
3273 the trailing '.' is not output, and the first character is uppercased.
3274 (print_help_for_command): Update call to print_doc_line.
3275 (print_doc_of_command): Likewise.
3276 * cli/cli-setshow.c (deprecated_show_value_hack): Likewise.
3277 * cli/cli-option.c (append_indented_doc): Do not append newline.
3278 (build_help_option): Append newline after first appended_indented_doc
3279 only if a second call is done.
3280 (build_help): Append 2 new lines before each option, except the first
3281 one.
3282 * compile/compile.c (_initialize_compile): Add new lines after
3283 %OPTIONS%, when not at the end of the help.
3284 Change help doc or code
3285 producing the help doc to respect the invariants.
3286 * maint-test-options.c (_initialize_maint_test_options): Likewise.
3287 Also removed the new line after 'Options:', as all other commands
3288 do not put an empty line between 'Options:' and the first option.
3289 * printcmd.c (_initialize_printcmd): Likewise.
3290 * stack.c (_initialize_stack): Likewise.
3291 * interps.c (interpreter_exec_cmd): Fix "Usage:" line that was
3292 incorrectly telling COMMAND is optional.
3293 * ada-lang.c (_initialize_ada_language): Change help doc or code
3294 producing the help doc to respect the invariants.
3295 * ada-tasks.c (_initialize_ada_tasks): Likewise.
3296 * breakpoint.c (_initialize_breakpoint): Likewise.
3297 * cli/cli-cmds.c (_initialize_cli_cmds): Likewise.
3298 * cli/cli-logging.c (_initialize_cli_logging): Likewise.
3299 * cli/cli-setshow.c (_initialize_cli_setshow): Likewise.
3300 * cli/cli-style.c (cli_style_option::add_setshow_commands,
3301 _initialize_cli_style): Likewise.
3302 * corelow.c (core_target_info): Likewise.
3303 * dwarf-index-cache.c (_initialize_index_cache): Likewise.
3304 * dwarf2read.c (_initialize_dwarf2_read): Likewise.
3305 * filesystem.c (_initialize_filesystem): Likewise.
3306 * frame.c (_initialize_frame): Likewise.
3307 * gnu-nat.c (add_task_commands): Likewise.
3308 * infcall.c (_initialize_infcall): Likewise.
3309 * infcmd.c (_initialize_infcmd): Likewise.
3310 * interps.c (_initialize_interpreter): Likewise.
3311 * language.c (_initialize_language): Likewise.
3312 * linux-fork.c (_initialize_linux_fork): Likewise.
3313 * maint-test-settings.c (_initialize_maint_test_settings): Likewise.
3314 * maint.c (_initialize_maint_cmds): Likewise.
3315 * memattr.c (_initialize_mem): Likewise.
3316 * printcmd.c (_initialize_printcmd): Likewise.
3317 * python/lib/gdb/function/strfns.py (_MemEq, _StrLen, _StrEq,
3318 _RegEx): Likewise.
3319 * ravenscar-thread.c (_initialize_ravenscar): Likewise.
3320 * record-btrace.c (_initialize_record_btrace): Likewise.
3321 * record-full.c (_initialize_record_full): Likewise.
3322 * record.c (_initialize_record): Likewise.
3323 * regcache-dump.c (_initialize_regcache_dump): Likewise.
3324 * regcache.c (_initialize_regcache): Likewise.
3325 * remote.c (add_packet_config_cmd, init_remote_threadtests,
3326 _initialize_remote): Likewise.
3327 * ser-tcp.c (_initialize_ser_tcp): Likewise.
3328 * serial.c (_initialize_serial): Likewise.
3329 * skip.c (_initialize_step_skip): Likewise.
3330 * source.c (_initialize_source): Likewise.
3331 * stack.c (_initialize_stack): Likewise.
3332 * symfile.c (_initialize_symfile): Likewise.
3333 * symtab.c (_initialize_symtab): Likewise.
3334 * target-descriptions.c (_initialize_target_descriptions): Likewise.
3335 * top.c (init_main): Likewise.
3336 * tracefile-tfile.c (tfile_target_info): Likewise.
3337 * tracepoint.c (_initialize_tracepoint): Likewise.
3338 * tui/tui-win.c (_initialize_tui_win): Likewise.
3339 * utils.c (add_internal_problem_command): Likewise.
3340 * valprint.c (value_print_option_defs): Likewise.
3341
3342 2019-08-06 Frank Ch. Eigler <fche@redhat.com>
3343
3344 PR build/24886
3345 * configure.ac: Drop enable-libmcheck support.
3346 * configure, config.in: Rebuild.
3347 * libmcheck.m4: Remove.
3348 * acinclude.m4: Don't include it.
3349 * Makefile.in: Don't distribute it.
3350 * top.c (print_gdb_configuration): Don't mention it.
3351
3352 2019-08-06 Tom Tromey <tom@tromey.com>
3353
3354 * utils.c (set_output_style): Sometimes pass stream to
3355 emit_style_escape.
3356 * ui-out.h (class ui_out) <can_emit_style_escape>: Declare.
3357 * record-btrace.c (btrace_insn_history): Update.
3358 * mi/mi-out.h (class mi_ui_out) <can_emit_style_escape>: New
3359 method.
3360 * disasm.h (gdb_pretty_print_disassembler): Add uiout parameter.
3361 Update initializers.
3362 <m_uiout>: New field.
3363 <m_di>: Move lower.
3364 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn):
3365 Remove "uiout" parameter.
3366 (dump_insns): Update.
3367 * cli-out.h (class cli_ui_out) <can_emit_style_escape>: Declare.
3368 * cli-out.c (cli_ui_out::can_emit_style_escape): New method.
3369
3370 2019-08-06 Christian Biesinger <cbiesinger@google.com>
3371
3372 * symtab.c (symbol_cache_lookup): Change int to enum block_enum.
3373 (error_in_psymtab_expansion): Likewise.
3374 (lookup_symbol_via_quick_fns): Likewise.
3375 (basic_lookup_transparent_type_quick): Likewise.
3376 (basic_lookup_transparent_type_1): Likewise.
3377
3378 2019-08-06 Tom Tromey <tromey@adacore.com>
3379
3380 * source.c (last_source_error): Now bool.
3381 (print_source_lines_base): Make "noprint" bool. Only open
3382 source file when last_source_visited changes.
3383
3384 2019-08-06 Tom Tromey <tromey@adacore.com>
3385
3386 * annotate.c (annotate_source_line): Use g_source_cache.
3387 * source-cache.c (source_cache::get_plain_source_lines): Change
3388 parameters. Populate m_offset_cache.
3389 (source_cache::ensure): New method.
3390 (source_cache::get_line_charpos): New method.
3391 (extract_lines): Move lower. Change parameters.
3392 (source_cache::get_source_lines): Move lower.
3393 * source-cache.h (class source_cache): Update comment.
3394 <get_line_charpos>: New method.
3395 <get_source_lines>: Update comment.
3396 <clear>: Clear m_offset_cache.
3397 <get_plain_source_lines>: Change parameters.
3398 <ensure>: New method
3399 <m_offset_cache>: New member.
3400 * source.c (forget_cached_source_info_for_objfile): Update.
3401 (info_source_command): Use g_source_cache.
3402 (find_source_lines, open_source_file_with_line_charpos): Remove.
3403 (print_source_lines_base, search_command_helper): Use g_source_cache.
3404 * source.h (open_source_file_with_line_charpos): Don't declare.
3405 * symtab.h (struct symtab) <nlines, line_charpos>: Remove.
3406 * tui/tui-source.c (tui_source_window::do_scroll_vertical):
3407 Use g_source_cache.
3408
3409 2019-08-06 Tom Tromey <tromey@adacore.com>
3410
3411 * source-cache.c (source_cache::get_plain_source_lines):
3412 Remove "first_line" and "last_line" parameters.
3413 (source_cache::get_source_lines): Cache plain text.
3414 * source-cache.h (class source_cache)
3415 <get_plain_source_lines>: Update.
3416
3417 2019-08-06 Tom Tromey <tromey@adacore.com>
3418
3419 * source-cache.c (extract_lines): No longer a method.
3420 Changed type of parameter. Include final newline.
3421 (selftests::extract_lines_test): New function.
3422 (_initialize_source_cache): Likewise.
3423 * source-cache.h (class source_cache)
3424 <extract_lines>: Don't declare.
3425
3426 2019-08-06 Tom Tromey <tromey@adacore.com>
3427
3428 * breakpoint.c (init_breakpoint_sal): Update.
3429 (breakpoint): Update.
3430 * breakpoint.h (struct breakpoint) <filter>: Now a
3431 unique_xmalloc_ptr.
3432
3433 2019-08-05 Christian Biesinger <cbiesinger@google.com>
3434
3435 * NEWS: Mention dictionary access on blocks.
3436 * python/py-block.c (blpy_getitem): New function.
3437 (block_object_as_mapping): New struct.
3438 (block_object_type): Use new struct for tp_as_mapping field.
3439
3440 2019-08-05 Christian Biesinger <cbiesinger@google.com>
3441
3442 * objfiles.h (objfile): Add a comment describing partial symbols.
3443
3444 2019-08-05 Tom Tromey <tromey@adacore.com>
3445
3446 * compile/compile.c (_initialize_compile): Use _(), not N_().
3447 * thread.c (_initialize_thread): Use _(), not N_().
3448 * stack.c (_initialize_stack): Use _(), not N_().
3449 * printcmd.c (_initialize_printcmd): Use _(), not N_().
3450
3451 2019-08-04 Simon Marchi <simon.marchi@polymtl.ca>
3452
3453 * dwarf2read.c (struct dw2_symtab_iterator):
3454 <want_specific_block>: Remove.
3455 <block_index>: Change type to gdb::optional.
3456 (dw2_symtab_iter_init): Remove WANT_SPECIFIC_BLOCK parameter,
3457 change type of BLOCK_INDEX parameter to gdb::optional.
3458 (dw2_symtab_iter_next): Re-write in function of gdb::optional.
3459 (dw2_lookup_symbol): Don't pass argument for
3460 WANT_SPECIFIC_BLOCK.
3461 (dw2_expand_symtabs_for_function): Don't pass argument for
3462 WANT_SPECIFIC_BLOCK, pass empty optional for BLOCK_INDEX.
3463 (class dw2_debug_names_iterator)
3464 <dw2_debug_names_iterator>: Remove WANT_SPECIFIC_BLOCK
3465 parameter, change BLOCK_INDEX type to gdb::optional.
3466 <m_want_specific_block>: Remove.
3467 <m_block_index>: Change type to gdb::optional.
3468 (dw2_debug_names_iterator::next): Change type of IS_STATIC to
3469 gdb::optional. Re-write in function of gdb::optional.
3470 (dw2_debug_names_lookup_symbol): Don't pass argument for
3471 WANT_SPECIFIC_BLOCK.
3472 (dw2_debug_names_expand_symtabs_for_function): Don't pass
3473 argument for WANT_SPECIFIC_BLOCK, pass empty optional for
3474 BLOCK_INDEX.
3475
3476 2019-08-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
3477
3478 * NEWS: Mention changes to "info sources" command.
3479
3480 2019-08-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
3481
3482 * symtab.c (filename_partial_match_opts): New struct type.
3483 (struct output_source_filename_data): New members
3484 regexp, c_regexp, partial_match.
3485 (output_source_filename): Use new members to decide to print file.
3486 (info_sources_option_defs): New variable.
3487 (make_info_sources_options_def_group, print_info_sources_header,
3488 info_sources_command_completer):
3489 New functions.
3490 (info_sources_command): Read new optional arguments.
3491 (_initialize_symtab): Update info sources help.
3492
3493 2019-08-02 Alexandre Oliva <oliva@adacore.com>
3494
3495 * ada-lang.c (exception_support_info_v0): Renamed from...
3496 (default_exception_support_info): ... this. Create new
3497 definition for v1.
3498 (ada_has_this_exception_support): Look up catch_handlers_sym.
3499 (ada_exception_support_info_sniffer): Try v0 after default.
3500
3501 2019-08-01 Tom Tromey <tromey@adacore.com>
3502
3503 * ia64-libunwind-tdep.h (struct libunwind_descr): Include
3504 gdbarch.h.
3505
3506 2019-08-01 Christian Biesinger <cbiesinger@google.com>
3507
3508 * s12z-tdep.c: Fix include path for s12z-opc.h.
3509
3510 2019-08-01 Alan Hayward <alan.hayward@arm.com>
3511
3512 * NEWS: Require GNU make 3.82.
3513
3514 2019-07-16 Tom Tromey <tom@tromey.com>
3515
3516 * tui/tui-wingeneral.h (tui_copy_win, tui_box_win): Don't
3517 declare.
3518
3519 2019-07-30 Tom Tromey <tromey@adacore.com>
3520
3521 * block.c (contained_in): Remove BLOCK_FUNCTION check.
3522
3523 2019-07-30 Kevin Buettner <kevinb@redhat.com>
3524
3525 * printcmd.c (print_address_symbolic): Print negative offsets.
3526 (build_address_symbolic): Force signed arithmetic when computing
3527 offset.
3528
3529 2019-07-30 Christian Biesinger <cbiesinger@google.com>
3530
3531 PR/24474: Add a function to lookup static variables.
3532 * NEWS: Mention this new function.
3533 * python/py-symbol.c (gdbpy_lookup_static_symbol): New function.
3534 * python/python-internal.h (gdbpy_lookup_static_symbol): New function.
3535 * python/python.c (python_GdbMethods): Add new function.
3536
3537 2019-07-29 Christian Biesinger <cbiesinger@google.com>
3538
3539 * NEWS: Mention new functions Objfile.lookup_{global,static}_symbol.
3540 * python/py-objfile.c (objfpy_lookup_global_symbol): New function.
3541 (objfpy_lookup_static_symbol): New function.
3542 (objfile_object_methods): Add new functions.
3543
3544 2019-07-29 Philippe Waroquiers <philippe.waroquiers@skynet.be>
3545
3546 * NEWS: Mention 'set|show print frame-info'. Mention new
3547 'presence' value for 'frame-arguments'. Mention new '-frame-info'
3548 backtrace argument. Mention that python frame filtering code
3549 is now consistent with what 'backtrace' command prints.
3550
3551 2019-07-29 Philippe Waroquiers <philippe.waroquiers@skynet.be>
3552
3553 * frame.h (enum print_what): New value 'SHORT_LOCATION', update
3554 comments.
3555 (print_frame_info_auto, print_frame_info_source_line,
3556 print_frame_info_location, print_frame_info_source_and_location,
3557 print_frame_info_location_and_address, print_frame_info_short_location):
3558 New declarations.
3559 (struct frame_print_options): New member print_frame_info.
3560 * extension.h (enum ext_lang_frame_args): New value CLI_PRESENCE.
3561 * stack.h (get_user_print_what_frame_info): New declaration.
3562 (frame_show_address): New declaration.
3563 * stack.c (print_frame_arguments_choices): New value 'presence'.
3564 (print_frame_info_auto, print_frame_info_source_line,
3565 print_frame_info_location, print_frame_info_source_and_location,
3566 print_frame_info_location_and_address, print_frame_info_short_location,
3567 print_frame_info_choices, print_frame_info_print_what): New definitions.
3568 (print_frame_args): Only print dots for args if print frame-arguments
3569 is 'presence'.
3570 (frame_print_option_defs): New element for "frame-info".
3571 (get_user_print_what_frame_info): New function.
3572 (frame_show_address): Make non static. Move comment to stack.h.
3573 (print_frame_info_to_print_what): New function.
3574 (print_frame_info): Update comment. Use fp_opts.print_frame_info
3575 to decide what to print.
3576 (backtrace_command_1): Handle the new print_frame_arguments_presence
3577 value.
3578 (_initialize_stack): Call add_setshow_enum_cmd for frame-info.
3579 * python/py-framefilter.c (py_print_args): Handle CLI_PRESENCE.
3580 (py_print_frame): In non-mi mode, use LOCATION as default for
3581 print_what, similarly to frame information printed directly by
3582 backtrace command. Handle frame-info user option in non MI mode.
3583
3584 2019-07-27 Kevin Buettner <kevinb@redhat.com>
3585
3586 * linux-thread-db.c (thread_db_target::thread_handle_to_thread_info):
3587 Add case for debugging 32-bit target on 64-bit host. Revise
3588 comment.
3589
3590 2019-07-27 Kevin Buettner <kevinb@redhat.com>
3591
3592 * infrun.c (fill_in_stop_func): Use find_pc_partial_function
3593 instead of find_function_entry_range_from_pc.
3594
3595 2019-07-27 Kevin Buettner <kevinb@redhat.com>
3596
3597 * stack.c (find_frame_funname): Remove code which preferred
3598 minsym over symtab sym in "certain pathological cases".
3599
3600 * valprint.h (build_address_symbolic): Add "prefer_sym_over_minsym"
3601 parameter. Change type of "do_demangle" to bool.
3602 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn):
3603 Pass suitable "prefer_sym_over_minsym" flag to
3604 build_address_symbolic(). Don't output "+" for negative offsets.
3605 * printcmd.c (print_address_symbolic): Update invocation of
3606 build_address_symbolic to include a "prefer_sym_over_minsym"
3607 flag.
3608 (build_address_symbolic): Add "prefer_sym_over_minsym" parameter.
3609 Restrict cases in which use of minimal symbol is preferred to that
3610 of a found symbol. Update comments.
3611
3612 * dwarf2-frame.c (dwarf2_frame_cache): Don't decode FDE instructions
3613 for entry pc when entry pc is out of range for that FDE.
3614
3615 2019-07-26 Brian Callahan <bcallah@openbsd.org>
3616
3617 PR gdb/24839:
3618 * gdb/obsd-nat.c (obsd_nat_target::pid_to_str): Fix typo in return
3619 type.
3620
3621 2019-07-25 Christian Biesinger <cbiesinger@google.com>
3622
3623 * python/py-objfile.c (add_separate_debug_file): Fix comment about
3624 this function's Python signature.
3625
3626
3627 2019-07-24 Christian Biesinger <cbiesinger@google.com>
3628
3629 * compile/compile-object-load.c (compile_object_load): Pass GLOBAL_SCOPE.
3630 * solib-spu.c (spu_lookup_lib_symbol): Pass GLOBAL_SCOPE.
3631 * solib-svr4.c (elf_lookup_lib_symbol): Pass GLOBAL_SCOPE.
3632 * symtab.c (lookup_global_symbol_from_objfile): Add a scope parameter.
3633 * symtab.h (lookup_global_symbol_from_objfile): Likewise.
3634
3635
3636 2019-07-24 Yoshinori Sato <ysato@users.sourceforge.jp>
3637
3638 * h8300-tdep.c (h8300_register_name_common): New.
3639 h8300_register_name): Use h8300_register_name_common.
3640 (h8300s_register_name): Likewise.
3641 (h8300sx_register_name): Likewise.
3642 (h8300h_register_nam): New.
3643 (h8300_gdbarch_init): Use h8300h_register_name in h8300h machine.
3644
3645
3646 2019-07-23 Srinath Parvathaneni <srinath.parvathaneni@arm.com>
3647
3648 * arm-tdep.c (arm_skip_cmse_entry): New function.
3649 (arm_is_sgstubs_section): New function.
3650 (arm_skip_stub): Add call to arm_skip_cmse_entry function.
3651
3652 2019-07-22 Tom Tromey <tom@tromey.com>
3653
3654 * tui/tui-win.c (tui_win_info::make_invisible_and_set_new_height):
3655 Don't self-assign.
3656
3657 2019-07-22 Andrew Burgess <andrew.burgess@embecosm.com>
3658
3659 * c-typeprint.c (c_print_typedef): Pass -1 instead of 0 to
3660 type_print.
3661
3662 2019-07-22 Andrew Burgess <andrew.burgess@embecosm.com>
3663
3664 * symtab.c (search_symbols): Adjust msymbol matching type arrays
3665 so that GDB doesn't match any msymbols when searching in the
3666 TYPES_DOMAIN.
3667 (print_symbol_info): Print using typedef_print or type_print based
3668 on the type of the symbol. Add updated FIXME comment moved from...
3669 (_initialize_symtab): ... move and update FIXME comment to above.
3670
3671 2019-07-22 Andrew Burgess <andrew.burgess@embecosm.com>
3672
3673 * NEWS: Mention adding -q option to "info types".
3674 * symtab.c (struct info_types_options): New struct.
3675 (info_types_options_defs): New variable.
3676 (make_info_types_options_def_group): New function.
3677 (info_types_command): Use gdb::option framework to parse options.
3678 (info_types_command_completer): New function.
3679 (_initialize_symtab): Extend the help text on "info types" and
3680 register command completer.
3681
3682 2019-07-21 Christian Biesinger <cbiesinger@google.com>
3683
3684 * symtab.c (lookup_symbol_in_objfile_symtabs): Change int to block_enum.
3685 (lookup_symbol_in_objfile): Change int to block_enum and add a
3686 gdb_assert to make sure block_index is GLOBAL_BLOCK or STATIC_BLOCK.
3687
3688 2019-07-20 Christian Biesinger <cbiesinger@google.com>
3689
3690 * MAINTAINERS (Write After Approval): Add self.
3691
3692 2019-07-19 Andrew Burgess <andrew.burgess@embecosm.com>
3693
3694 * riscv-tdep.c (riscv_push_dummy_code): Write a 4-byte nop
3695 instruction to the dummy code region.
3696
3697 2019-07-19 Tom Tromey <tromey@adacore.com>
3698
3699 * contrib/ari/gdb_ari.sh: Mention C++11, not ISO C 90.
3700 (ARGSUSED, PARAMS, __func__): Remove rules.
3701
3702 2019-07-19 Alan Hayward <alan.hayward@arm.com>
3703
3704 * arm-tdep.c (_initialize_arm_tdep): Remove xml tests.
3705 * features/arm/arm-with-iwmmxt.c: Remove.
3706 * features/arm/arm-with-iwmmxt.xml: Remove.
3707 * features/arm/arm-with-m-fpa-layout.c: Remove.
3708 * features/arm/arm-with-m-fpa-layout.xml: Remove.
3709 * features/arm/arm-with-m-vfp-d16.c: Remove.
3710 * features/arm/arm-with-m-vfp-d16.xml: Remove.
3711 * features/arm/arm-with-m.c: Remove.
3712 * features/arm/arm-with-m.xml: Remove.
3713 * features/arm/arm-with-neon.c: Remove.
3714 * features/arm/arm-with-neon.xml: Remove.
3715 * features/arm/arm-with-vfpv2.c: Remove.
3716 * features/arm/arm-with-vfpv2.xml: Remove.
3717 * features/arm/arm-with-vfpv3.c: Remove.
3718 * features/arm/arm-with-vfpv3.xml: Remove.
3719
3720 2019-07-19 Alan Hayward <alan.hayward@arm.com>
3721
3722 * arm-tdep.c (_initialize_arm_tdep): Add xml regression tests.
3723
3724 2019-07-19 Alan Hayward <alan.hayward@arm.com>
3725
3726 * arch/aarch32.c (aarch32_create_target_description): Create
3727 target descriptions using features.
3728 * arch/arm.c (arm_create_target_description)
3729 (arm_create_mprofile_target_description): Likewise.
3730 * arm-tdep.c (_initialize_arm_tdep): Remove tdesc init calls.
3731
3732 2019-07-19 Alan Hayward <alan.hayward@arm.com>
3733
3734 * Makefile.in: Add new files.
3735 * aarch32-tdep.c: New file.
3736 * aarch32-tdep.h: New file.
3737 * aarch64-linux-nat.c (aarch64_linux_nat_target::read_description):
3738 Call aarch32_read_description.
3739 * arch/aarch32.c: New file.
3740 * arch/aarch32.h: New file.
3741 * arch/arm.c (arm_create_target_description)
3742 (arm_create_mprofile_target_description): New function.
3743 * arch/arm.h (arm_fp_type, arm_m_profile_type): New enum.
3744 (arm_create_target_description)
3745 (arm_create_mprofile_target_description): New declaration.
3746 * arm-fbsd-tdep.c (arm_fbsd_read_description_auxv): Call
3747 read_description functions.
3748 * arm-linux-nat.c (arm_linux_nat_target::read_description):
3749 Likewise.
3750 * arm-linux-tdep.c (arm_linux_core_read_description): Likewise.
3751 * arm-tdep.c (tdesc_arm_list): New variable.
3752 (arm_register_g_packet_guesses): Call create description functions.
3753 (arm_read_description) (arm_read_mprofile_description): New
3754 function.
3755 * arm-tdep.h (arm_read_description)
3756 (arm_read_mprofile_description): Add declaration.
3757 * configure.tgt: Add new files.
3758
3759 2019-07-18 Guillaume LABARTHE <guillaume.labarthe@gmail.com>
3760
3761 * top.c (new_ui_command): Open specified terminal just once.
3762
3763 2019-07-18 Tom Tromey <tromey@adacore.com>
3764
3765 * symtab.c (main_name): Constify return type.
3766 * symfile.c (set_initial_language): Update.
3767 * symtab.h (main_name): Constify return type.
3768
3769 2019-07-17 Tom Tromey <tom@tromey.com>
3770
3771 * tui/tui-winsource.c (tui_update_source_window)
3772 (tui_update_source_window_as_is)
3773 (tui_update_source_windows_with_line): Remove return.
3774 * tui/tui-disasm.c (tui_show_disassem)
3775 (tui_show_disassem_and_update_source): Remove return.
3776 * tui/tui.c (tui_reset): Remove return.
3777 * tui/tui-wingeneral.c
3778 (tui_check_and_display_highlight_if_needed): Remove return.
3779
3780 2019-07-17 Tom Tromey <tom@tromey.com>
3781
3782 * tui/tui-win.c (parse_scrolling_args): Throw separate errors.
3783
3784 2019-07-17 Tom Tromey <tom@tromey.com>
3785
3786 * tui/tui-winsource.h (struct tui_exec_info_window)
3787 (struct tui_source_window_base): Move from tui-data.h.
3788 * tui/tui-winsource.c: Move many method definitions from
3789 elsewhere. Remove "structuring" comments.
3790 * tui/tui-wingeneral.c (tui_source_window_base::make_visible)
3791 (tui_source_window_base::refresh_window): Move to
3792 tui-winsource.c.
3793 * tui/tui-win.c (tui_source_window_base::refresh_all)
3794 (tui_source_window_base::update_tab_width)
3795 (tui_source_window_base::set_new_height)
3796 (tui_source_window_base::do_make_visible_with_new_height): Move to
3797 tui-winsource.c.
3798 * tui/tui-source.h: Update.
3799 * tui/tui-source.c (tui_source_window_base::reset): Move to
3800 tui-winsource.c.
3801 * tui/tui-disasm.h: Update.
3802 * tui/tui-data.h (struct tui_exec_info_window): Move to
3803 tui-winsource.h.
3804 (struct tui_source_window_base): Likewise.
3805 * tui/tui-data.c (tui_source_window_base::clear_detail)
3806 (tui_source_window_base, ~tui_source_window_base): Move to
3807 tui-winsource.c.
3808
3809 2019-07-17 Tom Tromey <tom@tromey.com>
3810
3811 * tui/tui-win.c (tui_resize_all)
3812 (tui_source_window_base::update_tab_width)
3813 (tui_adjust_win_heights): Update.
3814 (tui_win_info::make_invisible_and_set_new_height): Rename from
3815 make_invisible_and_set_new_height.
3816 * tui/tui-data.h (struct tui_win_info)
3817 <make_invisible_and_set_new_height>: New method.
3818
3819 2019-07-17 Tom Tromey <tom@tromey.com>
3820
3821 * tui/tui.c: Update.
3822 * tui/tui-source.h (struct tui_source_window): Move from
3823 tui-data.h.
3824 * tui/tui-layout.c: Update.
3825 * tui/tui-disasm.c: Update.
3826 * tui/tui-data.h (struct tui_source_window): Move to
3827 tui-source.h.
3828
3829 2019-07-17 Tom Tromey <tom@tromey.com>
3830
3831 * tui/tui-disasm.h (struct tui_disasm_window): Move from
3832 tui-data.h.
3833 * tui/tui-data.h (struct tui_disasm_window): Move to
3834 tui-disasm.h.
3835
3836 2019-07-17 Tom Tromey <tom@tromey.com>
3837
3838 * tui/tui-regs.h (struct tui_data_item_window): Move from
3839 tui-data.h.
3840 * tui/tui-regs.c (tui_data_item_window): Move from tui-data.c.
3841 * tui/tui-data.h (struct tui_data_item_window): Move to
3842 tui-regs.h.
3843 * tui/tui-data.c (~tui_data_item_window): Move to tui-regs.c.
3844
3845 2019-07-17 Tom Tromey <tom@tromey.com>
3846
3847 * tui/tui.c: Update.
3848 * tui/tui-win.c (tui_cmd_window::do_make_visible_with_new_height)
3849 (tui_cmd_window::max_height): Move to tui-command.c.
3850 * tui/tui-layout.c: Update.
3851 * tui/tui-data.h (struct tui_cmd_window): Move to tui-command.h.
3852 * tui/tui-data.c (tui_cmd_window::clear_detail): Move to
3853 tui-command.c.
3854 * tui/tui-command.h (struct tui_cmd_window): Move from
3855 tui-data.h.
3856 * tui/tui-command.c: Remove "structuring" comments.
3857 (tui_cmd_window::clear_detail)
3858 (tui_cmd_window::do_make_visible_with_new_height)
3859 (tui_cmd_window::max_height): Move from elsewhere.
3860
3861 2019-07-17 Tom Tromey <tom@tromey.com>
3862
3863 * tui/tui-io.c (tui_dispatch_ctrl_char): Move from tui-command.c.
3864 Now static.
3865 * tui/tui-command.h (tui_dispatch_ctrl_char): Don't declare.
3866 * tui/tui-command.c (tui_dispatch_ctrl_char): Move to tui-io.c.
3867
3868 2019-07-17 Tom Tromey <tom@tromey.com>
3869
3870 * tui/tui.c: Update.
3871 * tui/tui-wingeneral.c (tui_data_window::refresh_window): Move to
3872 tui-regs.c.
3873 * tui/tui-windata.h: Remove file.
3874 * tui/tui-windata.c: Remove file.
3875 * tui/tui-win.c (tui_data_window::set_new_height)
3876 (tui_data_window::do_make_visible_with_new_height): Move to
3877 tui-regs.c.
3878 * tui/tui-regs.h (struct tui_data_window): Move from tui-data.h.
3879 * tui/tui-regs.c: Remove "structuring" comments.
3880 (tui_data_window::first_data_item_displayed)
3881 (tui_data_window::delete_data_content_windows)
3882 (tui_data_window::erase_data_content)
3883 (tui_data_window::display_all_data)
3884 (tui_data_window::refresh_all)
3885 (tui_data_window::do_scroll_vertical)
3886 (tui_data_window::clear_detail, tui_data_window::set_new_height)
3887 (tui_data_window::do_make_visible_with_new_height)
3888 (tui_data_window::refresh_window): Move from elsewhere.
3889 (_initialize_tui_regs): Move to end of file.
3890 * tui/tui-layout.c: Update.
3891 * tui/tui-hooks.c: Update.
3892 * tui/tui-data.h (struct tui_data_window): Move to tui-regs.h.
3893 * tui/tui-data.c (tui_data_window::clear_detail): Move to
3894 tui-regs.c.
3895 * Makefile.in (SUBDIR_TUI_SRCS): Remove tui-windata.c.
3896
3897 2019-07-17 Tom Tromey <tom@tromey.com>
3898
3899 * tui/tui-io.c (tui_puts_internal): Call wrefresh if newline is
3900 seen.
3901
3902 2019-07-17 Tom Tromey <tom@tromey.com>
3903
3904 * tui/tui-win.c (tui_source_window_base::set_new_height)
3905 (tui_source_window_base::do_make_visible_with_new_height): Use
3906 m_has_locator field directly.
3907 * tui/tui-data.h (struct tui_win_info) <has_locator>: Remove
3908 method.
3909 (struct tui_source_window_base) <has_locator>: Likewise.
3910
3911 2019-07-17 Tom Tromey <tom@tromey.com>
3912
3913 * tui/tui-wingeneral.h (tui_make_visible, tui_make_invisible):
3914 Don't declare.
3915 * tui/tui-wingeneral.c (tui_make_visible, tui_make_invisible):
3916 Remove.
3917 * tui/tui-win.c (tui_source_window_base::set_new_height)
3918 (tui_source_window_base::set_new_height)
3919 (make_invisible_and_set_new_height)
3920 (tui_source_window_base::do_make_visible_with_new_height)
3921 (tui_source_window_base::do_make_visible_with_new_height):
3922 Update.
3923 * tui/tui-layout.c (show_source_disasm_command, show_data)
3924 (show_source_or_disasm_and_command): Update.
3925 * tui/tui-layout.c (show_layout): Update.
3926
3927 2019-07-17 Tom Tromey <tom@tromey.com>
3928
3929 * tui/tui-layout.c (make_data_window): Remove.
3930 (show_data): Unify creation and re-initialization cases.
3931
3932 2019-07-17 Tom Tromey <tom@tromey.com>
3933
3934 * tui/tui-layout.c (make_source_window, make_disasm_window):
3935 Remove.
3936 (show_data): Unify creation and re-initialization cases.
3937
3938 2019-07-17 Tom Tromey <tom@tromey.com>
3939
3940 * tui/tui-layout.c (make_command_window): Remove.
3941 (show_source_disasm_command, show_source_or_disasm_and_command):
3942 Unify creation and re-initialization cases.
3943
3944 2019-07-17 Tom Tromey <tom@tromey.com>
3945
3946 * tui/tui-layout.c (show_source_or_disasm_and_command): Unify
3947 creation and re-initialization cases.
3948
3949 2019-07-17 Tom Tromey <tom@tromey.com>
3950
3951 * tui/tui-regs.c (tui_get_register): Return void.
3952
3953 2019-07-17 Tom Tromey <tom@tromey.com>
3954
3955 * tui/tui-wingeneral.c (tui_gen_win_info::make_visible):
3956 Simplify.
3957
3958 2019-07-17 Tom Tromey <tom@tromey.com>
3959
3960 * tui/tui-layout.c (show_source_disasm_command): Simplify window
3961 resetting.
3962
3963 2019-07-17 Tom Tromey <tom@tromey.com>
3964
3965 * tui/tui.h (tui_set_layout_by_name): Don't declare.
3966 * tui/tui-regs.c (tui_reg_layout): New function.
3967 (tui_show_registers, tui_reg_command): Use it.
3968 * tui/tui-layout.c (LAYOUT_USAGE): Remove.
3969 (tui_layout_command): Rename from tui_set_layout_by_name. Change
3970 parameters.
3971 (tui_layout_command): Remove.
3972
3973 2019-07-17 Tom Tromey <tom@tromey.com>
3974
3975 * tui/tui-layout.h (tui/tui-layout): Return void.
3976 * tui/tui-layout.c (tui_set_layout): Return void. Add assert.
3977
3978 2019-07-17 Tom Tromey <tom@tromey.com>
3979
3980 * tui/tui-layout.c (show_source_disasm_command, show_data):
3981 Update.
3982 (reset_locator): Remove.
3983 (show_source_or_disasm_and_command): Update.
3984
3985 2019-07-17 Tom Tromey <tom@tromey.com>
3986
3987 * tui/tui-source.c (tui_source_window_base::reset): Remove
3988 win_type parameter.
3989 * tui/tui-layout.c (make_command_window, make_source_window)
3990 (make_disasm_window, make_data_window)
3991 (show_source_disasm_command, show_data, tui_gen_win_info::reset)
3992 (reset_locator, show_source_or_disasm_and_command): Update.
3993 * tui/tui-data.h (struct tui_gen_win_info) <reset>: Remove
3994 win_type parameter.
3995 (struct tui_source_window_base) <reset>: Likewise.
3996
3997 2019-07-17 Tom Tromey <tom@tromey.com>
3998
3999 * tui/tui-layout.c (show_source_disasm_command): Use
4000 reset_locator.
4001 (reset_locator): New function.
4002 (init_and_make_win): Remove.
4003 (show_source_or_disasm_and_command): Use reset_locator.
4004
4005 2019-07-17 Tom Tromey <tom@tromey.com>
4006
4007 * tui/tui-winsource.c (tui_set_exec_info_content): Remove
4008 condition.
4009 * tui/tui-wingeneral.c (tui_source_window_base::make_visible):
4010 Remove condition.
4011 * tui/tui-source.c (tui_source_window_base::reset): New method.
4012 * tui/tui-layout.c (make_command_window): Don't call
4013 init_and_make_win.
4014 (make_source_window, make_disasm_window): Don't call
4015 make_source_or_disasm_window.
4016 (make_data_window): Don't call init_and_make_win. Change calling
4017 convention.
4018 (show_source_disasm_command, show_data): Simplify.
4019 (make_source_or_disasm_window): Remove.
4020 (show_source_or_disasm_and_command): Simplify.
4021 * tui/tui-data.h (struct tui_gen_win_info) <reset>: Now virtual.
4022 (struct tui_source_window_base) <reset>: Likewise.
4023 <execution_info>: Remove initializer.
4024 * tui/tui-data.c (tui_source_window_base): Initialize
4025 execution_info.
4026
4027 2019-07-17 Tom Tromey <tom@tromey.com>
4028
4029 * tui/tui-layout.c (tui_set_layout): Remove regs_populate
4030 variable.
4031
4032 2019-07-17 Tom Tromey <tom@tromey.com>
4033
4034 * tui/tui.c (tui_rl_other_window): Update.
4035 * tui/tui-wingeneral.c (tui_data_window::refresh_window): Call
4036 superclass method first. Always iterate over regs_content.
4037 (tui_unhighlight_win, tui_highlight_win): Use refresh_window
4038 method.
4039 * tui/tui-win.c (tui_set_focus_command): Update.
4040
4041 2019-07-17 Tom Tromey <tom@tromey.com>
4042
4043 * tui/tui-win.c (tui_set_focus_command): Rename from
4044 tui_set_focus. Call tui_enable.
4045 (tui_set_focus_command): Remove.
4046
4047 2019-07-17 Tom Tromey <tom@tromey.com>
4048
4049 * tui/tui-winsource.c (tui_show_exec_info_content): Don't call
4050 refresh_window.
4051 * tui/tui-wingeneral.c (tui_gen_win_info::refresh_window): Call
4052 touchwin.
4053 (tui_data_window::refresh_window): Call refresh_window on data
4054 items. Always call superclass refresh_window.
4055 (tui_win_info::refresh): Remove.
4056 (tui_source_window_base::refresh_window): Update.
4057 (tui_refresh_all): Update.
4058 * tui/tui-layout.c (show_source_disasm_command): Remove call to
4059 refresh_window.
4060 (show_source_or_disasm_and_command): Likewise.
4061 * tui/tui-data.h (struct tui_win_info) <refresh>: Remove.
4062 (struct tui_source_window_base) <refresh>: Likewise.
4063
4064 2019-07-17 Tom Tromey <tom@tromey.com>
4065
4066 * tui/tui-winsource.c (tui_clear_source_content)
4067 (tui_show_source_content): Update.
4068 * tui/tui-source.c (tui_source_window::showing_source_p): Check
4069 whether content is empty.
4070 * tui/tui-data.h (struct tui_source_window_base) <content_in_use>:
4071 Remove.
4072
4073 2019-07-17 Tom Tromey <tom@tromey.com>
4074
4075 * tui/tui-winsource.c (tui_erase_source_content): Clear the
4076 window's contents.
4077 * tui/tui-source.h (tui_set_source_content_nil): Don't declare.
4078 * tui/tui-source.c (tui_set_source_content_nil): Remove.
4079
4080 2019-07-17 Tom Tromey <tom@tromey.com>
4081
4082 * tui/tui-data.h (UNDEFINED_ITEM): Remove define.
4083 (struct tui_data_item_window): Update.
4084
4085 2019-07-17 Tom Tromey <tom@tromey.com>
4086
4087 * tui/tui-data.h (MAX_CONTENT_COUNT, TUI_NULL_STR)
4088 (DEFAULT_HISTORY_COUNT, WITH_LOCATOR, NO_LOCATOR): Remove
4089 defines.
4090
4091 2019-07-17 Tom Tromey <tom@tromey.com>
4092
4093 * tui/tui-winsource.h (tui_erase_source_content)
4094 (tui_clear_source_content): Remove "display_prompt" parameter.
4095 * tui/tui-winsource.c (tui_update_source_window_as_is)
4096 (tui_update_source_windows_with_addr): Update.
4097 (tui_clear_source_content): Remove "display_prompt" parameter.
4098 (tui_erase_source_content): Likewise. Simplify.
4099 (tui_show_source_content): Update.
4100 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Update.
4101 * tui/tui-stack.c (tui_show_frame_info): Update.
4102 * tui/tui-data.h (EMPTY_SOURCE_PROMPT, NO_EMPTY_SOURCE_PROMPT):
4103 Remove defines.
4104
4105 2019-07-17 Tom Tromey <tom@tromey.com>
4106
4107 * tui/tui-winsource.c (tui_update_source_window_as_is): Update.
4108 * tui/tui-disasm.h (tui_set_disassem_content): Add win_info
4109 parameter.
4110 * tui/tui-disasm.c (tui_set_disassem_content): Add win_info
4111 parameter.
4112
4113 2019-07-17 Tom Tromey <tom@tromey.com>
4114
4115 * tui/tui-winsource.c (tui_clear_source_content)
4116 (tui_show_source_content, tui_show_exec_info_content)
4117 (tui_clear_exec_info_content): Update.
4118 * tui/tui-stack.c (tui_show_locator_content): Update.
4119 (tui_show_frame_info): Update.
4120 * tui/tui-source.h (tui_source_window): Don't declare.
4121 * tui/tui-source.c (tui_source_window::showing_source_p): Rename
4122 from tui_source_is_displayed.
4123 * tui/tui-data.h (struct tui_gen_win_info) <content_in_use>:
4124 Remove field.
4125 (struct tui_source_window_base) <content_in_use>: New field. Now
4126 bool.
4127 (struct tui_source_window) <showing_source_p>: New method.
4128 (TUI_SRC_WIN): Change cast.
4129 * tui/tui-data.c (tui_initialize_static_data): Update.
4130
4131 2019-07-17 Tom Tromey <tom@tromey.com>
4132
4133 * tui/tui-winsource.c (tui_update_breakpoint_info): Use
4134 location_matches_p.
4135 * tui/tui-source.c (tui_source_window::location_matches_p): New
4136 method.
4137 * tui/tui-disasm.c (tui_disasm_window::location_matches_p): New
4138 method.
4139 * tui/tui-data.h (struct tui_source_window_base)
4140 <location_matches_p>: New method.
4141 (struct tui_source_window, struct tui_disasm_window)
4142 <location_matches_p>: Likewise.
4143
4144 2019-07-17 Tom Tromey <tom@tromey.com>
4145
4146 * tui/tui-win.c (tui_set_win_height_command): Rename from
4147 tui_set_win_height.
4148 (tui_set_win_height_command): Remove.
4149
4150 2019-07-17 Tom Tromey <tom@tromey.com>
4151
4152 * tui/tui-source.c (tui_source_window): New constructor. Add
4153 observer.
4154 (~tui_source_window): New destructor.
4155 (tui_source_window::style_changed): New method.
4156 * tui/tui-hooks.c (tui_redisplay_source): Remove.
4157 (tui_attach_detach_observers): Update.
4158 * tui/tui-data.h (struct tui_source_window): Make constructor not
4159 inline. Add destructor.
4160 (struct tui_source_window) <style_changed>: New method.
4161 <m_observable>: New member.
4162
4163 2019-07-17 Tom Tromey <tom@tromey.com>
4164
4165 * tui/tui-data.c (tui_clear_source_windows_detail): Fix typo.
4166 * tui/tui-win.c (tui_resize_all): Fix typo.
4167
4168 2019-07-17 Tom Tromey <tom@tromey.com>
4169
4170 * tui/tui-wingeneral.h (tui_refresh_all): Update.
4171 * tui/tui-wingeneral.c (make_all_visible): Use foreach.
4172 (tui_refresh_all): Remove "list" parameter. Use foreach.
4173 * tui/tui-win.c (window_name_completer): Use foreach.
4174 (tui_refresh_all_win, tui_rehighlight_all, tui_all_windows_info)
4175 (update_tab_width): Likewise.
4176 * tui/tui-layout.c (show_layout): Update.
4177 * tui/tui-data.h (class tui_window_iterator): New.
4178 (struct all_tui_windows): New.
4179 * tui/tui-data.c (tui_partial_win_by_name): Use foreach.
4180
4181 2019-07-17 Tom Tromey <tom@tromey.com>
4182
4183 * tui/tui-regs.c (tui_reg_next, tui_reg_prev): Add "current_group"
4184 parameter. Don't reference globals.
4185 (tui_reg_command): Update.
4186
4187 2019-07-17 Tom Tromey <tom@tromey.com>
4188
4189 * tui/tui-regs.c (tui_show_registers): Simplify.
4190
4191 2019-07-17 Tom Tromey <tom@tromey.com>
4192
4193 * tui/tui-regs.c (tui_show_registers): Update.
4194 (tui_show_register_group): Add win_info parameter.
4195
4196 2019-07-17 Tom Tromey <tom@tromey.com>
4197
4198 * tui/tui-regs.c (tui_data_window::display_reg_element_at_line):
4199 Rename from tui_display_reg_element_at_line.
4200 (tui_data_window::display_registers_from_line): Update.
4201 * tui/tui-data.h (struct tui_data_window)
4202 <display_reg_element_at_line>: New method.
4203
4204 2019-07-17 Tom Tromey <tom@tromey.com>
4205
4206 * tui/tui-regs.h (tui_display_registers_from)
4207 (tui_display_registers_from_line): Don't declare.
4208 * tui/tui-windata.c (tui_data_window::display_all_data)
4209 (tui_data_window::refresh_all)
4210 (tui_data_window::do_scroll_vertical): Update.
4211 * tui/tui-regs.c (tui_data_window::display_registers_from): Rename
4212 from tui_display_registers_from.
4213 (tui_display_reg_element_at_line): Update.
4214 (tui_data_window::display_registers_from_line): Rename from
4215 tui_display_registers_from_line.
4216 * tui/tui-data.h (struct tui_data_window) <display_registers_from,
4217 display_registers_from_line>: New methods.
4218
4219 2019-07-17 Tom Tromey <tom@tromey.com>
4220
4221 * tui/tui-windata.h (tui_erase_data_content): Don't declare.
4222 * tui/tui-windata.c (tui_data_window::erase_data_content): Rename
4223 from tui_erase_data_content.
4224 (tui_data_window::display_all_data)
4225 (tui_data_window::refresh_all)
4226 (tui_data_window::do_scroll_vertical): Update.
4227 * tui/tui-regs.c (tui_show_registers): Update.
4228 * tui/tui-data.h (struct tui_data_window) <erase_data_content>:
4229 New method.
4230
4231 2019-07-17 Tom Tromey <tom@tromey.com>
4232
4233 * tui/tui-windata.h (tui_delete_data_content_windows): Don't
4234 declare.
4235 * tui/tui-windata.c
4236 (tui_data_window::delete_data_content_windows): Rename from
4237 tui_delete_data_content_windows.
4238 (tui_data_window::display_all_data)
4239 (tui_data_window::do_scroll_vertical): Update.
4240 * tui/tui-data.h (struct tui_data_window)
4241 <delete_data_content_windows>: New method.
4242
4243 2019-07-17 Tom Tromey <tom@tromey.com>
4244
4245 * tui/tui-windata.h (tui_refresh_data_win): Don't declare.
4246 * tui/tui-regs.h (tui_first_reg_element_inline): Don't declare.
4247
4248 2019-07-17 Tom Tromey <tom@tromey.com>
4249
4250 * tui/tui-windata.h (tui_display_all_data): Don't declare.
4251 * tui/tui-windata.c (tui_data_window::display_all_data): Rename
4252 from tui_display_all_data.
4253 * tui/tui-win.c
4254 (tui_data_window::do_make_visible_with_new_height): Update.
4255 * tui/tui-regs.c (tui_show_registers): Update.
4256 * tui/tui-layout.c (tui_set_layout): Update.
4257 * tui/tui-data.h (struct tui_data_window) <display_all_data>: New
4258 method.
4259
4260 2019-07-17 Tom Tromey <tom@tromey.com>
4261
4262 * tui/tui-windata.h (tui_display_data_from): Don't declare.
4263 * tui/tui-windata.c (tui_display_data_from): Remove.
4264 (tui_data_window::refresh_all): Update.
4265
4266 2019-07-17 Tom Tromey <tom@tromey.com>
4267
4268 * tui/tui-windata.h (tui_display_data_from_line): Don't declare.
4269 * tui/tui-windata.c (tui_display_data_from_line): Remove.
4270 (tui_display_data_from, tui_data_window::do_scroll_vertical): Call
4271 tui_display_registers_from_line.
4272 * tui/tui-regs.h (tui_display_registers_from_line): Update.
4273 * tui/tui-regs.c (tui_display_registers_from_line): Remove
4274 "force_display" parameter.
4275
4276 2019-07-17 Tom Tromey <tom@tromey.com>
4277
4278 * tui/tui-regs.h (tui_first_reg_element_no_inline): Don't
4279 declare.
4280 * tui/tui-regs.c (tui_data_window::first_reg_element_no_inline):
4281 Rename from tui_first_reg_element_no_inline.
4282 (tui_display_reg_element_at_line)
4283 (tui_display_registers_from_line): Update.
4284 * tui/tui-data.h (struct tui_data_window)
4285 <first_reg_element_no_inline>: New method.
4286
4287 2019-07-17 Tom Tromey <tom@tromey.com>
4288
4289 * tui/tui-windata.c (tui_display_data_from)
4290 (tui_data_window::do_scroll_vertical): Update.
4291 * tui/tui-regs.h (tui_line_from_reg_element_no): Don't declare.
4292 * tui/tui-regs.c (tui_data_window::line_from_reg_element_no):
4293 Rename from tui_line_from_reg_element_no.
4294 (tui_display_registers_from_line): Update.
4295 * tui/tui-data.h (struct tui_data_window)
4296 <line_from_reg_element_no>: New method.
4297
4298 2019-07-17 Tom Tromey <tom@tromey.com>
4299
4300 * tui/tui-regs.h (tui_last_regs_line_no): Don't declare.
4301 * tui/tui-regs.c (tui_data_window::last_regs_line_no): Rename from
4302 tui_last_regs_line_no.
4303 (tui_display_reg_element_at_line)
4304 (tui_display_registers_from_line): Update.
4305 * tui/tui-data.h (struct tui_data_window) <last_regs_line_no>: New
4306 method.
4307
4308 2019-07-17 Tom Tromey <tom@tromey.com>
4309
4310 PR tui/24722:
4311 * tui/tui-winsource.h (tui_update_all_breakpoint_info)
4312 (tui_update_breakpoint_info): Add "being_deleted" parameter.
4313 * tui/tui-winsource.c (tui_update_source_window_as_is): Update.
4314 (tui_update_all_breakpoint_info): Add "being_deleted" parameter.
4315 (tui_update_breakpoint_info): Likewise.
4316 * tui/tui-hooks.c (tui_event_create_breakpoint)
4317 (tui_event_delete_breakpoint, tui_event_modify_breakpoint):
4318 Update.
4319
4320 2019-07-17 Tom Tromey <tom@tromey.com>
4321
4322 * tui/tui-stack.c (tui_show_frame_info): Consolidate "if"s.
4323
4324 2019-07-17 Tom Tromey <tom@tromey.com>
4325
4326 * tui/tui-winsource.c (tui_update_source_window_as_is)
4327 (tui_update_source_windows_with_addr): Update.
4328 * tui/tui-source.h (tui_set_source_content)
4329 (tui_show_symtab_source): Add "win_info" parameter.
4330 * tui/tui-source.c (tui_set_source_content): Add "win_info"
4331 parameter.
4332 (tui_show_symtab_source): Likewise.
4333
4334 2019-07-17 Tom Tromey <tom@tromey.com>
4335
4336 * tui/tui-wingeneral.c
4337 (tui_check_and_display_highlight_if_needed): Check can_highlight.
4338
4339 2019-07-17 Tom Tromey <tom@tromey.com>
4340
4341 * tui/tui-data.h (struct tui_win_info) <can_scroll>: New method.
4342 (struct tui_cmd_window) <can_scroll>: New method.
4343 * tui/tui-command.c (tui_dispatch_ctrl_char): Use can_scroll
4344 method.
4345
4346 2019-07-17 Tom Tromey <tromey@adacore.com>
4347
4348 * ui-out.h (class ui_out) <field_signed, field_fmt_signed,
4349 do_field_signed>: Rename. Change type of "value".
4350 * ui-out.c (ui_out::field_signed): Rename from field_int.
4351 Change type of "value".
4352 (ui_out::field_fmt_signed): Rename from field_fmt_int. Change
4353 type of "value".
4354 * tui/tui-out.h (class tui_ui_out) <do_field_signed>: Rename from
4355 do_field_int. Change type of "value".
4356 * tui/tui-out.c (tui_ui_out::do_field_signed): Rename from
4357 do_field_int. Change type of "value".
4358 * tracepoint.c (trace_status_mi, tfind_1)
4359 (print_one_static_tracepoint_marker): Update.
4360 * thread.c (print_thread_info_1, print_selected_thread_frame):
4361 Update.
4362 * stack.c (print_frame, print_frame_info): Update.
4363 * spu-tdep.c (info_spu_signal_command, info_spu_dma_cmdlist):
4364 Update.
4365 * source.c (print_source_lines_base): Update.
4366 * skip.c (info_skip_command): Update.
4367 * record-btrace.c (btrace_ui_out_decode_error)
4368 (btrace_call_history_src_line): Update.
4369 * python/py-framefilter.c (py_print_single_arg, py_print_frame):
4370 Update.
4371 * progspace.c (print_program_space): Update.
4372 * mi/mi-symbol-cmds.c (mi_cmd_symbol_list_lines): Update.
4373 * mi/mi-out.h (class mi_ui_out) <do_field_signed>: Rename from
4374 do_field_int. Change type of "value".
4375 * mi/mi-out.c (mi_ui_out::do_table_begin)
4376 (mi_ui_out::do_table_header): Update.
4377 (mi_ui_out::do_field_signed): Rename from do_field_int. Change
4378 type of "value".
4379 * mi/mi-main.c (mi_cmd_thread_list_ids, print_one_inferior)
4380 (mi_cmd_data_list_changed_registers, output_register)
4381 (mi_cmd_data_read_memory, mi_load_progress)
4382 (mi_cmd_trace_frame_collected): Update.
4383 * mi/mi-interp.c (mi_on_normal_stop_1, mi_output_solib_attribs):
4384 Update.
4385 * mi/mi-cmd-var.c (print_varobj, mi_cmd_var_create)
4386 (mi_cmd_var_delete, mi_cmd_var_info_num_children)
4387 (mi_cmd_var_list_children, varobj_update_one): Update.
4388 * mi/mi-cmd-stack.c (mi_cmd_stack_info_depth)
4389 (mi_cmd_stack_list_args, list_arg_or_local): Update.
4390 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file): Update.
4391 * inferior.c (print_inferior): Update.
4392 * gdb_bfd.c (print_one_bfd): Update.
4393 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn):
4394 Update.
4395 * darwin-nat-info.c (darwin_debug_regions_recurse): Update.
4396 * cli-out.h (class cli_ui_out) <do_field_signed>: Rename from
4397 do_field_int. Change type of "value".
4398 * cli-out.c (cli_ui_out::do_field_signed): Rename from
4399 do_field_int. Change type of "value".
4400 * breakpoint.c (watchpoint_check, print_breakpoint_location)
4401 (print_one_breakpoint_location, print_it_catch_fork)
4402 (print_one_catch_fork, print_it_catch_vfork)
4403 (print_one_catch_vfork, print_it_catch_solib)
4404 (print_it_catch_exec, print_it_ranged_breakpoint)
4405 (print_mention_watchpoint, print_mention_masked_watchpoint)
4406 (bkpt_print_it, update_static_tracepoint): Update.
4407 * break-catch-throw.c (print_it_exception_catchpoint): Update.
4408 * break-catch-syscall.c (print_it_catch_syscall): Update.
4409 * ada-tasks.c (print_ada_task_info): Update.
4410 * ada-lang.c (print_it_exception, print_mention_exception):
4411 Update.
4412
4413 2019-07-17 Andrew Burgess <andrew.burgess@embecosm.com>
4414
4415 PR breakpoints/24541
4416 * gdbarch.c: Regenerate.
4417 * gdbarch.h: Regenerate.
4418 * gdbarch.sh: Adjust return type and parameter types for
4419 'stap_adjust_register'.
4420 (i386_stap_adjust_register): Adjust signature and return new
4421 register name.
4422 * stap-probe.c (stap_parse_register_operand): Adjust use of
4423 'gdbarch_stap_adjust_register'.
4424
4425 2019-07-17 Tom Tromey <tromey@adacore.com>
4426
4427 * s390-linux-nat.c (s390_watch_area): Remove typedef. Don't
4428 declare VEC.
4429 (struct s390_debug_reg_state) <watch_areas, break_areas>: Now
4430 std::vector.
4431 (struct s390_process_info): Add initializers.
4432 (s390_add_process): Use new.
4433 (s390_linux_nat_target::low_forget_process): Use delete.
4434 (s390_linux_nat_target::low_new_fork)
4435 (s390_linux_nat_target::stopped_by_watchpoint)
4436 (s390_linux_nat_target::low_prepare_to_resume)
4437 (s390_linux_nat_target::insert_watchpoint)
4438 (s390_linux_nat_target::insert_hw_breakpoint)
4439 (s390_linux_nat_target::remove_watchpoint)
4440 (s390_linux_nat_target::remove_hw_breakpoint): Update.
4441
4442 2019-07-16 John Baldwin <jhb@FreeBSD.org>
4443
4444 * aarch64-fbsd-nat.c: Include regcache.h.
4445 (getregs_supplies, getfpregs_supplies): Remove unused gdbarch
4446 argument.
4447 (aarch64_fbsd_nat_target::fetch_registers)
4448 (aarch64_fbsd_nat_target::store_registers): Remove gdbarch
4449 variable.
4450 * arm-fbsd-nat.c, riscv-fbsd-nat.c: Likewise.
4451
4452 2019-07-16 John Baldwin <jhb@FreeBSD.org>
4453
4454 * fbsd-nat.c: Include gdbarch.h.
4455
4456 2019-07-15 Tom Tromey <tromey@adacore.com>
4457
4458 * mi/mi-out.c (mi_ui_out::do_field_int): Use plongest.
4459
4460 2019-07-15 Tom Tromey <tromey@adacore.com>
4461
4462 * mi/mi-out.h (class mi_ui_out) <do_field_unsigned>: Declare.
4463 * mi/mi-out.c (mi_ui_out::do_field_unsigned): New method.
4464 * cli-out.h (class cli_ui_out) <do_field_unsigned>: Declare.
4465 * cli-out.c (cli_ui_out::do_field_int): New method.
4466 * ui-out.c (ui_out::field_unsigned): New method.
4467 * symfile.c (generic_load): Use field_unsigned.
4468 (print_transfer_performance): Likewise.
4469 * record-btrace.c (ui_out_field_uint): Remove.
4470 (btrace_call_history_insn_range, btrace_call_history): Use
4471 field_unsigned.
4472 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn): Use
4473 field_unsigned.
4474 * ui-out.h (class ui_out) <field_unsigned>: New method.
4475 <do_field_unsigned>: Likewise.
4476
4477 2019-07-15 Tom Tromey <tromey@adacore.com>
4478
4479 * mi/mi-main.c (list_available_thread_groups): Use field_string.
4480 * mi/mi-interp.c (mi_memory_changed): Use field_string.
4481 * target.c (flash_erase_command): Use field_string.
4482 * infrun.c (print_signal_received_reason): Use field_string.
4483 * i386-tdep.c (i386_mpx_print_bounds): Use field_string.
4484 * breakpoint.c (maybe_print_thread_hit_breakpoint): Use
4485 field_string.
4486 * ada-tasks.c (print_ada_task_info): Use field_string.
4487
4488 2019-07-15 Tom Tromey <tromey@adacore.com>
4489
4490 * target.c (flash_erase_command): Use field_core_addr.
4491 * symfile.c (generic_load): Use field_core_addr.
4492 * sparc64-linux-tdep.c (sparc64_linux_handle_segmentation_fault):
4493 Use field_core_addr.
4494 * i386-linux-tdep.c (i386_linux_handle_segmentation_fault): Use
4495 field_core_addr.
4496
4497 2019-07-12 Andrew Burgess <andrew.burgess@embecosm.com>
4498
4499 * dwarf2loc.c (dwarf2_evaluate_property): Sign extend property
4500 value if its desired type is smaller than a CORE_ADDR and signed.
4501
4502 2019-07-12 Andrew Burgess <andrew.burgess@embecosm.com>
4503
4504 * dwarf2loc.c (dwarf2_evaluate_property): Update to take account
4505 of changes to field names, and use new is_reference field to
4506 decide if a property is a reference or not.
4507 * dwarf2loc.h (struct dwarf2_locexpr_baton): Add 'is_reference'
4508 field.
4509 (struct dwarf2_property_baton): Update header comment, rename
4510 'referenced_type' to 'property_type' and update comments.
4511 * dwarf2read.c (attr_to_dynamic_prop): Add extra parameter to hold
4512 default property type, store in property baton, update to take
4513 accound of renamed field.
4514 (read_func_scope): Update call to attr_to_dynamic_prop.
4515 (read_array_type): Likewise.
4516 (dwarf2_per_cu_addr_sized_int_type): New function.
4517 (read_subrange_index_type): Move type finding code to
4518 dwarf2_per_cu_addr_sized_int_type.
4519 (read_subrange_type): Update calls to attr_to_dynamic_prop.
4520 (dwarf2_per_cu_addr_type): New function.
4521 (set_die_type): Update calls to attr_to_dynamic_prop.
4522
4523 2019-07-12 Andrew Burgess <andrew.burgess@embecosm.com>
4524
4525 * dwarf2read.c (read_subrange_index_type): New function.
4526 (read_subrange_type): Move code into new function and call it.
4527 * gdbtypes.c (create_range_type): Add some asserts.
4528
4529 2019-07-12 Andrew Burgess <andrew.burgess@embecosm.com>
4530
4531 * dwarf2loc.c (dwarf2_evaluate_property): Change return type, and
4532 update return statements.
4533 * dwarf2loc.h (dwarf2_evaluate_property): Update return type on
4534 declaration, and update comment to match.
4535 * gdbtypes.c (resolve_dynamic_array): Update call to
4536 dwarf2_evaluate_property to match new return type.
4537
4538 2019-07-12 Andrew Burgess <andrew.burgess@embecosm.com>
4539
4540 * valarith.c (value_subscripted_rvalue): Change lowerbound
4541 parameter type from int to LONGEST.
4542 * value.h (value_subscripted_rvalue): Likewise in declaration.
4543
4544 2019-07-11 Andrew Burgess <andrew.burgess@embecosm.com>
4545
4546 * cli/cli-utils.c (info_print_command_completer): New function.
4547 * cli/cli-utils.h: Add 'completer.h' include, and forward
4548 declaration for 'struct cmd_list_element'.
4549 (info_print_command_completer): Declare.
4550 * stack.c (_initialize_stack): Add completer for 'info locals' and
4551 'info args'.
4552 * symtab.c (_initialize_symtab): Add completer for 'info
4553 variables' and 'info functions'.
4554 * NEWS: Mention completion for additional info commands.
4555
4556 2019-07-11 Andrew Burgess <andrew.burgess@embecosm.com>
4557
4558 * cli/cli-utils.c (extract_info_print_args): Delete.
4559 (extract_arg_maybe_quoted): Delete.
4560 (info_print_options_defs): New variable.
4561 (make_info_print_options_def_group): New function.
4562 (extract_info_print_options): Define new function.
4563 * cli/cli-utils.h (extract_info_print_args): Delete.
4564 (struct info_print_options): New structure.
4565 (extract_info_print_options): Declare new function.
4566 * stack.c (info_locals_command): Update to use new
4567 extract_info_print_options, also add a header comment.
4568 (info_args_command): Likewise.
4569 * symtab.c (info_variables_command): Likewise.
4570 (info_functions_command): Likewise.
4571
4572 2019-07-11 Andrew Burgess <andrew.burgess@embecosm.com>
4573
4574 * cli/cli-option.c (parse_option): Use extract_string_maybe_quoted
4575 to extract string arguments.
4576 * common/common-utils.c (extract_string_maybe_quoted): New function.
4577 * common/common-utils.h (extract_string_maybe_quoted): Declare.
4578
4579 2019-07-11 Tom Tromey <tromey@adacore.com>
4580
4581 * main.c (get_init_files): Use GDBINIT, not gdbinit.
4582 * auto-load.c (file_is_auto_load_safe): Use GDBINIT, not gdbinit.
4583 * top.h (gdbinit): Don't declare.
4584 * cli/cli-cmds.c (init_cli_cmds): Remove, merging contents
4585 into...
4586 (_initialize_cli_cmds): ...here. Use GDBINIT, not gdbinit.
4587 * top.c (gdb_init): Don't call init_cli_cmds.
4588 (gdbinit): Remove.
4589 * cli/cli-cmds.h (init_cli_cmds): Don't declare.
4590
4591 2019-07-11 Tom Tromey <tromey@adacore.com>
4592
4593 * python/py-inferior.c (add_thread_object): Don't use thread_obj
4594 after it has been moved.
4595
4596 2019-07-10 Simon Marchi <simon.marchi@polymtl.ca>
4597
4598 * valops.c (value_must_coerce_to_target): Change return type to
4599 bool.
4600 * value.h (value_must_coerce_to_target): Likewise.
4601
4602 2019-07-10 Simon Marchi <simon.marchi@efficios.com>
4603
4604 * breakpoint.c (is_hardware_watchpoint): Remove
4605 forward-declaration.
4606 (is_masked_watchpoint): Change return type to bool.
4607 (is_tracepoint): Likewise.
4608 (is_breakpoint): Likewise.
4609 (is_hardware_watchpoint): Likewise.
4610 (is_watchpoint): Likewise.
4611 (is_no_memory_software_watchpoint): Likewise.
4612 (is_catchpoint): Likewise.
4613 (breakpoint_1): Make FILTER parameter's return type bool.
4614 is_masked_watchpoint): Change return type to bool.
4615 (save_breakpoints): Make FILTER parameter's return type bool.
4616 * breakpoint.h (is_breakpoint): Change return type to bool.
4617 (is_watchpoint): Likewise.
4618 (is_catchpoint): Likewise.
4619 (is_tracepoint): Likewise.
4620
4621 2019-07-10 Tom Tromey <tom@tromey.com>
4622
4623 * defs.h: Don't include gdbarch.h.
4624 * aarch64-ravenscar-thread.c, aarch64-tdep.c, alpha-bsd-tdep.h,
4625 alpha-linux-tdep.c, alpha-mdebug-tdep.c, arch-utils.h, arm-tdep.h,
4626 ax-general.c, btrace.c, buildsym-legacy.c, buildsym.h, c-lang.c,
4627 cli/cli-decode.h, cli/cli-dump.c, cli/cli-script.h,
4628 cli/cli-style.h, coff-pe-read.h, compile/compile-c-support.c,
4629 compile/compile-cplus.h, compile/compile-loc2c.c, corefile.c,
4630 cp-valprint.c, cris-linux-tdep.c, ctf.c, d-lang.c, d-namespace.c,
4631 dcache.c, dicos-tdep.c, dictionary.c, disasm-selftests.c,
4632 dummy-frame.c, dummy-frame.h, dwarf2-frame-tailcall.c,
4633 dwarf2expr.c, expression.h, f-lang.c, frame-base.c,
4634 frame-unwind.c, frv-linux-tdep.c, gdbarch-selftests.c, gdbtypes.h,
4635 go-lang.c, hppa-nbsd-tdep.c, hppa-obsd-tdep.c, i386-dicos-tdep.c,
4636 i386-tdep.h, ia64-vms-tdep.c, interps.h, language.c,
4637 linux-record.c, location.h, m2-lang.c, m32r-linux-tdep.c,
4638 mem-break.c, memattr.c, mn10300-linux-tdep.c, nios2-linux-tdep.c,
4639 objfiles.h, opencl-lang.c, or1k-linux-tdep.c, p-lang.c,
4640 parser-defs.h, ppc-tdep.h, probe.h, python/py-record-btrace.c,
4641 record-btrace.c, record.h, regcache-dump.c, regcache.h,
4642 riscv-fbsd-tdep.c, riscv-linux-tdep.c, rust-exp.y,
4643 sh-linux-tdep.c, sh-nbsd-tdep.c, source-cache.c,
4644 sparc-nbsd-tdep.c, sparc-obsd-tdep.c, sparc-ravenscar-thread.c,
4645 sparc64-fbsd-tdep.c, std-regs.c, target-descriptions.h,
4646 target-float.c, tic6x-linux-tdep.c, tilegx-linux-tdep.c, top.c,
4647 tracefile.c, trad-frame.c, type-stack.h, ui-style.c, utils.c,
4648 utils.h, valarith.c, valprint.c, varobj.c, x86-tdep.c,
4649 xml-support.h, xtensa-linux-tdep.c, cli/cli-cmds.h: Update.
4650 * s390-linux-nat.c, procfs.c, inf-ptrace.c: Likewise.
4651
4652 2019-07-10 Tom Tromey <tromey@adacore.com>
4653
4654 * ada-lang.h (is_ada_exception_catchpoint): Declare.
4655 * breakpoint.c (init_ada_exception_breakpoint): Register as
4656 bp_catchpoint.
4657 (print_one_breakpoint_location, print_one_breakpoint): Use
4658 is_ada_exception_catchpoint.
4659 * ada-lang.c (class ada_catchpoint_location): Pass
4660 bp_loc_software_breakpoint to bp_location constructor.
4661 (is_ada_exception_catchpoint): New function.
4662
4663 2019-07-10 Tom Tromey <tromey@adacore.com>
4664
4665 * arm-tdep.c (arm_exidx_entry_s): Remove typedef. Don't define
4666 VEC.
4667 (struct arm_exidx_entry): New method operator<.
4668 (struct arm_exidx_data) <section_maps>: Change type.
4669 (arm_exidx_data_free): Remove.
4670 (arm_exidx_data_key): Change type. Move lower.
4671 (arm_exidx_new_objfile): Update.
4672 (arm_compare_exidx_entries): Remove.
4673 (arm_find_exidx_entry, _initialize_arm_tdep)
4674
4675 2019-07-10 Tom Tromey <tromey@adacore.com>
4676
4677 * solib-spu.c (ocl_program_data_key): Change type.
4678 (append_ocl_sos, ocl_enable_break, _initialize_spu_solib):
4679 Update.
4680
4681 2019-07-10 Tom Tromey <tromey@adacore.com>
4682
4683 * solib-aix.c (lm_info_aix_p): Remove typedef. Don't define VEC.
4684 (struct solib_aix_inferior_data) <library_list>: Change type.
4685 (solib_aix_inferior_data_handle): Change type.
4686 (get_solib_aix_inferior_data): Update.
4687 (solib_aix_free_library_list): Remove.
4688 (library_list_start_library): Update.
4689 (solib_aix_parse_libraries, solib_aix_get_library_list): Change
4690 return type.
4691 (solib_aix_get_library_list)
4692 (solib_aix_solib_create_inferior_hook, solib_aix_current_sos)
4693 (solib_aix_normal_stop_observer, _initialize_solib_aix): Update.
4694
4695 2019-07-10 Tom Tromey <tromey@adacore.com>
4696
4697 * solib-dsbt.c (struct dsbt_info): Add initializers.
4698 (solib_dsbt_pspace_data): Change type.
4699 (dsbt_pspace_data_cleanup): Remove.
4700 (get_dsbt_info, _initialize_dsbt_solib): Update.
4701
4702 2019-07-10 Tom Tromey <tromey@adacore.com>
4703
4704 * spu-tdep.c (spu_overlay_data): Change type.
4705 (spu_get_overlay_table, spu_overlay_new_objfile)
4706 (_initialize_spu_tdep): Update.
4707
4708 2019-07-10 Tom Tromey <tromey@adacore.com>
4709
4710 * gdb-stabs.h (struct dbx_symfile_info): Add initializers and
4711 destructor.
4712 (dbx_objfile_data_key): Change type and declare later.
4713 (DBX_SYMFILE_INFO): Rewrite.
4714 * dbxread.c (dbx_objfile_data_key): Change type.
4715 (dbx_symfile_init): Update.
4716 (~dbx_symfile_info): Rename from dbx_free_symfile_info. Update.
4717 (coffstab_build_psymtabs, elfstab_build_psymtabs)
4718 (stabsect_build_psymtabs, _initialize_dbxread): Update.
4719
4720 2019-07-10 Tom Tromey <tromey@adacore.com>
4721
4722 * jit.c (jit_program_space_key): Change type. Move lower.
4723 (get_jit_program_space_data): Update.
4724 (jit_program_space_data_cleanup): Remove.
4725 (jit_breakpoint_deleted, free_objfile_data, _initialize_jit):
4726 Update.
4727 (struct jit_program_space_data): Add initializers.
4728
4729 2019-07-10 Tom Tromey <tromey@adacore.com>
4730
4731 * solib-darwin.c (struct darwin_info): Add initializers.
4732 (solib_darwin_pspace_data): Change type.
4733 (darwin_pspace_data_cleanup): Remove.
4734 (get_darwin_info, _initialize_darwin_solib): Update.
4735
4736 2019-07-10 Tom Tromey <tromey@adacore.com>
4737
4738 * remote-sim.c (struct sim_inferior_data): Add initializers,
4739 constructor, and destructor.
4740 (sim_inferior_data_key): Change type. Move lower.
4741 (check_for_duplicate_sim_descriptor): Update.
4742 (get_sim_inferior_data): Use new. Update.
4743 (~sim_inferior_data_cleanup): Rename from
4744 sim_inferior_data_cleanup. Simplify.
4745 (gdbsim_close_inferior, simulator_command)
4746 (sim_command_completer, _initialize_remote_sim): Update.
4747 (next_pid, INITIAL_PID): Move earlier.
4748
4749 2019-07-10 Tom Tromey <tromey@adacore.com>
4750
4751 * python/python-internal.h (create_thread_object): Return
4752 gdbpy_ref.
4753 * python/py-infthread.c (create_thread_object): Return gdbpy_ref.
4754 * python/py-inferior.c (struct threadlist_entry): Add
4755 constructor.
4756 <thread_obj>: Now a gdbpy_ref.
4757 (thread_to_thread_object): Update.
4758 (add_thread_object): Use new.
4759 (delete_thread_object): Use delete.
4760 (infpy_threads): Update.
4761 (py_free_inferior): Update. Construct "inf_obj" after acquiring
4762 GIL.
4763
4764 2019-07-10 Tom Tromey <tromey@adacore.com>
4765
4766 * valops.c (value_cast): Specialize error message for Ada.
4767
4768 2019-07-10 Simon Marchi <simon.marchi@polymtl.ca>
4769
4770 * breakpoint.c (breakpoint_1): Update doc and parameter names.
4771
4772 2019-07-10 Simon Marchi <simon.marchi@polymtl.ca>
4773
4774 * breakpoint.h (bpstat_explains_signal, bpstat_causes_stop,
4775 bpstat_should_step): Return bool, adjust comments.
4776 * breakpoint.c (bpstat_explains_signal, bpstat_causes_stop,
4777 bpstat_should_step): Likewise.
4778
4779 2019-07-10 Alan Hayward <alan.hayward@arm.com>
4780
4781 * features/Makefile: Use feature target descriptions for Arm.
4782 * features/arm/arm-core.c: Generate new file.
4783 * features/arm/arm-fpa.c: Likewise.
4784 * features/arm/arm-m-profile-with-fpa.xml: Likewise.
4785 * features/arm/arm-m-profile.c: Likewise.
4786 * features/arm/arm-vfpv2.c: Likewise.
4787 * features/arm/arm-vfpv3.c: Likewise.
4788 * features/arm/xscale-iwmmxt.c: Likewise.
4789 * target-descriptions.c (maint_print_c_tdesc_cmd): Add Arm.
4790
4791 2019-07-10 Alan Hayward <alan.hayward@arm.com>
4792
4793 * arm-linux-nat.c (arm_linux_nat_target::read_description): Check
4794 ptrace earlier.
4795
4796 2019-07-10 Alan Hayward <alan.hayward@arm.com>
4797
4798 * features/aarch64-pauth.c: Regenerate.
4799
4800 2019-07-09 Simon Marchi <simon.marchi@polymtl.ca>
4801
4802 * breakpoint.h (struct bpstat_what) <is_longjmp>: Change type to
4803 bool.
4804 (bpstat_what): Use false instead of 0.
4805
4806 2019-07-09 Pedro Alves <palves@redhat.com>
4807
4808 * break-catch-throw.c (is_exception_catchpoint): New.
4809 * breakpoint.c (print_one_breakpoint_location): New parameter
4810 'raw_loc'. Handle it. Use
4811 is_watchpoint/is_catchpoint/is_exception_catchpoint instead of
4812 looking at the breakpoint's type.
4813 (print_one_breakpoint): If handling "maint info breakpoints", also
4814 print locations of exception catchpoints.
4815 * breakpoint.h (is_exception_catchpoint): Declare.
4816
4817 2019-07-09 Pedro Alves <palves@redhat.com>
4818
4819 * break-catch-throw.c (print_one_exception_catchpoint): Skip the
4820 "addr" field.
4821 (allocate_location_exception_catchpoint): New.
4822 (handle_gnu_v3_exceptions): Don't reset 'type' to bp_breakpoint.
4823 (initialize_throw_catchpoint_ops): Install
4824 allocate_location_exception_catchpoint as allocate_location
4825 method.
4826 * breakpoint.c (bpstat_what) <bp_catch>: Set action to
4827 BPSTAT_WHAT_SINGLE if not stopping and the location's type is not
4828 bp_loc_other.
4829 (breakpoint_address_is_meaningful): Delete.
4830 (bl_address_is_meaningful): New.
4831 (breakpoint_locations_match): Adjust comment.
4832 (bp_location_from_bp_type): New, factored out of...
4833 (bp_location::bp_location(breakpoint *)): ... this.
4834 (bp_location::bp_location(breakpoint *, bp_loc_type)): New,
4835 factored out of...
4836 (bp_location::bp_location(breakpoint *)): ... this. Reimplement.
4837 (bp_loc_is_permanent): Use bl_address_is_meaningful instead of
4838 breakpoint_address_is_meaningful.
4839 (bp_locations_compare): Adjust comment.
4840 (update_global_location_list): Use bl_address_is_meaningful
4841 instead of breakpoint_address_is_meaningful.
4842 * breakpoint.h (bp_location::bp_location(breakpoint *)): New
4843 explicit.
4844 (bp_location::bp_location(breakpoint *, bp_loc_type)): Declare.
4845 * python/py-breakpoint.c (bppy_get_location): No longer check
4846 whether location is null.
4847
4848 2019-07-09 Pedro Alves <palves@redhat.com>
4849
4850 PR c++/15468
4851 * breakpoint.c (print_one_breakpoint_location): Remove
4852 single-location assert.
4853
4854 2019-07-09 Tom Tromey <tom@tromey.com>
4855
4856 * contrib/ari/gdb_ari.sh: Change common to gdbsupport.
4857 * configure: Rebuild.
4858 * configure.ac: Change common to gdbsupport.
4859 * gdbsupport: Rename from common.
4860 * acinclude.m4: Change common to gdbsupport.
4861 * Makefile.in (CONFIG_SRC_SUBDIR, COMMON_SFILES)
4862 (HFILES_NO_SRCDIR, stamp-version, ALLDEPFILES): Change common to
4863 gdbsupport.
4864 * aarch64-tdep.c, ada-lang.c, ada-lang.h, agent.c, alloc.c,
4865 amd64-darwin-tdep.c, amd64-dicos-tdep.c, amd64-fbsd-nat.c,
4866 amd64-fbsd-tdep.c, amd64-linux-nat.c, amd64-linux-tdep.c,
4867 amd64-nbsd-tdep.c, amd64-obsd-tdep.c, amd64-sol2-tdep.c,
4868 amd64-tdep.c, amd64-windows-tdep.c, arch-utils.c,
4869 arch/aarch64-insn.c, arch/aarch64.c, arch/aarch64.h, arch/amd64.c,
4870 arch/amd64.h, arch/arm-get-next-pcs.c, arch/arm-linux.c,
4871 arch/arm.c, arch/i386.c, arch/i386.h, arch/ppc-linux-common.c,
4872 arch/riscv.c, arch/riscv.h, arch/tic6x.c, arm-tdep.c, auto-load.c,
4873 auxv.c, ax-gdb.c, ax-general.c, ax.h, breakpoint.c, breakpoint.h,
4874 btrace.c, btrace.h, build-id.c, build-id.h, c-lang.h, charset.c,
4875 charset.h, cli/cli-cmds.c, cli/cli-cmds.h, cli/cli-decode.c,
4876 cli/cli-dump.c, cli/cli-option.h, cli/cli-script.c,
4877 coff-pe-read.c, command.h, compile/compile-c-support.c,
4878 compile/compile-c.h, compile/compile-cplus-symbols.c,
4879 compile/compile-cplus-types.c, compile/compile-cplus.h,
4880 compile/compile-loc2c.c, compile/compile.c, completer.c,
4881 completer.h, contrib/ari/gdb_ari.sh, corefile.c, corelow.c,
4882 cp-support.c, cp-support.h, cp-valprint.c, csky-tdep.c, ctf.c,
4883 darwin-nat.c, debug.c, defs.h, disasm-selftests.c, disasm.c,
4884 disasm.h, dtrace-probe.c, dwarf-index-cache.c,
4885 dwarf-index-cache.h, dwarf-index-write.c, dwarf2-frame.c,
4886 dwarf2expr.c, dwarf2loc.c, dwarf2read.c, event-loop.c,
4887 event-top.c, exceptions.c, exec.c, extension.h, fbsd-nat.c,
4888 features/aarch64-core.c, features/aarch64-fpu.c,
4889 features/aarch64-pauth.c, features/aarch64-sve.c,
4890 features/i386/32bit-avx.c, features/i386/32bit-avx512.c,
4891 features/i386/32bit-core.c, features/i386/32bit-linux.c,
4892 features/i386/32bit-mpx.c, features/i386/32bit-pkeys.c,
4893 features/i386/32bit-segments.c, features/i386/32bit-sse.c,
4894 features/i386/64bit-avx.c, features/i386/64bit-avx512.c,
4895 features/i386/64bit-core.c, features/i386/64bit-linux.c,
4896 features/i386/64bit-mpx.c, features/i386/64bit-pkeys.c,
4897 features/i386/64bit-segments.c, features/i386/64bit-sse.c,
4898 features/i386/x32-core.c, features/riscv/32bit-cpu.c,
4899 features/riscv/32bit-csr.c, features/riscv/32bit-fpu.c,
4900 features/riscv/64bit-cpu.c, features/riscv/64bit-csr.c,
4901 features/riscv/64bit-fpu.c, features/tic6x-c6xp.c,
4902 features/tic6x-core.c, features/tic6x-gp.c, filename-seen-cache.h,
4903 findcmd.c, findvar.c, fork-child.c, gcore.c, gdb_bfd.c, gdb_bfd.h,
4904 gdb_proc_service.h, gdb_regex.c, gdb_select.h, gdb_usleep.c,
4905 gdbarch-selftests.c, gdbthread.h, gdbtypes.h, gnu-nat.c,
4906 go32-nat.c, guile/guile.c, guile/scm-ports.c,
4907 guile/scm-safe-call.c, guile/scm-type.c, i386-fbsd-nat.c,
4908 i386-fbsd-tdep.c, i386-go32-tdep.c, i386-linux-nat.c,
4909 i386-linux-tdep.c, i386-tdep.c, i387-tdep.c,
4910 ia64-libunwind-tdep.c, ia64-linux-nat.c, inf-child.c,
4911 inf-ptrace.c, infcall.c, infcall.h, infcmd.c, inferior-iter.h,
4912 inferior.c, inferior.h, inflow.c, inflow.h, infrun.c, infrun.h,
4913 inline-frame.c, language.h, linespec.c, linux-fork.c, linux-nat.c,
4914 linux-tdep.c, linux-thread-db.c, location.c, machoread.c,
4915 macrotab.h, main.c, maint.c, maint.h, memattr.c, memrange.h,
4916 mi/mi-cmd-break.h, mi/mi-cmd-env.c, mi/mi-cmd-stack.c,
4917 mi/mi-cmd-var.c, mi/mi-interp.c, mi/mi-main.c, mi/mi-parse.h,
4918 minsyms.c, mips-linux-tdep.c, namespace.h,
4919 nat/aarch64-linux-hw-point.c, nat/aarch64-linux-hw-point.h,
4920 nat/aarch64-linux.c, nat/aarch64-sve-linux-ptrace.c,
4921 nat/amd64-linux-siginfo.c, nat/fork-inferior.c,
4922 nat/linux-btrace.c, nat/linux-btrace.h, nat/linux-namespaces.c,
4923 nat/linux-nat.h, nat/linux-osdata.c, nat/linux-personality.c,
4924 nat/linux-procfs.c, nat/linux-ptrace.c, nat/linux-ptrace.h,
4925 nat/linux-waitpid.c, nat/mips-linux-watch.c,
4926 nat/mips-linux-watch.h, nat/ppc-linux.c, nat/x86-dregs.c,
4927 nat/x86-dregs.h, nat/x86-linux-dregs.c, nat/x86-linux.c,
4928 nto-procfs.c, nto-tdep.c, objfile-flags.h, objfiles.c, objfiles.h,
4929 obsd-nat.c, observable.h, osdata.c, p-valprint.c, parse.c,
4930 parser-defs.h, ppc-linux-nat.c, printcmd.c, probe.c, proc-api.c,
4931 procfs.c, producer.c, progspace.h, psymtab.h,
4932 python/py-framefilter.c, python/py-inferior.c, python/py-ref.h,
4933 python/py-type.c, python/python.c, record-btrace.c, record-full.c,
4934 record.c, record.h, regcache-dump.c, regcache.c, regcache.h,
4935 remote-fileio.c, remote-fileio.h, remote-sim.c, remote.c,
4936 riscv-tdep.c, rs6000-aix-tdep.c, rust-exp.y, s12z-tdep.c,
4937 selftest-arch.c, ser-base.c, ser-event.c, ser-pipe.c, ser-tcp.c,
4938 ser-unix.c, skip.c, solib-aix.c, solib-target.c, solib.c,
4939 source-cache.c, source.c, source.h, sparc-nat.c, spu-linux-nat.c,
4940 stack.c, stap-probe.c, symfile-add-flags.h, symfile.c, symfile.h,
4941 symtab.c, symtab.h, target-descriptions.c, target-descriptions.h,
4942 target-memory.c, target.c, target.h, target/waitstatus.c,
4943 target/waitstatus.h, thread-iter.h, thread.c, tilegx-tdep.c,
4944 top.c, top.h, tracefile-tfile.c, tracefile.c, tracepoint.c,
4945 tracepoint.h, tui/tui-io.c, ui-file.c, ui-out.h,
4946 unittests/array-view-selftests.c,
4947 unittests/child-path-selftests.c, unittests/cli-utils-selftests.c,
4948 unittests/common-utils-selftests.c,
4949 unittests/copy_bitwise-selftests.c, unittests/environ-selftests.c,
4950 unittests/format_pieces-selftests.c,
4951 unittests/function-view-selftests.c,
4952 unittests/lookup_name_info-selftests.c,
4953 unittests/memory-map-selftests.c, unittests/memrange-selftests.c,
4954 unittests/mkdir-recursive-selftests.c,
4955 unittests/observable-selftests.c,
4956 unittests/offset-type-selftests.c, unittests/optional-selftests.c,
4957 unittests/parse-connection-spec-selftests.c,
4958 unittests/ptid-selftests.c, unittests/rsp-low-selftests.c,
4959 unittests/scoped_fd-selftests.c,
4960 unittests/scoped_mmap-selftests.c,
4961 unittests/scoped_restore-selftests.c,
4962 unittests/string_view-selftests.c, unittests/style-selftests.c,
4963 unittests/tracepoint-selftests.c, unittests/unpack-selftests.c,
4964 unittests/utils-selftests.c, unittests/xml-utils-selftests.c,
4965 utils.c, utils.h, valarith.c, valops.c, valprint.c, value.c,
4966 value.h, varobj.c, varobj.h, windows-nat.c, x86-linux-nat.c,
4967 xml-support.c, xml-support.h, xml-tdesc.h, xstormy16-tdep.c,
4968 xtensa-linux-nat.c, dwarf2read.h: Change common to gdbsupport.
4969
4970 2019-07-09 Andrew Burgess <andrew.burgess@embecosm.com>
4971
4972 * linespec.c (decode_digits_list_mode): Set explicit_line to a
4973 bool value.
4974 (decode_digits_ordinary): Set explicit_line field in sal.
4975 * symtab.c (skip_prologue_sal): Don't skip prologue for a
4976 symtab_and_line that was set on an explicit line number in
4977 assembler code. Do always update the recorded symtab and line if
4978 we do skip the prologue.
4979
4980 2019-07-09 Andrew Burgess <andrew.burgess@embecosm.com>
4981
4982 * breakpoint.c (set_breakpoint_location_function): Remove
4983 explicit_loc parameter.
4984 (momentary_breakpoint_from_master): Update call to
4985 set_breakpoint_location_function.
4986 (add_location_to_breakpoint): Likewise.
4987
4988 2019-07-09 Andrew Burgess <andrew.burgess@embecosm.com>
4989
4990 * riscv-tdep.c (riscv_features_from_gdbarch_info): Don't modify
4991 required features based on default bfd type when no specific bfd
4992 is present.
4993
4994 2019-07-08 Philippe Waroquiers <philippe.waroquiers@skynet.be>
4995
4996 * NEWS: Mention that GDB printf and eval commands can now print
4997 C-style and Ada-style convenience var strings without
4998 calling the inferior.
4999 * printcmd.c (printf_c_string): Locally print GDB internal var
5000 instead of transiting via the inferior.
5001 (printf_wide_c_string): Likewise.
5002
5003 2019-07-04 Alan Hayward <alan.hayward@arm.com>
5004
5005 PR breakpoints/25011
5006 * symfile.c (symbol_file_command): Call solib_create_inferior_hook.
5007
5008 2019-07-04 Tom Tromey <tom@tromey.com>
5009
5010 PR tui/24724:
5011 * tui/tui-winsource.c (tui_clear_source_content): Update.
5012 (tui_source_window_base::set_is_exec_point_at): Fix comment.
5013 (tui_update_breakpoint_info): Update.
5014 (tui_set_exec_info_content): Update.
5015 * tui/tui-source.c (tui_set_source_content_nil): Update.
5016 * tui/tui-disasm.c (tui_set_disassem_content): Don't set
5017 has_break.
5018 * tui/tui-data.h (enum tui_bp_flag): New.
5019 (tui_bp_flags): New enum flags type.
5020 (struct tui_source_element) <break_mode>: Change type. Rename
5021 from has_break.
5022 (TUI_BP_ENABLED, TUI_BP_DISABLED, TUI_BP_HIT)
5023 (TUI_BP_CONDITIONAL, TUI_BP_HARDWARE): Don't define. Now enum
5024 constants.
5025 * tui/tui-winsource.h: Fix comment.
5026
5027 2019-07-04 Alan Hayward <alan.hayward@arm.com>
5028
5029 * aarch32-linux-nat.h (VFP_REGS_SIZE): Remove define.
5030 * aarch64-linux-nat.c (fetch_fpregs_from_thread)
5031 (store_fpregs_to_thread)
5032 (aarch64_linux_nat_target::read_description): Use ARM_VFP3_REGS_SIZE.
5033 * arch/arm.h (IWMMXT_VEC_REGISTER_SIZE, ARM_CORE_REGS_SIZE)
5034 (ARM_FP_REGS_SIZE, ARM_VFP2_REGS_SIZE, ARM_VFP3_REGS_SIZE)
5035 (IWMMXT_REGS_SIZE): Add define.
5036 * arm-linux-nat.c (IWMMXT_REGS_SIZE): Remove define.
5037 (fetch_vfp_regs, store_vfp_regs)
5038 (arm_linux_nat_target::read_description): Use ARM_VFP3_REGS_SIZE.
5039 * arm-tdep.c (arm_register_g_packet_guesses): Use new defines.
5040
5041 2019-07-04 Alan Hayward <alan.hayward@arm.com>
5042
5043 * arch/arm-get-next-pcs.c (thumb_get_next_pcs_raw): Use ARM_
5044 defines.
5045 * arch/arm-linux.c (arm_linux_sigreturn_next_pc_offset): Likewise.
5046 * arch/arm.h (INT_REGISTER_SIZE) Rename from...
5047 (ARM_INT_REGISTER_SIZE): ...to this.
5048 (ARM_FP_REGISTER_SIZE) (ARM_VFP_REGISTER_SIZE): Add define.
5049 * arm-linux-tdep.c (ARM_LINUX_JB_ELEMENT_SIZE)
5050 (ARM_LINUX_SIZEOF_GREGSET, arm_linux_supply_gregset)
5051 (arm_linux_collect_gregset, supply_nwfpe_register)
5052 (collect_nwfpe_register, arm_linux_collect_nwfpe): Use ARM_
5053 defines.
5054 * arm-linux-tdep.h (ARM_LINUX_SIZEOF_NWFPE, NWFPE_FPSR_OFFSET)
5055 (NWFPE_FPCR_OFFSET, NWFPE_TAGS_OFFSET): Likewise
5056 * arm-nbsd-tdep.c (ARM_NBSD_JB_ELEMENT_SIZE): Likewise.
5057 * arm-tdep.c (arm_push_dummy_call, arm_extract_return_value)
5058 (arm_return_in_memory, arm_store_return_value)
5059 (arm_get_longjmp_target, arm_register_g_packet_guesses)
5060 (arm_record_ld_st_multiple): Likewise.
5061 * arm-tdep.h (FP_REGISTER_SIZE, VFP_REGISTER_SIZE): Remove.
5062 * arm-wince-tdep.c (ARM_WINCE_JB_ELEMENT_SIZE): Use ARM_ defines.
5063
5064 2019-07-04 Alan Hayward <alan.hayward@arm.com>
5065
5066 * aarch64-linux-tdep.c (aarch64_linux_init_abi): Use
5067 AARCH64_DISPLACED_MODIFIED_INSNS.
5068 * aarch64-tdep.c (struct aarch64_displaced_step_data)
5069 (aarch64_displaced_step_copy_insn): Likewise.
5070 * aarch64-tdep.h (DISPLACED_MODIFIED_INSNS): Rename from..
5071 (AARCH64_DISPLACED_MODIFIED_INSNS): ...to this.
5072 * arm-linux-tdep.c (arm_linux_cleanup_svc): Use
5073 ARM_DISPLACED_MODIFIED_INSNS.
5074 * arm-tdep.c (arm_gdbarch_init): Likewise.
5075 * arm-tdep.h (DISPLACED_MODIFIED_INSNS): Rename from..
5076 (ARM_DISPLACED_MODIFIED_INSNS): ...to this.
5077 (struct arm_displaced_step_closure): Use
5078 ARM_DISPLACED_MODIFIED_INSNS.
5079
5080 2019-07-04 Alan Hayward <alan.hayward@arm.com>
5081
5082 * features/Makefile: Remove unused xml files.
5083 * features/aarch64.xml: Remove.
5084 * features/i386/amd64-avx-avx512-linux.xml: Remove.
5085 * features/i386/amd64-avx-avx512.xml: Remove.
5086 * features/i386/amd64-avx-linux.xml: Remove.
5087 * features/i386/amd64-avx-mpx-avx512-pku-linux.xml: Remove.
5088 * features/i386/amd64-avx-mpx-avx512-pku.xml: Remove.
5089 * features/i386/amd64-avx-mpx-linux.xml: Remove.
5090 * features/i386/amd64-avx-mpx.xml: Remove.
5091 * features/i386/amd64-avx.xml: Remove.
5092 * features/i386/amd64-linux.xml: Remove.
5093 * features/i386/amd64-mpx-linux.xml: Remove.
5094 * features/i386/amd64-mpx.xml: Remove.
5095 * features/i386/amd64.xml: Remove.
5096 * features/i386/i386-avx-avx512-linux.xml: Remove.
5097 * features/i386/i386-avx-avx512.xml: Remove.
5098 * features/i386/i386-avx-linux.xml: Remove.
5099 * features/i386/i386-avx-mpx-avx512-pku-linux.xml: Remove.
5100 * features/i386/i386-avx-mpx-avx512-pku.xml: Remove.
5101 * features/i386/i386-avx-mpx-linux.xml: Remove.
5102 * features/i386/i386-avx-mpx.xml: Remove.
5103 * features/i386/i386-avx.xml: Remove.
5104 * features/i386/i386-linux.xml: Remove.
5105 * features/i386/i386-mmx-linux.xml: Remove.
5106 * features/i386/i386-mmx.xml: Remove.
5107 * features/i386/i386-mpx-linux.xml: Remove.
5108 * features/i386/i386-mpx.xml: Remove.
5109 * features/i386/i386.xml: Remove.
5110 * features/i386/x32-avx-avx512-linux.xml: Remove.
5111 * features/i386/x32-avx-linux.xml: Remove.
5112 * features/i386/x32-linux.xml: Remove.
5113
5114 2019-07-04 Alan Hayward <alan.hayward@arm.com>
5115
5116 * regformats/aarch64.dat: Remove.
5117 * regformats/i386/amd64-avx-avx512-linux.dat: Remove.
5118 * regformats/i386/amd64-avx-linux.dat: Remove.
5119 * regformats/i386/amd64-avx-mpx-avx512-pku-linux.dat: Remove.
5120 * regformats/i386/amd64-avx-mpx-linux.dat: Remove.
5121 * regformats/i386/amd64-linux.dat: Remove.
5122 * regformats/i386/amd64-mpx-linux.dat: Remove.
5123 * regformats/i386/amd64.dat: Remove.
5124 * regformats/i386/i386-avx-avx512-linux.dat: Remove.
5125 * regformats/i386/i386-avx-linux.dat: Remove.
5126 * regformats/i386/i386-avx-mpx-avx512-pku-linux.dat: Remove.
5127 * regformats/i386/i386-avx-mpx-linux.dat: Remove.
5128 * regformats/i386/i386-linux.dat: Remove.
5129 * regformats/i386/i386-mmx-linux.dat: Remove.
5130 * regformats/i386/i386-mpx-linux.dat: Remove.
5131 * regformats/i386/i386.dat: Remove.
5132 * regformats/i386/x32-avx-avx512-linux.dat: Remove.
5133 * regformats/i386/x32-avx-linux.dat: Remove.
5134 * regformats/i386/x32-linux.dat: Remove.
5135
5136 2019-07-04 Alan Hayward <alan.hayward@arm.com>
5137
5138 * aarch64-tdep.c: Remove xml self tests.
5139 * amd64-linux-tdep.c: Likewise.
5140 * amd64-tdep.c: Likewise.
5141 * i386-linux-tdep.c: Likewise.
5142 * i386-tdep.c: Likewise.
5143
5144 2019-07-03 Pedro Alves <palves@redhat.com>
5145
5146 PR cli/24732
5147 * cli/cli-cmds.c (struct pipe_cmd_opts): New.
5148 (pipe_cmd_option_defs): New.
5149 (make_pipe_cmd_options_def_group): New.
5150 (pipe_command): Use gdb::option::process_options.
5151 (pipe_command_completer): New function.
5152 (_initialize_cli_cmds): Install completer for "pipe" command.
5153
5154 2019-07-03 Pedro Alves <palves@redhat.com>
5155
5156 * cli/cli-option.c (union option_value) <string>: New field.
5157 (struct option_def_and_value): Add ctor, move ctor, dtor and
5158 use DISABLE_COPY_AND_ASSIGN.
5159 (option_def_and_value::clear_value): New.
5160 (parse_option, save_option_value_in_ctx, get_val_type_str)
5161 (add_setshow_cmds_for_options): Handle var_string.
5162 * cli-option.h (union option_def::var_address) <string>: New
5163 field.
5164 (struct string_option_def): New.
5165 * maint-test-options.c (struct test_options_opts): Add default
5166 ctor and use DISABLE_COPY_AND_ASSIGN.
5167 <string_opt>: New field.
5168 (test_options_opts::~test_options_opts): New.
5169 (test_options_opts::dump): Also dump "-string".
5170 (test_options_option_defs): Install "string.
5171
5172 2019-07-03 Pedro Alves <palves@redhat.com>
5173
5174 * cli/cli-option.c (parse_option) <var_enum>: Don't return an
5175 option_value with a null enumeration.
5176 (complete_options): Save the option values in the context.
5177 (save_option_value_in_ctx): New, factored out from ...
5178 (process_options): ... here.
5179 * cli/cli-utils.c (get_ulongest): Don't advance PP until the end
5180 of the function.
5181 * maint-test-options.c (test_options_opts::dump): New, factored
5182 out from ...
5183 (maintenance_test_options_command_mode): ... here.
5184 (maintenance_test_options_command_completion_result): Delete.
5185 (maintenance_test_options_command_completion_text): Update
5186 comment.
5187 (maintenance_show_test_options_completion_result): Change
5188 prototype. Just print
5189 maintenance_test_options_command_completion_text.
5190 (save_completion_result): New.
5191 (maintenance_test_options_completer_mode): Pass options context to
5192 complete_options, and then save a dump.
5193 (_initialize_maint_test_options): Use add_cmd to install "maint
5194 show test-options-completion-result".
5195
5196 2019-07-03 Pedro Alves <palves@redhat.com>
5197
5198 * NEWS (New commands): Mention "with" and "maint with".
5199 * cli/cli-cmds.c (with_command_1, with_command_completer_1)
5200 (with_command, with_command_completer): New.
5201 (pipe_command): Adjust to new repeat_previous
5202 interface.
5203 (_initialize_cli_cmds): Install the "with" command and its "w"
5204 alias.
5205 * cli/cli-cmds.h (with_command_1, with_command_completer_1): New
5206 declarations.
5207 * cli/cli-setshow.c (parse_cli_var_uinteger)
5208 (parse_cli_var_zuinteger_unlimited, do_set_command): Handle empty
5209 argument strings for all var_types.
5210 (get_setshow_command_value_string): New, factored out from ...
5211 (do_show_command): ... this.
5212 * cli/cli-setshow.h: Include <string>.
5213 (get_setshow_command_value_string): Declare.
5214 * command.h (repeat_previous): Now returns const char *. Adjust
5215 comment.
5216 * maint.c: Include "cli/cli-cmds.h".
5217 (maintenance_with_cmd, maintenance_with_cmd_completer): New.
5218 (_initialize_maint_cmds): Register the "maintenance with" command.
5219 * top.c (repeat_previous): Move bits from pipe_command here:
5220 Return the saved command line, if any; error out if there's no
5221 command to relaunch.
5222
5223 2019-07-03 Pedro Alves <palves@redhat.com>
5224
5225 * NEWS (New commands): Mention "maint set/show test-settings"
5226 instead of "maint test-settings".
5227 * maint-test-settings.c (maintenance_test_settings_list): Delete.
5228 (maintenance_test_settings_set_list): Rename to ...
5229 (maintenance_set_test_settings_list): ... this.
5230 (maintenance_test_settings_show_list): Rename to ...
5231 (maintenance_show_test_settings_list): ... this.
5232 (maintenance_test_settings_cmd): Delete.
5233 (maintenance_test_settings_set_cmd): ...
5234 (maintenance_set_test_settings_cmd): ... this.
5235 (maintenance_test_settings_show_cmd): ...
5236 (maintenance_show_test_settings_cmd): ... this.
5237 (maintenance_test_settings_show_value_cmd):
5238 (maintenance_show_test_settings_value_cmd): ... this.
5239 (_initialize_maint_test_settings): No longer install the "maint
5240 test-settings" prefix command. Rename "maint test-settings set"
5241 to "maint set test-settings", and "maint test-settings show" to
5242 "maint show test-settings". Adjust all subcommands.
5243
5244 2019-07-03 Pedro Alves <palves@redhat.com>
5245
5246 * maint-test-settings.c: Fix file's intro comment. Replace all
5247 references to "test-options" with references to "test-settings",
5248 in comments.
5249
5250 2019-07-03 Pedro Alves <palves@redhat.com>
5251
5252 * maint-test-settings.c (maintenance_test_settings_xxx)
5253 (maintenance_test_settings_yyy, maintenance_test_settings_zzz):
5254 New.
5255 (maintenance_test_settings_enums): Use them.
5256 (maintenance_test_settings_enum): Default to
5257 maintenance_test_settings_xxx.
5258 (_initialize_maint_test_settings): Initialize
5259 MAINTENANCE_TEST_SETTINGS_FILENAME.
5260
5261 2019-07-02 Simon Marchi <simon.marchi@polymtl.ca>
5262
5263 * breakpoint.h (remove_breakpoints_inf): Change return type to
5264 void, move function documentation here.
5265 * breakpoint.c (remove_breakpoints_inf): Change return type to
5266 void, move function documentation to header.
5267
5268 2019-07-02 Pedro Alves <palves@redhat.com>
5269
5270 * NEWS (Completion improvements): Mention "info threads".
5271 * thread.c (struct info_threads_opts, info_threads_option_defs)
5272 (make_info_threads_options_def_group): New.
5273 (info_threads_command): Use gdb::option::process_options.
5274 (info_threads_command_completer): New.
5275 (_initialize_thread): Use gdb::option::build_help to build the
5276 help text for "info threads".
5277
5278 2019-07-02 Simon Marchi <simon.marchi@polymtl.ca>
5279
5280 * defs.h (generic_load): Move from here...
5281 * symfile.h (generic_load): ... to here. Rename name parameter
5282 to args.
5283 * symfile.c (generic_load): Add comment.
5284
5285 2019-07-01 Tom Tromey <tromey@adacore.com>
5286
5287 * dwarf2read.c
5288 (dw2_debug_names_iterator::find_vec_in_debug_names): Hoist
5289 declaration of without_params. Fix formatting.
5290
5291 2019-07-01 Tom Tromey <tromey@adacore.com>
5292
5293 * ada-exp.y (find_primitive_type): Update.
5294 * ada-lang.h (ada_lookup_symbol): Update.
5295 * ada-lang.c (ada_lookup_symbol): Remove "is_a_field_of_this"
5296 parameter.
5297 (ada_lookup_encoded_symbol, ada_lookup_symbol_nonlocal): Update.
5298
5299 2019-06-28 Sergio Durigan Junior <sergiodj@redhat.com>
5300
5301 PR breakpoints/24541
5302 * gdbarch.c: Regenerate.
5303 * gdbarch.h: Regenerate.
5304 * gdbarch.sh: Add 'stap_adjust_register'.
5305 * i386-tdep.c: Include '<unordered_set>'.
5306 (i386_stap_adjust_register): New function.
5307 (i386_elf_init_abi): Register 'i386_stap_adjust_register'.
5308 * stap-probe.c (stap_parse_register_operand): Call
5309 'gdbarch_stap_adjust_register'.
5310
5311 2019-06-28 Sergio Durigan Junior <sergiodj@redhat.com>
5312
5313 PR python/24742
5314 https://bugzilla.redhat.com/show_bug.cgi?id=1723564
5315 * python/python.c (do_start_initialization): Use 'xmalloc'
5316 instead of 'PyMem_Malloc'.
5317
5318 2019-06-28 Tom Tromey <tromey@adacore.com>
5319
5320 * dwarf2read.c (partial_die_info::read): Prefer the linkage name
5321 for Ada.
5322
5323 2019-06-27 Tom Tromey <tromey@adacore.com>
5324
5325 * arm-tdep.c (arm_objfile_data_key): Move lower. Change type to
5326 objfile_key.
5327 (arm_find_mapping_symbol, arm_record_special_symbol)
5328 (_initialize_arm_tdep): Update.
5329 (arm_objfile_data_free): Remove.
5330
5331 2019-06-27 Tom Tromey <tromey@adacore.com>
5332
5333 * cp-valprint.c (cp_print_value_fields): Pass opts, not options,
5334 to cp_print_static_field.
5335
5336 2019-06-26 Tom Tromey <tromey@adacore.com>
5337
5338 * minsyms.c (lookup_minimal_symbol_solib_trampoline): Remove.
5339 * minsyms.h (lookup_minimal_symbol_solib_trampoline): Don't
5340 declare.
5341
5342 2019-06-26 Alan Hayward <alan.hayward@arm.com>
5343
5344 * features/aarch64-core.c (create_feature_aarch64_core):
5345 Regenerate.
5346 * features/aarch64-core.xml: Add cpsr flags.
5347
5348 2019-06-26 Alan Hayward <alan.hayward@arm.com>
5349
5350 * arm-tdep.c (arm_gnu_triplet_regexp): New function.
5351 (arm_gdbarch_init): Add arm_gnu_triplet_regexp.
5352
5353 2019-06-25 Simon Marchi <simon.marchi@polymtl.ca>
5354
5355 * arm-tdep.c (struct arm_per_objfile) <section_maps_sorted>: New
5356 field.
5357 (arm_find_mapping_symbol): Sort mapping symbol vectors on first
5358 use.
5359 (arm_record_special_symbol): Don't insert new symbol in sorted
5360 position, push it at the end.
5361
5362 2019-06-25 Simon Marchi <simon.marchi@polymtl.ca>
5363
5364 * arm-tdep.c (struct arm_mapping_symbol) (operator <): New.
5365 (arm_mapping_symbol_s): Remove.
5366 (DEF_VEC_O(arm_mapping_symbol_s)): Remove.
5367 (arm_mapping_symbol_vec): New typedef.
5368 (struct arm_per_objfile): Add constructor.
5369 <section_maps>: Change type to
5370 std::unique_ptr<arm_mapping_symbol_vec[]>.
5371 (arm_compare_mapping_symbols): Remove.
5372 (arm_find_mapping_symbol): Adjust to section_maps type change.
5373 (arm_objfile_data_free): Call delete on arm_per_objfile.
5374 (arm_record_special_symbol): Adjust to section_maps type change.
5375 Allocate arm_per_objfile with new.
5376
5377 2019-06-25 Philippe Waroquiers <philippe.waroquiers@skynet.be>
5378
5379 * cli/cli-cmds.c (alias_command): Compare the alias prefix
5380 with the command prefix.
5381
5382 2019-06-25 Tom Tromey <tom@tromey.com>
5383
5384 * tui/tui-wingeneral.c (tui_delete_win): Remove "return".
5385 * tui/tui-data.c (~tui_gen_win_info): Remove "if".
5386
5387 2019-06-25 Tom Tromey <tom@tromey.com>
5388
5389 * tui/tui-layout.c (init_and_make_win): Assert on unrecognized
5390 type.
5391 * tui/tui-data.h (struct tui_gen_win_info): Make constructor
5392 protected.
5393
5394 2019-06-25 Tom Tromey <tom@tromey.com>
5395
5396 * tui/tui-winsource.c
5397 (tui_source_window_base::set_is_exec_point_at): Add check against
5398 LOA_ADDRESS.
5399
5400 2019-06-25 Tom Tromey <tom@tromey.com>
5401
5402 * tui/tui-source.c (tui_set_source_content): Don't check before
5403 xfree.
5404 * tui/tui-disasm.c (tui_disassemble): Don't check before xfree.
5405
5406 2019-06-25 Tom Tromey <tom@tromey.com>
5407
5408 * tui/tui-winsource.h (tui_update_source_window_as_is)
5409 (tui_alloc_source_buffer, tui_line_is_displayed)
5410 (tui_addr_is_displayed): Change type of win_info.
5411 * tui/tui-winsource.c (tui_update_source_window_as_is)
5412 (tui_clear_source_content, tui_show_source_line)
5413 (tui_show_source_content, tui_source_window_base::refill)
5414 (tui_source_window_base::set_is_exec_point_at)
5415 (tui_source_window_base::set_is_exec_point_at)
5416 (tui_update_breakpoint_info, tui_set_exec_info_content): Update.
5417 (tui_alloc_source_buffer, tui_line_is_displayed)
5418 (tui_addr_is_displayed): Change type of win_info. Update.
5419 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights)
5420 (tui_source_window_base::do_make_visible_with_new_height):
5421 Update.
5422 * tui/tui-source.c (tui_set_source_content)
5423 (tui_set_source_content_nil)
5424 (tui_source_window::do_scroll_vertical): Update.
5425 * tui/tui-layout.c (show_layout): Update.
5426 * tui/tui-disasm.c (tui_set_disassem_content)
5427 (tui_disasm_window::do_scroll_vertical): Update.
5428 * tui/tui-data.h (tui_win_content): Remove.
5429 (struct tui_gen_win_info) <content, content_size>: Remove.
5430 (struct tui_source_element): Add initializers and destructor.
5431 (union tui_which_element, struct tui_win_element): Remove.
5432 (struct tui_source_window_base) <content>: New field.
5433 (struct tui_data_window): Remove destructor.
5434 (tui_alloc_content, tui_free_win_content)
5435 (tui_free_all_source_wins_content): Don't declare.
5436 * tui/tui-data.c (tui_initialize_static_data): Update.
5437 (init_content_element, tui_alloc_content): Remove.
5438 (~tui_gen_win_info): Update.
5439 (~tui_data_window, tui_free_all_source_wins_content)
5440 (tui_free_win_content, free_content, free_content_elements):
5441 Remove.
5442
5443 2019-06-25 Tom Tromey <tom@tromey.com>
5444
5445 * tui/tui-winsource.h (tui_clear_source_content)
5446 (tui_erase_source_content, tui_show_source_content): Change type
5447 of win_info.
5448 * tui/tui-winsource.c (tui_clear_source_content)
5449 (tui_erase_source_content, tui_show_source_content): Change type
5450 of win_info.
5451 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Update.
5452 * tui/tui-source.h (tui_set_source_content_nil): Change type of
5453 win_info.
5454 * tui/tui-source.c (tui_set_source_content_nil): Change type of
5455 win_info.
5456 * tui/tui-layout.c (show_source_or_disasm_and_command): Update.
5457
5458 2019-06-25 Tom Tromey <tom@tromey.com>
5459
5460 * tui/tui-winsource.c (tui_clear_source_content)
5461 (tui_source_window_base::set_is_exec_point_at): Update.
5462 * tui/tui-source.c (tui_set_source_content_nil): Update.
5463 * tui/tui-data.h (struct tui_source_element) <is_exec_point>: Now
5464 a bool.
5465 * tui/tui-data.c (init_content_element): Update.
5466
5467 2019-06-25 Tom Tromey <tom@tromey.com>
5468
5469 * tui/tui-wingeneral.c (tui_gen_win_info::make_visible): Update.
5470 * tui/tui-win.c (make_invisible_and_set_new_height): Update.
5471 * tui/tui-layout.c (init_and_make_win): Update.
5472 * tui/tui.h (enum tui_win_type): Update.
5473 * tui/tui-data.h (tui_win_is_auxiliary): Rename from
5474 tui_win_is_auxillary.
5475 * tui/tui-data.c (tui_win_is_auxiliary): Rename from
5476 tui_win_is_auxillary.
5477
5478 2019-06-25 Tom Tromey <tom@tromey.com>
5479
5480 * tui/tui-wingeneral.c (tui_data_window::refresh_window): Update.
5481 * tui/tui-windata.c (tui_data_window::first_data_item_displayed)
5482 (tui_delete_data_content_windows, tui_display_all_data)
5483 (tui_data_window::do_scroll_vertical, tui_display_data_from):
5484 Update.
5485 * tui/tui-win.c (tui_data_window::set_new_height): Simplify.
5486 * tui/tui-regs.c (tui_last_regs_line_no)
5487 (tui_line_from_reg_element_no, tui_first_reg_element_no_inline)
5488 (tui_show_registers): Update.
5489 (tui_show_register_group): Return void. Update.
5490 (tui_display_registers_from, tui_display_reg_element_at_line)
5491 (tui_display_registers_from_line, tui_check_register_values):
5492 Update.
5493 * tui/tui-data.h (union tui_which_element) <data_window>: Remove
5494 member.
5495 (struct tui_data_window) <regs_content>: Now a std::vector.
5496 <regs_content_count>: Remove.
5497 (tui_add_content_elements, tui_free_data_content): Don't declare.
5498 * tui/tui-data.c (tui_data_window::clear_detail): Update.
5499 (init_content_element): Remove DATA_WIN case. Add assert.
5500 (tui_add_content_elements): Remove.
5501 (tui_data_window): Update.
5502 (tui_free_data_content): Remove.
5503 (free_content_elements): Remove DATA_WIN case.
5504
5505 2019-06-25 Tom Tromey <tom@tromey.com>
5506
5507 * tui/tui-data.c (tui_data_item_window): Update.
5508 * tui/tui-windata.h (tui_check_data_values): Don't declare.
5509 * tui/tui-windata.c (tui_display_all_data)
5510 (tui_display_data_from_line): Update.
5511 (tui_check_data_values): Remove.
5512 * tui/tui-regs.c (tui_show_register_group)
5513 (tui_display_reg_element_at_line): Update.
5514 * tui/tui-hooks.c (tui_register_changed)
5515 (tui_refresh_frame_and_register_information): Call
5516 tui_check_register_values.
5517 * tui/tui-data.h (struct tui_data_window) <data_content,
5518 data_content_count, data_type>: Remove.
5519 (enum tui_data_type): Remove.
5520
5521 * tui/tui-data.c (tui_data_window::clear_detail)
5522 (~tui_data_window): Update.
5523
5524 2019-06-25 Tom Tromey <tom@tromey.com>
5525
5526 * tui/tui-windata.h (tui_first_data_item_displayed): Don't
5527 declare.
5528 * tui/tui-windata.c (tui_data_window::first_data_item_displayed):
5529 Rename from tui_first_data_item_displayed. Update.
5530 (tui_data_window::refresh_all)
5531 (tui_data_window::do_scroll_vertical): Update.
5532 * tui/tui-data.h (struct tui_data_window)
5533 <first_data_item_displayed>: Declare new method.
5534
5535 2019-06-25 Tom Tromey <tom@tromey.com>
5536
5537 * tui/tui-data.h (tui_init_generic_part): Don't declare.
5538 * tui/tui-data.c (tui_init_generic_part): Remove, moving
5539 contents...
5540 (tui_initialize_static_data): ...here.
5541
5542 2019-06-25 Tom Tromey <tom@tromey.com>
5543
5544 * tui/tui-regs.c (tui_show_registers, tui_show_register_group)
5545 (tui_display_registers_from, tui_check_register_values): Update.
5546 (tui_display_register): Remove win_info parameter; update.
5547 (tui_get_register): Change type of parameters.
5548 * tui/tui-data.h (struct tui_data_element): Remove.
5549 (union tui_which_element) <data>: Remove.
5550 <data_window>: Change type.
5551 (struct tui_data_item_window): New.
5552 * tui/tui-data.c (init_content_element): Remove DATA_ITEM_WIN
5553 case. Add assert.
5554 (~tui_data_item_window): New destructor.
5555 (free_content_elements): Remove DATA_ITEM_WIN case.
5556
5557 2019-06-25 Tom Tromey <tom@tromey.com>
5558
5559 * tui/tui.h (enum tui_win_type) <MAX_WINDOWS, UNDEFINED_WIN>:
5560 Remove.
5561
5562 2019-06-25 Tom Tromey <tom@tromey.com>
5563
5564 * tui/tui-data.h (struct tui_command_element): Remove.
5565 (union tui_which_element) <command>: Remove.
5566 * tui/tui-data.c (init_content_element): Remove CMD_WIN case. Add
5567 assert.
5568 (free_content_elements): Remove CMD_WIN case.
5569
5570 2019-06-25 Tom Tromey <tom@tromey.com>
5571
5572 * tui/tui-layout.c (tui_set_layout): Update.
5573 * tui/tui-data.h (struct tui_layout_def) <split>: Remove.
5574 * tui/tui-data.c (layout_def): Update.
5575
5576 2019-06-25 Tom Tromey <tom@tromey.com>
5577
5578 * tui/tui-wingeneral.c (tui_refresh_all): Update.
5579 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights)
5580 (tui_source_window_base::set_new_height): Update.
5581 * tui/tui-stack.c (tui_make_status_line): Change parameter type.
5582 Update.
5583 (tui_set_locator_fullname, tui_set_locator_info)
5584 (tui_show_frame_info): Update.
5585 * tui/tui-source.c (tui_set_source_content)
5586 (tui_source_is_displayed): Update.
5587 * tui/tui-layout.c (show_source_disasm_command, show_data)
5588 (show_source_or_disasm_and_command): Update.
5589 * tui/tui-disasm.c (tui_set_disassem_content)
5590 (tui_get_begin_asm_address): Update.
5591 * tui/tui-data.h (struct tui_locator_element): Remove.
5592 (union tui_which_element) <locator>: Remove.
5593 (struct tui_locator_window): New.
5594 (tui_locator_win_info_ptr): Change return type.
5595 * tui/tui-data.c (_locator): Change type.
5596 (tui_locator_win_info_ptr): Change return type.
5597 (init_content_element): Remove LOCATOR_WIN case. Add assert.
5598 (tui_alloc_content): Add assert.
5599
5600 2019-06-25 Tom Tromey <tom@tromey.com>
5601
5602 * tui/tui-winsource.c
5603 (tui_exec_info_window::maybe_allocate_content): New method.
5604 (tui_set_exec_info_content, tui_show_exec_info_content): Update.
5605 * tui/tui-layout.c (init_and_make_win): Add EXEC_INFO_WIN case.
5606 (make_source_or_disasm_window): Add cast.
5607 * tui/tui-data.h (union tui_which_element) <simple_string>:
5608 Remove.
5609 (struct tui_source_info): New.
5610 (struct tui_source_window_base) <execution_info>: Change type.
5611 * tui/tui-data.c (init_content_element): Remove EXEC_INFO_WIN
5612 case, and add assert.
5613 (tui_alloc_content): Add assert.
5614
5615 2019-06-25 Tom Tromey <tom@tromey.com>
5616
5617 * tui/tui-data.h (tui_alloc_win_info): Don't declare.
5618 * tui/tui-layout.c (init_and_make_win): Use "new" directly.
5619 * tui/tui-data.c (tui_alloc_win_info): Remove.
5620
5621 2019-06-25 Tom Tromey <tom@tromey.com>
5622
5623 * tui/tui-win.c (tui_set_win_focus_to): Don't check window type.
5624 * tui/tui-wingeneral.c (tui_unhighlight_win): Check
5625 can_highlight.
5626
5627 2019-06-25 Tom Tromey <tom@tromey.com>
5628
5629 * tui/tui-win.c (tui_source_window_base::update_tab_width): Call
5630 make_visible_with_new_height method.
5631 (tui_win_info::make_visible_with_new_height): New method.
5632 (tui_source_window_base::do_make_visible_with_new_height)
5633 (tui_data_window::do_make_visible_with_new_height)
5634 (tui_cmd_window::do_make_visible_with_new_height): New methods.
5635 (make_visible_with_new_height): Remove.
5636 (tui_resize_all, tui_adjust_win_heights): Use
5637 make_visible_with_new_height method.
5638 * tui/tui-data.h (struct tui_win_info)
5639 <do_make_visible_with_new_height, make_visible_with_new_height>:
5640 New methods.
5641 (struct tui_source_window_base, struct tui_data_window)
5642 (struct tui_cmd_window) <do_make_visible_with_new_height>: New
5643 methods.
5644
5645 2019-06-25 Tom Tromey <tom@tromey.com>
5646
5647 * tui/tui-win.c (tui_source_window_base::update_tab_width): New
5648 method.
5649 (update_tab_width): Call update_tab_width method.
5650 * tui/tui-data.h (struct tui_win_info)
5651 (struct tui_source_window_base) <update_tab_width>: New methods.
5652
5653 2019-06-25 Tom Tromey <tom@tromey.com>
5654
5655 * tui/tui-wingeneral.h (tui_make_window): Change type of "box_it"
5656 parameter.
5657 * tui/tui-wingeneral.c (tui_make_window): Change type of "box_it"
5658 parameter.
5659 (tui_gen_win_info::make_visible): Update.
5660 * tui/tui-layout.c (init_and_make_win): Change type of "box_it"
5661 parameter.
5662 * tui/tui-data.h (enum tui_box): New enum.
5663 (BOX_WINDOW, DONT_BOX_WINDOW): Remove defines.
5664
5665 2019-06-25 Tom Tromey <tom@tromey.com>
5666
5667 * tui/tui-layout.c (make_source_or_disasm_window): Always use
5668 init_and_make_win for EXEC_INFO_WIN.
5669 * tui/tui-data.h (struct tui_gen_win_info) <~tui_gen_win_info>: No
5670 longer inline.
5671 (struct tui_win_info) <~tui_win_info>: Inline.
5672 (tui_source_exec_info_win_ptr, tui_disassem_exec_info_win_ptr):
5673 Don't declare.
5674 * tui/tui-data.c (source_win, disasm_win): Remove globals.
5675 (tui_source_exec_info_win_ptr, tui_disassem_exec_info_win_ptr):
5676 Remove.
5677 (tui_initialize_static_data): Update.
5678 (~tui_gen_win_info): Handle more cleanup here.
5679 (~tui_source_window_base): Delete "execution_info".
5680 (~tui_win_info): Move code to ~tui_gen_win_info; remove.
5681
5682 2019-06-25 Tom Tromey <tom@tromey.com>
5683
5684 * tui/tui-layout.c (make_command_window): Don't set
5685 can_highlight.
5686 (show_source_disasm_command): Call the reset method.
5687 (show_data): Don't set can_highlight. Call the reset method.
5688 (tui_gen_win_info::reset): Rename from init_gen_win_info
5689 (init_and_make_win): Simplify. Return tui_gen_win_info.
5690 (show_source_or_disasm_and_command): Call the reset method.
5691 * tui/tui-data.h (struct tui_gen_win_info) <reset>: New method.
5692 (struct tui_cmd_window): Set can_highlight.
5693
5694 2019-06-25 Tom Tromey <tom@tromey.com>
5695
5696 * tui/tui-wingeneral.c (tui_gen_win_info::make_visible): Rename
5697 from make_visible.
5698 (tui_make_visible, tui_make_invisible): Rewrite.
5699 (tui_win_info::make_visible): Remove.
5700 (tui_source_window_base::make_visible): Update.
5701 * tui/tui-data.h (struct tui_gen_win_info) <make_visible>: New
5702 method. Moved from...
5703 (struct tui_win_info) <make_visible>: ...here.
5704
5705 2019-06-25 Tom Tromey <tom@tromey.com>
5706
5707 * tui/tui-winsource.c
5708 (tui_source_window_base::do_scroll_horizontal): Remove direction
5709 parameter.
5710 * tui/tui-windata.c (tui_data_window::do_scroll_vertical): Remove
5711 direction parameter.
5712 * tui/tui-win.c (tui_win_info::forward_scroll)
5713 (tui_win_info::backward_scroll, tui_win_info::left_scroll)
5714 (tui_win_info::right_scroll): Update.
5715 * tui/tui-source.c (tui_source_window::do_scroll_vertical): Remove
5716 direction parameter.
5717 * tui/tui-disasm.c (tui_disasm_window::do_scroll_vertical): Remove
5718 direction parameter.
5719 * tui/tui-data.h (enum tui_scroll_direction): Remove.
5720 (struct tui_win_info) <do_scroll_vertical, do_scroll_horizontal>:
5721 Remove direction parameter.
5722 (struct tui_source_window_base, struct tui_source_window)
5723 (struct tui_disasm_window, struct tui_data_window)
5724 (struct tui_cmd_window): Update.
5725
5726 2019-06-25 Tom Tromey <tom@tromey.com>
5727
5728 * tui/tui-winsource.h (tui_set_exec_info_content)
5729 (tui_show_exec_info_content, tui_erase_exec_info_content)
5730 (tui_clear_exec_info_content, tui_update_exec_info): Change
5731 argument to tui_source_window_base.
5732 * tui/tui-winsource.c (tui_set_exec_info_content)
5733 (tui_show_exec_info_content, tui_erase_exec_info_content)
5734 (tui_clear_exec_info_content, tui_update_exec_info): Change
5735 argument to tui_source_window_base.
5736
5737 2019-06-25 Tom Tromey <tom@tromey.com>
5738
5739 * tui/tui-winsource.h (tui_set_exec_info_content): Return void.
5740 * tui/tui-winsource.c (tui_set_exec_info_content): Return void.
5741
5742 2019-06-25 Tom Tromey <tom@tromey.com>
5743
5744 * tui/tui-winsource.c (tui_set_exec_info_content): Remove NULL
5745 check.
5746
5747 2019-06-25 Tom Tromey <tom@tromey.com>
5748
5749 * tui/tui-winsource.h (tui_alloc_source_buffer): Change return
5750 type to void.
5751 * tui/tui-winsource.c (tui_alloc_source_buffer): Change return
5752 type to void.
5753 * tui/tui-source.c (tui_set_source_content): Update.
5754 * tui/tui-disasm.c (tui_set_disassem_content): Update.
5755
5756 2019-06-25 Tom Tromey <tom@tromey.com>
5757
5758 * tui/tui-win.c (window_name_completer, tui_set_focus)
5759 (tui_all_windows_info): Use name method.
5760 * tui/tui-data.h (struct tui_gen_win_info)
5761 (struct tui_source_window, struct tui_disasm_window)
5762 (struct tui_data_window, struct tui_cmd_window) <name>: New
5763 method.
5764 (tui_win_name): Don't declare.
5765 * tui/tui-data.c (tui_partial_win_by_name): Use name method.
5766 (tui_win_name): Remove.
5767
5768 2019-06-25 Tom Tromey <tom@tromey.com>
5769
5770 * tui/tui-winsource.h (tui_update_source_window)
5771 (tui_update_source_window_as_is): Change parameter type.
5772 * tui/tui-winsource.c (tui_update_source_window): Change win_info
5773 to be a tui_source_window_base.
5774 (tui_update_source_window_as_is): Likewise.
5775 * tui/tui-win.c (make_visible_with_new_height): Update.
5776
5777 2019-06-25 Tom Tromey <tom@tromey.com>
5778
5779 * tui/tui-winsource.c (tui_erase_source_content)
5780 (tui_show_source_content, tui_show_exec_info_content)
5781 (tui_erase_exec_info_content): Use refresh_window method.
5782 * tui/tui-wingeneral.h (tui_refresh_win): Don't declare.
5783 * tui/tui-wingeneral.c (tui_gen_win_info::refresh_window): Rename
5784 from tui_refresh_win.
5785 (tui_data_window::refresh_window): New method.
5786 (tui_win_info::refresh, tui_source_window_base::refresh)
5787 (tui_refresh_all): Use refresh_window method.
5788 * tui/tui-stack.c (tui_show_locator_content): Call refresh_window
5789 method.
5790 * tui/tui-regs.c (tui_display_register): Call refresh_window
5791 method.
5792 * tui/tui-layout.c (show_source_disasm_command)
5793 (show_source_or_disasm_and_command): Call refresh_window method.
5794 * tui/tui-data.h (struct tui_gen_win_info)
5795 (struct tui_data_window, struct tui_cmd_window) <refresh_window>:
5796 New method.
5797
5798 2019-06-25 Tom Tromey <tom@tromey.com>
5799
5800 * tui/tui.c (tui_rl_other_window, tui_enable)
5801 (tui_is_window_visible, tui_get_command_dimension): Update.
5802 * tui/tui-winsource.c (tui_update_source_window_as_is)
5803 (tui_clear_source_content, tui_erase_source_content)
5804 (tui_show_source_line, tui_source_window_base::refill)
5805 (tui_source_window_base::do_scroll_horizontal)
5806 (tui_source_window_base::set_is_exec_point_at)
5807 (tui_update_breakpoint_info, tui_set_exec_info_content)
5808 (tui_alloc_source_buffer, tui_line_is_displayed)
5809 (tui_addr_is_displayed): Update.
5810 * tui/tui-wingeneral.c (tui_unhighlight_win, tui_highlight_win)
5811 (tui_check_and_display_highlight_if_needed)
5812 (tui_win_info::make_visible, tui_win_info::refresh)
5813 (tui_refresh_all): Update.
5814 * tui/tui-windata.c (tui_first_data_item_displayed)
5815 (tui_delete_data_content_windows, tui_erase_data_content)
5816 (tui_display_all_data, tui_data_window::refresh_all)
5817 (tui_check_data_values): Update.
5818 * tui/tui-win.c (window_name_completer, tui_update_gdb_sizes)
5819 (tui_set_win_focus_to, tui_win_info::forward_scroll)
5820 (tui_win_info::backward_scroll, tui_refresh_all_win)
5821 (tui_resize_all, tui_set_focus, tui_all_windows_info)
5822 (update_tab_width, tui_set_win_height, tui_adjust_win_heights)
5823 (tui_source_window_base::set_new_height)
5824 (tui_data_window::set_new_height)
5825 (make_invisible_and_set_new_height)
5826 (make_visible_with_new_height, new_height_ok)
5827 (parse_scrolling_args): Update.
5828 * tui/tui-stack.c (tui_show_frame_info): Update.
5829 * tui/tui-source.c (tui_set_source_content)
5830 (tui_set_source_content_nil, tui_source_is_displayed)
5831 (tui_source_window::do_scroll_vertical): Update.
5832 * tui/tui-regs.c (tui_show_registers, tui_show_register_group)
5833 (tui_display_registers_from, tui_display_reg_element_at_line)
5834 (tui_check_register_values, tui_reg_command): Update.
5835 * tui/tui-layout.c (tui_default_win_height)
5836 (show_source_disasm_command, show_data, init_and_make_win)
5837 (show_source_or_disasm_and_command): Update.
5838 * tui/tui-io.c (update_cmdwin_start_line, tui_putc, tui_puts)
5839 (tui_redisplay_readline, tui_mld_flush)
5840 (tui_mld_erase_entire_line, tui_mld_getc, tui_cont_sig)
5841 (tui_getc): Update.
5842 * tui/tui-disasm.c (tui_set_disassem_content)
5843 (tui_disasm_window::do_scroll_vertical): Update.
5844 * tui/tui-data.h (struct tui_gen_win_info) <~tui_gen_win_info>:
5845 Now virtual.
5846 (struct tui_win_info): Derive from tui_gen_win_info.
5847 <~tui_win_info>: Mark as override.
5848 <generic>: Remove member.
5849 * tui/tui-data.c (tui_cmd_window::clear_detail, tui_next_win)
5850 (tui_prev_win, tui_partial_win_by_name, tui_win_info)
5851 (~tui_data_window, ~tui_win_info)
5852 (tui_free_all_source_wins_content): Update.
5853 * tui/tui-command.c (tui_refresh_cmd_win): Update.
5854
5855 2019-06-25 Tom Tromey <tom@tromey.com>
5856
5857 * tui/tui-layout.c (init_and_make_win): Use new.
5858 * tui/tui-data.h (struct tui_gen_win_info): Add constructor,
5859 destructor, initializers.
5860 (tui_alloc_generic_win_info): Don't declare.
5861 * tui/tui-data.c (_locator): Add argument to constructor.
5862 (source_win, disasm_win): New globals.
5863 (exec_info): Remove.
5864 (tui_source_exec_info_win_ptr, tui_disassem_exec_info_win_ptr):
5865 Update.
5866 (tui_alloc_generic_win_info): Remove.
5867 (init_content_element): Use new.
5868 (tui_win_info::tui_win_info): Update.
5869 (free_content_elements) <case DATA_WIN>: Use delete.
5870
5871 2019-06-25 Tom Tromey <tom@tromey.com>
5872
5873 * tui/tui-wingeneral.c (tui_refresh_win): Update.
5874 * tui/tui-windata.c (tui_first_data_item_displayed)
5875 (tui_delete_data_content_windows): Update.
5876 * tui/tui-win.c (tui_data_window::set_new_height): Update.
5877 * tui/tui-regs.c (tui_show_registers, tui_show_register_group)
5878 (tui_display_registers_from, tui_check_register_values): Update.
5879 * tui/tui-data.h (union tui_which_element) <data_window>: Now a
5880 pointer.
5881 * tui/tui-data.c (init_content_element): Update. Allocate the new
5882 window.
5883 (tui_free_data_content): Update.
5884 (free_content_elements) <case DATA_WIN>: Free the window.
5885
5886 2019-06-25 Tom Tromey <tom@tromey.com>
5887
5888 * tui/tui-wingeneral.c (tui_unhighlight_win, tui_highlight_win):
5889 Update.
5890 * tui/tui-layout.c (make_command_window)
5891 (show_source_disasm_command, show_data, init_and_make_win)
5892 (show_source_or_disasm_and_command): Update.
5893 * tui/tui-data.h (struct tui_win_info) <set_highlight>: New
5894 method.
5895 <can_highight, is_highlighted>: Now bool.
5896 (tui_set_win_highlight): Don't declare.
5897 * tui/tui-data.c (tui_set_win_highlight): Remove.
5898
5899 2019-06-25 Tom Tromey <tom@tromey.com>
5900
5901 * tui/tui-wingeneral.c (make_visible): Remove check of window
5902 type.
5903
5904 2019-06-25 Tom Tromey <tom@tromey.com>
5905
5906 * tui/tui-win.c (tui_win_info::max_height)
5907 (tui_cmd_window::max_height): New methods.
5908 (new_height_ok): Call max_height.
5909 * tui/tui-data.h (struct tui_win_info, struct tui_cmd_window)
5910 <max_height>: New method.
5911
5912 2019-06-25 Tom Tromey <tom@tromey.com>
5913
5914 * tui/tui-win.c (tui_source_window_base::set_new_height)
5915 (tui_data_window::set_new_height): New methods.
5916 (make_invisible_and_set_new_height): Call set_new_height method.
5917 * tui/tui-data.h (struct tui_win_info)
5918 (struct tui_source_window_base, struct tui_data_window)
5919 <set_new_height>: New method.
5920
5921 2019-06-25 Tom Tromey <tom@tromey.com>
5922
5923 * tui/tui.c (tui_rl_other_window): Call the refresh_all method.
5924 * tui/tui-windata.c (tui_data_window::refresh_all): Rename from
5925 tui_refresh_data_win.
5926 * tui/tui-win.c (tui_source_window_base::refresh_all): New
5927 method.
5928 (tui_refresh_all_win): Call the refresh_all method.
5929 (tui_set_focus): Likewise.
5930 * tui/tui-data.h (struct tui_win_info) <refresh_all>: New method.
5931 (struct tui_source_window_base, struct tui_data_window) <refresh>:
5932 Likewise.
5933
5934 2019-06-25 Tom Tromey <tom@tromey.com>
5935
5936 * tui/tui-winsource.h (tui_refill_source_window)
5937 (tui_set_is_exec_point_at): Don't declare.
5938 * tui/tui-winsource.c (tui_update_source_windows_with_addr)
5939 (tui_source_window_base::refill): Rename from
5940 tui_refill_source_window.
5941 (tui_source_window_base::do_scroll_horizontal): Update.
5942 (tui_source_window_base::set_is_exec_point_at): Rename from
5943 tui_set_is_exec_point_at.
5944 (tui_update_all_breakpoint_info): Update.
5945 * tui/tui-stack.c (tui_show_frame_info): Update.
5946 * tui/tui-layout.c (show_data): Add cast.
5947 * tui/tui-hooks.c (tui_redisplay_source): Call refill method.
5948 * tui/tui-data.h (struct tui_source_window_base) <refill,
5949 set_is_exec_point_at>: New methods.
5950 (tui_source_windows, tui_add_to_source_windows): Update types.
5951 (tui_add_to_source_windows): Remove redundant declaration.
5952 * tui/tui-data.c (source_windows): Store tui_source_window_base.
5953 (tui_source_windows): Change return type.
5954 (tui_clear_source_windows_detail): Update.
5955 (tui_add_to_source_windows): Change type of parameter.
5956 (tui_free_all_source_wins_content): Update.
5957
5958 2019-06-25 Tom Tromey <tom@tromey.com>
5959
5960 * tui/tui-wingeneral.c (tui_win_info::refresh)
5961 (tui_source_window_base::refresh): New methods.
5962 (tui_refresh_all): Call the refresh method.
5963 * tui/tui-data.h (struct tui_win_info)
5964 (struct tui_source_window_base) <refresh>: New method.
5965
5966 2019-06-25 Tom Tromey <tom@tromey.com>
5967
5968 * tui/tui.h (tui_is_window_visible): Return bool.
5969 * tui/tui.c (tui_is_window_visible): Return bool.
5970 * tui/tui-wingeneral.c (tui_make_window, make_visible)
5971 (tui_make_visible, tui_make_invisible)
5972 (tui_win_info::make_visible)
5973 (tui_source_window_base::make_visible, make_all_visible)
5974 (tui_make_all_visible, tui_make_all_invisible): Update.
5975 * tui/tui-windata.c (tui_delete_data_content_windows): Update.
5976 * tui/tui-data.h (struct tui_gen_win_info) <is_visible>: Now
5977 bool.
5978 (struct tui_win_info, struct tui_source_window_base)
5979 (struct tui_cmd_window) <make_visible>: Change parameter to bool.
5980 * tui/tui-data.c (tui_init_generic_part): Update.
5981
5982 2019-06-25 Tom Tromey <tom@tromey.com>
5983
5984 * tui/tui-wingeneral.c (tui_win_info::make_visible)
5985 (tui_source_window_base::make_visible): New methods.
5986 (make_all_visible): Make method call.
5987 * tui/tui-data.h (struct tui_win_info) <make_visible>: New method.
5988 (struct tui_source_window_base, struct tui_cmd_window): Override
5989 make_visible.
5990 (tui_win_is_source_type): Don't declare.
5991 * tui/tui-data.c (tui_win_is_source_type): Remove.
5992
5993 2019-06-25 Tom Tromey <tom@tromey.com>
5994
5995 * tui/tui-layout.c (show_source_or_disasm_and_command): Remove
5996 NULL check.
5997
5998 2019-06-25 Tom Tromey <tom@tromey.com>
5999
6000 * tui/tui-data.h (struct tui_data_window, struct tui_cmd_window):
6001 Inline constructor. Add initializers for members.
6002 * tui/tui-data.c (tui_data_window, tui_cmd_window): Remove
6003 constructors; now inline in class.
6004
6005 2019-06-25 Tom Tromey <tom@tromey.com>
6006
6007 * tui/tui-regs.c (tui_show_registers): Update.
6008 * tui/tui-data.h (struct tui_data_window) <display_regs>: Now
6009 bool.
6010 * tui/tui-data.c (tui_data_window::clear_detail)
6011 (tui_data_window): Update.
6012
6013 2019-06-25 Tom Tromey <tom@tromey.com>
6014
6015 * tui/tui-windata.c (tui_display_all_data)
6016 (tui_display_data_from_line, tui_display_data_from)
6017 (tui_check_data_values, tui_data_window::do_scroll_vertical):
6018 Update.
6019 * tui/tui-regs.c (tui_last_regs_line_no)
6020 (tui_line_from_reg_element_no, tui_first_reg_element_no_inline)
6021 (tui_show_registers, tui_show_register_group)
6022 (tui_display_registers_from, tui_display_reg_element_at_line)
6023 (tui_display_registers_from_line, tui_check_register_values)
6024 (tui_reg_next, tui_reg_prev): Update.
6025 * tui/tui-layout.c (tui_set_layout, show_data): Update.
6026 * tui/tui-data.h (struct tui_data_info): Remove. Move contents to
6027 tui_data_window.
6028 (struct tui_win_info) <detail>: Remove. Add new fields from
6029 tui_data_info.
6030 (TUI_DATA_WIN): Add cast.
6031 * tui/tui-data.c (tui_data_window::clear_detail, tui_data_window)
6032 (~tui_data_window): Simplify.
6033
6034 2019-06-25 Tom Tromey <tom@tromey.com>
6035
6036 * tui/tui-layout.c (show_source_disasm_command)
6037 (show_source_or_disasm_and_command): Update.
6038 * tui/tui-io.c (update_cmdwin_start_line)
6039 (tui_redisplay_readline): Update.
6040 * tui/tui-data.h (struct tui_command_info): Remove.
6041 (struct tui_win_info) <detail>: Remove command_info member.
6042 (struct tui_data_window) <start_line>: New member, from
6043 tui_command_info.
6044 (TUI_CMD_WIN): Add casts.
6045
6046 2019-06-25 Tom Tromey <tom@tromey.com>
6047
6048 * tui/tui-winsource.c (tui_update_source_window)
6049 (tui_refill_source_window)
6050 (tui_source_window_base::do_scroll_horizontal)
6051 (tui_update_breakpoint_info, tui_set_exec_info_content)
6052 (tui_show_exec_info_content, tui_erase_exec_info_content)
6053 (tui_clear_exec_info_content): Update.
6054 * tui/tui-wingeneral.c (make_all_visible, tui_refresh_all):
6055 Update.
6056 * tui/tui-win.c (make_invisible_and_set_new_height)
6057 (make_visible_with_new_height): Update.
6058 * tui/tui-source.c (tui_set_source_content)
6059 (tui_show_symtab_source): Update.
6060 * tui/tui-layout.c (extract_display_start_addr)
6061 (show_source_disasm_command, show_data)
6062 (make_source_or_disasm_window)
6063 (show_source_or_disasm_and_command): Update.
6064 * tui/tui-disasm.c (tui_set_disassem_content): Simplify.
6065 (tui_disasm_window::do_scroll_vertical): Remove shadowing
6066 "gdbarch".
6067 * tui/tui-data.h (struct tui_source_info): Remove. Move contents
6068 to tui_source_window_base.
6069 (struct tui_win_info) <detail>: Remove source_info member.
6070 (struct tui_source_window_base) <has_locator>: Inline.
6071 Move contents from tui_source_info; rename has_locator member to
6072 m_has_locator.
6073 (TUI_SRC_WIN, TUI_DISASM_WIN): Add casts.
6074 * tui/tui-data.c (tui_source_window_base::has_locator): Move to
6075 header file.
6076 (tui_source_window_base::clear_detail, ~tui_source_window_base):
6077 Simplify.
6078 (tui_free_all_source_wins_content): Cast to
6079 tui_source_window_base.
6080
6081 2019-06-25 Tom Tromey <tom@tromey.com>
6082
6083 * tui/tui-win.c (make_invisible_and_set_new_height)
6084 (make_visible_with_new_height): Call has_locator method.
6085 * tui/tui-layout.c (show_source_disasm_command, show_data)
6086 (show_source_or_disasm_and_command): Update for bool change.
6087 * tui/tui-data.h (struct tui_source_info) <has_locator>: Now bool.
6088 (tui_win_info) <has_locator>: New method.
6089 (struct tui_source_window_base) <has_locator>: New method.
6090 (tui_win_has_locator): Don't declare.
6091 * tui/tui-data.c (tui_source_window_base::has_locator): Rename
6092 from tui_win_has_locator.
6093 (tui_source_window_base): Use false, not FALSE.
6094
6095 2019-06-25 Tom Tromey <tom@tromey.com>
6096
6097 * tui/tui-data.h (tui_clear_win_detail): Don't declare.
6098 * tui/tui-data.c (tui_clear_source_windows_detail): Call the
6099 clear_detail method directly.
6100 (tui_clear_win_detail): Remove.
6101
6102 2019-06-25 Tom Tromey <tom@tromey.com>
6103
6104 * tui/tui-disasm.c (tui_disasm_window::do_scroll_vertical): Use
6105 "this", not TUI_DISASM_WIN.
6106
6107 2019-06-25 Tom Tromey <tom@tromey.com>
6108
6109 * tui/tui-winsource.h (tui_horizontal_source_scroll): Don't
6110 declare.
6111 * tui/tui-winsource.c
6112 (tui_source_window_base::do_scroll_horizontal): Rename from
6113 tui_horizontal_source_scroll.
6114 * tui/tui-windata.h (tui_vertical_data_scroll): Don't declare.
6115 * tui/tui-windata.c (tui_data_window::do_scroll_vertical): Rename
6116 from tui_vertical_data_scroll.
6117 * tui/tui-win.h (tui_scroll): Don't declare.
6118 * tui/tui-win.c (tui_win_info::forward_scroll)
6119 (tui_win_info::backward_scroll, tui_win_info::left_scroll)
6120 (tui_win_info::right_scroll): Rename and update.
6121 (tui_scroll_forward_command, tui_scroll_backward_command)
6122 (tui_scroll_left_command, tui_scroll_right_command): Update.
6123 (tui_scroll): Remove.
6124 * tui/tui-source.h: Don't declare tui_vertical_source_scroll.
6125 * tui/tui-source.c (tui_source_window::do_scroll_vertical): Rename
6126 from tui_vertical_source_scroll.
6127 * tui/tui-disasm.h (tui_vertical_disassem_scroll): Don't declare.
6128 * tui/tui-disasm.c (tui_disasm_window::do_scroll_vertical): Rename
6129 from tui_vertical_disassem_scroll.
6130 * tui/tui-data.h (struct tui_win_info) <do_scroll_vertical,
6131 do_scroll_horizontal>: New methods.
6132 <forward_scroll, backward_scroll, left_scroll, right_scroll>:
6133 Likewise.
6134 (struct tui_source_window_base): Add do_scroll_horizontal.
6135 (struct tui_source_window, struct tui_disasm_window): Add
6136 do_scroll_vertical.
6137 (struct tui_data_window, struct tui_cmd_window): Add
6138 do_scroll_horizontal and do_scroll_vertical.
6139 * tui/tui-command.c (tui_dispatch_ctrl_char): Use method calls.
6140
6141 2019-06-25 Tom Tromey <tom@tromey.com>
6142
6143 * tui/tui-data.h (struct tui_source_window_base): New struct.
6144 (struct tui_source_window): Derive from tui_source_window_base.
6145 (struct tui_disasm_window): New struct.
6146 * tui/tui-data.c (tui_source_window_base::clear_detail): Rename
6147 from tui_source_window::clear_detail.
6148 (tui_source_window_base): Rename from tui_source_window.
6149 (~tui_source_window_base): Rename from ~tui_source_window.
6150 (tui_alloc_win_info): Create a tui_disasm_window.
6151
6152 2019-06-25 Tom Tromey <tom@tromey.com>
6153
6154 * tui/tui-data.h (struct tui_source_window)
6155 (struct tui_data_window): Declare destructors.
6156 * tui/tui-data.c (~tui_source_window, ~tui_data_window): New
6157 destructors.
6158 (tui_win_info): Simplify.
6159
6160 2019-06-25 Tom Tromey <tom@tromey.com>
6161
6162 * tui/tui-winsource.c (tui_display_main)
6163 (tui_update_source_windows_with_addr)
6164 (tui_update_all_breakpoint_info): Update.
6165 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights)
6166 (new_height_ok, parse_scrolling_args): Update.
6167 * tui/tui-stack.c (tui_show_frame_info): Update.
6168 * tui/tui-data.h (struct tui_list): Remove.
6169 (tui_source_windows): Return a reference to a std::vector.
6170 * tui/tui-data.c (source_windows): Now a std::vector.
6171 (tui_source_windows): Change return type.
6172 (tui_clear_source_windows): Rewrite.
6173 (tui_clear_source_windows_detail, tui_add_to_source_windows)
6174 (tui_free_all_source_wins_content): Rewrite.
6175
6176 2019-06-25 Tom Tromey <tom@tromey.com>
6177
6178 * tui/tui-data.h (struct tui_win_info, struct tui_source_window)
6179 (struct tui_data_window, struct tui_cmd_window): Declare
6180 clear_detail method.
6181 * tui/tui-data.c (tui_source_window::clear_detail)
6182 (tui_cmd_window::clear_detail, tui_data_window::clear_detail): New
6183 methods.
6184 (tui_clear_win_detail): Simplify.
6185
6186 2019-06-25 Tom Tromey <tom@tromey.com>
6187
6188 * tui/tui-layout.c (make_source_window, make_disasm_window)
6189 (make_source_or_disasm_window): Remove win_info_ptr parameter.
6190 Return the new window.
6191 (show_source_disasm_command, show_data)
6192 (show_source_or_disasm_and_command): Update.
6193
6194 2019-06-25 Tom Tromey <tom@tromey.com>
6195
6196 * tui/tui-layout.c (make_command_window): Remove win_info_ptr
6197 parameter. Return the new window.
6198 (show_source_disasm_command): Update and remove NULL check.
6199 (show_source_or_disasm_and_command): Update.
6200
6201 2019-06-25 Tom Tromey <tom@tromey.com>
6202
6203 * tui/tui-layout.c (init_and_make_win): Remove NULL check.
6204
6205 2019-06-25 Tom Tromey <tom@tromey.com>
6206
6207 * tui/tui-data.h (struct tui_win_info): Make constructor
6208 protected. Make destructor virtual. Add initializers.
6209 (tui_source_window, tui_data_window, tui_cmd_window): New
6210 classes.
6211 * tui/tui-data.c (tui_win_info): Rename from init_win_info. Now a
6212 constructor. Add "type" parameter.
6213 (tui_source_window, tui_data_window, tui_cmd_window): New
6214 constructors.
6215 (tui_alloc_win_info): Instantiate the appropriate subclass.
6216
6217 2019-06-25 Tom Tromey <tom@tromey.com>
6218
6219 * tui/tui-win.c (tui_resize_all): Use delete.
6220 * tui/tui-data.h (struct tui_win_info) <~tui_win_info>: Declare
6221 destructor.
6222 (tui_free_window): Don't declare.
6223 * tui/tui-data.c (~tui_win_info): Rename from tui_free_window.
6224 Update.
6225
6226 2019-06-25 Tom Tromey <tom@tromey.com>
6227
6228 * tui/tui-data.h (struct tui_win_info): Add constructor.
6229 * tui/tui-data.c (tui_alloc_win_info): Use new.
6230 (tui_free_window): Use delete.
6231
6232 2019-06-22 Tom Tromey <tom@tromey.com>
6233
6234 * tui/tui-windata.h (tui_first_data_element_no_in_line): Don't
6235 declare.
6236 * tui/tui-windata.c (tui_first_data_element_no_in_line): Remove.
6237
6238 2019-06-22 Tom Tromey <tom@tromey.com>
6239
6240 * tui/tui-data.h (tui_del_window, tui_del_data_windows): Don't
6241 declare.
6242 * tui/tui-data.c (tui_del_window, tui_del_data_windows): Remove.
6243
6244 2019-06-22 Tom de Vries <tdevries@suse.de>
6245
6246 * dwarf2read.c (create_addrmap_from_aranges)
6247 (read_debug_names_from_section): Print ptrdiff_t using '%s' and plongest
6248 instead of '%zu'.
6249
6250 2019-06-21 Simon Marchi <simon.marchi@efficios.com>
6251
6252 * dwarf2read.h (dwarf2_section_info_def): Remove.
6253 (DEF_VEC_O (dwarf2_section_info_def)): Remove.
6254 * dwarf2read.c (struct dwo_sections) <types>: Change type to
6255 std::vector<dwarf2_section_info>.
6256 (struct dwo_file) <~dwo_file>: Remove.
6257 (dwarf2_per_objfile::~dwarf2_per_objfile): Don't manually free
6258 types field.
6259 (dwarf2_per_objfile::locate_sections): Adjust to std::vector.
6260 (dwarf2_read_debug_names): Likewise.
6261 (create_debug_types_hash_table): Change parameter type to
6262 array_view, adjust code accordingly.
6263 (dwarf2_locate_dwo_sections): Adjust to std::vector.
6264 (partial_die_info::fixup): Likewise.
6265 (determine_prefix): Likewise.
6266 * dwarf-index-write.c (write_psymtabs_to_index): Adjust.
6267
6268 2019-06-21 Simon Marchi <simon.marchi@polymtl.ca>
6269
6270 * dwarf2read.c (struct dwo_file) <dbfd>: Change type to
6271 gdb_bfd_ref_ptr.
6272 <~dwo_file>: Remove call to gdb_bfd_unref.
6273 (open_and_init_dwo_file): Move gdb_bfd_ref_ptr into dbfd field. Call
6274 gdb_bfd_ref_ptr::get.
6275
6276 2019-06-21 Simon Marchi <simon.marchi@polymtl.ca>
6277
6278 * dwarf2read.h (struct dwarf2_per_objfile) <dwo_files>: Change
6279 type to htab_up.
6280 * dwarf2read.c (struct dwo_file): Initialize fields.
6281 <~dwo_file>: New.
6282 (free_dwo_file): Remove, move content to ~dwo_file.
6283 (struct dwo_file_deleter): Remove.
6284 (dwo_file_up>: Remove custom deleter.
6285 (free_dwo_files): Remove.
6286 (dwarf2_per_objfile::~dwarf2_per_objfile): Don't explicitly free
6287 dwo_files.
6288 (process_skeletonless_type_units): Call unique_ptr::get.
6289 (allocate_dwo_file_hash_table): Add deleter to created hash
6290 table. Change return type to htab_up.
6291 (lookup_dwo_file_slot): Don't memset dwo_file, call
6292 unique_ptr::get.
6293 (create_dwo_unit_in_dwp_v1): Allocate dwo_file with new.
6294 (create_dwo_unit_in_dwp_v2): Likewise.
6295 (open_and_init_dwo_file): Likewise.
6296 (free_dwo_file_from_slot): Remove.
6297
6298 2019-06-21 Simon Marchi <simon.marchi@polymtl.ca>
6299
6300 * dwarf2read.h (struct dwarf2_section_info) <readin,
6301 is_virtual>: Change type to bool.
6302 * dwarf2read.c (dwarf2_read_section, create_dwp_v2_section): Use
6303 true instead of 1.
6304
6305 2019-06-19 Tom Tromey <tom@tromey.com>
6306
6307 * tui/tui-data.h (tui_init_content_element): Don't declare.
6308
6309 2019-06-19 Tom Tromey <tom@tromey.com>
6310
6311 * tui/tui-data.h (tui_init_win_info): Don't declare.
6312
6313 2019-06-19 Tom de Vries <tdevries@suse.de>
6314
6315 * dwarf2read.h (abstract_to_concrete): Change type to
6316 std::unordered_map<sect_offset, std::vector<sect_offset>,
6317 gdb::hash_enum<sect_offset>>.
6318
6319 2019-06-19 Tom Tromey <tromey@adacore.com>
6320
6321 * ada-lang.c (ada_evaluate_subexp) <case OP_ATR_FIRST>: Handle
6322 EVAL_AVOID_SIDE_EFFECTS specially.
6323
6324 2019-06-19 Tom Tromey <tromey@adacore.com>
6325
6326 * source-cache.c (highlighter): New global.
6327 (source_cache::get_source_lines): Create a highlighter on demand.
6328
6329 2019-06-18 Andrew Burgess <andrew.burgess@embecosm.com>
6330
6331 * defs.h (deprecated_interactive_hook): Delete declaration.
6332 * interps.c (clear_interpreter_hooks): Remove use of
6333 deprecated_interactive_hook.
6334 * top.c (deprecated_interactive_hook): Delete definition.
6335 * utils.c (maybe_quit): Remove use of deprecated_interactive_hook.
6336
6337 2019-06-18 Tom de Vries <tdevries@suse.de>
6338
6339 PR gdb/24515
6340 * dwarf2read.h (abstract_to_concrete): Change type from
6341 std::unordered_map<die_info_ptr, std::vector<die_info_ptr>> to
6342 std::unordered_map<sect_offset, std::vector<sect_offset>>.
6343 * dwarf2read.c (read_variable): Update.
6344 (dwarf2_fetch_die_loc_sect_off): Update.
6345
6346 2019-06-17 Tom de Vries <tdevries@suse.de>
6347
6348 PR gdb/24617
6349 * common/pathstuff.c (child_path): Make sure parent_len > 0 before
6350 accessing parent[parent_len - 1].
6351
6352 2019-06-17 Paul Pluzhnikov <ppluzhnikov@google.com>
6353
6354 PR gdb/24364
6355 * gdb/dtrace-probe.c (dtrace_static_probe_ops::get_probe): Don't
6356 call dtrace_process_dof with NULL dof.
6357
6358 2019-06-16 Tom de Vries <tdevries@suse.de>
6359
6360 PR gdb/24445
6361 * contrib/gdb-add-index.sh: Update to handle dwz-m-ed executable.
6362
6363 2019-06-16 Tom Tromey <tom@tromey.com>
6364
6365 * tui/tui-wingeneral.c (tui_unhighlight_win, tui_highlight_win)
6366 (make_all_visible): Use address of member.
6367
6368 2019-06-16 Tom Tromey <tom@tromey.com>
6369
6370 * tui/tui-data.c (tui_clear_win_detail, init_win_info)
6371 (tui_free_window, free_content, free_content_elements): Remove
6372 unnecessary cast.
6373 * tui/tui-windata.c (tui_display_all_data): Remove unnecessary
6374 cast.
6375 * tui/tui-regs.c (tui_show_register_group)
6376 (tui_display_registers_from, tui_display_reg_element_at_line):
6377 Remove unnecessary cast.
6378
6379 2019-06-16 Andrew Burgess <andrew.burgess@embecosm.com>
6380
6381 * linux-nat.c (normal_mask): Delete.
6382 (_initialize_linux_nat): Don't initialise normal_mask.
6383
6384 2019-06-16 Simon Marchi <simon.marchi@polymtl.ca>
6385
6386 PR gdb/24445
6387 * dwarf-index-write.h (write_psymtabs_to_index): Add
6388 dwz_basename parameter.
6389 * dwarf-index-write.c (write_gdbindex): Move file writing to
6390 write_gdbindex_1. Change return type void.
6391 (assert_file_size): Move up, remove filename parameter.
6392 (write_gdbindex_1): New function.
6393 (write_debug_names): Change return type to void, call
6394 assert_file_size.
6395 (struct index_wip_file): New struct.
6396 (write_psymtabs_to_index): Add dwz_basename parameter. Move
6397 file logic to index_wip_file. Write index for dwz file if
6398 needed.
6399 (save_gdb_index_command): Pass basename of dwz file, if present.
6400 * dwarf-index-cache.c (index_cache::store): Obtain and pass
6401 build-id of dwz file, if present.
6402 * dwarf2read.c (struct dwz_file): Move to dwarf2read.h.
6403 (dwarf2_get_dwz_file): Likewise.
6404 * dwarf2read.h (struct dwz_file): Move from dwarf2read.c.
6405 (dwarf2_get_dwz_file): Likewise.
6406
6407 2019-06-16 Tom Tromey <tom@tromey.com>
6408
6409 * coffread.c (process_coff_symbol): Use xstrdup.
6410 * value.c (create_internalvar): Use xstrdup.
6411
6412 2019-06-16 Tom Tromey <tom@tromey.com>
6413
6414 * valops.c (value_cast, value_slice): Remove unnecessary cast.
6415 * breakpoint.c (stopin_command, stopat_command)
6416 (until_break_command, decode_location_default): Remove unnecessary
6417 cast.
6418 * utils.c (subset_compare): Remove unnecessary cast.
6419 * ada-lang.c (ada_update_initial_language): Remove unnecessary
6420 cast.
6421 * linespec.c (decode_line_with_last_displayed): Remove unnecessary
6422 cast.
6423 * infcmd.c (path_command): Remove unnecessary cast.
6424 * coffread.c (decode_type): Remove unnecessary cast.
6425 * xcoffread.c (read_xcoff_symtab): Remove unnecessary cast.
6426 * mipsread.c (mipscoff_symfile_read): Remove unnecessary cast.
6427 * tui/tui-stack.c (tui_show_locator_content)
6428 (tui_show_frame_info): Remove unnecessary cast.
6429 * tui/tui-win.c (tui_scroll_forward_command)
6430 (tui_scroll_backward_command, tui_set_focus, tui_set_win_height)
6431 (parse_scrolling_args): Remove unnecessary cast.
6432 * tui/tui-data.c (init_win_info, tui_del_window)
6433 (tui_free_window, tui_del_data_windows, tui_free_data_content)
6434 (free_content_elements): Remove unnecessary cast.
6435 * tui/tui-windata.c (tui_first_data_item_displayed): Remove
6436 unnecessary cast.
6437 * tui/tui-source.c (tui_set_source_content)
6438 (tui_vertical_source_scroll): Remove unnecessary cast.
6439 * tui/tui-layout.c (tui_default_win_height): Remove unnecessary
6440 cast.
6441 * tui/tui-io.c (tui_initialize_io): Remove unnecessary cast.
6442 * tui/tui-regs.c (tui_display_registers_from)
6443 (tui_display_register): Remove unnecessary cast.
6444 * tui/tui-wingeneral.c (tui_refresh_win, tui_delete_win)
6445 (tui_unhighlight_win, tui_highlight_win, tui_make_window)
6446 (make_visible): Remove unnecessary cast.
6447 * tui/tui-winsource.c (tui_erase_source_content)
6448 (tui_update_breakpoint_info, tui_set_exec_info_content): Remove
6449 unnecessary cast.
6450 * ax-gdb.c (agent_command_1): Remove unnecessary cast.
6451 * cli/cli-setshow.c (cmd_show_list): Remove unnecessary cast.
6452 * stabsread.c (read_type, read_array_type, read_range_type):
6453 Remove unnecessary cast.
6454 * mdebugread.c (mdebug_build_psymtabs): Remove unnecessary cast.
6455 (parse_symbol, parse_type, upgrade_type, parse_external)
6456 (parse_partial_symbols, psymtab_to_symtab_1, cross_ref): Remove
6457 unnecessary cast.
6458 * gdb_bfd.c (gdb_bfd_map_section): Remove unnecessary cast.
6459
6460 2019-06-16 Tom Tromey <tom@tromey.com>
6461
6462 * tui/tui-data.c (tui_alloc_generic_win_info)
6463 (tui_alloc_win_info, tui_add_content_elements): Remove NULL
6464 checks.
6465
6466 2019-06-16 Bernhard Heckel <bernhard.heckel@intel.com>
6467 Andrew Burgess <andrew.burgess@embecosm.com>
6468
6469 * f-typeprint.c (f_print_type): Don't return early for not
6470 associated or not allocated types.
6471 (f_type_print_varspec_suffix): Add print_rank parameter and print
6472 ranks of array types in case they dangling.
6473 (f_type_print_base): Add print_rank parameter.
6474
6475 2019-06-15 Andrew Burgess <andrew.burgess@embecosm.com>
6476
6477 * NEWS: Mention new MI commands.
6478 * break-catch-throw.c (enum exception_event_kind): Move to
6479 breakpoint.h.
6480 (print_mention_exception_catchpoint): Output text as a single
6481 message.
6482 (catch_exception_command_1): Rename to...
6483 (catch_exception_event): ...this, make non-static, update header
6484 command, and change some parameter types.
6485 (catch_catch_command): Update for changes to
6486 catch_exception_command_1.
6487 (catch_throw_command): Likewise.
6488 (catch_rethrow_command): Likewise.
6489 * breakpoint.c (enum exception_event_kind): Delete.
6490 * breakpoint.h (enum exception_event_kind): Moved here from
6491 break-catch-throw.c.
6492 (catch_exception_event): Declare.
6493 * mi/mi-cmd-catch.c (mi_cmd_catch_exception_event): New function.
6494 (mi_cmd_catch_throw): New function.
6495 (mi_cmd_catch_rethrow): New function.
6496 (mi_cmd_catch_catch): New function.
6497 * mi/mi-cmds.c (mi_cmds): Add 'catch-throw', 'catch-rethrow', and
6498 'catch-catch' entries.
6499 * mi/mi-cmds.h (mi_cmd_catch_throw): Declare.
6500 (mi_cmd_catch_rethrow): Declare.
6501 (mi_cmd_catch_catch): Declare.
6502
6503 2019-06-15 Andrew Burgess <andrew.burgess@embecosm.com>
6504
6505 * annotate.c (annotate_source_line): Change return type to void,
6506 update implementation to match.
6507 * annotate.h (annotate_source_line): Change return type to void,
6508 update header comment.
6509 * stack.c (print_frame_info): Don't change what frame information
6510 is printed based on whether annotations are on or not.
6511
6512 2019-06-15 Andrew Burgess <andrew.burgess@embecosm.com>
6513
6514 * annotate.c: Add 'source.h' and 'objfiles.h' includes.
6515 (annotate_source): Make static.
6516 (annotate_source_line): Moved from source.c and renamed from
6517 identify_source_line. Update the return type.
6518 * annotate.h (annotate_source): Delete declaration.
6519 (annotate_source_line): Declaration moved from source.h, and
6520 renamed from identify_source_line. Return type updated.
6521 * source.c (identify_source_line): Moved to annotate.c and renamed
6522 to annotate_source_line.
6523 (info_line_command): Remove check of annotation_level.
6524 * source.h (identify_source_line): Move declaration to annotate.h
6525 and rename to annotate_source_line.
6526 * stack.c: Add 'annotate.h' include.
6527 (print_frame_info): Remove check of annotation_level before
6528 calling annotate_source_line.
6529
6530 2019-06-15 Andrew Burgess <andrew.burgess@embecosm.com>
6531
6532 * source-cache.c (source_cache::get_plain_source_lines): Use
6533 open_source_file_with_line_charpos instead of just
6534 open_source_file, remove call to find_source_lines.
6535 (source_cache::get_source_lines): Likewise.
6536 * source.c (find_source_lines): Make static.
6537 (get_filename_and_charpos): Renamed into...
6538 (open_source_file_with_line_charpos): ..this along with changes to
6539 return a scoped_fd, and some other minor clean ups.
6540 (identify_source_line): Use open_source_file_with_line_charpos.
6541 (search_command_helper): Use open_source_file_with_line_charpos
6542 instead of just open_source_file, remove call to
6543 find_source_lines.
6544 * source.h (open_source_file_with_line_charpos): Declare new
6545 function.
6546 (find_source_lines): Delete declaration.
6547
6548 2019-06-15 Andrew Burgess <andrew.burgess@embecosm.com>
6549
6550 * source.c (get_filename_and_charpos): Remove fullname
6551 parameter.
6552 (identify_source_line): Update call to get_filename_and_charpos.
6553
6554 2019-06-14 Tom Tromey <tromey@adacore.com>
6555
6556 PR gdb/24502:
6557 * ui-style.h (skip_ansi_escape): Update comment.
6558 * ui-file.h (class no_terminal_escape_file): New class.
6559 * ui-file.c (no_terminal_escape_file::write)
6560 (no_terminal_escape_file::puts): New methods.
6561 * cli/cli-logging.c (handle_redirections): Use
6562 no_terminal_escape_file.
6563
6564 2019-06-14 Tom Tromey <tromey@adacore.com>
6565
6566 * NEWS: Move convenience variable news above Python news.
6567
6568 2019-06-14 Tom Tromey <tom@tromey.com>
6569
6570 * gnulib: Move directory to top-level.
6571 * configure.ac: Don't configure gnulib.
6572 * configure: Rebuild.
6573 * common/common-defs.h: Use new path to gnulib.
6574 * Makefile.in (GNULIB_BUILDDIR): Now ../gnulib.
6575 (GNULIB_H): Remove.
6576 (INCGNU): Look in new gnulib location.
6577 (HFILES_NO_SRCDIR): Remove gnulib files.
6578 (SUBDIR, REQUIRED_SUBDIRS): Remove gnulib.
6579 (generated_files): Remove GNULIB_H.
6580 ($(LIBGNU), all-lib): Remove targets.
6581 (distclean): Don't mention GNULIB_BUILDDIR.
6582 ($(GNULIB_BUILDDIR)/Makefile): Remove target.
6583
6584 2019-06-14 Tom Tromey <tromey@adacore.com>
6585
6586 * symfile.c (add_symbol_file_command): Remove obsolete comment.
6587 Warn if symbol file does not provide any symbols.
6588
6589 2019-06-14 Tom Tromey <tromey@adacore.com>
6590
6591 * source.c (find_and_open_source): Respect basenames_may_differ.
6592
6593 2019-06-14 Andrew Burgess <andrew.burgess@embecosm.com>
6594
6595 * annotate.c (annotate_breakpoints_invalid): Make use of
6596 scoped_restore_terminal_state.
6597 (annotate_frames_invalid): Likewise.
6598
6599 2019-06-14 Tom Tromey <tromey@adacore.com>
6600
6601 * ada-lang.c (ada_evaluate_subexp) <case BINOP_ASSIGN>: Always
6602 allow assignment to an internalvar.
6603
6604 2019-06-14 Tom Tromey <tromey@adacore.com>
6605
6606 * ada-lex.l: Allow "_" in attribute names.
6607
6608 2019-06-14 Tom Tromey <tromey@adacore.com>
6609
6610 PR gdb/24653:
6611 * regcache.c (registers_changed): Don't call alloca.
6612 * top.c (execute_command): Don't call alloca.
6613
6614 2019-06-13 Pedro Alves <palves@redhat.com>
6615
6616 * cli/cli-setshow.c (cli/cli-setshow.c): New parameter
6617 'expression'. When parsing an expression, error out if there's
6618 junk after "unlimited".
6619 (parse_cli_var_uinteger, parse_cli_var_zuinteger_unlimited)
6620 (do_set_command): Adjust calls to is_unlimited_literal.
6621
6622 2019-06-13 Pedro Alves <palves@redhat.com>
6623
6624 * compile/compile.c (make_compile_options_def_group): Add braces
6625 around array_view initializer.
6626 * thread.c (make_thread_apply_all_options_def_group)
6627 (make_thread_apply_all_options_def_group): Likewise.
6628
6629 2019-06-13 Pedro Alves <palves@redhat.com>
6630
6631 * NEWS (New commands): Mention "maint test-options
6632 require-delimiter", "maint test-options unknown-is-error", "maint
6633 test-options unknown-is-operand" and "maint show
6634 test-options-completion-result".
6635 (New command options, command completion): New section.
6636 (Completion improvements): New section.
6637 Mention that you can abbreviate "unlimited".
6638
6639 2019-06-13 Pedro Alves <palves@redhat.com>
6640
6641 * cli/cli-utils.c (parse_flags, parse_flags_qcs): Delete.
6642 * cli/cli-utils.h (parse_flags, parse_flags_qcs): Delete.
6643 * unittests/cli-utils-selftests.c (test_parse_flags)
6644 (test_parse_flags_qcs): Delete.
6645 (test_cli_utils): Don't call deleted functions.
6646
6647 2019-06-13 Pedro Alves <palves@redhat.com>
6648
6649 * thread.c: Include "cli/cli-option.h".
6650 (tp_array_compar_ascending): Global.
6651 (tp_array_compar): Delete function.
6652 (tp_array_compar_ascending, tp_array_compar_descending): New
6653 functions.
6654 (ascending_option_def, qcs_flag_option_def)
6655 (thr_qcs_flags_option_defs)
6656 (make_thread_apply_all_options_def_group)
6657 (make_thread_apply_options_def_group): New.
6658 (thread_apply_all_command): Use gdb::option::process_options.
6659 (thread_apply_command_completer)
6660 (thread_apply_all_command_completer): New.
6661 (thread_apply_command): Use gdb::option::process_options.
6662 (_initialize_thread): Delete THREAD_APPLY_FLAGS_HELP, replace it
6663 with a new THREAD_APPLY_OPTION_HELP. Use gdb::option::build_help
6664 to generate help text of "thread apply". Adjust "taas"'s help.
6665 * tid-parse.c (tid_range_parser::in_thread_range): New method.
6666 * tid-parse.h (tid_range_parser::in_thread_range): New method.
6667
6668 2019-06-13 Pedro Alves <palves@redhat.com>
6669
6670 * thread.c (thread_apply_command): Check for invalid TID with
6671 isdigit instead of !isalpha.
6672
6673 2019-06-13 Pedro Alves <palves@redhat.com>
6674
6675 * cli/cli-utils.c (parse_flags_qcs): Use validate_flags_qcs.
6676 (validate_flags_qcs): New.
6677 * cli/cli-utils.h (struct qcs_flags): Change field types to int.
6678 (validate_flags_qcs): Declare.
6679 * stack.c (qcs_flag_option_def, fr_qcs_flags_option_defs): New.
6680 (make_frame_apply_options_def_group): New.
6681 (frame_apply_command_count): Process options with
6682 gdb::option::process_options.
6683 (frame_apply_completer): New.
6684 (frame_apply_level_completer, frame_apply_all_completer)
6685 (frame_apply_completer): New.
6686 (_initialize_stack): Update help of "frame apply", "frame apply
6687 level", "frame apply all" and "faas" to mention supported options
6688 and install command completers.
6689 * stack.h (frame_apply_all_completer): Declare.
6690 * thread.c: Include "stack.h".
6691 (tfaas_command): Add "--".
6692 (_initialize_thread): Update help "tfaas" to mention supported
6693 options and install command completer.
6694
6695 2019-06-13 Pedro Alves <palves@redhat.com>
6696
6697 * completer.c (complete_nested_command_line): New.
6698 (gdb_completion_word_break_characters_throw): Add assertion.
6699 * completer.h (complete_nested_command_line): Declare.
6700
6701 2019-06-13 Pedro Alves <palves@redhat.com>
6702
6703 * stack.c (parse_backtrace_qualifiers): New.
6704 (backtrace_command): Use it.
6705 (backtrace_command_completer): Complete on qualifiers.
6706
6707 2019-06-13 Pedro Alves <palves@redhat.com>
6708
6709 * frame.c: Include "cli/cli-option.h.
6710 (user_set_backtrace_options): New.
6711 (backtrace_past_main, backtrace_past_entry, backtrace_limit):
6712 Delete.
6713 (get_prev_frame): Adjust.
6714 (boolean_option_def, uinteger_option_def)
6715 (set_backtrace_option_defs): New.
6716 (_initialize_frame): Adjust and use
6717 gdb::option::add_setshow_cmds_for_options to install "set
6718 backtrace past-main" and "set backtrace past-entry".
6719 * frame.h: Include "cli/cli-option.h".
6720 (struct frame_print_options): Forward declare.
6721 (print_frame_arguments_all, print_frame_arguments_scalars)
6722 (print_frame_arguments_none): Declare.
6723 (print_entry_values): Delete declaration.
6724 (struct frame_print_options, user_frame_print_options): New.
6725 (struct set_backtrace_options): New.
6726 (set_backtrace_option_defs, user_set_backtrace_options): Declare.
6727 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames)
6728 (mi_cmd_stack_list_locals, mi_cmd_stack_list_args)
6729 (mi_cmd_stack_list_variables): Pass down USER_FRAME_PRINT_OPTIONS.
6730 (list_args_or_locals): Add frame_print_options parameter.
6731 (mi_cmd_stack_info_frame): Pass down USER_FRAME_PRINT_OPTIONS.
6732 * python/py-framefilter.c (enumerate_args): Pass down
6733 USER_FRAME_PRINT_OPTIONS.
6734 * stack.c: Include "cli/cli-option.h".
6735 (print_frame_arguments_all, print_frame_arguments_scalars)
6736 (print_frame_arguments_none): Declare.
6737 (print_raw_frame_arguments, print_entry_values): Delete.
6738 (user_frame_print_options): New.
6739 (boolean_option_def, enum_option_def, frame_print_option_defs):
6740 New.
6741 (struct backtrace_cmd_options): New.
6742 (bt_flag_option_def): New.
6743 (backtrace_command_option_defs): New.
6744 (print_stack_frame): Pass down USER_FRAME_PRINT_OPTIONS.
6745 (print_frame_arg, read_frame_arg, print_frame_args)
6746 (print_frame_info, print_frame): Add frame_print_options parameter
6747 and use it.
6748 (info_frame_command_core): Pass down USER_FRAME_PRINT_OPTIONS.
6749 (backtrace_command_1): Add frame_print_options and
6750 backtrace_cmd_options parameters and use them.
6751 (make_backtrace_options_def_group): New.
6752 (backtrace_command): Process command options with
6753 gdb::option::process_options.
6754 (backtrace_command_completer): New.
6755 (_initialize_stack): Extend "backtrace"'s help to mention
6756 supported options. Install completer for "backtrace".
6757 Install some settings commands with add_setshow_cmds_for_options.
6758
6759 2019-06-13 Pedro Alves <palves@redhat.com>
6760
6761 * NEWS (Changed commands): Mention set/show print raw-frame-arguments,
6762 and that "set/show print raw frame-arguments" are now deprecated.
6763
6764 * cli/cli-decode.c (add_setshow_boolean_cmd): Now returns the
6765 command.
6766 * command.h (add_setshow_boolean_cmd): Return cmd_list_element *.
6767 * stack.c (_initialize_stack): Install "set/show print
6768 raw-frame-arguments", and deprecate "set/show print raw
6769 frame-arguments".
6770 * valprint.c (_initialize_valprint): Deprecate "set/show print
6771 raw".
6772
6773 2019-06-13 Pedro Alves <palves@redhat.com>
6774
6775 * compile/compile.c (struct compile_options): New.
6776 (compile_flag_option_def, compile_command_option_defs)
6777 (make_compile_options_def_group): New.
6778 (compile_file_command): Handle options with
6779 gdb::option::process_options.
6780 (compile_file_command_completer): New function.
6781 (compile_code_command): Handle options with
6782 gdb::option::process_options.
6783 (compile_code_command_completer): New function.
6784 (_initialize_compiler): Install completers for "compile code" and
6785 "compile file". Mention available options in "compile code" and
6786 "compile code"'s help.
6787 * completer.c (advance_to_completion_word): New, factored out from
6788 ...
6789 (advance_to_expression_complete_word_point): ... this.
6790 (advance_to_filename_complete_word_point): New.
6791 * completer.h (advance_to_filename_complete_word_point): New
6792 declaration.
6793
6794 2019-06-13 Pedro Alves <palves@redhat.com>
6795
6796 * compile/compile.c: Include "cli/cli-option.h".
6797 (compile_print_value): Scope data pointer is now a
6798 value_print_options pointer; adjust.
6799 (compile_print_command): Process options. Scope data pointer is
6800 now a value_print_options pointer; adjust.
6801 (_initialize_compile): Update "compile print"'s help to include
6802 supported options. Install a completer for "compile print".
6803 * cp-valprint.c (show_vtblprint, show_objectprint)
6804 (show_static_field_print): Delete.
6805 (_initialize_cp_valprint): Don't install "set print
6806 static-members", "set print vtbl", "set print object" here.
6807 * printcmd.c: Include "cli/cli-option.h" and
6808 "common/gdb_optional.h".
6809 (print_command_parse_format): Rework to fill in a
6810 value_print_options instead of a format_data.
6811 (print_value): Change parameter type from format_data pointer to
6812 value_print_options reference. Adjust.
6813 (print_command_1): Process options. Adjust to pass down a
6814 value_print_options.
6815 (print_command_completer): New.
6816 (_initialize_printcmd): Install print_command_completer as
6817 handle_brkchars completer for the "print" command. Update
6818 "print"'s help to include supported options.
6819 * valprint.c: Include "cli/cli-option.h".
6820 (show_vtblprint, show_objectprint, show_static_field_print): Moved
6821 here from cp-valprint.c.
6822 (boolean_option_def, uinteger_option_def)
6823 (value_print_option_defs, make_value_print_options_def_group):
6824 New. Use gdb::option::add_setshow_cmds_for_options to install
6825 "set print elements", "set print null-stop", "set print repeats",
6826 "set print pretty", "set print union", "set print array", "set
6827 print address", "set print symbol", "set print array-indexes".
6828 * valprint.h: Include <string> and "cli/cli-option.h".
6829 (make_value_print_options_def_group): Declare.
6830 (print_value): Change parameter type from format_data pointer to
6831 value_print_options reference.
6832 (print_command_completer): Declare.
6833
6834 2019-06-13 Pedro Alves <palves@redhat.com>
6835
6836 * Makefile.in (SUBDIR_CLI_SRCS): Add cli/cli-option.c.
6837 (COMMON_SFILES): Add maint-test-settings.c.
6838 * cli/cli-decode.c (boolean_enums): New global, factored out from
6839 ...
6840 (add_setshow_boolean_cmd): ... here.
6841 * cli/cli-decode.h (boolean_enums): Declare.
6842 * cli/cli-option.c: New file.
6843 * cli/cli-option.h: New file.
6844 * cli/cli-setshow.c (parse_cli_boolean_value(const char **)): New,
6845 factored out from ...
6846 (parse_cli_boolean_value(const char *)): ... this.
6847 (is_unlimited_literal): Change parameter type to pointer to
6848 pointer. Adjust and advance ARG pointer.
6849 (parse_cli_var_uinteger, parse_cli_var_zuinteger_unlimited)
6850 (parse_cli_var_enum): New, factored out from ...
6851 (do_set_command): ... this. Adjust.
6852 * cli/cli-setshow.h (parse_cli_boolean_value)
6853 (parse_cli_var_uinteger, parse_cli_var_zuinteger_unlimited)
6854 (parse_cli_var_enum): Declare.
6855 * cli/cli-utils.c: Include "cli/cli-option.h".
6856 (get_ulongest): New.
6857 * cli/cli-utils.h (get_ulongest): Declare.
6858 (check_for_argument): New overloads.
6859 * maint-test-options.c: New file.
6860
6861 2019-06-13 Pedro Alves <palves@redhat.com>
6862
6863 * cli/cli-utils.c (number_or_range_parser::get_number): Do not
6864 parse a range if "-" is at the end of the string.
6865
6866 2019-06-13 Pedro Alves <palves@redhat.com>
6867
6868 * cli/cli-setshow.c (parse_auto_binary_operation)
6869 (parse_cli_boolean_value): Don't allow "o".
6870
6871 2019-06-13 Pedro Alves <palves@redhat.com>
6872
6873 * Makefile.in (COMMON_SFILES): Add maint-test-settings.c.
6874 * NEWS: Mention maint test-settings KIND.
6875 * maint-test-settings.c: New file.
6876
6877 2019-06-13 Pedro Alves <palves@redhat.com>
6878
6879 * cli/cli-decode.c (add_setshow_cmd_full): Remove "show"
6880 completer.
6881 (add_setshow_string_cmd, add_setshow_string_noescape_cmd): Remove
6882 "set" completers.
6883
6884 2019-06-13 Pedro Alves <palves@redhat.com>
6885
6886 * cli/cli-setshow.c (do_set_command) <var_enum>: Detect junk
6887 after item.
6888
6889 2019-06-13 Pedro Alves <palves@redhat.com>
6890
6891 * cli/cli-setshow.c (is_unlimited_literal): Allow abbreviations.
6892
6893 2019-06-13 Pedro Alves <palves@redhat.com>
6894
6895 * ax-gdb.c (agent_command_1): Remove skip_spaces call.
6896 * breakpoint.c (watch_maybe_just_location): Remove skip_spaces
6897 call.
6898 * cli/cli-cmds.c (apropos_command): Remove skip_spaces call.
6899 * cli/cli-utils.c (extract_info_print_args): Remove skip_spaces
6900 calls.
6901 (check_for_argument): Skip spaces after argument.
6902
6903 2019-06-13 Pedro Alves <palves@redhat.com>
6904
6905 * thread.c (thread_apply_command): Adjust TID parsing.
6906 * tid-parse.c (tid_range_parser::finished): Ensure parsing end is
6907 detected before end of string.
6908 (tid_is_in_list): Error out if LIST is invalid.
6909
6910 2019-06-13 Pedro Alves <palves@redhat.com>
6911
6912 * completer.c (complete_line_internal_1): Rewind completion word
6913 point.
6914 (completion_tracker::advance_custom_word_point_by): Change
6915 parameter type to int.
6916 * completer.h (completion_tracker::advance_custom_word_point_by):
6917 Likewise.
6918
6919 2019-06-13 Pedro Alves <palves@redhat.com>
6920
6921 * completer.c (advance_to_completion_word): Handle delimiters.
6922
6923 2019-06-11 Bernhard Heckel <bernhard.heckel@intel.com>
6924
6925 * dwarf2read.c (add_partial_symbol): Skip nameless modules.
6926
6927 2019-06-11 Tom Tromey <tom@tromey.com>
6928
6929 * common/common-utils.c (xmalloc, xrealloc, xcalloc)
6930 (xmalloc_failed): Move to alloc.c.
6931 * alloc.c: New file.
6932 * Makefile.in (COMMON_SFILES): Add alloc.c.
6933
6934 2019-06-11 Tom Tromey <tom@tromey.com>
6935
6936 * nat/linux-waitpid.c: Don't include server.h.
6937 (linux_debug): Remove.
6938 (my_waitpid): Update.
6939
6940 2019-06-11 Tom Tromey <tromey@adacore.com>
6941
6942 * infcall.c (_initialize_infcall): Remove trailing newline from
6943 help.
6944 * user-regs.c (_initialize_user_regs): Remove trailing newline
6945 from help.
6946 * typeprint.c (_initialize_typeprint): Remove trailing newline
6947 from help.
6948 * reverse.c (_initialize_reverse): Remove trailing newlines from
6949 help.
6950 * tracepoint.c (_initialize_tracepoint): Remove trailing newlines
6951 from help.
6952 * language.c (add_set_language_command): Remove trailing newline
6953 from help.
6954 * infcmd.c (_initialize_infcmd): Remove trailing newlines from
6955 help.
6956 * disasm.c (_initialize_disasm): Remove trailing newline from
6957 help.
6958 * top.c (init_main): Remove trailing newline from help.
6959 * interps.c (_initialize_interpreter): Remove trailing newline
6960 from help.
6961 * btrace.c (_initialize_btrace): Remove trailing newlines from
6962 help.
6963 * breakpoint.c (_initialize_breakpoint): Remove trailing newline
6964 from help.
6965 * python/python.c (_initialize_python): Remove trailing newline
6966 from help.
6967 * spu-tdep.c (_initialize_spu_tdep): Remove trailing newlines from
6968 help.
6969 * tui/tui-win.c (_initialize_tui_win): Remove trailing newlines
6970 from help. Reformat some text.
6971 * tui/tui-stack.c (_initialize_tui_stack): Remove trailing newline
6972 from help.
6973 * tui/tui-layout.c (_initialize_tui_layout): Remove trailing
6974 newline from help.
6975
6976 2019-06-11 Tom Tromey <tromey@adacore.com>
6977
6978 * darwin-nat.c (darwin_decode_exception_message)
6979 (darwin_decode_message, darwin_nat_target::kill): Fix shadowing.
6980
6981 2019-06-10 Andrew Burgess <andrew.burgess@embecosm.com>
6982
6983 * valops.c (value_slice): Check for not allocated or not
6984 associated values.
6985
6986 2019-06-10 Tom de Vries <tdevries@suse.de>
6987
6988 PR gdb/24618
6989 * dwarf2read.c (struct mapped_index::symbol_name_slot_invalid): Make
6990 sure an empty slot (defined by a 32-bit zero pair) is recognized as
6991 invalid.
6992
6993 2019-06-10 Tom de Vries <tdevries@suse.de>
6994
6995 PR gdb/24611
6996 * linespec.c (linespec_lexer_lex_string): Remove incorrect
6997 "++(PARSER_STREAM (parser))" for "[abi"-prefixed colon. Add assert.
6998
6999 2019-06-10 Tom de Vries <tdevries@suse.de>
7000
7001 PR symtab/24545
7002 * symtab.c (struct demangled_name_entry): Add language field.
7003 (symbol_set_names): Revert "[gdb/symtab] Fix language of duplicate
7004 static minimal symbol". Set and use language field.
7005
7006 2019-06-10 Tom Tromey <tromey@adacore.com>
7007
7008 * ada-lang.c (_initialize_ada_language): Update help text.
7009
7010 2019-06-10 Tom Tromey <tromey@adacore.com>
7011
7012 * m32c-tdep.c (m32c_m16c_address_to_pointer): Don't end warning
7013 with a newline.
7014 * guile/guile.c (handle_boot_error): Don't end warning with a
7015 newline.
7016 * cli/cli-cmds.c (exit_status_set_internal_vars): Don't end
7017 warning with a newline.
7018 * s12z-tdep.c (s12z_skip_prologue): Don't end warning with a
7019 newline.
7020 (s12z_frame_cache): Likewise.
7021 * dwarf-index-cache.c (index_cache::store): Don't end warning with
7022 a newline.
7023 * solib-svr4.c (disable_probes_interface): Don't end warning with
7024 a newline.
7025 * nat/fork-inferior.c (fork_inferior): Don't end warning with a
7026 newline.
7027 * python/python.c (do_finish_initialization): Don't end warning
7028 with a newline.
7029
7030 2019-06-10 Tom Tromey <tom@tromey.com>
7031
7032 * python/py-breakpoint.c (gdbpy_breakpoint_created)
7033 (gdbpy_breakpoint_deleted, gdbpy_breakpoint_modified): Use
7034 gdbpy_enter.
7035
7036 2019-06-10 Tom Tromey <tromey@adacore.com>
7037
7038 * elfread.c (elf_read_minimal_symbols): Don't set the dbx objfile
7039 data.
7040 (elf_new_init): Don't call stabsread_new_init.
7041 * dbxread.c (coffstab_build_psymtabs): Set dbx objfile data.
7042 (elfstab_build_psymtabs): Likewise. Call stabsread_new_init.
7043 * coffread.c (coff_symfile_init): Don't set the dbx objfile data.
7044
7045 2019-06-10 Tom de Vries <tdevries@suse.de>
7046
7047 PR symtab/16264
7048 PR symtab/24517
7049 * dwarf2read.c (read_func_scope): Handle DW_AT_main_subprogram.
7050
7051 2019-06-06 Руслан Ижбулатов <lrn1986@gmail.com>
7052
7053 * source.c (find_and_open_source): Also rewrite relative file
7054 names.
7055
7056 2019-04-26 Amos Bird <amosbird@gmail.com>
7057
7058 * annotate.c (annotate_thread_exited): Add "thread-exited"
7059 annotation.
7060
7061 2019-06-06 Tom Tromey <tromey@adacore.com>
7062
7063 * maint.h (class scoped_command_stats): Use
7064 DISABLE_COPY_AND_ASSIGN.
7065 <print_time>: New method.
7066 * maint.c (scoped_command_stats, ~scoped_command_stats): Call
7067 print_time.
7068 (scoped_command_stats::print_time): New method.
7069
7070 2019-06-05 Andrew Burgess <andrew.burgess@embecosm.com>
7071
7072 * riscv-tdep.c (riscv_insn::decode): Gracefully ignore
7073 instructions of lengths 6 or 8 bytes.
7074
7075 2019-06-04 Pedro Alves <palves@redhat.com>
7076
7077 * common/gdb_unique_ptr.h (make_unique_xstrdup): New.
7078
7079 * ada-lang.c (catch_ada_completer): Use make_unique_xstrdup.
7080 * breakpoint.c (condition_completer): Likewise.
7081 * cli/cli-dump.c (scan_expression): Likewise.
7082 * common/filestuff.c (mkdir_recursive): Likewise.
7083 * common/gdb_tilde_expand.c (gdb_tilde_expand_up)
7084 * common/pathstuff.c (gdb_realpath, gdb_realpath_keepfile)
7085 (gdb_abspath): Likewise.
7086 * compile/compile-cplus-types.c
7087 (compile_cplus_instance::decl_name): Likewise.
7088 * completer.c (complete_explicit_location):
7089 (signal_completer, reg_or_group_completer_1): Likewise.
7090 * cp-support.c (cp_remove_params_if_any): Likewise.
7091 * fbsd-tdep.c (fbsd_core_vnode_path): Likewise.
7092 * guile/scm-safe-call.c (gdbscm_safe_eval_string): Likewise.
7093 * infcmd.c (strip_bg_char): Likewise.
7094 * linespec.c (copy_token_string): Likewise.
7095 * mi/mi-main.c (output_cores): Likewise.
7096 * psymtab.c (psymtab_search_name):
7097 * symfile.c (test_set_ext_lang_command): Likewise.
7098 * target.c (target_fileio_read_stralloc): Likewise.
7099 * tui/tui-regs.c (tui_reggroup_completer): Likewise.
7100 * value.c (complete_internalvar): Likewise.
7101
7102 2019-06-04 Christian Biesinger <cbiesinger@google.com>
7103
7104 Add objfile property to gdb.Type.
7105 * NEWS: Mention Python API addition.
7106 * python/py-type.c (typy_get_objfile): New method.
7107
7108 2019-06-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7109
7110 * NEWS: Mention the new set|show style [title|highlight].
7111 Mention changes to "show style", "help" and "apropos".
7112
7113 2019-06-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7114
7115 * cli/cli-decode.h (apropos_cmd): Add verbose argument.
7116 * cli/cli-decode.c (apropos_cmd): Likewise. Use print_doc_of_command
7117 instead of print_help_for_command.
7118 (print_doc_of_command): New function.
7119 (help_list): Add 'apropos -v word' suggestion.
7120 (print_help_for_command): Style the command name using title style.
7121 * cli/cli-cmds.c (apropos_command): Parse optional -v flag.
7122 (_initialize_cli_cmds): Describe -v in apropos_command help.
7123
7124 2019-06-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7125
7126 * cli/cli-style.h (cli_style_option): Add name in constructor,
7127 add m_name class member, add constructor with intensity,
7128 add name class function.
7129 (cli_style_option::add_setshow_commands): Remove name argument.
7130 (highlight_style, title_style): New styles.
7131 * cli/cli-style.c (do_show): New function that shows a style
7132 characteristic styling the style name with itself.
7133 (set_style_name): New function.
7134 (STYLE_ADD_SETSHOW_COMMANDS): Remove NAME arguments.
7135 Update all callers according to the changes in cli/cli-style.h.
7136 * utils.h (fputs_highlighted): New function.
7137 * utils.c (fputs_highlighted): Likewise.
7138
7139 2019-05-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7140
7141 * NEWS: Mention new pipe command and new convenience variables.
7142
7143 2019-05-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7144
7145 * cli/cli-cmds.c (pipe_command): New function.
7146 (_initialize_cli_cmds): Call add_com for pipe_command.
7147 Define | as an alias for pipe.
7148 (exit_status_set_internal_vars): New function.
7149 (shell_escape): Call exit_status_set_internal_vars.
7150 cli/cli-decode.c (find_command_name_length): Recognize | as
7151 a single character command.
7152
7153 2019-05-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7154
7155 * gdbcmd.h (execute_command_to_ui_file): New declaration.
7156 top.c (execute_command_to_ui_file): New function, mostly a copy
7157 of execute_command_to_string.
7158 (execute_command_to_string): Implement by calling
7159 execute_command_to_ui_file.
7160
7161 2019-05-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7162
7163 * top.h (saved_command_line): Remove declaration.
7164 * top.c (previous_saved_command_line, previous_repeat_arguments):
7165 New variables.
7166 (saved_command_line): Make static, define together with other
7167 'repeat variables'.
7168 (dont_repeat): Clear repeat_arguments.
7169 (repeat_previous, get_saved_command_line, save_command_line):
7170 New functions.
7171 (gdb_init): Initialize saved_command_line
7172 and previous_saved_command_line.
7173 * main.c (captured_main_1): Remove saved_command_line initialization.
7174 * event-top.c (handle_line_of_input): Update to use
7175 the new 'repeat' related functions instead of direct access to
7176 saved_command_line.
7177 * command.h (repeat_previous, get_saved_command_line,
7178 save_command_line): New declarations.
7179 (dont_repeat): Add comment.
7180
7181 2019-05-30 Tom Tromey <tromey@adacore.com>
7182
7183 * gdbtypes.h (struct range_bounds) <flag_upper_bound_is_count>:
7184 Fix comment.
7185 (TYPE_ARRAY_UPPER_BOUND_IS_UNDEFINED): Rewrite comment.
7186
7187 2019-05-30 Jan Vrany <jan.vrany@fit.cvut.cz>
7188
7189 PR cli/24587
7190 * completer.c (complete): Initialize variable word.
7191
7192 2019-05-29 Sergio Durigan Junior <sergiodj@redhat.com>
7193
7194 Ref.: https://bugzilla.redhat.com/show_bug.cgi?id=1708192
7195 Ref.: https://bugzilla.redhat.com/show_bug.cgi?id=1715008
7196 * dwarf2read.c (dwarf_decode_macro_bytes): Move check to see if
7197 'body' is NULL to the outter 'if', protecting the '!is_define'
7198 situation as well.
7199
7200 2019-05-29 Tom Tromey <tromey@adacore.com>
7201
7202 * dwarf2read.c (partial_die_parent_scope): Call dwarf_tag_name.
7203 (dwarf_unknown): New function.
7204 (dwarf_tag_name, dwarf_attr_name, dwarf_form_name)
7205 (dwarf_type_encoding_name): Use dwarf_unknown.
7206
7207 2019-05-29 Tom Tromey <tromey@adacore.com>
7208
7209 PR c++/20020:
7210 * cp-valprint.c (cp_print_value_fields): Call
7211 cp_print_static_field inside "try".
7212
7213 2019-05-29 Tom Tromey <tromey@adacore.com>
7214
7215 * inflow.c (struct terminal_info): Add default operator=.
7216 * configure: Rebuild.
7217 * warning.m4 (AM_GDB_WARNINGS): Add -Wdeprecated-copy,
7218 -Wdeprecated-copy-dtor, -Wredundant-move.
7219
7220 2019-05-29 Tom Tromey <tromey@adacore.com>
7221
7222 * NEWS: Add entry.
7223 * infcmd.c (print_return_value_1): Handle finish_print
7224 option.
7225 (show_print_finish): New function.
7226 (_initialize_infcmd): Add "set/show print finish" commands.
7227 * valprint.c (user_print_options): Initialize new member.
7228 * valprint.h (struct value_print_options) <finish_print>: New
7229 member.
7230
7231 2019-05-28 Tom Tromey <tromey@adacore.com>
7232
7233 * ada-lang.c (ada_remove_Xbn_suffix)
7234 (find_old_style_renaming_symbol)
7235 (parse_old_style_renaming): Remove.
7236 (ada_find_renaming_symbol): Don't call
7237 find_old_style_renaming_symbol.
7238 (ada_is_renaming_symbol): Rename from
7239 ada_find_renaming_symbol. Remove "block" parameter. Return
7240 bool. Now static.
7241 (ada_read_var_value): Update and simplify.
7242 * ada-exp.y (write_var_or_type): Remove old code.
7243
7244 2019-05-28 Alan Hayward <alan.hayward@arm.com>
7245
7246 PR gdb/25010
7247 * event-top.c: Remove include comment.
7248 * inflow.c (class scoped_ignore_sigttou): Move from here...
7249 * inflow.h (class scoped_ignore_sigttou): ...to here.
7250 * ser-unix.c (hardwire_drain_output): Block SIGTTOU during drain.
7251 * top.c: Remove include comment.
7252
7253 2019-05-27 Tom Tromey <tom@tromey.com>
7254
7255 * NEWS: Fix typo.
7256
7257 2019-05-22 Tom Tromey <tromey@adacore.com>
7258
7259 * target.c (target_follow_exec): Constify parameter.
7260 * target-delegates.c: Rebuild.
7261 * remote.c (remote_target::follow_exec): Constify parameter.
7262 * infrun.c (follow_exec): Constify parameter.
7263 * target.h (struct target_ops) <follow_exec>: Constify parameter.
7264 (target_follow_exec): Likewise.
7265
7266 2019-05-22 Alan Hayward <alan.hayward@arm.com>
7267
7268 * aarch64-tdep.c (aarch64_execute_dwarf_cfa_vendor_op): Treat
7269 DW_CFA_AARCH64_negate_ra_state as nop on non pauth targets.
7270
7271 2019-05-22 Alan Hayward <alan.hayward@arm.com>
7272
7273 * NEWS: Add debugredirect and testsuite sections.
7274
7275 2019-05-22 Simon Cook <simon.cook@embecosm.com>
7276
7277 * riscv-tdep.c (riscv_gdbarch_init): Support determining flen from
7278 target descriptions using exclusively floating point register name
7279 aliases.
7280
7281 2019-05-21 Andrew Burgess <andrew.burgess@embecosm.com>
7282
7283 PR gdb/18644:
7284 * f-lang.c (build_fortran_types): Handle the case where
7285 gdbarch_floatformat_for_type returns a nullptr.
7286
7287 2019-05-21 Tom de Vries <tdevries@suse.de>
7288
7289 PR cli/24587
7290 * cli/cli-cmds.c (complete_command): Fix use of unitialized variable.
7291
7292 2019-05-18 Andrew Burgess <andrew.burgess@embecosm.com>
7293
7294 PR gdb/18644:
7295 * f-lang.c (build_fortran_types): Use floatformats_ia64_quad for
7296 16-byte floats.
7297 * i386-tdep.c (i386_floatformat_for_type): Use
7298 floatformats_ia64_quad for the 16-byte floating point component
7299 within a fortran 32-byte complex number.
7300
7301 2019-05-18 Andrew Burgess <andrew.burgess@embecosm.com>
7302
7303 * dwarf2read.c (struct cu_partial_die_info): Add constructor,
7304 delete default constructor.
7305 (find_partial_die): Update to return const struct.
7306 (partial_die_parent_scope): Move variable declaration into scope
7307 of its use and change its type to auto.
7308 (guess_partial_die_structure_name): Likewise.
7309 (partial_die_info::fixup): Likewise.
7310
7311 2019-05-17 Tom Tromey <tromey@adacore.com>
7312
7313 * source.c (find_and_open_source): Remove cast.
7314
7315 2019-05-17 Tom Tromey <tromey@adacore.com>
7316
7317 * annotate.c (annotate_source): Make "filename" const.
7318 * annotate.h (annotate_source): Use const.
7319
7320 2019-05-17 Alan Hayward <alan.hayward@arm.com>
7321
7322 * disasm.c (set_disassembler_options): Send errors to stderr.
7323
7324 2019-05-17 Alan Hayward <alan.hayward@arm.com>
7325
7326 * cli/cli-interp.c (struct saved_output_files): Add saved entry.
7327 (cli_interp_base::set_logging): Check debug_redirect.
7328 * cli/cli-interp.h (set_logging): Add debug_redirect parameter.
7329 * cli/cli-logging.c (debug_redirect): Add static variable.
7330 (pop_output_files): Add default param.
7331 (handle_redirections): Print debug setting.
7332 (show_logging_command): Likewise.
7333 (_initialize_cli_logging): Add debugredirect command.
7334 * interps.c (current_interp_set_logging): Add debug_redirect
7335 parameter.
7336 * interps.h (set_logging): Add debug_redirect parameter.
7337 (current_interp_set_logging): Likewise.
7338 * mi/mi-common.h: Likewise.
7339 * mi/mi-interp.c (mi_interp::set_logging): Likewise.
7340
7341 2019-05-17 Alan Hayward <alan.hayward@arm.com>
7342 Tom Tromey <tromey@adacore.com>
7343
7344 * cli/cli-interp.c (cli_interp_base::set_logging): Create tee_file
7345 directly.
7346 * cli/cli-interp.h (make_logging_output): Remove declaration.
7347 * cli/cli-logging.c (make_logging_output): Remove function.
7348 * mi/mi-interp.c (mi_interp::set_logging): Create tee_file
7349 directly.
7350 * ui-file.c (tee_file::tee_file): Remove bools.
7351 (tee_file::~tee_file): Remove deletes.
7352 * ui-file.h (tee_file): Remove bools.
7353
7354 2019-01-28 Jan Vrany <jan.vrany@fit.cvut.cz>
7355
7356 * mi/mi-cmds.h (mi_cmd_complete): New function.
7357 * mi/mi-main.c (mi_cmd_complete): Likewise.
7358 * mi/mi-cmds.c: Define new MI command -complete.
7359 * NEWS: Mention new -complete command.
7360
7361 2019-01-24 Jan Vrany <jan.vrany@fit.cvut.cz>
7362
7363 * completer.h (complete): New function.
7364 * completer.c (complete): Likewise.
7365 * cli/cli-cmds.c: (complete_command): Update to use new complete()
7366 function defined in completer.h.
7367
7368 2019-05-17 Jan Vrany <jan.vrany@fit.cvut.cz>
7369
7370 * MAINTAINERS (Write After Approval): Add myself.
7371
7372 2019-05-17 Tom de Vries <tdevries@suse.de>
7373
7374 PR gdb/24094
7375 * dwarf2read.c (struct cu_partial_die_info): New struct.
7376 (find_partial_die): Return cu_partial_die_info.
7377 (partial_die_parent_scope, guess_partial_die_structure_name)
7378 (partial_die_info::fixup): Handle new return type of find_partial_die.
7379
7380 2019-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
7381
7382 PR breakpoints/24541
7383 * stap-probe.c (stap_parse_register_operand): Make "regname" an
7384 "std::string", simplifying the algorithm.
7385
7386 2019-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
7387
7388 * stap-probe.c (handle_stap_probe): Fix complaint formatting.
7389 (stap_static_probe_ops::get_probes): Likewise.
7390
7391 2019-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
7392
7393 * stap-probe.c (stap_parse_register_operand): Make "if (*p->arg ==
7394 '-')" and "else if".
7395 (stap_parse_single_operand): Join checks for
7396 "gdbarch_stap_parse_special_token_p" and
7397 "gdbarch_stap_parse_special_token" in the same "if" statement.
7398 Invert check when verifying for operation on register
7399 displacement.
7400
7401 2019-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
7402
7403 * stap-probe.c (stap_get_opcode): Update comment.
7404 (stap_get_expected_argument_type): Likewise.
7405 (handle_stap_probe): Likewise.
7406
7407 2019-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
7408
7409 * i386-tdep.c (i386_stap_parse_special_token_triplet): Change
7410 return type to 'bool'. Adjust comment. Use 'bool' when
7411 appropriate.
7412 (i386_stap_parse_special_token_three_arg_disp): Likewise.
7413 * stap-probe.c (stap_parse_argument_1): Likewise.
7414 (stap_is_operator): Likewise.
7415 (stap_is_generic_prefix): Likewise.
7416 (stap_is_register_prefix): Likewise.
7417 (stap_is_register_indirection_prefix): Likewise.
7418 (stap_is_integer_prefix): Likewise.
7419 (stap_generic_check_suffix): Likewise.
7420 (stap_check_integer_suffix): Likewise.
7421 (stap_check_register_suffix): Likewise.
7422 (stap_check_register_indirection_suffix): Likewise.
7423 (stap_parse_register_operand): Likewise.
7424 (stap_parse_single_operand): Likewise.
7425 (stap_parse_argument_1): Likewise.
7426 (stap_probe::get_argument_count): Likewise.
7427 (stap_is_operator): Likewise.
7428
7429 2019-05-16 Tom Tromey <tromey@adacore.com>
7430
7431 * darwin-nat.c (thread_info_from_private_thread_info): Add struct
7432 keyword to foreach.
7433
7434 2019-05-15 Simon Marchi <simon.marchi@efficios.com>
7435
7436 * linux-thread-db.c (try_thread_db_load_1): Change return type
7437 to bool.
7438 (try_thread_db_load): Likewise.
7439 (try_thread_db_load_from_pdir_1): Likewise.
7440 (try_thread_db_load_from_pdir): Likewise.
7441 (try_thread_db_load_from_sdir): Likewise.
7442 (try_thread_db_load_from_dir): Likewise.
7443 (thread_db_load_search): Likewise.
7444 (has_libpthread): Likewise.
7445 (thread_db_load): Likewise.
7446
7447 2019-05-15 Sergio Durigan Junior <sergiodj@redhat.com>
7448
7449 Ref.: https://bugzilla.redhat.com/show_bug.cgi?id=1708192
7450 * dwarf2read.c (parse_macro_definition): Check whether 'body' is
7451 NULL, and complain/return if that's the case.
7452
7453 2019-05-15 John Darrington <john@darrington.wattle.id.au>
7454
7455 * s12z-tdep.c (push_pull_get_stack_adjustment): New function.
7456 (advance, posn, abstract_read_memory): New functions.
7457 [struct mem_read_abstraction]: New struct.
7458 (s12z_frame_cache): Use opcodes API to interpret stack frame code.
7459
7460 2019-05-14 Tom Tromey <tromey@adacore.com>
7461
7462 * ada-lang.c (coerce_unspec_val_to_type): Only set address when
7463 value is not lval_memory.
7464
7465 2019-05-14 Tom Tromey <tromey@adacore.com>
7466
7467 * solib.c (info_sharedlibrary_command): Style the file name.
7468
7469 2019-05-14 Alan Hayward <alan.hayward@arm.com>
7470
7471 * aarch64-tdep.c (aarch64_vnh_type): Add half view.
7472 (aarch64_vnv_type): Likewise.
7473 * target-descriptions.c (make_gdb_type): Add TDESC_TYPE_IEEE_HALF.
7474 * common/tdesc.c: Likewise.
7475 * common/tdesc.h (enum tdesc_type_kind): Likewise.
7476 * features/aarch64-fpu.c (create_feature_aarch64_fpu): Regenerate.
7477 * features/aarch64-fpu.xml: Add ieee half view.
7478 * features/aarch64-sve.c (create_feature_aarch64_fpu): Likewise.
7479 * gdbtypes.c (gdbtypes_post_init): Add builtin_half
7480 * gdbtypes.h (struct builtin_type): Likewise.
7481 (struct objfile_type): Likewise.
7482
7483 2019-05-12 Paul Naert <paul.naert@polymtl.ca>
7484
7485 * language.c (language_sniff_from_mangled_name): Fix "langauge"
7486 typo.
7487 * location.h (string_to_event_location): Likewise.
7488
7489 2019-05-11 Joel Brobecker <brobecker@adacore.com>
7490
7491 GDB 8.3 released.
7492
7493 2019-05-10 Simon Marchi <simon.marchi@efficios.com>
7494
7495 * breakpoint.h (fix_multi_location_breakpoint_output_globally):
7496 New variable declaration.
7497 * breakpoint.c (fix_multi_location_breakpoint_output_globally):
7498 New variable.
7499 (print_one_breakpoint): Use ui_out::test_flags and new global
7500 variable to compute use_fixed_output.
7501 * mi/mi-main.h (mi_multi_location_breakpoint_output_fixed):
7502 Remove.
7503 * mi/mi-main.c (fix_multi_location_breakpoint_output): Remove.
7504 (mi_multi_location_breakpoint_output_fixed): Remove.
7505 (mi_cmd_fix_multi_location_breakpoint_output): Adjust to set the
7506 new variable.
7507 * mi/mi-out.c (mi_ui_out::mi_ui_out): Set
7508 fix_multi_location_breakpoint_output flag if version >= 3.
7509 * ui-out.h (enum ui_out_flag)
7510 <fix_multi_location_breakpoint_output>: New enumerator.
7511
7512 2019-05-10 Simon Marchi <simon.marchi@efficios.com>
7513
7514 * contrib/cc-with-tweaks.sh: Validate dwz's work.
7515
7516 2019-05-10 Tom Tromey <tromey@adacore.com>
7517
7518 * ada-lang.c (catch_ada_completer): New function.
7519 (_initialize_ada_language): Use it.
7520
7521 2019-05-10 Tom Tromey <tromey@adacore.com>
7522
7523 * thread.c (print_thread_info): Make "requested_threads" const.
7524 * gdbthread.h (print_thread_info): Make "requested_threads"
7525 const.
7526 * ada-tasks.c (print_ada_task_info): Make "taskno_str" const.
7527 * ada-lang.h (print_ada_task_info): Make "taskno_str" const.
7528
7529 2019-05-08 Tom Tromey <tom@tromey.com>
7530
7531 * gdbtypes.c (objfile_type_data): Change type.
7532 (objfile_type, _initialize_gdbtypes): Update.
7533
7534 2019-05-08 Tom Tromey <tom@tromey.com>
7535
7536 * dwarf2-frame.c (dwarf2_frame_objfile_data): Change type.
7537 (dwarf2_frame_find_fde, dwarf2_build_frame_info)
7538 (_initialize_dwarf2_frame): Update.
7539
7540 2019-05-08 Tom Tromey <tom@tromey.com>
7541
7542 * objc-lang.c (objc_objfile_data): Change type.
7543 (find_methods): Update.
7544 (_initialize_objc_lang): Remove.
7545
7546 2019-05-08 Tom Tromey <tom@tromey.com>
7547
7548 * stabsread.c (rs6000_builtin_type_data): Change type.
7549 (rs6000_builtin_type, _initialize_stabsread): Update.
7550
7551 2019-05-08 Tom Tromey <tom@tromey.com>
7552
7553 * mips-tdep.c (mips_pdr_data): Remove.
7554 (_initialize_mips_tdep): Update.
7555
7556 2019-05-08 Tom Tromey <tom@tromey.com>
7557
7558 * hppa-tdep.c (hppa_objfile_priv_data): Change type.
7559 (hppa_init_objfile_priv_data, read_unwind_info)
7560 (find_unwind_entry, _initialize_hppa_tdep): Update.
7561
7562 2019-05-08 Tom Tromey <tom@tromey.com>
7563
7564 * elfread.c (elf_objfile_gnu_ifunc_cache_data): Change type.
7565 (elf_gnu_ifunc_record_cache): Update. Don't allocate hash table
7566 on obstack.
7567 (elf_gnu_ifunc_resolve_by_cache, _initialize_elfread): Update.
7568
7569 2019-05-08 Tom Tromey <tom@tromey.com>
7570
7571 * mdebugread.c (basic_type_data): Change type.
7572 (basic_type, _initialize_mdebugread): Update.
7573
7574 2019-05-08 Tom Tromey <tom@tromey.com>
7575
7576 * common/gdb_unique_ptr.h (struct noop_deleter): New.
7577
7578 2019-05-08 Tom Tromey <tom@tromey.com>
7579
7580 * nto-tdep.c (nto_inferior_data_reg): Change type.
7581 (nto_inferior_data): Update.
7582 (nto_inferior_data_cleanup, nto_new_inferior_data)
7583 (_initialize_nto_tdep): Remove.
7584 * nto-tdep.h (struct nto_inferior_data): Add initializers.
7585
7586 2019-05-08 Tom Tromey <tom@tromey.com>
7587
7588 * ada-lang.c (struct ada_inferior_data): Add initializers.
7589 (ada_inferior_data): Change type.
7590 (ada_inferior_data_cleanup): Remove.
7591 (get_ada_inferior_data, ada_inferior_exit)
7592 (struct ada_pspace_data): Add initializers, destructor.
7593 (ada_pspace_data_handle): Change type.
7594 (get_ada_pspace_data): Update.
7595 (ada_pspace_data_cleanup): Remove.
7596
7597 2019-05-08 Tom Tromey <tom@tromey.com>
7598
7599 * coffread.c (struct coff_symfile_info): Add initializers.
7600 (coff_objfile_data_key): Move lower. Change type.
7601 (coff_symfile_init, coff_symfile_read, _initialize_coffread):
7602 Update.
7603 (coff_free_info): Remove.
7604
7605 2019-05-08 Tom Tromey <tom@tromey.com>
7606
7607 * fbsd-tdep.c (struct fbsd_pspace_data): Add initializers.
7608 (fbsd_pspace_data_handle): Move lower. Change type.
7609 (get_fbsd_pspace_data): Update.
7610 (fbsd_pspace_data_cleanup): Remove.
7611 (_initialize_fbsd_tdep): Update.
7612
7613 2019-05-08 Tom Tromey <tom@tromey.com>
7614
7615 * ada-tasks.c (ada_tasks_pspace_data_handle): Change type.
7616 (get_ada_tasks_pspace_data): Update.
7617 (ada_tasks_pspace_data_cleanup): Remove.
7618 (_initialize_tasks): Update.
7619 (ada_tasks_inferior_data_handle): Change type.
7620 (get_ada_tasks_inferior_data): Update.
7621 (ada_tasks_inferior_data_cleanup): Remove.
7622 (struct ada_tasks_pspace_data): Add initializers.
7623
7624 2019-05-08 Tom Tromey <tom@tromey.com>
7625
7626 * symfile.h (struct sym_probe_fns) <sym_get_probes>: Change type.
7627 * symfile-debug.c (debug_sym_get_probes): Change type.
7628 * stap-probe.c (handle_stap_probe):
7629 (stap_static_probe_ops::get_probes): Change type.
7630 * probe.h (class static_probe_ops) <get_probes>: Change type.
7631 * probe.c (class any_static_probe_ops) <get_probes>: Change type.
7632 (parse_probes_in_pspace): Update.
7633 (find_probes_in_objfile, find_probe_by_pc, collect_probes):
7634 Update.
7635 (any_static_probe_ops::get_probes): Change type.
7636 * elfread.c (elfread_data): New typedef.
7637 (probe_key): Change type.
7638 (elf_get_probes): Likewise. Update.
7639 (probe_key_free): Remove.
7640 (_initialize_elfread): Update.
7641 * dtrace-probe.c (class dtrace_static_probe_ops) <get_probes>:
7642 Change type.
7643 (dtrace_process_dof_probe, dtrace_process_dof)
7644 (dtrace_static_probe_ops::get_probe): Change type.
7645
7646 2019-05-08 Tom Tromey <tom@tromey.com>
7647
7648 * xcoffread.c (struct xcoff_symfile_info): Rename from
7649 coff_symfile_info. Add initializers.
7650 (xcoff_objfile_data_key): Move lower. Change type.
7651 (XCOFF_DATA): Rewrite.
7652 (xcoff_free_info): Remove.
7653 (xcoff_symfile_init, _initialize_xcoffread, read_xcoff_symtab)
7654 (read_symbol, read_symbol_lineno, find_linenos, init_stringtab)
7655 (xcoff_initial_scan): Update.
7656
7657 2019-05-08 Tom Tromey <tom@tromey.com>
7658
7659 * solib-svr4.c (struct svr4_info): Add initializers and
7660 destructor.
7661 <probes_table>: Now an htab_up.
7662 (solib_svr4_pspace_data): Change type.
7663 (free_probes_table): Simplify.
7664 (~svr4_info): Rename from svr4_pspace_data_cleanup.
7665 (get_svr4_info, probes_table_htab_remove_objfile_probes)
7666 (probes_table_remove_objfile_probes, register_solib_event_probe)
7667 (solib_event_probe_at, svr4_update_solib_event_breakpoint)
7668 (_initialize_svr4_solib): Update.
7669
7670 2019-05-08 Tom Tromey <tom@tromey.com>
7671
7672 * remote.c (remote_pspace_data): Change type.
7673 (remote_pspace_data_cleanup): Remove.
7674 (get_remote_exec_file, set_pspace_remote_exec_file)
7675 (_initialize_remote): Update.
7676
7677 2019-05-08 Tom Tromey <tom@tromey.com>
7678
7679 * breakpoint.c (breakpoint_objfile_key): Change type.
7680 (get_breakpoint_objfile_data): Update.
7681 (free_breakpoint_objfile_data): Remove.
7682 (_initialize_breakpoint): Update.
7683
7684 2019-05-08 Tom Tromey <tom@tromey.com>
7685
7686 * linux-tdep.c (struct linux_info): Add initializers.
7687 (linux_inferior_data): Move. Change type.
7688 (invalidate_linux_cache_inf): Update.
7689 (linux_inferior_data_cleanup): Remove.
7690 (get_linux_inferior_data, _initialize_linux_tdep): Update.
7691
7692 2019-05-08 Tom Tromey <tom@tromey.com>
7693
7694 * auxv.c (auxv_inferior_data): Move. Change type.
7695 (auxv_inferior_data_cleanup): Remove.
7696 (invalidate_auxv_cache_inf): Rewrite.
7697 (get_auxv_inferior_data, _initialize_auxv): Update.
7698
7699 2019-05-08 Tom Tromey <tom@tromey.com>
7700
7701 * symfile-debug.c (struct debug_sym_fns_data): Add initializers.
7702 (symfile_debug_objfile_data_key): Change type.
7703 (symfile_debug_installed, debug_qf_has_symbols)
7704 (debug_qf_find_last_source_symtab)
7705 (debug_qf_forget_cached_source_info)
7706 (debug_qf_map_symtabs_matching_filename, debug_qf_lookup_symbol)
7707 (debug_qf_print_stats, debug_qf_dump)
7708 (debug_qf_expand_symtabs_for_function)
7709 (debug_qf_expand_all_symtabs)
7710 (debug_qf_expand_symtabs_with_fullname)
7711 (debug_qf_map_matching_symbols)
7712 (debug_qf_expand_symtabs_matching)
7713 (debug_qf_find_pc_sect_compunit_symtab)
7714 (debug_qf_map_symbol_filenames)
7715 (debug_qf_find_compunit_symtab_by_address, debug_sym_get_probes)
7716 (debug_sym_new_init, debug_sym_init, debug_sym_read)
7717 (debug_sym_read_psymbols, debug_sym_finish, debug_sym_offsets)
7718 (debug_sym_read_linetable, debug_sym_relocate): Update.
7719 (symfile_debug_free_objfile): Remove.
7720 (install_symfile_debug_logging, _initialize_symfile_debug):
7721 Update.
7722
7723 2019-05-08 Tom Tromey <tom@tromey.com>
7724
7725 * dwarf2read.h (struct dwarf2_per_objfile): Don't inherit from
7726 allocate_on_obstack.
7727 * dwarf2read.c (dwarf2_objfile_data_key): Change type.
7728 (get_dwarf2_per_objfile): Update.
7729 (set_dwarf2_per_objfile): Remove.
7730 (dwarf2_has_info, dwarf2_get_section_info): Update.
7731 (dwarf2_free_objfile): Remove.
7732 (_initialize_dwarf2_read): Update.
7733
7734 2019-05-08 Tom Tromey <tom@tromey.com>
7735
7736 * auto-load.c (struct auto_load_pspace_info): Add destructor and
7737 initializers.
7738 <unsupported_script_warning_printed,
7739 script_not_found_warning_printed>: Now bool.
7740 (auto_load_pspace_data): Change type.
7741 (~auto_load_pspace_info): Rename from
7742 auto_load_pspace_data_cleanup.
7743 (get_auto_load_pspace_data, init_loaded_scripts_info)
7744 (clear_section_scripts, maybe_print_unsupported_script_warning)
7745 (maybe_print_script_not_found_warning, _initialize_auto_load):
7746 Update.
7747
7748 2019-05-08 Tom Tromey <tom@tromey.com>
7749
7750 * objfiles.c (objfile_pspace_info): Add destructor and
7751 initializers.
7752 (objfiles_pspace_data): Change type.
7753 (~objfile_pspace_info): Rename from objfiles_pspace_data_cleanup.
7754 (get_objfile_pspace_data): Update.
7755 (objfiles_bfd_data): Change type.
7756 (get_objfile_bfd_data): Update.
7757 (objfile_bfd_data_free, _initialize_objfiles): Remove.
7758
7759 2019-05-08 Tom Tromey <tom@tromey.com>
7760
7761 * break-catch-syscall.c (catch_syscall_inferior_data): Move.
7762 Change type.
7763 (get_catch_syscall_inferior_data): Update.
7764 (catch_syscall_inferior_data_cleanup): Remove.
7765 (_initialize_break_catch_syscall): Update.
7766
7767 2019-05-08 Tom Tromey <tom@tromey.com>
7768
7769 * inflow.c (struct terminal_info): Add destructor and
7770 initializers.
7771 (inflow_inferior_data): Change type.
7772 (~terminal_info): Rename from inflow_inferior_data_cleanup.
7773 (get_inflow_inferior_data, inflow_inferior_exit)
7774 (swap_terminal_info, _initialize_inflow): Update.
7775
7776 2019-05-08 Tom Tromey <tom@tromey.com>
7777
7778 * target-dcache.c (target_dcache_cleanup): Remove.
7779 (target_dcache_aspace_key): Change type.
7780 (target_dcache_init_p, target_dcache_invalidate)
7781 (target_dcache_get, target_dcache_get_or_init)
7782 (_initialize_target_dcache): Update.
7783 * dcache.h (struct dcache_deleter): New.
7784
7785 2019-05-08 Tom Tromey <tom@tromey.com>
7786
7787 * symtab.c (struct symbol_cache): Add destructor and
7788 initializers.
7789 (symbol_cache_key): Move. Change type.
7790 (make_symbol_cache, free_symbol_cache): Remove.
7791 (get_symbol_cache): Update.
7792 (symbol_cache_cleanup): Remove.
7793 (ALL_PSPACES, symbol_cache_flush)
7794 (maintenance_print_symbol_cache)
7795 (maintenance_print_symbol_cache_statistics, _initialize_symtab):
7796 Update.
7797
7798 2019-05-08 Tom Tromey <tom@tromey.com>
7799
7800 * symtab.c (struct main_info): Add destructor and initializers.
7801 (main_progspace_key): Move. Change type.
7802 (get_main_info): Update.
7803 (main_info_cleanup): Remove.
7804 (_initialize_symtab): Update.
7805
7806 2019-05-08 Tom Tromey <tom@tromey.com>
7807
7808 * registry.h (DECLARE_REGISTRY): Define the _key class.
7809
7810 2019-05-08 Andrew Burgess <andrew.burgess@embecosm.com>
7811
7812 * NEWS: Merge two 'New commands' sections.
7813
7814 2019-05-08 Joel Brobecker <brobecker@adacore.com>
7815
7816 * ada-valprint.c (ada_val_print_gnat_array): Remove language
7817 parameter and use Ada language definition instead.
7818 (ada_val_print_ptr): Remove unused language parameter.
7819 (ada_val_print_num): Remove language parameter and use Ada language
7820 definition instead.
7821 (ada_val_print_enum, ada_val_print_flt): Remove unused language
7822 parameter.
7823 (ada_val_print_struct_union, ada_val_print_ref): Remove language
7824 parameter and use Ada language definition instead.
7825 (ada_val_print_1): Update all ada_val_print_xxx calls.
7826 Remove language parameter.
7827 (ada_val_print): Update ada_val_print_1 call.
7828
7829 2019-05-08 Tom Tromey <tromey@adacore.com>
7830
7831 * remote.c (remote_hw_watchpoint_limit)
7832 (remote_hw_watchpoint_length_limit, remote_hw_breakpoint_limit):
7833 Now static.
7834
7835 2019-05-08 Tom Tromey <tromey@adacore.com>
7836
7837 * maint.c (_initialize_maint_cmds): Move initialization code to
7838 remote.c.
7839 (watchdog, show_watchdog): Move to remote.c.
7840 * remote.c (watchdog, show_watchdog): Move from maint.c. Make
7841 "watchdog" static.
7842 (_initialize_remote): Move initialization code from maint.c.
7843 * defs.h (watchdog): Don't declare.
7844
7845 2019-05-08 Tom Tromey <tromey@adacore.com>
7846
7847 * tui/tui-interp.c: Include main.h.
7848 * interps.c: Include main.h.
7849 * main.h (interpreter_p): Declare.
7850 * defs.h (interpreter_p): Don't declare.
7851
7852 2019-05-08 Tom Tromey <tromey@adacore.com>
7853
7854 * dwarf2loc.c: Include dwarf2read.h.
7855 * defs.h (read_unsigned_leb128): Don't declare.
7856 * dwarf2read.h (read_unsigned_leb128): Declare.
7857
7858 2019-05-08 Tom Tromey <tromey@adacore.com>
7859
7860 * utils.c (fputs_maybe_filtered): Call can_emit_style_escape as a
7861 method.
7862
7863 2019-05-08 Tom Tromey <tromey@adacore.com>
7864
7865 * utils.c (fputs_maybe_filtered): Reset style after paging, even
7866 when no wrap column is set.
7867
7868 2019-05-08 Tom Tromey <tromey@adacore.com>
7869
7870 * c-lang.c (c_get_string): Handle non-C-style arrays.
7871
7872 2019-05-08 Tom Tromey <tromey@adacore.com>
7873
7874 * typeprint.c (print_offset_data::update): Print the bit offset,
7875 not the number of bits remaining.
7876
7877 2019-05-08 Tom Tromey <tromey@adacore.com>
7878
7879 * typeprint.c (print_offset_data::maybe_print_hole): Add extra
7880 padding at end of comment.
7881
7882 2019-05-08 Tom Tromey <tromey@adacore.com>
7883
7884 * dwarf2loc.c (dwarf2_evaluate_property) <PROP_ADDR_OFFSET>:
7885 Compare main types.
7886
7887 2019-05-06 Tom Tromey <tom@tromey.com>
7888
7889 * common/scoped_mmap.c: Include common-defs.h.
7890 * common/scoped_mmap.h: Don't include config.h.
7891
7892 2019-05-04 Tom Tromey <tom@tromey.com>
7893
7894 * aarch64-tdep.c (stack_item_t): Remove typedef and DEF_VEC.
7895 (struct aarch64_call_info): Add initializers.
7896 <si>: Now a std::vector.
7897 (pass_on_stack, aarch64_push_dummy_call): Update.
7898
7899 2019-05-04 Simon Marchi <simon.marchi@efficios.com>
7900 Tom Tromey <tom@tromey.com>
7901
7902 * ppc-linux-nat.c (thread_points_p): Remove typedef and DEF_VEC.
7903 (ppc_threads): Now a std::vector. Now static.
7904 (hwdebug_find_thread_points_by_tid)
7905 (ppc_linux_nat_target::low_new_thread, ppc_linux_thread_exit):
7906 Update.
7907
7908 2019-05-04 Tom Tromey <tom@tromey.com>
7909
7910 * arc-tdep.c (arc_tdesc_init): Return bool.
7911
7912 2019-05-04 Tom Tromey <tom@tromey.com>
7913
7914 * arm-linux-nat.c (arm_linux_nat_target::can_use_hw_breakpoint):
7915 Use gdb_assert_not_reached.
7916
7917 2019-05-04 Tom Tromey <tom@tromey.com>
7918
7919 * compile/compile-cplus-types.c (compile_cplus_convert_enum): Use
7920 "false".
7921
7922 2019-05-04 Tom Tromey <tom@tromey.com>
7923
7924 * arc-tdep.c (arc_tdesc_init): Use bool.
7925
7926 2019-05-04 Tom Tromey <tom@tromey.com>
7927
7928 * stack.c (select_frame_for_mi): Use "false", not "FALSE".
7929
7930 2019-05-04 Tom Tromey <tom@tromey.com>
7931
7932 * cli/cli-cmds.c (valid_command_p): Return bool.
7933
7934 2019-05-04 Tom Tromey <tom@tromey.com>
7935
7936 * cli/cli-decode.c (valid_user_defined_cmd_name_p): Return bool.
7937 * command.h (valid_user_defined_cmd_name_p): Channge return type.
7938
7939 2019-05-04 Raul Tambre <raul@tambre.ee>
7940
7941 * python/lib/gdb/prompt.py (_ExtendedPrompt)
7942 <before_prompt_hook, get_show_string>: Fix incorrect use of 'is'
7943 operator for comparison.
7944
7945 2019-05-04 Tom Tromey <tom@tromey.com>
7946
7947 * psymtab.c (psymbol_name_matches, match_partial_symbol)
7948 (lookup_partial_symbol, print_partial_symbols)
7949 (recursively_search_psymtabs, sort_pst_symbols, psymbol_hash)
7950 (psymbol_compare): Update.
7951 (add_psymbol_to_bcache): Clear the entire psymbol.
7952 (maintenance_check_psymtabs): Update.
7953 * psympriv.h (struct partial_symbol): Don't derive from
7954 general_symbol_info.
7955 <obj_section, unrelocated_address, address,
7956 set_unrelocated_address>: Update.
7957 <ginfo>: New member.
7958 * dwarf-index-write.c (write_psymbols, debug_names::insert)
7959 (debug_names::write_psymbols): Update.
7960
7961 2019-05-04 Tom de Vries <tdevries@suse.de>
7962
7963 * contrib/cc-with-tweaks.sh: Support -n arg.
7964
7965 2019-05-04 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7966
7967 * corelow.c (core_target::detach): Ensure frame cache and
7968 register caches are cleared.
7969 inferior.c (exit_inferior_1): Likewise.
7970
7971 2019-05-03 Sandra Loosemore <sandra@codesourcery.com>
7972 Tom Tromey <tom@tromey.com>
7973
7974 * dictionary.c (collate_pending_symbols_by_language): Remove
7975 "struct" from foreach.
7976 * symtab.c (lookup_global_symbol_from_objfile)
7977 (lookup_symbol_in_objfile_from_linkage_name): Remove "struct" from
7978 foreach.
7979 * ser-tcp.c (net_open): Remove "struct" from foreach.
7980 * objfiles.c (objfile_relocate, objfile_rebase)
7981 (objfile_has_symbols): Remove "struct" from foreach.
7982 * minsyms.c (lookup_minimal_symbol_by_pc_section): Remove "struct"
7983 from foreach.
7984 * dwarf2read.c (handle_struct_member_die): Remove "struct" from
7985 foreach.
7986 * darwin-nat.c (thread_info_from_private_thread_info): Remove
7987 "struct" from foreach.
7988 * ada-lang.c (create_excep_cond_exprs)
7989 (ada_exception_catchpoint_cond_string): Remove "struct" from
7990 foreach.
7991
7992 2019-05-03 Tom Tromey <tromey@adacore.com>
7993
7994 * ada-exp.y (convert_char_literal): Check suffix of each
7995 enumerator.
7996
7997 2019-05-03 Dilyan Palauzov <dilyan.palauzov@aegee.org>
7998
7999 PR ada/21406:
8000 * ada-exp.y (yywrap): Don't define.
8001 * ada-lex.l (%option): Add noyywrap
8002 (yywrap): Remove.
8003
8004 2019-05-03 Eli Zaretskii <eliz@gnu.org>
8005
8006 * common/common-defs.h [__MINGW32__ || __CYGWIN__]: Define
8007 _WIN32_WINNT to the XP level, unless already defined to a higher
8008 level.
8009
8010 * unittests/parse-connection-spec-selftests.c:
8011 * ser-tcp.c:
8012 * common/netstuff.c [USE_WIN32API]: Remove the _WIN32_WINNT
8013 override.
8014
8015 * symfile.c (find_separate_debug_file): Remove colon from the
8016 drive spec of DOS/Windows file names of the target, so that the
8017 file name produced from DEBUGDIR and the target's directory will
8018 be valid on DOS/Windows systems.
8019
8020 2019-05-02 Andrew Burgess <andrew.burgess@embecosm.com>
8021
8022 * rust-lang.c (val_print_struct): Handle printing structures
8023 containing strings.
8024
8025 2019-05-02 Tom Tromey <tromey@adacore.com>
8026
8027 * valarith.c (_initialize_valarith): Remove.
8028
8029 2019-05-01 Tom Tromey <tromey@adacore.com>
8030
8031 * ada-lang.c (ada_value_primitive_field): Treat more fields as
8032 bitfields.
8033
8034 2019-05-01 Tom Tromey <tromey@adacore.com>
8035
8036 * ada-lang.c (ada_value_assign): Correctly compute starting offset
8037 for big-endian copies.
8038
8039 2019-04-30 Ali Tamur <tamur@google.com>
8040 * gdb/dwarf2read.c (read_3_bytes): New declaration.
8041 (read_attribute_value): Added DW_FORM_strx1-4 cases.
8042 (read_3_bytes): New function.
8043
8044 2019-04-30 Joel Brobecker <brobecker@adacore.com>
8045
8046 * windows-nat.c (main_thread_id): Delete.
8047 (handle_output_debug_string): Replace main_thread_id by
8048 current_event.dwThreadId.
8049 (fake_create_process): Likewise.
8050 (get_windows_debug_event) <CREATE_PROCESS_DEBUG_EVENT>:
8051 Do not set main_thread_id.
8052 <LOAD_DLL_DEBUG_EVENT>: Replace main_thread_id by
8053 current_event.dwThreadId.
8054 <UNLOAD_DLL_DEBUG_EVENT>: Likewise.
8055
8056 2019-04-30 Joel Brobecker <brobecker@adacore.com>
8057
8058 * windows-nat.c (get_windows_debug_event) <EXIT_PROCESS_DEBUG_EVENT>:
8059 Use current_event.dwThreadId instead of main_thread_id.
8060
8061 2019-04-30 Tom Tromey <tromey@adacore.com>
8062
8063 * ada-lang.c (ada_lookup_simple_minsyms): New function.
8064 (create_excep_cond_exprs): Iterate over program spaces.
8065 (ada_exception_catchpoint_cond_string): Examine all minimal
8066 symbols for exception types.
8067
8068 2019-04-30 Tom Tromey <tromey@adacore.com>
8069
8070 PR c++/24470:
8071 * dwarf2read.c (process_structure_scope): Handle case where type
8072 has template parameters but no symbol was created.
8073
8074 2019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8075 Chris January <chris.january@arm.com>
8076
8077 * f-typeprint.c (f_type_print_base): Print 'allocatable' type
8078 qualifier.
8079 * gdbtypes.h (TYPE_IS_ALLOCATABLE): Define.
8080
8081 2019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8082
8083 * f-typeprint.c (f_print_type): Update rules for printing
8084 whitespace.
8085 (f_type_print_varspec_suffix): Likewise.
8086
8087 2019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8088 Chris January <chris.january@arm.com>
8089
8090 * f-typeprint.c (f_type_print_varspec_suffix): Handle printing
8091 function arguments.
8092
8093 2019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8094
8095 * f-lang.c (build_fortran_types): Change name of void type to
8096 lower case.
8097 * f-typeprint.c (f_type_print_base): Print the name of the void
8098 type, rather than a fixed string.
8099 * f-valprint.c (f_decorations): Use lower case void string.
8100
8101 2019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8102 Chris January <chris.january@arm.com>
8103
8104 * dwarf2read.c (dwarf2_init_complex_target_type): Use different
8105 types for Fortran.
8106
8107 2019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8108 Chris January <chris.january@arm.com>
8109 David Lecomber <david.lecomber@arm.com>
8110
8111 * f-exp.y (BINOP_INTRINSIC): New token.
8112 (exp): New parser rule handling BINOP_INTRINSIC.
8113 (f77_keywords): Add new builtin procedures.
8114 * f-lang.c (evaluate_subexp_f): Handle BINOP_MOD, UNOP_FORTRAN_CEILING,
8115 UNOP_FORTRAN_FLOOR, BINOP_FORTRAN_MODULO, BINOP_FORTRAN_CMPLX.
8116 (operator_length_f): Handle UNOP_FORTRAN_CEILING,
8117 UNOP_FORTRAN_FLOOR, BINOP_FORTRAN_MODULO, BINOP_FORTRAN_CMPLX.
8118 (print_unop_subexp_f): New function.
8119 (print_binop_subexp_f): New function.
8120 (print_subexp_f): Handle UNOP_FORTRAN_CEILING, UNOP_FORTRAN_FLOOR,
8121 BINOP_FORTRAN_MODULO, BINOP_FORTRAN_CMPLX.
8122 (dump_subexp_body_f): Likewise.
8123 (operator_check_f): Likewise.
8124 * fortran-operator.def: Add UNOP_FORTRAN_CEILING, UNOP_FORTRAN_FLOOR,
8125 BINOP_FORTRAN_MODULO, BINOP_FORTRAN_CMPLX
8126
8127 2019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8128
8129 * gdb/expprint.c (dump_subexp_body_standard): Remove use of
8130 UNOP_KIND.
8131 * gdb/expression.h (exp_opcode): Include 'fortran-operator.def'.
8132 * gdb/f-exp.y (exp): Rename UNOP_KIND to UNOP_FORTRAN_KIND.
8133 * gdb/f-lang.c (evaluate_subexp_f): Likewise.
8134 (operator_length_f): New fuction.
8135 (print_subexp_f): New function.
8136 (op_name_f): New function.
8137 (dump_subexp_body_f): New function.
8138 (operator_check_f): New function.
8139 (exp_descriptor_f): Replace standard expression handling functions
8140 with new functions.
8141 * gdb/fortran-operator.def: New file.
8142 * gdb/parse.c (operator_length_standard): Remove use of UNOP_KIND.
8143 * gdb/std-operator.def: Remove UNOP_KIND.
8144
8145 2019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
8146
8147 * std-operator.def: Remove unbalanced, stray double quote
8148 character.
8149
8150 2019-04-29 Andrew Burgess <andrew.burgess@embecosm.com>
8151 Chris January <chris.january@arm.com>
8152 Daniel Everett <daniel.everett@arm.com>
8153 Nick Forrington <nick.forrington@arm.com>
8154 Richard Bunt <richard.bunt@arm.com>
8155
8156 * cp-valprint.c (cp_print_value_fields): Allow an additional level
8157 of depth when printing anonymous structs or unions.
8158 * guile/scm-pretty-print.c (gdbscm_apply_val_pretty_printer):
8159 Don't print either the top-level value, or the children if the
8160 max-depth is exceeded.
8161 (ppscm_print_children): When printing the key of a map, allow one
8162 extra level of depth.
8163 * python/py-prettyprint.c (gdbpy_apply_val_pretty_printer): Don't
8164 print either the top-level value, or the children if the max-depth
8165 is exceeded.
8166 (print_children): When printing the key of a map, allow one extra
8167 level of depth.
8168 * python/py-value.c (valpy_format_string): Add max_depth keyword.
8169 * valprint.c: (PRINT_MAX_DEPTH_DEFAULT): Define.
8170 (user_print_options): Initialise max_depth field.
8171 (val_print_scalar_or_string_type_p): New function.
8172 (val_print): Check to see if the max depth has been reached.
8173 (val_print_check_max_depth): Define new function.
8174 (show_print_max_depth): New function.
8175 (_initialize_valprint): Add 'print max-depth' option.
8176 * valprint.h (struct value_print_options) <max_depth>: New field.
8177 (val_print_check_max_depth): Declare new function.
8178 * NEWS: Document new feature.
8179
8180 2019-04-29 Andrew Burgess <andrew.burgess@embecosm.com>
8181
8182 * ada-lang.c (ada_language_defn): Initialise new field.
8183 * c-lang.c (c_is_string_type_p): New function.
8184 (c_language_defn): Initialise new field.
8185 (cplus_language_defn): Initialise new field.
8186 (asm_language_defn): Initialise new field.
8187 (minimal_language_defn): Initialise new field.
8188 * c-lang.h (c_is_string_type_p): Declare new function.
8189 * d-lang.c (d_language_defn): Initialise new field.
8190 * f-lang.c (f_is_string_type_p): New function.
8191 (f_language_defn): Initialise new field.
8192 * go-lang.c (go_is_string_type_p): New function.
8193 (go_language_defn): Initialise new field.
8194 * language.c (default_is_string_type_p): New function.
8195 (unknown_language_defn): Initialise new field.
8196 (auto_language_defn): Initialise new field.
8197 * language.h (struct language_defn) <la_is_string_type_p>: New
8198 member variable.
8199 (default_is_string_type_p): Declare new function.
8200 * m2-lang.c (m2_language_defn): Initialise new field.
8201 * objc-lang.c (objc_language_defn): Initialise new field.
8202 * opencl-lang.c (opencl_language_defn): Initialise new field.
8203 * p-lang.c (pascal_is_string_type_p): New function.
8204 (pascal_language_defn): Initialise new field.
8205 * rust-lang.c (rust_is_string_type_p): New function.
8206 (rust_language_defn): Initialise new field.
8207
8208 2019-04-29 Andrew Burgess <andrew.burgess@embecosm.com>
8209
8210 * language.h (struct language_defn) <la_struct_too_deep_ellipsis>:
8211 New field.
8212 * ada-lang.c (ada_language_defn): Initialise new field.
8213 * c-lang.c (c_language_defn): Likewise.
8214 (cplus_language_defn): Likewise.
8215 (asm_language_defn): Likewise.
8216 (minimal_language_defn): Likewise.
8217 * d-lang.c (d_language_defn): Likewise.
8218 * f-lang.c (f_language_defn): Likewise.
8219 * go-lang.c (go_language_defn): Likewise.
8220 * language.c (unknown_language_defn): Likewise.
8221 (auto_language_defn): Likewise.
8222 * m2-lang.c (m2_language_defn): Likewise.
8223 * objc-lang.c (objc_language_defn): Likewise.
8224 * opencl-lang.c (opencl_language_defn): Likewise.
8225 * p-lang.c (pascal_language_defn): Likewise.
8226 * rust-lang.c (rust_language_defn): Likewise.
8227
8228 2019-04-29 Andrew Burgess <andrew.burgess@embecosm.com>
8229
8230 * ada-lang.c (ada_is_character_type): Change return type to bool.
8231 (ada_is_string_type): Likewise.
8232 * ada-lang.h (ada_is_character_type): Update declaration
8233 (ada_is_string_type): Likewise.
8234
8235 2019-04-27 Philippe Waroquiers <philippe.waroquiers@skynet.be>
8236
8237 Support style in 'frame|thread apply'
8238
8239 * gdbcmd.h (execute_command_to_string): New term_out parameter.
8240 * record.c (record_start, record_stop): Update callers of
8241 execute_command_to_string with false.
8242 * guile/guile.c (gdbscm_execute_gdb_command): Likewise.
8243 * ui-file.h (class ui_file): New term_out and can_emit_style_escape
8244 methods.
8245 (class string_file): New constructor with term_out parameter.
8246 Override methods term_out and can_emit_style_escape. New member
8247 term_out.
8248 (class stdio_file): Override can_emit_style_escape.
8249 (class tee_file): Override term_out and can_emit_style_escape.
8250 * utils.h (can_emit_style_escape): Remove.
8251 * utils.c (can_emit_style_escape): Likewise.
8252 Update all callers of can_emit_style_escape (SOMESTREAM) to
8253 SOMESTREAM->can_emit_style_escape.
8254 * source-cache.c (source_cache::get_source_lines): Likewise.
8255 * stack.c (frame_apply_command_count): Call execute_command_to_string
8256 passing the term_out characteristic of the current gdb_stdout.
8257 * thread.c (thr_try_catch_cmd): Likewise.
8258 * top.c (execute_command_to_string): pass term_out parameter
8259 to construct the string_file for the command output.
8260 * ui-file.c (term_cli_styling): New function (most code moved
8261 from utils.c can_emit_style_escape).
8262 (string_file::string_file, string_file::can_emit_style_escape,
8263 stdio_file::can_emit_style_escape, tee_file::term_out,
8264 tee_file::can_emit_style_escape): New functions.
8265
8266 2019-04-27 Philippe Waroquiers <philippe.waroquiers@skynet.be>
8267
8268 * NEWS: Mention the new set|show may-call-functions.
8269 * infcall.c (may_call_functions_p): New variable.
8270 (show_may_call_functions_p): New function.
8271 (call_function_by_hand_dummy): Throws an error if not
8272 may-call-functions.
8273 (_initialize_infcall): Call add_setshow_boolean_cmd for
8274 may-call-functions.
8275
8276 2019-04-25 Keith Seitz <keiths@redhat.com>
8277
8278 PR c++/24367
8279 * cp-support.c (inspect_type): Don't attempt substitutions
8280 of symbol with the same name.
8281
8282 2019-04-25 Tom Tromey <tromey@adacore.com>
8283
8284 PR gdb/24475:
8285 * event-top.c (gdb_rl_callback_handler): Make "gdb_rl_expt"
8286 static.
8287
8288 2019-04-25 Tom Tromey <tromey@adacore.com>
8289
8290 * xml-support.c (struct gdb_xml_parser) <set_error>: Take an
8291 rvalue reference.
8292 (gdb_xml_start_element_wrapper, gdb_xml_end_element_wrapper)
8293 (gdb_xml_parser::parse): Use std::move.
8294 * python/python-internal.h (gdbpy_convert_exception): Take a const
8295 reference.
8296 * python/py-value.c (valpy_getitem, valpy_nonzero): Use
8297 std::move.
8298 * python/py-utils.c (gdbpy_convert_exception): Take a const
8299 reference.
8300 * python/py-inferior.c (infpy_write_memory, infpy_search_memory):
8301 Use std::move.
8302 * python/py-breakpoint.c (bppy_set_condition, bppy_set_commands):
8303 Use std::move.
8304 * mi/mi-main.c (mi_print_exception): Take a const reference.
8305 * main.c (handle_command_errors): Take a const reference.
8306 * linespec.c (parse_linespec): Use std::move.
8307 * infcall.c (run_inferior_call): Use std::move.
8308 (call_function_by_hand_dummy): Use std::move.
8309 * exec.c (try_open_exec_file): Use std::move.
8310 * exceptions.h (exception_print, exception_fprintf)
8311 (exception_print_same): Update.
8312 * exceptions.c (print_exception, exception_print)
8313 (exception_fprintf, exception_print_same): Change parameters to
8314 const reference.
8315 * event-top.c (gdb_rl_callback_read_char_wrapper): Update.
8316 * common/new-op.c: Use std::move.
8317 * common/common-exceptions.h (struct gdb_exception): Add move
8318 constructor.
8319 (struct gdb_exception_error, struct gdb_exception_quit, struct
8320 gdb_quit_bad_alloc): Change constructor to move constructor.
8321 (throw_exception): Change parameter to rvalue reference.
8322 * common/common-exceptions.c (throw_exception): Take rvalue
8323 reference.
8324 * cli/cli-interp.c (safe_execute_command): Use std::move.
8325 * breakpoint.c (insert_bp_location, location_to_sals): Use
8326 std::move.
8327
8328 2019-04-25 Tom Tromey <tromey@adacore.com>
8329
8330 * guile/scm-exception.c (gdbscm_scm_from_gdb_exception)
8331 (gdbscm_throw_gdb_exception): Take a gdbscm_gdb_exception.
8332 * guile/scm-block.c, guile/scm-breakpoint.c, guile/scm-cmd.c,
8333 guile/scm-disasm.c, guile/scm-frame.c, guile/scm-lazy-string.c,
8334 guile/scm-math.c, guile/scm-param.c, guile/scm-ports.c,
8335 guile/scm-symbol.c, guile/scm-symtab.c, guile/scm-type.c,
8336 guile/scm-value.c: Use unpack.
8337 * guile/guile-internal.h (gdbscm_scm_from_gdb_exception): Take a
8338 gdbscm_gdb_exception.
8339 (gdbscm_throw_gdb_exception): Likewise.
8340 (struct gdbscm_gdb_exception): New.
8341 (unpack): New function.
8342 (gdbscm_wrap): Use unpack.
8343
8344 2019-04-25 Tom Tromey <tromey@adacore.com>
8345
8346 * event-top.c (gdb_rl_callback_read_char_wrapper_noexcept)
8347 (gdb_rl_callback_handler): Use std::move.
8348 * common/common-exceptions.h (struct gdb_exception): Add move
8349 assignment operator.
8350 (throw_exception_sjlj): Change "exception" to const reference.
8351 * common/common-exceptions.c (exceptions_state_mc_catch): Update.
8352 (throw_exception_sjlj): Change "exception" to const reference.
8353
8354 2019-04-25 Tom Tromey <tromey@adacore.com>
8355
8356 * xml-support.c (gdb_xml_parser::gdb_xml_parser): Update.
8357 * python/py-value.c (valpy_getitem, valpy_nonzero): Update.
8358 * python/py-inferior.c (infpy_write_memory, infpy_search_memory):
8359 Update.
8360 * python/py-breakpoint.c (bppy_set_condition, bppy_set_commands):
8361 Update.
8362 * mi/mi-interp.c (mi_interp::exec): Update.
8363 * linespec.c (parse_linespec): Update.
8364 * infcall.c (run_inferior_call): Update.
8365 * guile/scm-value.c (gdbscm_value_to_lazy_string): Update.
8366 * guile/scm-symbol.c (gdbscm_lookup_symbol)
8367 (gdbscm_lookup_global_symbol): Update.
8368 * guile/scm-param.c (gdbscm_parameter_value): Update.
8369 * guile/scm-frame.c (gdbscm_frame_read_register)
8370 (gdbscm_frame_read_var): Update.
8371 * guile/scm-breakpoint.c (gdbscm_register_breakpoint_x): Update.
8372 * exec.c (try_open_exec_file): Update.
8373 * event-top.c (gdb_rl_callback_read_char_wrapper_noexcept)
8374 (gdb_rl_callback_handler): Update.
8375 * common/common-exceptions.h (exception_none): Don't declare.
8376 * common/common-exceptions.c (exception_none): Don't define.
8377 (struct catcher) <exception>: Update.
8378 * cli/cli-interp.c (safe_execute_command): Update.
8379 * breakpoint.c (insert_bp_location, location_to_sals): Update.
8380
8381 2019-04-25 Ali Tamur <tamur@google.com>
8382
8383 * dwarf2read.c (skip_one_die): Add DW_FORM_strx.
8384 (read_attribute_value): Likewise.
8385 (dwarf2_read_addr_index): Update comment.
8386 (read_str_index): Add DW_FORM_strx.
8387 (dwarf2_string_attr): Likewise.
8388 (dwarf2_const_value_attr): Likewise.
8389 (dump_die_shallow): Likewise.
8390 (dwarf2_fetch_constant_bytes): Likewise.
8391 (skip_form_bytes): Likewise.
8392 * testsuite/lib/dwarf.exp (_handle_DW_FORM): Add DW_FORM_strx.
8393
8394 2019-04-25 Sergio Durigan Junior <sergiodj@redhat.com>
8395
8396 PR corefiles/11608
8397 PR corefiles/18187
8398 * linux-tdep.c (dump_mapping_p): Add new parameters ADDR and
8399 OFFSET. Verify if current mapping contains an ELF header.
8400 (linux_find_memory_regions_full): Adjust call to
8401 dump_mapping_p.
8402
8403 2019-04-25 Sandra Loosemore <sandra@codesourcery.com>
8404 Kang Li <kanglictf@gmail.com>
8405
8406 PR gdb/21600
8407
8408 * dwarf2-frame.c (read_initial_length): Be consistent about using
8409 unsigned representation of length.
8410 (decode_frame_entry_1): Likewise. Check for wraparound of
8411 end pointer as well as buffer overflow.
8412
8413 2019-04-24 Sergio Durigan Junior <sergiodj@redhat.com>
8414
8415 * aarch64-tdep.c (aarch64_gdbarch_init): Use "pulongest" to print
8416 "vq".
8417
8418 2019-04-24 Tom Tromey <tromey@adacore.com>
8419
8420 * amd64-tdep.c (amd64_has_unaligned_fields): Ignore bitfields.
8421
8422 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8423
8424 * s12z-tdep.c (s12z_unwind_pc): Delete.
8425 (s12z_unwind_sp): Delete.
8426 (s12z_gdbarch_init): Don't register deleted functions with
8427 gdbarch.
8428
8429 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8430
8431 * rl78-tdep.c (rl78_unwind_sp): Delete.
8432 (rl78_gdbarch_init): Don't register deleted function with gdbarch.
8433
8434 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8435
8436 * xstormy16-tdep.c (xstormy16_unwind_sp): Delete.
8437 (xstormy16_unwind_pc): Delete.
8438 (xstormy16_dummy_id): Delete.
8439 (xstormy16_gdbarch_init): Don't register deleted functions with
8440 gdbarch.
8441
8442 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8443
8444 * vax-tdep.c (vax_unwind_pc): Delete.
8445 (vax_gdbarch_init): Don't register deleted function with gdbarch.
8446
8447 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8448
8449 * v850-tdep.c (v850_unwind_sp): Delete.
8450 (v850_unwind_pc): Delete.
8451 (v850_dummy_id): Delete.
8452 (v850_gdbarch_init): Don't register deleted functions with
8453 gdbarch.
8454
8455 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8456
8457 * tilegx-tdep.c (tilegx_unwind_sp): Delete.
8458 (tilegx_unwind_pc): Delete.
8459 (tilegx_unwind_dummy_id): Delete.
8460 (tilegx_gdbarch_init): Don't register deleted functions with
8461 gdbarch.
8462
8463 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8464
8465 * tic6x-tdep.c (tic6x_unwind_sp): Delete.
8466 (tic6x_dummy_id): Delete.
8467 (tic6x_gdbarch_init): Don't register deleted functions with
8468 gdbarch.
8469
8470 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8471
8472 * sparc-tdep.c (sparc_unwind_pc): Delete.
8473 (sparc32_gdbarch_init): Don't register deleted function with
8474 gdbarch.
8475
8476 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8477
8478 * sh-tdep.c (sh_unwind_sp): Delete.
8479 (sh_unwind_pc): Delete.
8480 (sh_dummy_id): Delete.
8481 (sh_gdbarch_init): Don't register deleted functions with
8482 gdbarch.
8483
8484 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8485
8486 * score-tdep.c (score_unwind_sp): Delete.
8487 (score_unwind_pc): Delete.
8488 (score_dummy_id): Delete.
8489 (score_gdbarch_init): Don't register deleted functions with
8490 gdbarch.
8491
8492 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8493
8494 * rx-tdep.c (rx_unwind_pc): Delete.
8495 (rx_unwind_sp): Delete.
8496 (rx_dummy_id): Delete.
8497 (rx_gdbarch_init): Don't register deleted functions with
8498 gdbarch. Update comment.
8499
8500 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8501
8502 * rs6000-tdep.c (rs6000_unwind_pc): Delete.
8503 (rs6000_dummy_id): Delete.
8504 (rs6000_gdbarch_init): Don't register deleted functions with
8505 gdbarch.
8506
8507 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8508
8509 * or1k-tdep.c (or1k_dummy_id): Delete.
8510 (or1k_gdbarch_init): Don't register deleted function with gdbarch.
8511
8512 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8513
8514 * nios2-tdep.c (nios2_dummy_id): Delete.
8515 (nios2_unwind_sp): Delete.
8516 (nios2_gdbarch_init): Don't register deleted functions with
8517 gdbarch.
8518
8519 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8520
8521 * nds32-tdep.c (nds32_dummy_id): Delete.
8522 (nds32_unwind_pc): Delete.
8523 (nds32_unwind_sp): Delete.
8524 (nds32_gdbarch_init): Don't register deleted functions with
8525 gdbarch.
8526
8527 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8528
8529 * msp430-tdep.c (msp430_unwind_pc): Delete.
8530 (msp430_unwind_sp): Delete.
8531 (msp430_dummy_id): Delete.
8532 (msp430_gdbarch_init): Don't register deleted functions with
8533 gdbarch.
8534
8535 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8536
8537 * moxie-tdep.c (moxie_unwind_sp): Delete.
8538 (moxie_unwind_pc): Delete.
8539 (moxie_dummy_id): Delete.
8540 (moxie_gdbarch_init): Don't register deleted functions with
8541 gdbarch.
8542
8543 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8544
8545 * mn10300-tdep.c (mn10300_dummy_id): Delete.
8546 (mn10300_unwind_pc): Delete.
8547 (mn10300_unwind_sp): Delete.
8548 (mn10300_push_dummy_call): Use gdbarch_unwind_sp not
8549 mn10300_unwind_sp.
8550 (mn10300_frame_unwind_init): Don't register deleted functions with
8551 gdbarch.
8552
8553 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8554
8555 * mep-tdep.c (mep_unwind_pc): Delete.
8556 (mep_unwind_sp): Delete.
8557 (mep_dummy_id): Delete.
8558 (mep_gdbarch_init): Don't register deleted functions with
8559 gdbarch.
8560
8561 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8562
8563 * m68hc11-tdep.c (m68hc11_unwind_pc): Delete.
8564 (m68hc11_unwind_sp): Delete.
8565 (m68hc11_gdbarch_init): Don't register deleted functions with
8566 gdbarch.
8567
8568 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8569
8570 * m32r-tdep.c (m32r_unwind_sp): Delete.
8571 (m32r_unwind_pc): Delete.
8572 (m32r_dummy_id): Delete.
8573 (m32r_gdbarch_init): Don't register deleted functions with
8574 gdbarch.
8575
8576 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8577
8578 * m32c-tdep.c (m32c_unwind_pc): Delete.
8579 (m32c_unwind_sp): Delete.
8580 (m32c_dummy_id): Delete.
8581 (m32c_gdbarch_init): Don't register deleted functions with
8582 gdbarch.
8583
8584 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8585
8586 * gdb/lm32-tdep.c (lm32_unwind_sp): Delete.
8587 (lm32_unwind_pc): Delete.
8588 (lm32_dummy_id): Delete.
8589 (lm32_gdbarch_init): Don't register deleted functions with
8590 gdbarch.
8591
8592 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8593
8594 * gdb/iq2000-tdep.c (iq2000_unwind_sp): Delete.
8595 (iq2000_unwind_pc): Delete.
8596 (iq2000_dummy_id): Delete.
8597 (iq2000_gdbarch_init): Don't register deleted functions with
8598 gdbarch.
8599
8600 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8601
8602 * nds32-tdep.c (nds32_type_align): Delete.
8603 (nds32_push_dummy_call): Use type_align instead.
8604
8605 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8606
8607 * arm-tdep.c (arm_type_align): Only handle vector override case.
8608 (arm_push_dummy_call): Use type_align.
8609 (arm_gdbarch_init): Register arm_type_align gdbarch function.
8610
8611 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
8612
8613 * aarch64-tdep.c (aarch64_type_align): Only handle vector override
8614 case.
8615 (pass_on_stack): Use type_align.
8616 (aarch64_gdbarch_init): Register aarch64_type_align gdbarch
8617 function.
8618
8619 2019-04-23 Tom Tromey <tromey@adacore.com>
8620
8621 * dwarf2read.c (line_header::file_name_at): Remove unused
8622 overload.
8623
8624 2019-04-23 Tom de Vries <tdevries@suse.de>
8625
8626 PR gdb/24438
8627 * contrib/cc-with-tweaks.sh: Remove superfluous .alt file after dwz
8628 invocation.
8629
8630
8631 2019-03-27 Ali Tamur <tamur@google.com>
8632
8633 * dwarf2-frame.c(dwarf_expr_executor::get_addr_index): Update comment
8634 * dwarf2expr.c(dwarf_expr_context::execute_stack_op): Add DW_OP_addrx
8635 * dwarf2expr.h(dwarf_expr_context::offset): Update comment
8636 (dwarf_expr_context::get_addr_index): Likewise
8637 * dwarf2loc.c(dwarf_evaluate_loc_desc::get_addr_index): Likewise
8638 (symbol_needs_eval_context::get_addr_index): Likewise
8639 (disassemble_dwarf_expression): Add DW_OP_addrx
8640 * dwarf2read.c(attr_value_as_address): Add DW_FORM_addrx
8641 (read_cutu_die_from_dwo): Update comment
8642 (skip_one_die): Add DW_FORM_addrx
8643 (read_attribute_value): Likewise
8644 (var_decode_location): Add DW_OP_addrx
8645 (dwarf2_const_value_attr): Add DW_FORM_addrx
8646 (dump_die_shallow): Likewise
8647 (dwarf2_fetch_constant_bytes): Likewise
8648 (decode_locdesc): Add DW_OP_addrx
8649 (skip_form_bytes): Add DW_FORM_addrx
8650
8651 2019-04-22 Ali Tamur <tamur@google.com>
8652
8653 * MAINTAINERS (Write After Approval): Add self.
8654
8655 2019-04-22 Simon Marchi <simon.marchi@efficios.com>
8656
8657 * solib-svr4.c (get_svr4_info): Add pspace parameter.
8658 (svr4_keep_data_in_core): Pass current_program_space to get_svr4_info.
8659 (open_symbol_file_object): Likewise.
8660 (svr4_default_sos): Add info parameter.
8661 (svr4_read_so_list): Likewise.
8662 (svr4_current_sos_direct): Adjust functions calls to pass down
8663 info.
8664 (svr4_current_sos_1): Add info parameter.
8665 (svr4_current_sos): Call get_svr4_info, pass info down to
8666 svr4_current_sos_1.
8667 (svr4_fetch_objfile_link_map): Pass objfile->pspace to
8668 get_svr4_info.
8669 (svr4_in_dynsym_resolve_code): Pass current_program_space to
8670 get_svr4_info.
8671 (probes_table_htab_remove_objfile_probes): Pass objfile->pspace
8672 to get_svr4_info.
8673 (probes_table_remove_objfile_probes): Likewise.
8674 (register_solib_event_probe): Add info parameter.
8675 (solist_update_incremental): Pass info parameter down to
8676 svr4_read_so_list.
8677 (disable_probes_interface): Add info parameter.
8678 (svr4_handle_solib_event): Pass current_program_space to
8679 get_svr4_info. Adjust disable_probes_interface cleanup.
8680 (svr4_create_probe_breakpoints): Add info parameter, pass it
8681 down to register_solib_event_probe.
8682 (svr4_create_solib_event_breakpoints): Add info parameter,
8683 pass it down to svr4_create_probe_breakpoints.
8684 (enable_break): Pass info down to
8685 svr4_create_solib_event_breakpoints.
8686 (svr4_solib_create_inferior_hook): Pass current_program_space to
8687 get_svr4_info.
8688 (svr4_clear_solib): Likewise.
8689
8690 2019-04-22 Pedro Alves <palves@redhat.com>
8691
8692 * solib-svr4.c (svr4_free_objfile_observer): New.
8693 (probe_and_action::objfile): New field.
8694 (probes_table_htab_remove_objfile_probes)
8695 (probes_table_remove_objfile_probes): New functions.
8696 (register_solib_event_probe): Add 'objfile' parameter. Store it
8697 in the new probe_and_action. Don't store the probe in 'lookup'.
8698 (svr4_create_probe_breakpoints): Pass objfile to
8699 register_solib_event_probe.
8700 (_initialize_svr4_solib): Register a free_objfile observer.
8701
8702 2019-04-19 Tom Tromey <tom@tromey.com>
8703
8704 * common/queue.h: Remove.
8705
8706 2019-04-19 Tom Tromey <tom@tromey.com>
8707
8708 * event-loop.c: Don't include "common/queue.h".
8709
8710 2019-04-19 Tom Tromey <tom@tromey.com>
8711
8712 * remote.c (remote_target): Use delete.
8713 * remote-notif.h: Include <list>, not "common/queue.h".
8714 (notif_client_p): Remove typedef.
8715 (remote_notif_state): Add constructor, destructor, initializer.
8716 <notif_queue>: Now a std::list.
8717 (remote_notif_state_xfree): Don't declare.
8718 * remote-notif.c (remote_notif_process, handle_notification)
8719 (remote_notif_state_allocate): Update.
8720 (~remote_notif_state): Rename from remote_notif_state_xfree.
8721
8722 2019-04-19 Tom Tromey <tom@tromey.com>
8723
8724 * symfile.c (reread_symbols): Update.
8725 * objfiles.c (objfile_register_static_link)
8726 (objfile_lookup_static_link): Update
8727 (~objfile) Don't delete static_links.
8728 * objfiles.h (struct objfile) <static_links>: Now an htab_up.
8729
8730 2019-04-19 Tom Tromey <tom@tromey.com>
8731
8732 * type-stack.h (struct type_stack) <insert>: Constify string.
8733 * type-stack.c (type_stack::insert): Constify string.
8734 * gdbtypes.h (lookup_template_type): Update.
8735 (address_space_name_to_int): Update.
8736 * gdbtypes.c (address_space_name_to_int): Make space_identifier
8737 const.
8738 (lookup_template_type): Make name const.
8739 * c-exp.y: Update rules.
8740 (lex_one_token, classify_name, classify_inner_name)
8741 (c_print_token): Update.
8742 * p-exp.y: Update rules.
8743 (yylex): Update.
8744 * f-exp.y: Update rules.
8745 (yylex): Update.
8746 * d-exp.y: Update rules.
8747 (lex_one_token, classify_name, classify_inner_name): Update.
8748 * parse.c (write_dollar_variable, copy_name): Return std::string.
8749 * parser-defs.h (copy_name): Change return type.
8750 * m2-exp.y: Update rules.
8751 (yylex): Update.
8752 * go-exp.y (lex_one_token): Update.
8753 Update rules.
8754 (classify_unsafe_function, classify_packaged_name)
8755 (classify_name, yylex): Update.
8756
8757 2019-04-19 Sergei Trofimovich <siarheit@google.com>
8758
8759 * configure.ac: add --enable-source-highlight switch.
8760 * configure: Regenerate.
8761 * top.c (print_gdb_version): plumb --enable-source-highlight
8762 status to "show configuration".
8763
8764 2019-04-19 Tom Tromey <tromey@adacore.com>
8765
8766 * ada-lang.c (ada_is_variant_part, ada_to_fixed_type_1):
8767 Check ADA_TYPE_P.
8768 (empty_record, ada_template_to_fixed_record_type_1)
8769 (template_to_static_fixed_type)
8770 (to_record_with_fixed_variant_part): Use INIT_NONE_SPECIFIC.
8771 * cp-abi.c (value_rtti_type): Check HAVE_CPLUS_STRUCT.
8772 * gdbtypes.h (INIT_NONE_SPECIFIC, ADA_TYPE_P): New
8773 macros.
8774
8775 2019-04-19 Ilya Yu. Malakhov <malakhov@mcst.ru>
8776
8777 PR symtab/24423:
8778 * source.c (print_source_lines_base): Advance "iter" when a
8779 control character is seen.
8780
8781 2019-04-19 Philippe Waroquiers <philippe.waroquiers@skynet.be>
8782
8783 * inferior.h (struct infcall_suspend_state_deleter):
8784 Catch exception in destructor to avoid crash.
8785
8786 2019-04-19 Philippe Waroquiers <philippe.waroquiers@skynet.be>
8787
8788 * cli/cli-cmds.c (_initialize_cli_cmds): Move "shell" "!" alias
8789 close to the add_com "shell".
8790
8791 2019-04-18 Tom Tromey <tromey@adacore.com>
8792
8793 * process-stratum-target.h (class process_stratum_target)
8794 <stratum>: Add "final".
8795
8796 2019-04-17 Tom Tromey <tromey@adacore.com>
8797
8798 * dwarf2read.c (dwarf2_init_complex_target_type): Check "tt"
8799 against nullptr before use.
8800
8801 2019-04-17 Alan Hayward <alan.hayward@arm.com>
8802
8803 * nat/linux-waitpid.c (linux_debug): Call debug_vprintf.
8804
8805 2019-04-17 Jim Wilson <jimw@sifive.com>
8806 Andrew Burgess <andrew.burgess@embecosm.com>
8807
8808 * riscv-tdep.c (riscv_breakpoint_kind_from_pc): Hanndle case where
8809 code read might fail, assume 4-byte breakpoint in that case.
8810
8811 2019-04-15 Leszek Swirski <leszeks@google.com>
8812
8813 * amd64-tdep.c (amd64_classify_aggregate): Use cp_pass_by_reference
8814 rather than a hand-rolled POD check when checking for forced MEMORY
8815 classification.
8816
8817 2019-04-15 Alan Hayward <alan.hayward@arm.com>
8818
8819 * aarch64-linux-nat.c (store_sveregs_to_thread): Set vector length.
8820 * nat/aarch64-sve-linux-ptrace.c (aarch64_sve_set_vq): New
8821 function.
8822 (aarch64_sve_regs_copy_to_reg_buf): Remove VG checks.
8823 (aarch64_sve_regs_copy_from_reg_buf): Likewise.
8824 * nat/aarch64-sve-linux-ptrace.h (aarch64_sve_set_vq): New
8825 declaration.
8826
8827 2019-04-15 Alan Hayward <alan.hayward@arm.com>
8828
8829 * aarch64-linux-nat.c
8830 (aarch64_linux_nat_target::thread_architecture): Add override.
8831 * aarch64-tdep.c (aarch64_gdbarch_init): Ensure different tdesc for
8832 each VQ.
8833
8834 2019-04-15 Alan Hayward <alan.hayward@arm.com>
8835
8836 * aarch64-tdep.c (aarch64_gdbarch_init): Move gdbarch lookup.
8837
8838 2019-04-13 Andrew Burgess <andrew.burgess@embecosm.com>
8839
8840 * dwarf2read.c (dwarf2_init_complex_target_type): Handle complex
8841 target types of size 96-bits, add some additional comments, and
8842 check that the builtin type we found was the correct size.
8843
8844 2019-04-12 Eli Zaretskii <eliz@gnu.org>
8845
8846 * utils.c (prompt_for_continue): Don't restore the styling at the
8847 end, as applied_style has the wrong value. This fixes styling in
8848 long lists of file names that are interrupted by the "Continue?"
8849 prompt.
8850
8851 2019-04-12 Andrew Burgess <andrew.burgess@embecosm.com>
8852
8853 * ada-lang.c (ada_language_defn): Remove use of LANG_MAGIC.
8854 * c-lang.c (c_language_defn): Likewise.
8855 (cplus_language_defn): Likewise.
8856 (asm_language_defn): Likewise.
8857 (minimal_language_defn): Likewise.
8858 * d-lang.c (d_language_defn): Likewise.
8859 * f-lang.c (f_language_defn): Likewise.
8860 * go-lang.c (go_language_defn): Likewise.
8861 * language.c (unknown_language_defn): Likewise.
8862 (auto_language_defn): Likewise.
8863 * language.h (struct language_defn): Remove la_magic field.
8864 (LANG_MAGIC): Delete.
8865 * m2-lang.c (m2_language_defn): Remove use of LANG_MAGIC.
8866 * objc-lang.c (objc_language_defn): Likewise.
8867 * opencl-lang.c (opencl_language_defn): Likewise.
8868 * p-lang.c (pascal_language_defn): Likewise.
8869 * rust-lang.c (rust_language_defn): Likewise.
8870
8871 2019-04-11 Andrew Burgess <andrew.burgess@embecosm.com>
8872
8873 * riscv-tdep.c (riscv_type_align): New function.
8874 (riscv_type_alignment): Delete.
8875 (riscv_arg_location): Use 'type_align'.
8876 (riscv_gdbarch_init): Register riscv_type_align gdbarch function.
8877
8878 2019-04-11 Andrew Burgess <andrew.burgess@embecosm.com>
8879
8880 * gdbtypes.c (type_align): A struct with no non-static fields also
8881 has alignment of 1.
8882
8883 2019-04-11 Andrew Burgess <andrew.burgess@embecosm.com>
8884
8885 * riscv-tdep.c (riscv_call_arg_complex_float): Fix offset of first
8886 component to 0.
8887 (riscv_struct_info::riscv_struct_info): Initialise m_offsets
8888 member.
8889 (riscv_struct_info::analyse): New implementation using new
8890 analyse_inner member function.
8891 (riscv_struct_info::field_offset): New member function.
8892 (riscv_struct_info::m_offsets): New member variable.
8893 (riscv_struct_info::analyse_inner): New private member function,
8894 takes the old implementation of riscv_struct_info::analyse but
8895 extended to track field offsets.
8896 (riscv_call_arg_struct): Update the struct folding special cases
8897 to handle cases where empty C++ structs, which are non-zero
8898 length, are found.
8899 (riscv_arg_location): Initialise the length of each location, a
8900 non-zero length now indicates the location is in use.
8901 (riscv_push_dummy_call): Allow for the first location having a
8902 non-zero offset when setting up arguments.
8903 (riscv_return_value): Likewise, but for return values.
8904
8905 2019-04-11 Tom Tromey <tromey@adacore.com>
8906
8907 * utils.c (internal_vproblem): Make "msg" const.
8908
8909 2019-04-11 Alan Hayward <alan.hayward@arm.com>
8910
8911 * aarch64-tdep.c (aarch64_analyze_prologue_test): Reset saved regs.
8912 * trad-frame.c (trad_frame_reset_saved_regs): New function.
8913 (trad_frame_alloc_saved_regs): Call trad_frame_reset_saved_regs.
8914 * trad-frame.h (trad_frame_reset_saved_regs): New declaration.
8915
8916 2019-04-10 Kevin Buettner <kevinb@redhat.com>
8917
8918 * amd64-linux-nat.c (amd64_linux_collect_native_gregset): New
8919 function.
8920 (fill_gregset): Call amd64_linux_collect_native_gregset instead
8921 of amd64_collect_native_gregset.
8922 (amd64_linux_nat_target::store_registers): Likewise.
8923
8924 2019-04-10 Tom Tromey <tom@tromey.com>
8925
8926 * symtab.c (lookup_global_symbol_from_objfile)
8927 (lookup_symbol_in_objfile_from_linkage_name): Use the iterator.
8928 * objfiles.h (class separate_debug_iterator): New.
8929 (class separate_debug_range): New.
8930 (struct objfile) <separate_debug_objfiles>: New method.
8931 (objfile_separate_debug_iterate): Don't declare.
8932 * objfiles.c (separate_debug_iterator::operator++): Rename from
8933 objfile_separate_debug_iterate.
8934 (objfile_relocate, objfile_rebase, objfile_has_symbols): Use the
8935 iterator.
8936 * minsyms.c (lookup_minimal_symbol_by_pc_section): Use the
8937 iterator.
8938
8939 2019-04-10 Tom Tromey <tom@tromey.com>
8940
8941 * symfile.c (reread_symbols): Remove old comment.
8942 * objfiles.c (free_all_objfiles): Fix a typo.
8943
8944 2019-04-10 Tom Tromey <tom@tromey.com>
8945
8946 * ia64-tdep.c (ia64_get_dyn_info_list): Use foreach.
8947 * minsyms.c (lookup_minimal_symbol): Use foreach.
8948 (lookup_minimal_symbol_text, lookup_minimal_symbol_by_pc_name)
8949 (lookup_minimal_symbol_solib_trampoline): Likewise.
8950 * symfile.c (reread_symbols): Use foreach.
8951
8952 2019-04-09 Ivan Begert <ivanbegert@gmail.com>
8953 Tom Tromey <tromey@adacore.com>
8954
8955 PR rust/24414:
8956 * rust-exp.y (rust_parser::lex_number): Use strtoulst.
8957 (rust_lex_int_test): Change "value" to be LONGEST.
8958 (rust_lex_tests): Add test for long integer literal.
8959
8960 2019-04-09 Tom Tromey <tromey@adacore.com>
8961
8962 * remote.c (remote_target::remote_add_inferior): Change fake_pid_p
8963 to bool.
8964 (extended_remote_target::attach): Update.
8965 (remote_target::remote_notice_new_inferior): Update.
8966 (remote_target::add_current_inferior_and_thread): Update.
8967 * inferior.c (exit_inferior_1): Use "false".
8968 * corelow.c (add_to_thread_list): Make fake_pid_p bool.
8969
8970 2019-04-09 Simon Marchi <simon.marchi@efficios.com>
8971
8972 * infcmd.c (run_command_1): Pass -qualified to tbreak when using
8973 the "start" command.
8974
8975 2019-04-08 Kevin Buettner <kevinb@redhat.com>
8976
8977 * python/py-inferior.c (infpy_thread_from_thread_handle):
8978 Adjust comments to reflect renaming of thread_from_thread_handle
8979 to thread_from_handle. Adjust keywords. Fix type error message.
8980 (inferior_object_methods): Add thread_from_handle. Retain
8981 thread_from_thread_handle, but mark it as deprecated.
8982
8983 2019-04-08 Kevin Buettner <kevinb@redhat.com>
8984
8985 * gdbthread.h (find_thread_by_handle): Revise declaration.
8986 * thread.c (find_thread_by_handle): Likewise. Adjust
8987 implementation too.
8988 * python/py-inferior.c (infpy_thread_from_thread_handle): Add
8989 support for buffer objects as handles.
8990
8991 2019-04-08 Kevin Buettner <kevinb@redhat.com>
8992
8993 * python/py-infthread.c (thpy_thread_handle): New function.
8994 (thread_object_methods): Register thpy_thread_handle.
8995
8996 2019-04-08 Kevin Buettner <kevinb@redhat.com>
8997
8998 * gdbthread.h (thread_to_thread_handle): Declare.
8999 * thread.c (gdbtypes.h): Include.
9000 (thread_to_thread_handle): New function.
9001
9002 * target.h (struct target_ops): Add thread_info_to_thread_handle.
9003 (target_thread_info_to_thread_handle): Declare.
9004 * target.c (target_thread_info_to_thread_handle): New function.
9005 * target-debug.h (target_debug_print_gdb_byte_vector): Define.
9006 * target-delegates.c: Regenerate.
9007
9008 * linux-thread-db.c (class thread_db_target): Add method
9009 thread_info_to_thread_handle.
9010 (thread_db_target::thread_info_to_thread_handle): Define.
9011 * remote.c (class remote_target): Add new method
9012 thread_info_to_thread_handle.
9013 (remote_target::thread_info_to_thread_handle): Define.
9014
9015 2019-04-08 Pedro Alves <palves@redhat.com>
9016
9017 * common/common-exceptions.c (throw_exception): Don't create
9018 named object to throw; throw directly.
9019 (throw_it): Likewise. Don't initialize gdb_exception::message
9020 here, with new; pass FMT and AP to the ctor instead.
9021 * common/common-exceptions.h: Include <string>.
9022 (gdb_exception::gdb_exception(enum return_reason, enum errors,
9023 const char *, va_list)): New ctor. Use std::make_shared.
9024 (gdb_exception_error::gdb_exception_error(enum return_reason, enum
9025 errors)): Delete.
9026 (gdb_exception_error::gdb_exception_error(enum errors, const char
9027 *, va_list)): New.
9028 (gdb_exception_error::gdb_exception_error(const gdb_exception &)):
9029 Add assertion.
9030 (gdb_exception_quit::gdb_exception_quit(enum return_reason, enum
9031 errors)): Delete.
9032 (gdb_exception_quit::gdb_exception_quit(const char *, va_list)): New.
9033 (gdb_exception_quit::gdb_exception_quit(const gdb_exception &)):
9034 Add assertion.
9035
9036 2019-04-08 Tom Tromey <tom@tromey.com>
9037
9038 * valops.c (value_rtti_indirect_type): Replace throw_exception
9039 with throw.
9040 * tracefile-tfile.c (tfile_target_open): Replace throw_exception
9041 with throw.
9042 * thread.c (thr_try_catch_cmd): Replace throw_exception with
9043 throw.
9044 * target.c (target_translate_tls_address): Replace throw_exception
9045 with throw.
9046 * stack.c (frame_apply_command_count): Replace throw_exception
9047 with throw.
9048 * solib-spu.c (append_ocl_sos): Replace throw_exception with
9049 throw.
9050 * s390-tdep.c (s390_frame_unwind_cache): Replace throw_exception
9051 with throw.
9052 * rs6000-tdep.c (rs6000_frame_cache)
9053 (rs6000_epilogue_frame_cache): Replace throw_exception with throw.
9054 * remote.c: Replace throw_exception with throw.
9055 * record-full.c (record_full_message, record_full_wait_1)
9056 (record_full_restore): Replace throw_exception with throw.
9057 * record-btrace.c:
9058 (get_thread_current_frame_id, record_btrace_start_replaying)
9059 (cmd_record_btrace_bts_start, cmd_record_btrace_pt_start)
9060 (cmd_record_btrace_start): Replace throw_exception with throw.
9061 * parse.c (parse_exp_in_context_1): Replace throw_exception with
9062 throw.
9063 * linux-nat.c (detach_one_lwp, linux_resume_one_lwp)
9064 (resume_stopped_resumed_lwps): Replace throw_exception with throw.
9065 * linespec.c:
9066 (find_linespec_symbols): Replace throw_exception with throw.
9067 * infrun.c (displaced_step_prepare, resume): Replace
9068 throw_exception with throw.
9069 * infcmd.c (post_create_inferior): Replace throw_exception with
9070 throw.
9071 * inf-loop.c (inferior_event_handler): Replace throw_exception
9072 with throw.
9073 * i386-tdep.c (i386_frame_cache, i386_epilogue_frame_cache)
9074 (i386_sigtramp_frame_cache): Replace throw_exception with throw.
9075 * frame.c (frame_unwind_pc, get_prev_frame_if_no_cycle)
9076 (get_prev_frame_always, get_frame_pc_if_available)
9077 (get_frame_address_in_block_if_available, get_frame_language):
9078 Replace throw_exception with throw.
9079 * frame-unwind.c (frame_unwind_try_unwinder): Replace
9080 throw_exception with throw.
9081 * eval.c (fetch_subexp_value, evaluate_var_value)
9082 (evaluate_funcall, evaluate_subexp_standard): Replace
9083 throw_exception with throw.
9084 * dwarf2loc.c (call_site_find_chain)
9085 (dwarf2_evaluate_loc_desc_full, dwarf2_locexpr_baton_eval):
9086 Replace throw_exception with throw.
9087 * dwarf2-frame.c (dwarf2_frame_cache): Replace throw_exception
9088 with throw.
9089 * darwin-nat.c (darwin_attach_pid): Replace throw_exception with
9090 throw.
9091 * cp-abi.c (baseclass_offset): Replace throw_exception with throw.
9092 * completer.c (complete_line_internal): Replace throw_exception
9093 with throw.
9094 * compile/compile-object-run.c (compile_object_run): Replace
9095 throw_exception with throw.
9096 * cli/cli-script.c (process_next_line): Replace throw_exception
9097 with throw.
9098 * btrace.c (btrace_compute_ftrace_pt, btrace_compute_ftrace)
9099 (btrace_enable, btrace_maint_update_pt_packets): Replace
9100 throw_exception with throw.
9101 * breakpoint.c (create_breakpoint, save_breakpoints): Replace
9102 throw_exception with throw.
9103 * break-catch-throw.c (re_set_exception_catchpoint): Replace
9104 throw_exception with throw.
9105 * amd64-tdep.c (amd64_frame_cache, amd64_sigtramp_frame_cache)
9106 (amd64_epilogue_frame_cache): Replace throw_exception with throw.
9107 * aarch64-tdep.c (aarch64_make_prologue_cache)
9108 (aarch64_make_stub_cache): Replace throw_exception with throw.
9109
9110 2019-04-08 Tom Tromey <tom@tromey.com>
9111
9112 * common/common-exceptions.c (throw_exception): Rename from
9113 throw_exception_cxx. Remove old copy. Make argument const.
9114 (throw_it): Create and throw exception objects directly.
9115 * common/common-exceptions.h (throw_exception): Make argument
9116 const.
9117 (struct gdb_exception_error): Add constructor.
9118 (struct gdb_exception_quit): Add constructor.
9119
9120 2019-04-08 Tom Tromey <tom@tromey.com>
9121
9122 * common/common-exceptions.h (exception_rethrow): Don't declare.
9123 (TRY_SJLJ): Update comment.
9124 (TRY, CATCH, END_CATCH): Remove.
9125 * common/common-exceptions.c (exception_rethrow): Remove.
9126
9127 2019-04-08 Tom Tromey <tom@tromey.com>
9128
9129 * common/common-exceptions.h (gdb_exception_RETURN_MASK_ALL):
9130 Remove.
9131 (gdb_exception_error): Rename from
9132 gdb_exception_RETURN_MASK_ERROR.
9133 (gdb_exception_quit): Rename from gdb_exception_RETURN_MASK_QUIT.
9134 (gdb_quit_bad_alloc): Update.
9135 * aarch64-tdep.c: Update.
9136 * ada-lang.c: Update.
9137 * ada-typeprint.c: Update.
9138 * ada-valprint.c: Update.
9139 * amd64-tdep.c: Update.
9140 * arch-utils.c: Update.
9141 * break-catch-throw.c: Update.
9142 * breakpoint.c: Update.
9143 * btrace.c: Update.
9144 * c-varobj.c: Update.
9145 * cli/cli-cmds.c: Update.
9146 * cli/cli-interp.c: Update.
9147 * cli/cli-script.c: Update.
9148 * common/common-exceptions.c: Update.
9149 * common/new-op.c: Update.
9150 * common/selftest.c: Update.
9151 * compile/compile-c-symbols.c: Update.
9152 * compile/compile-cplus-symbols.c: Update.
9153 * compile/compile-object-load.c: Update.
9154 * compile/compile-object-run.c: Update.
9155 * completer.c: Update.
9156 * corelow.c: Update.
9157 * cp-abi.c: Update.
9158 * cp-support.c: Update.
9159 * cp-valprint.c: Update.
9160 * darwin-nat.c: Update.
9161 * disasm-selftests.c: Update.
9162 * dtrace-probe.c: Update.
9163 * dwarf-index-cache.c: Update.
9164 * dwarf-index-write.c: Update.
9165 * dwarf2-frame-tailcall.c: Update.
9166 * dwarf2-frame.c: Update.
9167 * dwarf2loc.c: Update.
9168 * dwarf2read.c: Update.
9169 * eval.c: Update.
9170 * event-loop.c: Update.
9171 * event-top.c: Update.
9172 * exec.c: Update.
9173 * f-valprint.c: Update.
9174 * fbsd-tdep.c: Update.
9175 * frame-unwind.c: Update.
9176 * frame.c: Update.
9177 * gdbtypes.c: Update.
9178 * gnu-v3-abi.c: Update.
9179 * guile/guile-internal.h: Update.
9180 * guile/scm-block.c: Update.
9181 * guile/scm-breakpoint.c: Update.
9182 * guile/scm-cmd.c: Update.
9183 * guile/scm-disasm.c: Update.
9184 * guile/scm-frame.c: Update.
9185 * guile/scm-lazy-string.c: Update.
9186 * guile/scm-math.c: Update.
9187 * guile/scm-param.c: Update.
9188 * guile/scm-ports.c: Update.
9189 * guile/scm-pretty-print.c: Update.
9190 * guile/scm-symbol.c: Update.
9191 * guile/scm-symtab.c: Update.
9192 * guile/scm-type.c: Update.
9193 * guile/scm-value.c: Update.
9194 * i386-linux-tdep.c: Update.
9195 * i386-tdep.c: Update.
9196 * inf-loop.c: Update.
9197 * infcall.c: Update.
9198 * infcmd.c: Update.
9199 * infrun.c: Update.
9200 * jit.c: Update.
9201 * language.c: Update.
9202 * linespec.c: Update.
9203 * linux-fork.c: Update.
9204 * linux-nat.c: Update.
9205 * linux-tdep.c: Update.
9206 * linux-thread-db.c: Update.
9207 * main.c: Update.
9208 * mi/mi-cmd-break.c: Update.
9209 * mi/mi-cmd-stack.c: Update.
9210 * mi/mi-interp.c: Update.
9211 * mi/mi-main.c: Update.
9212 * objc-lang.c: Update.
9213 * p-valprint.c: Update.
9214 * parse.c: Update.
9215 * ppc-linux-tdep.c: Update.
9216 * printcmd.c: Update.
9217 * python/py-arch.c: Update.
9218 * python/py-breakpoint.c: Update.
9219 * python/py-cmd.c: Update.
9220 * python/py-finishbreakpoint.c: Update.
9221 * python/py-frame.c: Update.
9222 * python/py-framefilter.c: Update.
9223 * python/py-gdb-readline.c: Update.
9224 * python/py-inferior.c: Update.
9225 * python/py-infthread.c: Update.
9226 * python/py-lazy-string.c: Update.
9227 * python/py-linetable.c: Update.
9228 * python/py-objfile.c: Update.
9229 * python/py-param.c: Update.
9230 * python/py-prettyprint.c: Update.
9231 * python/py-progspace.c: Update.
9232 * python/py-record-btrace.c: Update.
9233 * python/py-record.c: Update.
9234 * python/py-symbol.c: Update.
9235 * python/py-type.c: Update.
9236 * python/py-unwind.c: Update.
9237 * python/py-utils.c: Update.
9238 * python/py-value.c: Update.
9239 * python/python.c: Update.
9240 * record-btrace.c: Update.
9241 * record-full.c: Update.
9242 * remote-fileio.c: Update.
9243 * remote.c: Update.
9244 * riscv-tdep.c: Update.
9245 * rs6000-aix-tdep.c: Update.
9246 * rs6000-tdep.c: Update.
9247 * rust-exp.y: Update.
9248 * rust-lang.c: Update.
9249 * s390-tdep.c: Update.
9250 * selftest-arch.c: Update.
9251 * solib-dsbt.c: Update.
9252 * solib-frv.c: Update.
9253 * solib-spu.c: Update.
9254 * solib-svr4.c: Update.
9255 * solib.c: Update.
9256 * sparc64-linux-tdep.c: Update.
9257 * stack.c: Update.
9258 * symfile-mem.c: Update.
9259 * symmisc.c: Update.
9260 * target.c: Update.
9261 * thread.c: Update.
9262 * top.c: Update.
9263 * tracefile-tfile.c: Update.
9264 * tui/tui.c: Update.
9265 * typeprint.c: Update.
9266 * unittests/cli-utils-selftests.c: Update.
9267 * unittests/parse-connection-spec-selftests.c: Update.
9268 * valops.c: Update.
9269 * valprint.c: Update.
9270 * value.c: Update.
9271 * varobj.c: Update.
9272 * windows-nat.c: Update.
9273 * x86-linux-nat.c: Update.
9274 * xml-support.c: Update.
9275
9276 2019-04-08 Tom Tromey <tom@tromey.com>
9277
9278 * xml-support.c: Use C++ exception handling.
9279 * x86-linux-nat.c: Use C++ exception handling.
9280 * windows-nat.c: Use C++ exception handling.
9281 * varobj.c: Use C++ exception handling.
9282 * value.c: Use C++ exception handling.
9283 * valprint.c: Use C++ exception handling.
9284 * valops.c: Use C++ exception handling.
9285 * unittests/parse-connection-spec-selftests.c: Use C++ exception
9286 handling.
9287 * unittests/cli-utils-selftests.c: Use C++ exception handling.
9288 * typeprint.c: Use C++ exception handling.
9289 * tui/tui.c: Use C++ exception handling.
9290 * tracefile-tfile.c: Use C++ exception handling.
9291 * top.c: Use C++ exception handling.
9292 * thread.c: Use C++ exception handling.
9293 * target.c: Use C++ exception handling.
9294 * symmisc.c: Use C++ exception handling.
9295 * symfile-mem.c: Use C++ exception handling.
9296 * stack.c: Use C++ exception handling.
9297 * sparc64-linux-tdep.c: Use C++ exception handling.
9298 * solib.c: Use C++ exception handling.
9299 * solib-svr4.c: Use C++ exception handling.
9300 * solib-spu.c: Use C++ exception handling.
9301 * solib-frv.c: Use C++ exception handling.
9302 * solib-dsbt.c: Use C++ exception handling.
9303 * selftest-arch.c: Use C++ exception handling.
9304 * s390-tdep.c: Use C++ exception handling.
9305 * rust-lang.c: Use C++ exception handling.
9306 * rust-exp.y: Use C++ exception handling.
9307 * rs6000-tdep.c: Use C++ exception handling.
9308 * rs6000-aix-tdep.c: Use C++ exception handling.
9309 * riscv-tdep.c: Use C++ exception handling.
9310 * remote.c: Use C++ exception handling.
9311 * remote-fileio.c: Use C++ exception handling.
9312 * record-full.c: Use C++ exception handling.
9313 * record-btrace.c: Use C++ exception handling.
9314 * python/python.c: Use C++ exception handling.
9315 * python/py-value.c: Use C++ exception handling.
9316 * python/py-utils.c: Use C++ exception handling.
9317 * python/py-unwind.c: Use C++ exception handling.
9318 * python/py-type.c: Use C++ exception handling.
9319 * python/py-symbol.c: Use C++ exception handling.
9320 * python/py-record.c: Use C++ exception handling.
9321 * python/py-record-btrace.c: Use C++ exception handling.
9322 * python/py-progspace.c: Use C++ exception handling.
9323 * python/py-prettyprint.c: Use C++ exception handling.
9324 * python/py-param.c: Use C++ exception handling.
9325 * python/py-objfile.c: Use C++ exception handling.
9326 * python/py-linetable.c: Use C++ exception handling.
9327 * python/py-lazy-string.c: Use C++ exception handling.
9328 * python/py-infthread.c: Use C++ exception handling.
9329 * python/py-inferior.c: Use C++ exception handling.
9330 * python/py-gdb-readline.c: Use C++ exception handling.
9331 * python/py-framefilter.c: Use C++ exception handling.
9332 * python/py-frame.c: Use C++ exception handling.
9333 * python/py-finishbreakpoint.c: Use C++ exception handling.
9334 * python/py-cmd.c: Use C++ exception handling.
9335 * python/py-breakpoint.c: Use C++ exception handling.
9336 * python/py-arch.c: Use C++ exception handling.
9337 * printcmd.c: Use C++ exception handling.
9338 * ppc-linux-tdep.c: Use C++ exception handling.
9339 * parse.c: Use C++ exception handling.
9340 * p-valprint.c: Use C++ exception handling.
9341 * objc-lang.c: Use C++ exception handling.
9342 * mi/mi-main.c: Use C++ exception handling.
9343 * mi/mi-interp.c: Use C++ exception handling.
9344 * mi/mi-cmd-stack.c: Use C++ exception handling.
9345 * mi/mi-cmd-break.c: Use C++ exception handling.
9346 * main.c: Use C++ exception handling.
9347 * linux-thread-db.c: Use C++ exception handling.
9348 * linux-tdep.c: Use C++ exception handling.
9349 * linux-nat.c: Use C++ exception handling.
9350 * linux-fork.c: Use C++ exception handling.
9351 * linespec.c: Use C++ exception handling.
9352 * language.c: Use C++ exception handling.
9353 * jit.c: Use C++ exception handling.
9354 * infrun.c: Use C++ exception handling.
9355 * infcmd.c: Use C++ exception handling.
9356 * infcall.c: Use C++ exception handling.
9357 * inf-loop.c: Use C++ exception handling.
9358 * i386-tdep.c: Use C++ exception handling.
9359 * i386-linux-tdep.c: Use C++ exception handling.
9360 * guile/scm-value.c: Use C++ exception handling.
9361 * guile/scm-type.c: Use C++ exception handling.
9362 * guile/scm-symtab.c: Use C++ exception handling.
9363 * guile/scm-symbol.c: Use C++ exception handling.
9364 * guile/scm-pretty-print.c: Use C++ exception handling.
9365 * guile/scm-ports.c: Use C++ exception handling.
9366 * guile/scm-param.c: Use C++ exception handling.
9367 * guile/scm-math.c: Use C++ exception handling.
9368 * guile/scm-lazy-string.c: Use C++ exception handling.
9369 * guile/scm-frame.c: Use C++ exception handling.
9370 * guile/scm-disasm.c: Use C++ exception handling.
9371 * guile/scm-cmd.c: Use C++ exception handling.
9372 * guile/scm-breakpoint.c: Use C++ exception handling.
9373 * guile/scm-block.c: Use C++ exception handling.
9374 * guile/guile-internal.h: Use C++ exception handling.
9375 * gnu-v3-abi.c: Use C++ exception handling.
9376 * gdbtypes.c: Use C++ exception handling.
9377 * frame.c: Use C++ exception handling.
9378 * frame-unwind.c: Use C++ exception handling.
9379 * fbsd-tdep.c: Use C++ exception handling.
9380 * f-valprint.c: Use C++ exception handling.
9381 * exec.c: Use C++ exception handling.
9382 * event-top.c: Use C++ exception handling.
9383 * event-loop.c: Use C++ exception handling.
9384 * eval.c: Use C++ exception handling.
9385 * dwarf2read.c: Use C++ exception handling.
9386 * dwarf2loc.c: Use C++ exception handling.
9387 * dwarf2-frame.c: Use C++ exception handling.
9388 * dwarf2-frame-tailcall.c: Use C++ exception handling.
9389 * dwarf-index-write.c: Use C++ exception handling.
9390 * dwarf-index-cache.c: Use C++ exception handling.
9391 * dtrace-probe.c: Use C++ exception handling.
9392 * disasm-selftests.c: Use C++ exception handling.
9393 * darwin-nat.c: Use C++ exception handling.
9394 * cp-valprint.c: Use C++ exception handling.
9395 * cp-support.c: Use C++ exception handling.
9396 * cp-abi.c: Use C++ exception handling.
9397 * corelow.c: Use C++ exception handling.
9398 * completer.c: Use C++ exception handling.
9399 * compile/compile-object-run.c: Use C++ exception handling.
9400 * compile/compile-object-load.c: Use C++ exception handling.
9401 * compile/compile-cplus-symbols.c: Use C++ exception handling.
9402 * compile/compile-c-symbols.c: Use C++ exception handling.
9403 * common/selftest.c: Use C++ exception handling.
9404 * common/new-op.c: Use C++ exception handling.
9405 * cli/cli-script.c: Use C++ exception handling.
9406 * cli/cli-interp.c: Use C++ exception handling.
9407 * cli/cli-cmds.c: Use C++ exception handling.
9408 * c-varobj.c: Use C++ exception handling.
9409 * btrace.c: Use C++ exception handling.
9410 * breakpoint.c: Use C++ exception handling.
9411 * break-catch-throw.c: Use C++ exception handling.
9412 * arch-utils.c: Use C++ exception handling.
9413 * amd64-tdep.c: Use C++ exception handling.
9414 * ada-valprint.c: Use C++ exception handling.
9415 * ada-typeprint.c: Use C++ exception handling.
9416 * ada-lang.c: Use C++ exception handling.
9417 * aarch64-tdep.c: Use C++ exception handling.
9418
9419 2019-04-08 Tom Tromey <tom@tromey.com>
9420
9421 * xml-support.c (gdb_xml_parser::parse): Update.
9422 * x86-linux-nat.c (x86_linux_nat_target::enable_btrace): Update.
9423 * value.c (show_convenience): Update.
9424 * unittests/cli-utils-selftests.c (test_number_or_range_parser)
9425 (test_parse_flags_qcs): Update.
9426 * thread.c (thr_try_catch_cmd): Update.
9427 * target.c (target_translate_tls_address): Update.
9428 * stack.c (print_frame_arg, read_frame_local, read_frame_arg)
9429 (info_frame_command_core, frame_apply_command_count): Update.
9430 * rust-exp.y (rust_lex_exception_test): Update.
9431 * riscv-tdep.c (riscv_print_one_register_info): Update.
9432 * remote.c (remote_target::enable_btrace): Update.
9433 * record-btrace.c (record_btrace_enable_warn): Update.
9434 * python/py-utils.c (gdbpy_convert_exception): Update.
9435 * printcmd.c (do_one_display, print_variable_and_value): Update.
9436 * mi/mi-main.c (mi_print_exception): Update.
9437 * mi/mi-interp.c (mi_cmd_interpreter_exec): Use SCOPE_EXIT.
9438 * mi/mi-cmd-stack.c (list_arg_or_local): Update.
9439 * linux-nat.c (linux_nat_target::attach): Update.
9440 * linux-fork.c (class scoped_switch_fork_info): Update.
9441 * infrun.c (displaced_step_prepare): Update.
9442 * infcall.c (call_function_by_hand_dummy): Update.
9443 * guile/scm-exception.c (gdbscm_scm_from_gdb_exception): Update.
9444 * gnu-v3-abi.c (print_one_vtable): Update.
9445 * frame.c (get_prev_frame_always): Update.
9446 * f-valprint.c (info_common_command_for_block): Update.
9447 * exec.c (try_open_exec_file): Update.
9448 * exceptions.c (print_exception, exception_print)
9449 (exception_fprintf, exception_print_same): Update.
9450 * dwarf2-frame.c (dwarf2_build_frame_info): Update.
9451 * dwarf-index-cache.c (index_cache::store)
9452 (index_cache::lookup_gdb_index): Update.
9453 * darwin-nat.c (maybe_cache_shell): Update.
9454 * cp-valprint.c (cp_print_value_fields): Update.
9455 * compile/compile-cplus-symbols.c (gcc_cplus_convert_symbol)
9456 (gcc_cplus_symbol_address): Update.
9457 * compile/compile-c-symbols.c (gcc_convert_symbol)
9458 (gcc_symbol_address, generate_c_for_for_one_variable): Update.
9459 * common/selftest.c: Update.
9460 * common/common-exceptions.h (struct gdb_exception) <message>: Now
9461 a std::string.
9462 (exception_try_scope_entry, exception_try_scope_exit): Don't
9463 declare.
9464 (struct exception_try_scope): Remove.
9465 (TRY): Don't use exception_try_scope.
9466 (struct gdb_exception): Add constructor, operator=.
9467 <what>: New method.
9468 (struct gdb_exception_RETURN_MASK_ALL)
9469 (struct gdb_exception_RETURN_MASK_ERROR)
9470 (struct gdb_exception_RETURN_MASK_QUIT): Add constructor.
9471 (struct gdb_quit_bad_alloc): Update.
9472 * common/common-exceptions.c (exception_none): Change
9473 initializer.
9474 (struct catcher) <state, exception>: Initialize inline.
9475 <prev>: Remove member.
9476 (current_catcher): Remove.
9477 (catchers): New global.
9478 (exceptions_state_mc_init): Simplify.
9479 (catcher_pop): Remove.
9480 (exceptions_state_mc, exceptions_state_mc_catch): Update.
9481 (try_scope_depth, exception_try_scope_entry)
9482 (exception_try_scope_exit): Remove.
9483 (throw_exception_sjlj): Update.
9484 (exception_messages, exception_messages_size): Remove.
9485 (throw_it): Simplify.
9486 (gdb_exception_sliced_copy): Remove.
9487 (throw_exception_cxx): Update.
9488 * cli/cli-script.c (script_from_file): Update.
9489 * breakpoint.c (insert_bp_location, update_breakpoint_locations):
9490 Update.
9491 * ada-valprint.c (ada_val_print): Update.
9492 * ada-lang.c (ada_to_fixed_type_1, ada_exception_name_addr)
9493 (create_excep_cond_exprs): Update.
9494
9495 2019-04-08 Tom Tromey <tom@tromey.com>
9496
9497 * common/common-exceptions.h (GDB_XCPT_SJMP, GDB_XCPT_TRY)
9498 (GDB_XCPT_RAW_TRY, GDB_XCPT): Remove.
9499 (TRY, CATCH, END_CATCH): Remove some definitions.
9500 * common/common-exceptions.c: Don't use GDB_XCPT.
9501 (catcher_list_size): Remove.
9502 (throw_exception, throw_it): Simplify.
9503
9504 2019-04-05 Tom Tromey <tom@tromey.com>
9505
9506 Revert the header-sorting patch.
9507 * ft32-tdep.c: Revert.
9508 * frv-tdep.c: Revert.
9509 * frv-linux-tdep.c: Revert.
9510 * frame.c: Revert.
9511 * frame-unwind.c: Revert.
9512 * frame-base.c: Revert.
9513 * fork-child.c: Revert.
9514 * findvar.c: Revert.
9515 * findcmd.c: Revert.
9516 * filesystem.c: Revert.
9517 * filename-seen-cache.h: Revert.
9518 * filename-seen-cache.c: Revert.
9519 * fbsd-tdep.c: Revert.
9520 * fbsd-nat.h: Revert.
9521 * fbsd-nat.c: Revert.
9522 * f-valprint.c: Revert.
9523 * f-typeprint.c: Revert.
9524 * f-lang.c: Revert.
9525 * extension.h: Revert.
9526 * extension.c: Revert.
9527 * extension-priv.h: Revert.
9528 * expprint.c: Revert.
9529 * exec.h: Revert.
9530 * exec.c: Revert.
9531 * exceptions.c: Revert.
9532 * event-top.c: Revert.
9533 * event-loop.c: Revert.
9534 * eval.c: Revert.
9535 * elfread.c: Revert.
9536 * dwarf2read.h: Revert.
9537 * dwarf2read.c: Revert.
9538 * dwarf2loc.c: Revert.
9539 * dwarf2expr.h: Revert.
9540 * dwarf2expr.c: Revert.
9541 * dwarf2-frame.c: Revert.
9542 * dwarf2-frame-tailcall.c: Revert.
9543 * dwarf-index-write.h: Revert.
9544 * dwarf-index-write.c: Revert.
9545 * dwarf-index-common.c: Revert.
9546 * dwarf-index-cache.h: Revert.
9547 * dwarf-index-cache.c: Revert.
9548 * dummy-frame.c: Revert.
9549 * dtrace-probe.c: Revert.
9550 * disasm.h: Revert.
9551 * disasm.c: Revert.
9552 * disasm-selftests.c: Revert.
9553 * dictionary.c: Revert.
9554 * dicos-tdep.c: Revert.
9555 * demangle.c: Revert.
9556 * dcache.h: Revert.
9557 * dcache.c: Revert.
9558 * darwin-nat.h: Revert.
9559 * darwin-nat.c: Revert.
9560 * darwin-nat-info.c: Revert.
9561 * d-valprint.c: Revert.
9562 * d-namespace.c: Revert.
9563 * d-lang.c: Revert.
9564 * ctf.c: Revert.
9565 * csky-tdep.c: Revert.
9566 * csky-linux-tdep.c: Revert.
9567 * cris-tdep.c: Revert.
9568 * cris-linux-tdep.c: Revert.
9569 * cp-valprint.c: Revert.
9570 * cp-support.c: Revert.
9571 * cp-namespace.c: Revert.
9572 * cp-abi.c: Revert.
9573 * corelow.c: Revert.
9574 * corefile.c: Revert.
9575 * continuations.c: Revert.
9576 * completer.h: Revert.
9577 * completer.c: Revert.
9578 * complaints.c: Revert.
9579 * coffread.c: Revert.
9580 * coff-pe-read.c: Revert.
9581 * cli-out.h: Revert.
9582 * cli-out.c: Revert.
9583 * charset.c: Revert.
9584 * c-varobj.c: Revert.
9585 * c-valprint.c: Revert.
9586 * c-typeprint.c: Revert.
9587 * c-lang.c: Revert.
9588 * buildsym.c: Revert.
9589 * buildsym-legacy.c: Revert.
9590 * build-id.h: Revert.
9591 * build-id.c: Revert.
9592 * btrace.c: Revert.
9593 * bsd-uthread.c: Revert.
9594 * breakpoint.h: Revert.
9595 * breakpoint.c: Revert.
9596 * break-catch-throw.c: Revert.
9597 * break-catch-syscall.c: Revert.
9598 * break-catch-sig.c: Revert.
9599 * blockframe.c: Revert.
9600 * block.c: Revert.
9601 * bfin-tdep.c: Revert.
9602 * bfin-linux-tdep.c: Revert.
9603 * bfd-target.c: Revert.
9604 * bcache.c: Revert.
9605 * ax-general.c: Revert.
9606 * ax-gdb.h: Revert.
9607 * ax-gdb.c: Revert.
9608 * avr-tdep.c: Revert.
9609 * auxv.c: Revert.
9610 * auto-load.c: Revert.
9611 * arm-wince-tdep.c: Revert.
9612 * arm-tdep.c: Revert.
9613 * arm-symbian-tdep.c: Revert.
9614 * arm-pikeos-tdep.c: Revert.
9615 * arm-obsd-tdep.c: Revert.
9616 * arm-nbsd-tdep.c: Revert.
9617 * arm-nbsd-nat.c: Revert.
9618 * arm-linux-tdep.c: Revert.
9619 * arm-linux-nat.c: Revert.
9620 * arm-fbsd-tdep.c: Revert.
9621 * arm-fbsd-nat.c: Revert.
9622 * arm-bsd-tdep.c: Revert.
9623 * arch-utils.c: Revert.
9624 * arc-tdep.c: Revert.
9625 * arc-newlib-tdep.c: Revert.
9626 * annotate.h: Revert.
9627 * annotate.c: Revert.
9628 * amd64-windows-tdep.c: Revert.
9629 * amd64-windows-nat.c: Revert.
9630 * amd64-tdep.c: Revert.
9631 * amd64-sol2-tdep.c: Revert.
9632 * amd64-obsd-tdep.c: Revert.
9633 * amd64-obsd-nat.c: Revert.
9634 * amd64-nbsd-tdep.c: Revert.
9635 * amd64-nbsd-nat.c: Revert.
9636 * amd64-nat.c: Revert.
9637 * amd64-linux-tdep.c: Revert.
9638 * amd64-linux-nat.c: Revert.
9639 * amd64-fbsd-tdep.c: Revert.
9640 * amd64-fbsd-nat.c: Revert.
9641 * amd64-dicos-tdep.c: Revert.
9642 * amd64-darwin-tdep.c: Revert.
9643 * amd64-bsd-nat.c: Revert.
9644 * alpha-tdep.c: Revert.
9645 * alpha-obsd-tdep.c: Revert.
9646 * alpha-nbsd-tdep.c: Revert.
9647 * alpha-mdebug-tdep.c: Revert.
9648 * alpha-linux-tdep.c: Revert.
9649 * alpha-linux-nat.c: Revert.
9650 * alpha-bsd-tdep.c: Revert.
9651 * alpha-bsd-nat.c: Revert.
9652 * aix-thread.c: Revert.
9653 * agent.c: Revert.
9654 * addrmap.c: Revert.
9655 * ada-varobj.c: Revert.
9656 * ada-valprint.c: Revert.
9657 * ada-typeprint.c: Revert.
9658 * ada-tasks.c: Revert.
9659 * ada-lang.c: Revert.
9660 * aarch64-tdep.c: Revert.
9661 * aarch64-ravenscar-thread.c: Revert.
9662 * aarch64-newlib-tdep.c: Revert.
9663 * aarch64-linux-tdep.c: Revert.
9664 * aarch64-linux-nat.c: Revert.
9665 * aarch64-fbsd-tdep.c: Revert.
9666 * aarch64-fbsd-nat.c: Revert.
9667 * aarch32-linux-nat.c: Revert.
9668
9669 2019-04-05 Tom Tromey <tom@tromey.com>
9670
9671 * ft32-tdep.c: Sort headers.
9672 * frv-tdep.c: Sort headers.
9673 * frv-linux-tdep.c: Sort headers.
9674 * frame.c: Sort headers.
9675 * frame-unwind.c: Sort headers.
9676 * frame-base.c: Sort headers.
9677 * fork-child.c: Sort headers.
9678 * findvar.c: Sort headers.
9679 * findcmd.c: Sort headers.
9680 * filesystem.c: Sort headers.
9681 * filename-seen-cache.h: Sort headers.
9682 * filename-seen-cache.c: Sort headers.
9683 * fbsd-tdep.c: Sort headers.
9684 * fbsd-nat.h: Sort headers.
9685 * fbsd-nat.c: Sort headers.
9686 * f-valprint.c: Sort headers.
9687 * f-typeprint.c: Sort headers.
9688 * f-lang.c: Sort headers.
9689 * extension.h: Sort headers.
9690 * extension.c: Sort headers.
9691 * extension-priv.h: Sort headers.
9692 * expprint.c: Sort headers.
9693 * exec.h: Sort headers.
9694 * exec.c: Sort headers.
9695 * exceptions.c: Sort headers.
9696 * event-top.c: Sort headers.
9697 * event-loop.c: Sort headers.
9698 * eval.c: Sort headers.
9699 * elfread.c: Sort headers.
9700 * dwarf2read.h: Sort headers.
9701 * dwarf2read.c: Sort headers.
9702 * dwarf2loc.c: Sort headers.
9703 * dwarf2expr.h: Sort headers.
9704 * dwarf2expr.c: Sort headers.
9705 * dwarf2-frame.c: Sort headers.
9706 * dwarf2-frame-tailcall.c: Sort headers.
9707 * dwarf-index-write.h: Sort headers.
9708 * dwarf-index-write.c: Sort headers.
9709 * dwarf-index-common.c: Sort headers.
9710 * dwarf-index-cache.h: Sort headers.
9711 * dwarf-index-cache.c: Sort headers.
9712 * dummy-frame.c: Sort headers.
9713 * dtrace-probe.c: Sort headers.
9714 * disasm.h: Sort headers.
9715 * disasm.c: Sort headers.
9716 * disasm-selftests.c: Sort headers.
9717 * dictionary.c: Sort headers.
9718 * dicos-tdep.c: Sort headers.
9719 * demangle.c: Sort headers.
9720 * dcache.h: Sort headers.
9721 * dcache.c: Sort headers.
9722 * darwin-nat.h: Sort headers.
9723 * darwin-nat.c: Sort headers.
9724 * darwin-nat-info.c: Sort headers.
9725 * d-valprint.c: Sort headers.
9726 * d-namespace.c: Sort headers.
9727 * d-lang.c: Sort headers.
9728 * ctf.c: Sort headers.
9729 * csky-tdep.c: Sort headers.
9730 * csky-linux-tdep.c: Sort headers.
9731 * cris-tdep.c: Sort headers.
9732 * cris-linux-tdep.c: Sort headers.
9733 * cp-valprint.c: Sort headers.
9734 * cp-support.c: Sort headers.
9735 * cp-namespace.c: Sort headers.
9736 * cp-abi.c: Sort headers.
9737 * corelow.c: Sort headers.
9738 * corefile.c: Sort headers.
9739 * continuations.c: Sort headers.
9740 * completer.h: Sort headers.
9741 * completer.c: Sort headers.
9742 * complaints.c: Sort headers.
9743 * coffread.c: Sort headers.
9744 * coff-pe-read.c: Sort headers.
9745 * cli-out.h: Sort headers.
9746 * cli-out.c: Sort headers.
9747 * charset.c: Sort headers.
9748 * c-varobj.c: Sort headers.
9749 * c-valprint.c: Sort headers.
9750 * c-typeprint.c: Sort headers.
9751 * c-lang.c: Sort headers.
9752 * buildsym.c: Sort headers.
9753 * buildsym-legacy.c: Sort headers.
9754 * build-id.h: Sort headers.
9755 * build-id.c: Sort headers.
9756 * btrace.c: Sort headers.
9757 * bsd-uthread.c: Sort headers.
9758 * breakpoint.h: Sort headers.
9759 * breakpoint.c: Sort headers.
9760 * break-catch-throw.c: Sort headers.
9761 * break-catch-syscall.c: Sort headers.
9762 * break-catch-sig.c: Sort headers.
9763 * blockframe.c: Sort headers.
9764 * block.c: Sort headers.
9765 * bfin-tdep.c: Sort headers.
9766 * bfin-linux-tdep.c: Sort headers.
9767 * bfd-target.c: Sort headers.
9768 * bcache.c: Sort headers.
9769 * ax-general.c: Sort headers.
9770 * ax-gdb.h: Sort headers.
9771 * ax-gdb.c: Sort headers.
9772 * avr-tdep.c: Sort headers.
9773 * auxv.c: Sort headers.
9774 * auto-load.c: Sort headers.
9775 * arm-wince-tdep.c: Sort headers.
9776 * arm-tdep.c: Sort headers.
9777 * arm-symbian-tdep.c: Sort headers.
9778 * arm-pikeos-tdep.c: Sort headers.
9779 * arm-obsd-tdep.c: Sort headers.
9780 * arm-nbsd-tdep.c: Sort headers.
9781 * arm-nbsd-nat.c: Sort headers.
9782 * arm-linux-tdep.c: Sort headers.
9783 * arm-linux-nat.c: Sort headers.
9784 * arm-fbsd-tdep.c: Sort headers.
9785 * arm-fbsd-nat.c: Sort headers.
9786 * arm-bsd-tdep.c: Sort headers.
9787 * arch-utils.c: Sort headers.
9788 * arc-tdep.c: Sort headers.
9789 * arc-newlib-tdep.c: Sort headers.
9790 * annotate.h: Sort headers.
9791 * annotate.c: Sort headers.
9792 * amd64-windows-tdep.c: Sort headers.
9793 * amd64-windows-nat.c: Sort headers.
9794 * amd64-tdep.c: Sort headers.
9795 * amd64-sol2-tdep.c: Sort headers.
9796 * amd64-obsd-tdep.c: Sort headers.
9797 * amd64-obsd-nat.c: Sort headers.
9798 * amd64-nbsd-tdep.c: Sort headers.
9799 * amd64-nbsd-nat.c: Sort headers.
9800 * amd64-nat.c: Sort headers.
9801 * amd64-linux-tdep.c: Sort headers.
9802 * amd64-linux-nat.c: Sort headers.
9803 * amd64-fbsd-tdep.c: Sort headers.
9804 * amd64-fbsd-nat.c: Sort headers.
9805 * amd64-dicos-tdep.c: Sort headers.
9806 * amd64-darwin-tdep.c: Sort headers.
9807 * amd64-bsd-nat.c: Sort headers.
9808 * alpha-tdep.c: Sort headers.
9809 * alpha-obsd-tdep.c: Sort headers.
9810 * alpha-nbsd-tdep.c: Sort headers.
9811 * alpha-mdebug-tdep.c: Sort headers.
9812 * alpha-linux-tdep.c: Sort headers.
9813 * alpha-linux-nat.c: Sort headers.
9814 * alpha-bsd-tdep.c: Sort headers.
9815 * alpha-bsd-nat.c: Sort headers.
9816 * aix-thread.c: Sort headers.
9817 * agent.c: Sort headers.
9818 * addrmap.c: Sort headers.
9819 * ada-varobj.c: Sort headers.
9820 * ada-valprint.c: Sort headers.
9821 * ada-typeprint.c: Sort headers.
9822 * ada-tasks.c: Sort headers.
9823 * ada-lang.c: Sort headers.
9824 * aarch64-tdep.c: Sort headers.
9825 * aarch64-ravenscar-thread.c: Sort headers.
9826 * aarch64-newlib-tdep.c: Sort headers.
9827 * aarch64-linux-tdep.c: Sort headers.
9828 * aarch64-linux-nat.c: Sort headers.
9829 * aarch64-fbsd-tdep.c: Sort headers.
9830 * aarch64-fbsd-nat.c: Sort headers.
9831 * aarch32-linux-nat.c: Sort headers.
9832
9833 2019-04-04 Tom Tromey <tom@tromey.com>
9834
9835 * varobj.c (varobj_create): Update.
9836 * rust-exp.y (struct rust_parser) <update_innermost_block,
9837 lookup_symbol>: New methods.
9838 (rust_parser::update_innermost_block, rust_parser::lookup_symbol):
9839 Rename.
9840 (rust_parser::rust_lookup_type)
9841 (rust_parser::convert_ast_to_expression, rust_lex_tests): Update.
9842 * printcmd.c (display_command, do_one_display): Update.
9843 * parser-defs.h (struct parser_state) <parser_state>: Add
9844 "tracker" parameter.
9845 (block_tracker): New member.
9846 (class innermost_block_tracker) <innermost_block_tracker>: Add
9847 "types" parameter.
9848 <reset>: Remove method.
9849 (innermost_block): Don't declare.
9850 (null_post_parser): Update.
9851 * parse.c (innermost_block): Remove global.
9852 (write_dollar_variable): Update.
9853 (parse_exp_1, parse_exp_in_context): Add "tracker" parameter.
9854 Remove "tracker_types" parameter.
9855 (parse_expression): Add "tracker" parameter.
9856 (parse_expression_for_completion): Update.
9857 (null_post_parser): Add "tracker" parameter.
9858 * p-exp.y: Update rules.
9859 * m2-exp.y: Update rules.
9860 * language.h (struct language_defn) <la_post_parser>: Add
9861 "tracker" parameter.
9862 * go-exp.y: Update rules.
9863 * f-exp.y: Update rules.
9864 * expression.h (parse_expression, parse_exp_1): Add "tracker"
9865 parameter.
9866 * d-exp.y: Update rules.
9867 * c-exp.y: Update rules.
9868 * breakpoint.c (set_breakpoint_condition): Create an
9869 innermost_block_tracker.
9870 (watch_command_1): Likewise.
9871 * ada-lang.c (resolve): Add "tracker" parameter.
9872 (resolve_subexp): Likewise.
9873 * ada-exp.y (write_var_from_sym): Update.
9874
9875 2019-04-04 Tom Tromey <tom@tromey.com>
9876
9877 * type-stack.h: New file.
9878 * type-stack.c: New file.
9879 * parser-defs.h (enum type_pieces, union type_stack_elt): Move to
9880 type-stack.h.
9881 (insert_into_type_stack, insert_type, push_type, push_type_int)
9882 (insert_type_address_space, pop_type, pop_type_int)
9883 (pop_typelist, pop_type_stack, append_type_stack)
9884 (push_type_stack, get_type_stack, push_typelist)
9885 (follow_type_instance_flags, follow_types): Don't declare.
9886 * parse.c (type_stack): Remove global.
9887 (parse_exp_in_context): Update.
9888 (insert_into_type_stack, insert_type, push_type, push_type_int)
9889 (insert_type_address_space, pop_type, pop_type_int)
9890 (pop_typelist, pop_type_stack, append_type_stack)
9891 (push_type_stack, get_type_stack, push_typelist)
9892 (follow_type_instance_flags, follow_types): Remove (moved to
9893 type-stack.c).
9894 * f-exp.y (type_stack): New global.
9895 Update rules.
9896 (push_kind_type, f_parse): Update.
9897 * d-exp.y (type_stack): New global.
9898 Update rules.
9899 (d_parse): Update.
9900 * c-exp.y (struct c_parse_state) <type_stack>: New member.
9901 Update rules.
9902 * Makefile.in (COMMON_SFILES): Add type-stack.c.
9903 (HFILES_NO_SRCDIR): Add type-stack.h.
9904
9905 2019-04-04 Tom Tromey <tom@tromey.com>
9906
9907 * rust-exp.y (rust_parser::lex_identifier, rustyylex)
9908 (rust_parser::convert_ast_to_expression, rust_parse)
9909 (rust_lex_test_completion, rust_lex_tests): Update.
9910 * parser-defs.h (struct expr_completion_state): New.
9911 (struct parser_state) <parser_state>: Add completion parameter.
9912 <mark_struct_expression, mark_completion_tag>: New methods.
9913 <parse_completion, m_completion_state>: New members.
9914 (prefixify_expression, null_post_parser): Update.
9915 (mark_struct_expression, mark_completion_tag): Don't declare.
9916 * parse.c (parse_completion, expout_last_struct)
9917 (expout_tag_completion_type, expout_completion_name): Remove
9918 globals.
9919 (parser_state::mark_struct_expression)
9920 (parser_state::mark_completion_tag): Now methods.
9921 (prefixify_expression): Add last_struct parameter.
9922 (prefixify_subexp): Likewise.
9923 (parse_exp_1): Update.
9924 (parse_exp_in_context): Add cstate parameter. Update.
9925 (parse_expression_for_completion): Create an
9926 expr_completion_state.
9927 (null_post_parser): Add "completion" parameter.
9928 * p-exp.y: Update rules.
9929 (yylex): Update.
9930 * language.h (struct language_defn) <la_post_parser>: Add
9931 "completing" parameter.
9932 * go-exp.y: Update rules.
9933 (lex_one_token): Update.
9934 * expression.h (parse_completion): Don't declare.
9935 * d-exp.y: Update rules.
9936 (lex_one_token): Update rules.
9937 * c-exp.y: Update rules.
9938 (lex_one_token): Update.
9939 * ada-lang.c (resolve): Add "parse_completion" parameter.
9940 (resolve_subexp): Likewise.
9941 (ada_resolve_function): Likewise.
9942
9943 2019-04-04 Tom Tromey <tom@tromey.com>
9944
9945 * parser-defs.h (struct parser_state) <start_arglist,
9946 end_arglist>: New methods.
9947 <arglist_len, m_funcall_chain>: New members.
9948 (arglist_len, start_arglist, end_arglist): Don't declare.
9949 * parse.c (arglist_len, funcall_chain): Remove global.
9950 (start_arglist, end_arglist): Remove functions.
9951 (parse_exp_in_context): Update.
9952 * p-exp.y: Update rules.
9953 * m2-exp.y: Update rules.
9954 * go-exp.y: Update rules.
9955 * f-exp.y: Update rules.
9956 * d-exp.y: Update rules.
9957 * c-exp.y: Update rules.
9958
9959 2019-04-04 Tom Tromey <tom@tromey.com>
9960
9961 * rust-exp.y (struct rust_parser) <lex_hex, lex_escape,
9962 lex_operator, push_back>: New methods.
9963 Update all rules.
9964 (rust_parser::lex_hex, lex_escape): Rename and update.
9965 (rust_parser::lex_string, rust_parser::lex_identifier): Update.
9966 (rust_parser::lex_operator): Rename and update.
9967 (rust_parser::lex_number, rustyylex, rustyyerror)
9968 (rust_lex_test_init, rust_lex_test_sequence)
9969 (rust_lex_test_push_back, rust_lex_tests): Update.
9970 * parser-defs.h (struct parser_state) <parser_state>: Add "input"
9971 parameter.
9972 <lexptr, prev_lexptr>: New members.
9973 (lexptr, prev_lexptr): Don't declare.
9974 * parse.c (lexptr, prev_lexptr): Remove globals.
9975 (parse_exp_in_context): Update.
9976 * p-exp.y (yylex, yyerror): Update.
9977 * m2-exp.y (parse_number, yylex, yyerror): Update.
9978 * go-exp.y (lex_one_token, yyerror): Update.
9979 * f-exp.y (match_string_literal, yylex, yyerror): Update.
9980 * d-exp.y (lex_one_token, yyerror): Update.
9981 * c-exp.y (scan_macro_expansion, finished_macro_expansion)
9982 (lex_one_token, yyerror): Update.
9983 * ada-lex.l (YY_INPUT): Update.
9984 (rewind_to_char): Update.
9985 * ada-exp.y (yyerror): Update.
9986
9987 2019-04-04 Tom Tromey <tom@tromey.com>
9988
9989 * rust-exp.y (rustyylex, rust_lex_tests): Update.
9990 * parser-defs.h (struct parser_state) <parser_state>: Add new
9991 parameter.
9992 <comma_terminates>: New member.
9993 (comma_terminates): Don't declare global.
9994 * parse.c (comma_terminates): Remove global.
9995 (parse_exp_in_context): Update.
9996 * p-exp.y (yylex): Update.
9997 * m2-exp.y (yylex): Update.
9998 * go-exp.y (lex_one_token): Update.
9999 * f-exp.y (yylex): Update.
10000 * d-exp.y (lex_one_token): Update.
10001 * c-exp.y (lex_one_token): Update.
10002 * ada-lex.l: Update.
10003
10004 2019-04-04 Tom Tromey <tom@tromey.com>
10005
10006 * rust-exp.y (struct rust_parser) <paren_depth>: New member.
10007 (rustyylex, rust_lex_test_init, rust_lex_test_one)
10008 (rust_lex_test_sequence, rust_lex_test_push_back): Update.
10009 * parser-defs.h (paren_depth): Don't declare.
10010 * parse.c (paren_depth): Remove global.
10011 (parse_exp_in_context): Update.
10012 * p-exp.y (paren_depth): New global.
10013 (pascal_parse): Initialize it.
10014 * m2-exp.y (paren_depth): New global.
10015 (m2_parse): Initialize it.
10016 * go-exp.y (paren_depth): New global.
10017 (go_parse): Initialize it.
10018 * f-exp.y (paren_depth): New global.
10019 (f_parse): Initialize it.
10020 * d-exp.y (paren_depth): New global.
10021 (d_parse): Initialize it.
10022 * c-exp.y (paren_depth): New global.
10023 (c_parse): Initialize it.
10024 * ada-lex.l (paren_depth): New global.
10025 (lexer_init): Initialize it.
10026
10027 2019-04-04 Tom Tromey <tom@tromey.com>
10028
10029 * rust-exp.y (rust_parser::crate_name, rust_parser::super_name)
10030 (rust_parser::convert_ast_to_type)
10031 (rust_parser::convert_ast_to_expression, rust_lex_tests): Update.
10032 * parser-defs.h (struct parser_state) <parser_state>: Add
10033 parameters. Initialize new members.
10034 <expression_context_block, expression_context_pc>: New members.
10035 * parse.c (expression_context_block, expression_context_pc):
10036 Remove globals.
10037 (parse_exp_in_context): Update.
10038 * p-exp.y: Update all rules.
10039 (yylex): Update.
10040 * m2-exp.y: Update all rules.
10041 (yylex): Update.
10042 * go-exp.y (yylex): Update.
10043 * f-exp.y (yylex): Update.
10044 * d-exp.y: Update all rules.
10045 (yylex): Update.
10046 * c-exp.y: Update all rules.
10047 (lex_one_token, classify_name, yylex, c_parse): Update.
10048 * ada-exp.y (write_var_or_type, write_name_assoc): Update.
10049
10050 2019-04-04 Tom Tromey <tom@tromey.com>
10051
10052 * gdbarch.h, gdbarch.c: Rebuild.
10053 * gdbarch.sh (dtrace_parse_probe_argument): Change type.
10054 * stap-probe.h:
10055 (struct stap_parse_info): Replace "parser_state" with
10056 "expr_builder".
10057 * parser-defs.h (struct expr_builder): Rename from "parser_state".
10058 (parser_state): New class.
10059 * parse.c (expr_builder): Rename.
10060 (expr_builder::release): Rename.
10061 (write_exp_elt, write_exp_elt_opcode, write_exp_elt_sym)
10062 (write_exp_elt_msym, write_exp_elt_block, write_exp_elt_objfile)
10063 (write_exp_elt_longcst, write_exp_elt_floatcst)
10064 (write_exp_elt_type, write_exp_elt_intern, write_exp_string)
10065 (write_exp_string_vector, write_exp_bitstring)
10066 (write_exp_msymbol, mark_struct_expression)
10067 (write_dollar_variable)
10068 (insert_type_address_space, increase_expout_size): Replace
10069 "parser_state" with "expr_builder".
10070 * dtrace-probe.c: Replace "parser_state" with "expr_builder".
10071 * amd64-linux-tdep.c (amd64_dtrace_parse_probe_argument): Replace
10072 "parser_state" with "expr_builder".
10073
10074 2019-04-04 Tom Tromey <tom@tromey.com>
10075
10076 * rust-exp.y: Replace "parse_language" with method call.
10077 * p-exp.y:
10078 (yylex): Replace "parse_language" with method call.
10079 * m2-exp.y:
10080 (yylex): Replace "parse_language" with method call.
10081 * go-exp.y (classify_name): Replace "parse_language" with method
10082 call.
10083 * f-exp.y (yylex): Replace "parse_language" with method call.
10084 * d-exp.y (lex_one_token): Replace "parse_language" with method
10085 call.
10086 * c-exp.y:
10087 (lex_one_token, classify_name, yylex): Replace "parse_language"
10088 with method call.
10089 * ada-exp.y (find_primitive_type, type_char)
10090 (type_system_address): Replace "parse_language" with method call.
10091
10092 2019-04-04 Tom Tromey <tom@tromey.com>
10093
10094 * rust-exp.y: Replace "parse_gdbarch" with method call.
10095 * parse.c (write_dollar_variable, insert_type_address_space):
10096 Replace "parse_gdbarch" with method call.
10097 * p-exp.y (parse_type, yylex): Replace "parse_gdbarch" with method
10098 call.
10099 * objc-lang.c (end_msglist): Replace "parse_gdbarch" with method
10100 call.
10101 * m2-exp.y (parse_type, parse_m2_type, yylex): Replace
10102 "parse_gdbarch" with method call.
10103 * go-exp.y (parse_type, classify_name): Replace "parse_gdbarch"
10104 with method call.
10105 * f-exp.y (parse_type, parse_f_type, yylex): Replace
10106 "parse_gdbarch" with method call.
10107 * d-exp.y (parse_type, parse_d_type, lex_one_token): Replace
10108 "parse_gdbarch" with method call.
10109 * c-exp.y (parse_type, parse_number, classify_name): Replace
10110 "parse_gdbarch" with method call.
10111 * ada-lex.l: Replace "parse_gdbarch" with method call.
10112 * ada-exp.y (parse_type, find_primitive_type, type_char)
10113 (type_system_address): Replace "parse_gdbarch" with method call.
10114
10115 2019-04-04 Tom Tromey <tom@tromey.com>
10116
10117 * dtrace-probe.c (dtrace_probe::build_arg_exprs): Update.
10118 * stap-probe.c (stap_parse_argument): Update.
10119 * stap-probe.h (struct stap_parse_info) <stap_parse_info>: Remove
10120 initial_size parameter.
10121 * rust-exp.y (rust_lex_tests): Update.
10122 * parse.c (parser_state): Update.
10123 (parse_exp_in_context): Update.
10124 * parser-defs.h (struct parser_state) <parser_state>: Remove
10125 "initial_size" parameter.
10126
10127 2019-04-04 Tom Tromey <tom@tromey.com>
10128
10129 * parser-defs.h (increase_expout_size): Don't declare.
10130 * parse.c (increase_expout_size): Now static.
10131
10132 2019-04-04 Thomas Schwinge <thomas@codesourcery.com>
10133
10134 * gnu-nat.c (gnu_nat_target::wait): Fix
10135 target_waitstatus_to_string call.
10136
10137 2019-04-01 Andrew Burgess <andrew.burgess@embecosm.com>
10138
10139 * eval.c (evaluate_subexp_standard): Handle internal functions
10140 during Fortran function call handling.
10141
10142 2019-04-01 Andrew Burgess <andrew.burgess@embecosm.com>
10143
10144 * NEWS: Mention new internal functions.
10145 * dwarf2read.c (dwarf2_init_complex_target_type): New function.
10146 (read_base_type): Use dwarf2_init_complex_target_type.
10147 * value.c (creal_internal_fn): New function.
10148 (cimag_internal_fn): New function.
10149 (_initialize_values): Register new internal functions.
10150
10151 2019-04-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
10152
10153 * infrun.c (stop_all_threads): If debug_infrun, always
10154 trace the wait status after wait_one, using
10155 target_waitstatus_to_string and target_pid_to_str.
10156 (handle_inferior_event): Replace various trace of
10157 wait status kind by a single trace.
10158 * gdb/gnu-nat.c (gnu_nat_target::wait): Replace local
10159 wait status kind image by target_waitstatus_to_string.
10160 * target/waitstatus.c (target_waitstatus_to_string): Fix
10161 obsolete comment.
10162
10163 2019-04-01 Tom Tromey <tromey@adacore.com>
10164
10165 PR symtab/23331:
10166 * dwarf2read.c (partial_die_info::read): Handle DW_AT_ranges.
10167
10168 2019-04-01 Sergio Durigan Junior <sergiodj@redhat.com>
10169 Pedro Alves <palves@redhat.com>
10170
10171 * top.c (quit_force): Call 'finalize_values'.
10172 * value.c (finalize_values): New function.
10173 * value.h (finalize_values): Declare.
10174
10175 2019-03-30 Eli Zaretskii <eliz@gnu.org>
10176
10177 * NEWS: Announce $_gdb_major and $_gdb_minor.
10178
10179 * top.c (init_gdb_version_vars): New function.
10180 (gdb_init): Call init_gdb_version_vars.
10181
10182 2019-03-29 Tom Tromey <tromey@adacore.com>
10183
10184 * printcmd.c (_initialize_printcmd): Add usage lines. Update some
10185 help text. Remove dead code.
10186
10187 2019-03-29 Keith Seitz <keiths@redhat.com>
10188
10189 From Siddhesh Poyarekar:
10190 * f-lang.h (f77_get_upperbound): Return LONGEST.
10191 (f77_get_lowerbound): Likewise.
10192 * f-typeprint.c (f_type_print_varspec_suffix): Expand
10193 UPPER_BOUND and LOWER_BOUND to LONGEST. Use plongest to format
10194 print them.
10195 (f_type_print_base): Expand UPPER_BOUND to LONGEST. Use
10196 plongest to format print it.
10197 * f-valprint.c (f77_get_lowerbound): Return LONGEST.
10198 (f77_get_upperbound): Likewise.
10199 (f77_get_dynamic_length_of_aggregate): Expand UPPER_BOUND,
10200 LOWER_BOUND to LONGEST.
10201 (f77_create_arrayprint_offset_tbl): Likewise.
10202
10203 2019-03-29 Keith Seitz <keiths@redhat.com>
10204
10205 * ada-lang.c (ada_template_to_fixed_record_type_1): Use
10206 %s/pulongest for TYPE_LENGTH instead of %d in format
10207 strings.
10208 * ada-typerint.c (ada_print_type): Likewise.
10209 * amd64-windows-tdep.c (amd64_windows_store_arg_in_reg): Likewise.
10210 * compile/compile-c-support.c (generate_register_struct): Likewise.
10211 * gdbtypes.c (recursive_dump_type): Likewise.
10212 * gdbtypes.h (struct type) <length>: Change type to ULONGEST.
10213 * m2-typeprint.c (m2_array): Use %s/pulongest for TYPE_LENGTH
10214 instead of %d in format strings.
10215 * riscv-tdep.c (riscv_type_alignment): Cast second argument
10216 to std::min to ULONGEST.
10217 * symmisc.c (print_symbol): Use %s/pulongest for TYPE_LENGTH
10218 instead of %d in format strings.
10219 * tracepoint.c (info_scope_command): Likewise.
10220 * typeprint.c (print_offset_data::update)
10221 (print_offset_data::finish): Likewise.
10222 * xtensa-tdep.c (xtensa_store_return_value)
10223 (xtensa_push_dummy_call): Likewise.
10224
10225 2019-03-28 Jon Turney <jon.turney@dronecode.org.uk>
10226
10227 * windows-nat.c (display_selector): Fixed format specifications
10228 for 64-bit Cygwin.
10229
10230 2019-03-28 Philippe Waroquiers <philippe.waroquiers@skynet.be>
10231
10232 * infrun.c (follow_exec): Call target_terminal::ours_for_output.
10233
10234 2019-03-28 Sandra Loosemore <sandra@codesourcery.com>
10235
10236 * nios2-tdep.h (struct gdbarch_tdep): Add is_kernel_helper.
10237 * nios2-tdep.c (nios2_get_next_pc): Skip over kernel helpers.
10238 * nios2-linux-tdep.c (nios2_linux_is_kernel_helper): New.
10239 (nios2_linux_init_abi): Install it.
10240
10241 2019-03-28 Alan Hayward <alan.hayward@arm.com>
10242
10243 * aarch64-tdep.c (aarch64_vnv_type): Use vector types.
10244
10245 2019-03-28 Alan Hayward <alan.hayward@arm.com>
10246
10247 * features/aarch64-sve.c (create_feature_aarch64_sve): Add q view.
10248
10249 2019-03-24 Philippe Waroquiers <philippe.waroquiers@skynet.be>
10250 Tom Tromey <tromey@adacore.com>
10251
10252 * minsyms.c (minimal_symbol_upper_bound): Fix buffer overflow.
10253
10254 2019-03-26 Joel Brobecker <brobecker@adacore.com>
10255
10256 * gdb-gdb.py.in (StructMainTypePrettyPrinter.bound_img): New method.
10257 (StructMainTypePrettyPrinter.bounds_img): Use new "bound_img"
10258 method to compute the bounds of range types. Also print "[evaluated]"
10259 if the bounds' values come from a dynamic evaluation.
10260
10261 2019-03-26 Andrew Burgess <andrew.burgess@embecosm.com>
10262
10263 * cp-valprint.c (cp_print_value_fields): Don't print trailing
10264 whitespace when pretty printing is on.
10265
10266 2019-03-26 Alan Hayward <alan.hayward@arm.com>
10267
10268 * ppc-linux-nat.c: Add include.
10269
10270 2019-03-26 Alan Hayward <alan.hayward@arm.com>
10271
10272 * NEWS: Mention AArch64 Pointer Authentication.
10273
10274 2019-03-26 Alan Hayward <alan.hayward@arm.com>
10275
10276 * arm-linux-nat.c: Add include.
10277
10278 2019-03-25 Simon Marchi <simon.marchi@polymtl.ca>
10279
10280 * source-cache.c (source_cache::get_source_lines): Re-read
10281 fullname after calling open_source_file.
10282
10283 2019-03-25 John Baldwin <jhb@FreeBSD.org>
10284
10285 * NEWS: Mention TLS support for FreeBSD.
10286
10287 2019-03-25 Tom Tromey <tromey@adacore.com>
10288
10289 * minsyms.c (BUNCH_SIZE): Update comment.
10290 (~minimal_symbol_reader): Remove old comment.
10291 (compact_minimal_symbols): Update comment.
10292 (minimal_symbol_reader::install): Remove old comment. Update
10293 other comments.
10294
10295 2019-03-25 Alan Hayward <alan.hayward@arm.com>
10296
10297 * s390-linux-nat.c: Add include.
10298
10299 2019-03-25 Alan Hayward <alan.hayward@arm.com>
10300
10301 * aarch64-linux-nat.c (aarch64_linux_nat_target::read_description):
10302 Call linux_get_hwcap.
10303 * aarch64-linux-tdep.c (aarch64_linux_core_read_description):
10304 Likewise.
10305 (aarch64_linux_get_hwcap): Remove function.
10306 * aarch64-linux-tdep.h (aarch64_linux_get_hwcap): Remove
10307 declaration.
10308 * arm-linux-nat.c (arm_linux_nat_target::read_description):Call
10309 linux_get_hwcap.
10310 * arm-linux-tdep.c (arm_linux_core_read_description): Likewise.
10311 * linux-tdep.c (linux_get_hwcap): Add function.
10312 (linux_get_hwcap2): Likewise.
10313 * linux-tdep.h (linux_get_hwcap): Add declaration.
10314 (linux_get_hwcap2): Likewise.
10315 * ppc-linux-nat.c (ppc_linux_get_hwcap): Remove function.
10316 (ppc_linux_get_hwcap2): Likewise.
10317 (ppc_linux_nat_target::region_ok_for_hw_watchpoint): Call
10318 linux_get_hwcap.
10319 (ppc_linux_nat_target::insert_watchpoint): Likewise.
10320 (ppc_linux_nat_target::watchpoint_addr_within_range): Likewise.
10321 (ppc_linux_nat_target::read_description): Likewise.
10322 * ppc-linux-tdep.c (ppc_linux_core_read_description): Likewise.
10323 * s390-linux-nat.c: Likewise.
10324 * s390-linux-tdep.c (s390_core_read_description): Likewise.
10325
10326 2019-03-24 Tom Tromey <tom@tromey.com>
10327
10328 * ada-lang.c (standard_lookup): Simplify initialization.
10329 (ada_lookup_symbol_nonlocal): Simplify return.
10330 * solib-spu.c (spu_lookup_lib_symbol): Simplify return.
10331 * solib-darwin.c (darwin_lookup_lib_symbol): Simplify return.
10332 * solib-svr4.c (elf_lookup_lib_symbol): Simplify return.
10333 * rust-lang.c (rust_lookup_symbol_nonlocal): Simplify
10334 initialization.
10335 * solib.c (solib_global_lookup): Simplify.
10336 * symtab.c (null_block_symbol): Remove.
10337 (symbol_cache_lookup): Simplify returns.
10338 (lookup_language_this): Simplify returns.
10339 (lookup_symbol_aux): Simplify return.
10340 (lookup_local_symbol): Simplify returns.
10341 (lookup_global_symbol_from_objfile): Simplify return.
10342 (lookup_symbol_in_objfile_symtabs)
10343 (lookup_symbol_in_objfile_from_linkage_name): Simplify return.
10344 (lookup_symbol_via_quick_fns, lookup_symbol_in_static_block)
10345 (lookup_static_symbol, lookup_global_symbol): Simplify return.
10346 * cp-namespace.c (cp_lookup_bare_symbol)
10347 (cp_search_static_and_baseclasses, cp_lookup_symbol_via_imports)
10348 (cp_lookup_symbol_via_all_imports, cp_lookup_nested_symbol_1)
10349 (cp_lookup_nested_symbol): Don't use null_block_symbol.
10350 (cp_lookup_symbol_via_imports): Simplify initialization.
10351 (find_symbol_in_baseclass): Likewise.
10352 * symtab.h (null_block_symbol): Remove.
10353 * d-namespace.c (d_lookup_symbol): Don't use null_block_symbol.
10354 (d_lookup_nested_symbol, d_lookup_symbol_imports)
10355 (d_lookup_symbol_module): Likewise.
10356 (find_symbol_in_baseclass): Simplify initialization.
10357
10358 2019-03-24 Tom Tromey <tom@tromey.com>
10359
10360 * expression.h: Don't include symtab.h.
10361 (struct block): Forward declare.
10362
10363 2019-03-24 Tom Tromey <tom@tromey.com>
10364
10365 * c-exp.y (typebase): Remove casts.
10366 * gdbtypes.c (lookup_unsigned_typename, )
10367 (lookup_signed_typename): Remove cast.
10368 * eval.c (parse_to_comma_and_eval): Remove cast.
10369 * parse.c (write_dollar_variable): Remove cast.
10370 * block.h (struct block) <superblock>: Now const.
10371 * symfile-debug.c (debug_qf_map_matching_symbols): Update.
10372 * psymtab.c (psym_map_matching_symbols): Make "block" const.
10373 (map_block): Make "block" const.
10374 * symfile.h (struct quick_symbol_functions)
10375 <map_matching_symbols>: Constify block argument to "callback".
10376 * symtab.c (basic_lookup_transparent_type_quick): Make "block"
10377 const.
10378 (find_pc_sect_compunit_symtab): Make "b" const.
10379 (find_symbol_at_address): Likewise.
10380 (search_symbols): Likewise.
10381 * dwarf2read.c (dw2_lookup_symbol): Make "block" const.
10382 (dw2_debug_names_lookup_symbol): Likewise.
10383 (dw2_map_matching_symbols): Update.
10384 * p-valprint.c (pascal_val_print): Remove "block".
10385 * ada-lang.c (ada_add_global_exceptions): Make "b" const.
10386 (aux_add_nonlocal_symbols): Make "block" const.
10387 (resolve_subexp): Remove cast.
10388 * linespec.c (iterate_over_all_matching_symtabs): Make "block"
10389 const.
10390 (iterate_over_file_blocks): Likewise.
10391 * f-exp.y (%union) <bval>: Remove.
10392 * coffread.c (patch_opaque_types): Make "b" const.
10393 * spu-tdep.c (spu_catch_start): Make "block" const.
10394 * c-valprint.c (print_unpacked_pointer): Remove "block".
10395 * symmisc.c (dump_symtab_1): Make "b" const.
10396 (block_depth): Make "block" const.
10397 * d-exp.y (%union) <bval>: Remove.
10398 * cp-support.h (cp_lookup_rtti_type): Update.
10399 * cp-support.c (cp_lookup_rtti_type): Make "block" const.
10400 * psymtab.c (psym_lookup_symbol): Make "block" const.
10401 (maintenance_check_psymtabs): Make "b" const.
10402 * python/py-framefilter.c (extract_sym): Make "sym_block" const.
10403 (enumerate_locals, enumerate_args): Update.
10404 * python/py-symtab.c (stpy_global_block): Make "block" const.
10405 (stpy_static_block): Likewise.
10406 * inline-frame.c (block_starting_point_at): Make "new_block"
10407 const.
10408 * block.c (find_block_in_blockvector): Make return type const.
10409 (blockvector_for_pc_sect): Make "b" const.
10410 (find_block_in_blockvector): Make "b" const.
10411
10412 2019-03-23 Tom Tromey <tom@tromey.com>
10413
10414 * varobj.c (varobj_create): Update.
10415 * symfile.c (clear_symtab_users): Don't reset innermost_block.
10416 * printcmd.c (display_command, do_one_display): Don't reset
10417 innermost_block.
10418 * parser-defs.h (enum innermost_block_tracker_type): Move to
10419 expression.h.
10420 (innermost_block): Update comment.
10421 * parse.c (parse_exp_1): Add tracker_types parameter.
10422 (parse_exp_in_context): Rename from parse_exp_in_context_1. Add
10423 tracker_types parameter. Reset innermost_block.
10424 (parse_exp_in_context): Remove.
10425 (parse_expression_for_completion): Update.
10426 * objfiles.c (~objfile): Don't reset expression_context_block or
10427 innermost_block.
10428 * expression.h (enum innermost_block_tracker_type): Move from
10429 parser-defs.h.
10430 (parse_exp_1): Add tracker_types parameter.
10431 * breakpoint.c (set_breakpoint_condition, watch_command_1): Don't
10432 reset innermost_block.
10433
10434 2019-03-23 Tom Tromey <tom@tromey.com>
10435
10436 * objfiles.h: Include bcache.h.
10437
10438 2019-03-23 Tom Tromey <tom@tromey.com>
10439
10440 * linespec.c (get_current_search_block): Use
10441 scoped_restore_current_language.
10442 * symmisc.c (dump_symtab): Use scoped_restore_current_language.
10443
10444 2019-03-22 Alan Hayward <alan.hayward@arm.com>
10445 Jiong Wang <jiong.wang@arm.com>
10446
10447 * aarch64-linux-tdep.c
10448 (aarch64_linux_iterate_over_regset_sections): Check for pauth
10449 section.
10450 * aarch64-linux-tdep.h (AARCH64_LINUX_SIZEOF_PAUTH): New define.
10451
10452 2019-03-22 Alan Hayward <alan.hayward@arm.com>
10453 Jiong Wang <jiong.wang@arm.com>
10454
10455 * aarch64-tdep.c (aarch64_analyze_prologue): Check for pauth
10456 instructions.
10457 (aarch64_analyze_prologue_test): Add PACIASP test.
10458 (aarch64_prologue_prev_register): Unmask PC value.
10459
10460 2019-03-22 Alan Hayward <alan.hayward@arm.com>
10461 Jiong Wang <jiong.wang@arm.com>
10462
10463 * aarch64-tdep.c (aarch64_frame_unmask_address): New function.
10464 (aarch64_dwarf2_prev_register): Unmask PC value.
10465 (aarch64_dwarf2_frame_init_reg): Init pauth registers.
10466 (aarch64_execute_dwarf_cfa_vendor_op): Check for
10467 DW_CFA_AARCH64_negate_ra_state.
10468 (aarch64_gdbarch_init): Add aarch64_execute_dwarf_cfa_vendor_op.
10469
10470 2019-03-22 Alan Hayward <alan.hayward@arm.com>
10471 Jiong Wang <jiong.wang@arm.com>
10472
10473 * aarch64-tdep.c (aarch64_dwarf_reg_to_regnum): Check for pauth
10474 registers.
10475 (aarch64_pseudo_register_name): Likewise.
10476 (aarch64_pseudo_register_type): Likewise.
10477 (aarch64_pseudo_register_reggroup_p): Likewise.
10478 (aarch64_gdbarch_init): Add pauth registers.
10479 * aarch64-tdep.h (AARCH64_DWARF_PAUTH_RA_STATE): New define.
10480 (AARCH64_DWARF_PAUTH_DMASK): Likewise.
10481 (AARCH64_DWARF_PAUTH_CMASK): Likewise.
10482 (struct gdbarch_tdep): Add regnum for ra_state.
10483
10484 2019-03-22 Alan Hayward <alan.hayward@arm.com>
10485 Jiong Wang <jiong.wang@arm.com>
10486
10487 * arch/aarch64.h (AARCH64_PAUTH_REGS_SIZE): New define.
10488
10489 2019-03-22 Alan Hayward <alan.hayward@arm.com>
10490 Jiong Wang <jiong.wang@arm.com>
10491
10492 * aarch64-linux-nat.c (fetch_pauth_masks_from_thread): New
10493 function.
10494 (aarch64_linux_nat_target::fetch_registers): Read pauth registers.
10495 * aarch64-tdep.c (aarch64_cannot_store_register): New function.
10496 (aarch64_gdbarch_init): Add puth registers.
10497 * aarch64-tdep.h (struct gdbarch_tdep): Add pauth features.
10498 * arch/aarch64.h (AARCH64_PAUTH_DMASK_REGNUM): New define.
10499 (AARCH64_PAUTH_CMASK_REGNUM): Likewise.
10500
10501 2019-03-22 Alan Hayward <alan.hayward@arm.com>
10502 Jiong Wang <jiong.wang@arm.com>
10503
10504 * aarch64-linux-nat.c
10505 (aarch64_linux_nat_target::read_description): Read PACA hwcap.
10506 * aarch64-linux-tdep.c
10507 (aarch64_linux_core_read_description): Likewise.
10508 (aarch64_linux_get_hwcap): New function.
10509 * aarch64-linux-tdep.h (AARCH64_HWCAP_PACA): New define.
10510 (aarch64_linux_get_hwcap): New declaration.
10511
10512 2019-03-22 Alan Hayward <alan.hayward@arm.com>
10513 Jiong Wang <jiong.wang@arm.com>
10514
10515 * aarch64-linux-nat.c
10516 (aarch64_linux_nat_target::read_description): Add pauth param.
10517 * aarch64-linux-tdep.c
10518 (aarch64_linux_core_read_description): Likewise.
10519 * aarch64-tdep.c (struct target_desc): Add in pauth.
10520 (aarch64_read_description): Add pauth param.
10521 (aarch64_gdbarch_init): Likewise.
10522 * aarch64-tdep.h (aarch64_read_description): Likewise.
10523 * arch/aarch64.c (aarch64_create_target_description): Likewise.
10524 * arch/aarch64.h (aarch64_create_target_description): Likewise.
10525 * features/Makefile: Add new files.
10526 * features/aarch64-pauth.c: New file.
10527 * features/aarch64-pauth.xml: New file.
10528
10529 2019-03-20 Tom Tromey <tromey@adacore.com>
10530
10531 * infrun.c (handle_inferior_event): Rename from
10532 handle_inferior_event_1. Create a scoped_value_mark.
10533 (handle_inferior_event): Remove.
10534
10535 2019-03-19 Tom Tromey <tromey@adacore.com>
10536
10537 * mi/mi-interp.c (mi_on_normal_stop_1): Only show displays once.
10538 * infrun.h (print_stop_event): Add "displays" parameter.
10539 * infrun.c (print_stop_event): Add "displays" parameter.
10540
10541 2019-03-19 Pedro Alves <palves@redhat.com>
10542
10543 * tui/tui-out.c (tui_ui_out::do_field_string): Simplify.
10544 (tui_ui_out::do_text): Add comments. Reset M_LINE to 0 instead of
10545 to -1. Fix TABs vs spaces.
10546 (tui_ui_out::tui_ui_out): Don't initialize fields here.
10547 * tui/tui-out.h (tui_ui_out) Add intro comments.
10548 <m_line, m_start_of_line>: In-class initialize, and add describing
10549 comment.
10550
10551 2019-03-18 Alan Hayward <alan.hayward@arm.com>
10552
10553 * arm-linux-nat.c (arm_linux_insert_hw_breakpoint1): Fix
10554 variable names.
10555 (arm_linux_remove_hw_breakpoint1): Use a gdb::function_view.
10556
10557 2019-03-18 Pedro Alves <palves@redhat.com>
10558 Eli Zaretskii <eliz@gnu.org>
10559
10560 * tui/tui-out.c (tui_ui_out::tui_ui_out): Fix initialization of
10561 m_line and m_start_of_line.
10562
10563 2019-03-18 Eli Zaretskii <eliz@gnu.org>
10564
10565 * tui/tui-io.c (gdb_wgetch): Don't echo CR.
10566 (tui_getc): When gdb_wgetch returns a CR, behave the same as when
10567 it returns a newline. This fixes a regression in TU mode, whereby
10568 the next line is output on the same screen line as the user input.
10569
10570 2019-03-18 Tom Tromey <tromey@adacore.com>
10571
10572 * minsyms.c (minimal_symbol_reader::install): Remove call to
10573 obstack_blank.
10574
10575 2019-03-18 Pedro Alves <palves@redhat.com>
10576
10577 * tui/tui-io.c (reverse_mode_p, reverse_save_bg, reverse_save_fg):
10578 New globals.
10579 (apply_style): New, factored out from ...
10580 (apply_ansi_escape): ... this. Handle reverse video mode.
10581 (tui_set_reverse_mode): New function.
10582 * tui/tui-io.h (tui_set_reverse_mode): New declaration.
10583 * tui/tui-winsource.c (tui_show_source_line): Use
10584 tui_set_reverse_mode instead of setting A_STANDOUT.
10585 * ui-style.h (struct ui_file_style) <set_reverse, set_fg, set_bg>:
10586 New setter methods.
10587
10588 2019-03-18 Hannes Domani <ssbssa@yahoo.de>
10589
10590 * tui/tui-source.c (copy_source_line): Fix handling of 'column'.
10591 Handle tabs.
10592
10593 2019-03-18 Tom Tromey <tromey@adacore.com>
10594
10595 * ada-lang.c (empty_array): Add "high" parameter.
10596 (ada_evaluate_subexp): Update.
10597
10598 2019-03-17 Sergei Trofimovich <siarheit@google.com>
10599
10600 * unittests/string_view-selftests.c: Define
10601 _initialize_string_view_selftests unconditionally.
10602
10603 2019-03-17 Vladimir Martyanov <vilgeforce@gmail.com>
10604
10605 PR gdb/24350
10606 * windows-nat.c (windows_make_so): Remove unused text_vma variable.
10607
10608 2019-03-17 Vladimir Martyanov <vilgeforce@gmail.com>
10609
10610 PR gdb/24351
10611 * windows-nat.c (display_selector): Fix format specifiers.
10612
10613 2019-03-17 Eli Zaretskii <eliz@gnu.org>
10614
10615 * tui/tui-winsource.c (tui_set_is_exec_point_at): Call
10616 tui_refill_source_window instead of tui_refresh_win, to update the
10617 current execution line. This fixes redisplay of the current line
10618 when stepping through the code with "next" or "step".
10619
10620 2019-03-16 Eli Zaretskii <eliz@gnu.org>
10621
10622 * source-cache.c (source_cache::get_source_lines): Call
10623 find_source_lines to initialize s->nlines. This fixes vertical
10624 scrolling of TUI source window when the DOWN arrow is pressed.
10625
10626 2019-03-16 Philippe Waroquiers <philippe.waroquiers@skynet.be>
10627
10628 * auto-load.c (_initialize_auto_load): Fix 'This options has'.
10629 linux-thread-db.c (_initialize_thread_db): Likewise.
10630
10631 2019-03-16 Eli Zaretskii <eliz@gnu.org>
10632
10633 * tui/tui-winsource.c (tui_show_source_line): Revert "Use
10634 wclrtoeol in tui_show_source_line". This reverts changes made in
10635 commit 4a3045920bbe4e50a0f4920b0fdc4e88ef23015c.
10636
10637 2019-03-15 Tom Tromey <tom@tromey.com>
10638
10639 * symtab.h (struct minimal_symbol): Derive from
10640 general_symbol_info.
10641 (MSYMBOL_VALUE, MSYMBOL_VALUE_RAW_ADDRESS)
10642 (MSYMBOL_VALUE_ADDRESS, MSYMBOL_VALUE_BYTES)
10643 (MSYMBOL_BLOCK_VALUE, MSYMBOL_VALUE_CHAIN, MSYMBOL_LANGUAGE)
10644 (MSYMBOL_SECTION, MSYMBOL_OBJ_SECTION, MSYMBOL_NATURAL_NAME)
10645 (MSYMBOL_LINKAGE_NAME, MSYMBOL_DEMANGLED_NAME)
10646 (MSYMBOL_SEARCH_NAME): Update.
10647 (MSYMBOL_SET_LANGUAGE, MSYMBOL_SET_NAMES): Remove.
10648 * solib.c (gdb_bfd_lookup_symbol_from_symtab): Don't use memset.
10649 * minsyms.c (minimal_symbol_reader::record_full): Update.
10650
10651 2019-03-15 Tom Tromey <tom@tromey.com>
10652
10653 * minsyms.c (minimal_symbol_reader::install): Use memcpy.
10654
10655 2019-03-15 Tom Tromey <tom@tromey.com>
10656
10657 * objfiles.h (struct objfile_per_bfd_storage) <msymbols>: Now a
10658 unique_xmalloc_ptr.
10659 (objfile::msymbols_range::begin, objfile::msymbols_range::end):
10660 Update.
10661 * minsyms.c (lookup_minimal_symbol_by_pc_section)
10662 (build_minimal_symbol_hash_tables)
10663 (minimal_symbol_reader::install): Update.
10664
10665 2019-03-15 Tom Tromey <tom@tromey.com>
10666
10667 * symtab.c (create_demangled_names_hash): Update.
10668 (symbol_set_names): Update.
10669 * objfiles.h (struct objfile_per_bfd_storage)
10670 <demangled_names_hash>: Now an htab_up.
10671 * objfiles.c (objfile_per_bfd_storage): Simplify.
10672
10673 2019-03-15 Tom Tromey <tom@tromey.com>
10674
10675 * objfiles.h (struct objfile_per_bfd_storage): Declare
10676 destructor.
10677 * objfiles.c (objfile_per_bfd_storage::~objfile_per_bfd_storage):
10678 New.
10679 (get_objfile_bfd_data): Use new. Don't initialize
10680 language_of_main.
10681 (free_objfile_per_bfd_storage): Remove.
10682 (objfile_bfd_data_free, objfile::~objfile): Use delete.
10683
10684 2019-03-15 Tom Tromey <tom@tromey.com>
10685
10686 * symfile.c (reread_symbols): Update.
10687 * objfiles.c (objfile::objfile): Update.
10688 * minsyms.h (terminate_minimal_symbol_table): Don't declare.
10689 * minsyms.c (lookup_minimal_symbol_by_pc_section): Update
10690 comment.
10691 (minimal_symbol_reader::install): Update.
10692 (terminate_minimal_symbol_table): Remove.
10693 * jit.c (jit_object_close_impl): Update.
10694
10695 2019-03-15 Tom Tromey <tom@tromey.com>
10696
10697 * minsyms.c (minimal_symbol_reader::record_full): Remove some
10698 initializations.
10699
10700 2019-03-15 Tom Tromey <tom@tromey.com>
10701
10702 * objfiles.h (struct objfile_per_bfd_storage)
10703 <demangled_hash_languages>: Now a bitset.
10704 * minsyms.c (add_minsym_to_demangled_hash_table): Update.
10705 (lookup_minimal_symbol): Update.
10706
10707 2019-03-15 Tom Tromey <tom@tromey.com>
10708
10709 * minsyms.h (class minimal_symbol_reader) <record_with_info>:
10710 Don't return the symbol.
10711 * coffread.c (record_minimal_symbol): Use record_full.
10712
10713 2019-03-14 Eli Zaretskii <eliz@gnu.org>
10714
10715 The MS-Windows port of ncurses fails to switch to a color pair if
10716 one or both of the colors are the implicit default colors. This
10717 change records the default colors when TUI is initialized, and
10718 then specifies them explicitly when a color pair uses the default
10719 colors. This allows color styling in TUI mode on MS-Windows.
10720
10721 * tui/tui-io.c [__MINGW32__]: Include windows.h. Declare
10722 ncurses_norm_attr.
10723 (tui_initialize_io) [__MINGW32__]: Record the default terminal
10724 colors in ncurses_norm_attr.
10725 (apply_ansi_escape) [__MINGW32__]: If a color in a color pair is
10726 "none", replace it with the default color recorded in
10727 ncurses_norm_attr.
10728
10729 2019-03-14 Tom Tromey <tromey@adacore.com>
10730
10731 * source-cache.h (class source_cache) <get_source_lines>: Return
10732 std::string.
10733 * source-cache.c (source_cache::extract_lines): Handle case where
10734 first_pos==npos. Return std::string.
10735 (source_cache::get_source_lines): Update.
10736
10737 2019-03-14 Tom Tromey <tromey@adacore.com>
10738
10739 * NEWS: Add item for "style sources" commands.
10740 * source-cache.c (source_cache::get_source_lines): Check
10741 source_styling.
10742 * cli/cli-style.c (source_styling): New global.
10743 (_initialize_cli_style): Add "style sources" commands.
10744 (show_style_sources): New function.
10745 * cli/cli-style.h (source_styling): Declare.
10746
10747 2019-03-14 Pedro Alves <palves@redhat.com>
10748 Tom Tromey <tromey@adacore.com>
10749
10750 * tui/tui-winsource.h (tui_refill_source_window): Declare.
10751 * tui/tui-winsource.c (tui_refill_source_window): New function,
10752 from...
10753 (tui_horizontal_source_scroll): ... here. Move some logic.
10754 * cli/cli-style.c (set_style_enabled): Notify new observable.
10755 * tui/tui-hooks.c (tui_redisplay_source): New function.
10756 (tui_attach_detach_observers): Attach or detach
10757 tui_redisplay_source.
10758 * observable.h (source_styling_changed): New observable.
10759 * observable.c: Define source_styling_changed observable.
10760
10761 2019-03-13 Tom Tromey <tromey@adacore.com>
10762
10763 * i386-gnu-nat.c (i386_gnu_nat_target::fetch_registers)
10764 (i386_gnu_nat_target::store_registers): Update.
10765 * target-debug.h (target_debug_print_std_string): New macro.
10766 * x86-linux-nat.c (x86_linux_nat_target::enable_btrace): Update.
10767 * windows-tdep.c (display_one_tib): Update.
10768 * tui/tui-stack.c (tui_make_status_line): Update.
10769 * top.c (print_inferior_quit_action): Update.
10770 * thread.c (thr_try_catch_cmd): Update.
10771 (add_thread_with_info): Update.
10772 (thread_target_id_str): Update.
10773 (thr_try_catch_cmd): Update.
10774 (thread_command): Update.
10775 (thread_find_command): Update.
10776 * record-btrace.c (record_btrace_target::info_record)
10777 (record_btrace_resume_thread, record_btrace_target::resume)
10778 (record_btrace_cancel_resume, record_btrace_step_thread)
10779 (record_btrace_target::wait, record_btrace_target::wait)
10780 (record_btrace_target::wait, record_btrace_target::stop): Update.
10781 * progspace.c (print_program_space): Update.
10782 * process-stratum-target.c
10783 (process_stratum_target::thread_address_space): Update.
10784 * linux-fork.c (linux_fork_mourn_inferior)
10785 (detach_checkpoint_command, info_checkpoints_command)
10786 (linux_fork_context): Update.
10787 (linux_fork_detach): Update.
10788 (class scoped_switch_fork_info): Update.
10789 (delete_checkpoint_command): Update.
10790 * infrun.c (follow_fork_inferior): Update.
10791 (follow_fork_inferior): Update.
10792 (proceed_after_vfork_done): Update.
10793 (handle_vfork_child_exec_or_exit): Update.
10794 (follow_exec): Update.
10795 (displaced_step_prepare_throw): Update.
10796 (displaced_step_restore): Update.
10797 (start_step_over): Update.
10798 (resume_1): Update.
10799 (clear_proceed_status_thread): Update.
10800 (proceed): Update.
10801 (print_target_wait_results): Update.
10802 (do_target_wait): Update.
10803 (context_switch): Update.
10804 (stop_all_threads): Update.
10805 (restart_threads): Update.
10806 (finish_step_over): Update.
10807 (handle_signal_stop): Update.
10808 (switch_back_to_stepped_thread): Update.
10809 (keep_going_pass_signal): Update.
10810 (print_exited_reason): Update.
10811 (normal_stop): Update.
10812 * inferior.c (inferior_pid_to_str): Change return type.
10813 (print_selected_inferior): Update.
10814 (add_inferior): Update.
10815 (detach_inferior): Update.
10816 * dummy-frame.c (fprint_dummy_frames): Update.
10817 * dcache.c (dcache_info_1): Update.
10818 * btrace.c (btrace_enable, btrace_disable, btrace_teardown)
10819 (btrace_fetch, btrace_clear): Update.
10820 * linux-tdep.c (linux_core_pid_to_str): Change return type.
10821 * i386-cygwin-tdep.c (i386_windows_core_pid_to_str): Change return
10822 type.
10823 * fbsd-tdep.c (fbsd_core_pid_to_str): Change return type.
10824 * sol2-tdep.h (sol2_core_pid_to_str): Change return type.
10825 * sol2-tdep.c (sol2_core_pid_to_str): Change return type.
10826 * gdbarch.c, gdbarch.h: Rebuild.
10827 * gdbarch.sh (core_pid_to_str): Change return type.
10828 * windows-nat.c (struct windows_nat_target) <pid_to_str>: Change
10829 return type.
10830 (windows_nat_target::pid_to_str): Change return type.
10831 (windows_delete_thread): Update.
10832 (windows_nat_target::attach): Update.
10833 (windows_nat_target::files_info): Update.
10834 * target-delegates.c: Rebuild.
10835 * sol-thread.c (class sol_thread_target) <pid_to_str>: Change
10836 return type.
10837 (sol_thread_target::pid_to_str): Change return type.
10838 * remote.c (class remote_target) <pid_to_str>: Change return
10839 type.
10840 (remote_target::pid_to_str): Change return type.
10841 (extended_remote_target::attach, remote_target::remote_stop_ns)
10842 (remote_target::remote_notif_remove_queued_reply)
10843 (remote_target::push_stop_reply, remote_target::disable_btrace):
10844 Update.
10845 (extended_remote_target::attach): Update.
10846 * remote-sim.c (struct gdbsim_target) <pid_to_str>: Change return
10847 type.
10848 (gdbsim_target::pid_to_str): Change return type.
10849 * ravenscar-thread.c (struct ravenscar_thread_target)
10850 <pid_to_str>: Change return type.
10851 (ravenscar_thread_target::pid_to_str): Change return type.
10852 * procfs.c (class procfs_target) <pid_to_str>: Change return
10853 type.
10854 (procfs_target::pid_to_str): Change return type.
10855 (procfs_target::attach): Update.
10856 (procfs_target::detach): Update.
10857 (procfs_target::fetch_registers): Update.
10858 (procfs_target::store_registers): Update.
10859 (procfs_target::wait): Update.
10860 (procfs_target::files_info): Update.
10861 * obsd-nat.c (obsd_nat_target::pid_to_str): Change return type.
10862 * nto-procfs.c (struct nto_procfs_target) <pid_to_str>: Change
10863 return type.
10864 (nto_procfs_target::pid_to_str): Change return type.
10865 (nto_procfs_target::files_info, nto_procfs_target::attach): Update.
10866 * linux-thread-db.c (class thread_db_target) <pid_to_str>: Change
10867 return type.
10868 * linux-nat.c (linux_nat_target::pid_to_str): Change return type.
10869 (exit_lwp): Update.
10870 (attach_proc_task_lwp_callback, get_detach_signal)
10871 (detach_one_lwp, resume_lwp, linux_nat_target::resume)
10872 (linux_nat_target::resume, wait_lwp, stop_callback)
10873 (maybe_clear_ignore_sigint, stop_wait_callback, status_callback)
10874 (save_stop_reason, select_event_lwp, linux_nat_filter_event)
10875 (linux_nat_wait_1, resume_stopped_resumed_lwps)
10876 (linux_nat_target::wait, linux_nat_stop_lwp): Update.
10877 * inf-ptrace.c (inf_ptrace_target::pid_to_str): Change return
10878 type.
10879 (inf_ptrace_target::attach): Update.
10880 (inf_ptrace_target::files_info): Update.
10881 * go32-nat.c (struct go32_nat_target) <pid_to_str>: Change return
10882 type.
10883 (go32_nat_target::pid_to_str): Change return type.
10884 * gnu-nat.c (gnu_nat_target::pid_to_str): Change return type.
10885 (gnu_nat_target::wait): Update.
10886 (gnu_nat_target::wait): Update.
10887 (gnu_nat_target::resume): Update.
10888 * fbsd-nat.c (fbsd_nat_target::pid_to_str): Change return type.
10889 (fbsd_nat_target::wait): Update.
10890 * darwin-nat.c (darwin_nat_target::pid_to_str): Change return
10891 type.
10892 (darwin_nat_target::attach): Update.
10893 * corelow.c (class core_target) <pid_to_str>: Change return type.
10894 (core_target::pid_to_str): Change return type.
10895 * target.c (normal_pid_to_str): Change return type.
10896 (default_pid_to_str): Likewise.
10897 (target_pid_to_str): Change return type.
10898 (target_translate_tls_address): Update.
10899 (target_announce_detach): Update.
10900 * bsd-uthread.c (struct bsd_uthread_target) <pid_to_str>: Change
10901 return type.
10902 (bsd_uthread_target::pid_to_str): Change return type.
10903 * bsd-kvm.c (class bsd_kvm_target) <pid_to_str>: Change return
10904 type.
10905 (bsd_kvm_target::pid_to_str): Change return type.
10906 * aix-thread.c (class aix_thread_target) <pid_to_str>: Change
10907 return type.
10908 (aix_thread_target::pid_to_str): Change return type.
10909 * target.h (struct target_ops) <pid_to_str>: Change return type.
10910 (target_pid_to_str, normal_pid_to_str): Likewise.
10911 * obsd-nat.h (class obsd_nat_target) <pid_to_str>: Change return
10912 type.
10913 * linux-nat.h (class linux_nat_target) <pid_to_str>: Change return
10914 type.
10915 * inf-ptrace.h (struct inf_ptrace_target) <pid_to_str>: Change
10916 return type.
10917 * gnu-nat.h (struct gnu_nat_target) <pid_to_str>: Change return
10918 type.
10919 * fbsd-nat.h (class fbsd_nat_target) <pid_to_str>: Change return
10920 type.
10921 * darwin-nat.h (class darwin_nat_target) <pid_to_str>: Change
10922 return type.
10923
10924 2019-03-13 Simon Marchi <simon.marchi@ericsson.com>
10925
10926 * NEWS: Mention that the new default MI version is 3. Mention
10927 changes to the output of commands and events that deal with
10928 multi-location breakpoints.
10929 * breakpoint.c: Include "mi/mi-out.h".
10930 (print_one_breakpoint): Change output syntax if using MI version
10931 >= 3.
10932 * mi/mi-main.h (mi_cmd_fix_multi_location_breakpoint_output):
10933 New.
10934 (mi_multi_location_breakpoint_output_fixed): New.
10935 * mi/mi-main.c (fix_multi_location_breakpoint_output): New.
10936 (mi_cmd_fix_multi_location_breakpoint_output): New.
10937 (mi_multi_location_breakpoint_output_fixed): New.
10938 * mi/mi-cmds.c (mi_cmds): Register command
10939 -fix-multi-location-breakpoint-output.
10940 * mi/mi-out.c (mi_out_new): Instantiate version 3 when using
10941 interpreter "mi".
10942
10943 2019-03-13 Simon Marchi <simon.marchi@polymtl.ca>
10944
10945 * mi/mi-out.h (mi_out_new): Change parameter to const char *.
10946 * mi/mi-out.c (mi_out_new): Change parameter to const char *,
10947 instantiate mi_ui_out based on interpreter name.
10948 * mi/mi-interp.c (mi_interp::init): Use the new mi_out_new.
10949 * mi/mi-main.c (mi_load_progress): Likewise.
10950
10951 2019-03-12 John Baldwin <jhb@FreeBSD.org>
10952
10953 * NEWS: Combine separate "New targets" sections for 8.3.
10954
10955 2019-03-12 John Baldwin <jhb@FreeBSD.org>
10956
10957 * ppc-fbsd-tdep.c (ppcfbsd_get_thread_local_address): New.
10958 (ppcfbsd_init_abi): Install gdbarch
10959 "fetch_tls_load_module_address" and "get_thread_local_address"
10960 methods.
10961
10962 2019-03-12 John Baldwin <jhb@FreeBSD.org>
10963
10964 * riscv-fbsd-tdep.c (riscv_fbsd_get_thread_local_address): New.
10965 (riscv_fbsd_init_abi): Install gdbarch
10966 "fetch_tls_load_module_address" and "get_thread_local_address"
10967 methods.
10968
10969 2019-03-12 John Baldwin <jhb@FreeBSD.org>
10970
10971 * i386-fbsd-tdep.c (i386fbsd_get_thread_local_address): New.
10972 (i386fbsd_init_abi): Install gdbarch
10973 "fetch_tls_load_module_address" and "get_thread_local_address"
10974 methods.
10975
10976 2019-03-12 John Baldwin <jhb@FreeBSD.org>
10977
10978 * amd64-fbsd-tdep.c (amd64fbsd_get_thread_local_address): New.
10979 (amd64fbsd_init_abi): Install gdbarch
10980 "fetch_tls_load_module_address" and "get_thread_local_address"
10981 methods.
10982
10983 2019-03-12 John Baldwin <jhb@FreeBSD.org>
10984
10985 * fbsd-tdep.c (fbsd_pspace_data_handle): New variable.
10986 (struct fbsd_pspace_data): New type.
10987 (get_fbsd_pspace_data, fbsd_pspace_data_cleanup)
10988 (fbsd_read_integer_by_name, fbsd_fetch_rtld_offsets)
10989 (fbsd_get_tls_index, fbsd_get_thread_local_address): New function.
10990 (_initialize_fbsd_tdep): Initialize 'fbsd_pspace_data_handle'.
10991 * fbsd-tdep.c (fbsd_get_thread_local_address): New prototype.
10992
10993 2019-03-12 John Baldwin <jhb@FreeBSD.org>
10994
10995 * gdbtypes.c (lookup_struct_elt): New function.
10996 (lookup_struct_elt_type): Reimplement via lookup_struct_elt.
10997 * gdbtypes.h (struct struct_elt): New type.
10998 (lookup_struct_elt): New prototype.
10999
11000 2019-03-12 John Baldwin <jhb@FreeBSD.org>
11001
11002 * gdbtypes.c (lookup_struct_elt_type): Update comment and
11003 remove disabled code block.
11004
11005 2019-03-12 John Baldwin <jhb@FreeBSD.org>
11006
11007 * gdbarch.sh (get_thread_local_address): New method.
11008 * gdbarch.h, gdbarch.c: Regenerate.
11009 * target.c (target_translate_tls_address): Use
11010 gdbarch_get_thread_local_address if present instead of
11011 target::get_thread_local_address.
11012
11013 2019-03-12 John Baldwin <jhb@FreeBSD.org>
11014
11015 * target.h (target::get_thread_local_address): Update comment.
11016
11017 2019-03-12 John Baldwin <jhb@FreeBSD.org>
11018
11019 * solib-svr4.c (svr4_fetch_objfile_link_map): Look for
11020 objfile->separate_debug_objfile_backlink if not NULL.
11021
11022 2019-03-12 John Baldwin <jhb@FreeBSD.org>
11023
11024 * amd64-bsd-nat.c (amd64bsd_fetch_inferior_registers): Use
11025 tdep->fsbase_regnum instead of constants for fs_base and gs_base.
11026 (amd64bsd_store_inferior_registers): Likewise.
11027 * amd64-fbsd-nat.c (amd64_fbsd_nat_target::read_description):
11028 Enable segment base registers.
11029 * i386-bsd-nat.c (i386bsd_fetch_inferior_registers): Use
11030 PT_GETFSBASE and PT_GETGSBASE.
11031 (i386bsd_store_inferior_registers): Use PT_SETFSBASE and
11032 PT_SETGSBASE.
11033 * i386-fbsd-nat.c (i386_fbsd_nat_target::read_description): Enable
11034 segment base registers.
11035 * i386-fbsd-tdep.c (i386fbsd_core_read_description): Likewise.
11036
11037 2019-03-12 John Baldwin <jhb@FreeBSD.org>
11038
11039 * amd64-fbsd-nat.c (amd64_fbsd_nat_target::read_description):
11040 Update calls to i386_target_description to add 'segments'
11041 parameter.
11042 * amd64-tdep.c (amd64_init_abi): Set tdep->fsbase_regnum. Don't
11043 add segment base registers.
11044 * arch/i386.c (i386_create_target_description): Add 'segments'
11045 parameter to enable segment base registers.
11046 * arch/i386.h (i386_create_target_description): Likewise.
11047 * features/i386/32bit-segments.xml: New file.
11048 * features/i386/32bit-segments.c: Generate.
11049 * i386-fbsd-nat.c (i386_fbsd_nat_target::read_description): Update
11050 call to i386_target_description to add 'segments' parameter.
11051 * i386-fbsd-tdep.c (i386fbsd_core_read_description): Likewise.
11052 * i386-go32-tdep.c (i386_go32_init_abi): Likewise.
11053 * i386-linux-tdep.c (i386_linux_read_description): Likewise.
11054 * i386-tdep.c (i386_validate_tdesc_p): Add segment base registers
11055 if feature is present.
11056 (i386_gdbarch_init): Pass I386_NUM_REGS to set_gdbarch_num_regs.
11057 Add 'segments' parameter to call to i386_target_description.
11058 (i386_target_description): Add 'segments' parameter to enable
11059 segment base registers.
11060 (_initialize_i386_tdep) [GDB_SELF_TEST]: Add 'segments' parameter
11061 to call to i386_target_description.
11062 * i386-tdep.h (struct gdbarch_tdep): Add 'fsbase_regnum'.
11063 (enum i386_regnum): Add I386_FSBASE_REGNUM and I386_GSBASE_REGNUM.
11064 Define I386_NUM_REGS.
11065 (i386_target_description): Add 'segments' parameter to enable
11066 segment base registers.
11067
11068 2019-03-12 Eli Zaretskii <eliz@gnu.org>
11069
11070 PR/24325
11071 * source-cache.c: #undef open and close, to avoid unresolved
11072 externals during linking.
11073
11074 2019-03-12 Tom Tromey <tromey@adacore.com>
11075
11076 * remote.c (magic_null_ptid, not_sent_ptid, any_thread_ptid): Now
11077 const. Add initializers.
11078 (_initialize_remote): Don't initialize ptid globals.
11079
11080 2019-03-12 Pedro Alves <palves@redhat.com>
11081
11082 * yy-remap.h [TEST_CPNAMES] (YYFPRINTF): Don't define.
11083
11084 2019-03-12 Pedro Alves <palves@redhat.com>
11085
11086 * cp-name-parser.y (main): Remove unused 'len' variable.
11087
11088 2019-03-12 Tom Tromey <tromey@adacore.com>
11089
11090 * common/ptid.c (null_ptid, minus_one_ptid): Now const.
11091 * common/ptid.h (null_ptid, minus_one_ptid): Now const.
11092
11093 2019-03-12 Tom Tromey <tromey@adacore.com>
11094
11095 * linux-nat.c (iterate_over_lwps): Update.
11096 (stop_callback): Remove parameter.
11097 (stop_wait_callback, detach_callback, resume_set_callback)
11098 (select_singlestep_lwp_callback, set_ignore_sigint)
11099 (status_callback, resumed_callback, resume_clear_callback)
11100 (kill_callback, kill_wait_callback, linux_nat_stop_lwp): Remove
11101 data parameter.
11102 (linux_nat_target::detach, linux_nat_target::resume)
11103 (linux_stop_and_wait_all_lwps, select_event_lwp)
11104 (linux_nat_filter_event, linux_nat_wait_1)
11105 (linux_nat_target::kill, linux_nat_target::stop)
11106 (linux_nat_target::stop): Update.
11107 (linux_nat_resume_callback): Change type.
11108 (resume_stopped_resumed_lwps, count_events_callback)
11109 (select_event_lwp_callback): Likewise.
11110 (linux_stop_lwp, linux_nat_stop_lwp): Update.
11111 * arm-linux-nat.c (struct update_registers_data): Remove.
11112 (update_registers_callback): Change type.
11113 (arm_linux_insert_hw_breakpoint1): Update.
11114 * nat/x86-linux-dregs.c (update_debug_registers_callback): Remove
11115 parameter.
11116 (x86_linux_dr_set_addr): Update.
11117 (x86_linux_dr_set_control): Update.
11118 * nat/linux-nat.h (iterate_over_lwps_ftype): Remove parameter.
11119 (iterate_over_lwps): Use gdb::function_view.
11120 * nat/aarch64-linux-hw-point.c (struct
11121 aarch64_dr_update_callback_param): Remove.
11122 (debug_reg_change_callback): Change type.
11123 (aarch64_notify_debug_reg_change): Update.
11124 * s390-linux-nat.c (s390_refresh_per_info): Update.
11125
11126 2019-03-11 Tom Tromey <tromey@adacore.com>
11127
11128 * dwarf2read.c (dwarf2_find_containing_comp_unit): Remove
11129 redundant assignment to "this_cu".
11130
11131 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11132
11133 * gdbtypes.c (rank_one_type): Remove unnecessary cases from switch.
11134
11135 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11136
11137 * gdbtypes.c (rank_one_type_parm_set): New function extracted
11138 from...
11139 (rank_one_type): ... this.
11140
11141 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11142
11143 * gdbtypes.c (rank_one_type_parm_struct): New function extracted
11144 from...
11145 (rank_one_type): ... this.
11146
11147 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11148
11149 * gdbtypes.c (rank_one_type_parm_complex): New function extracted
11150 from...
11151 (rank_one_type): ... this.
11152
11153 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11154
11155 * gdbtypes.c (rank_one_type_parm_float): New function extracted
11156 from...
11157 (rank_one_type): ... this.
11158
11159 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11160
11161 * gdbtypes.c (rank_one_type_parm_bool): New function extracted
11162 from...
11163 (rank_one_type): ... this.
11164
11165 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11166
11167 * gdbtypes.c (rank_one_type_parm_range): New function extracted
11168 from...
11169 (rank_one_type): ... this.
11170
11171 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11172
11173 * gdbtypes.c (rank_one_type_parm_char): New function extracted
11174 from...
11175 (rank_one_type): ... this.
11176
11177 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11178
11179 * gdbtypes.c (rank_one_type_parm_enum): New function extracted
11180 from...
11181 (rank_one_type): ... this.
11182
11183 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11184
11185 * gdbtypes.c (rank_one_type_parm_int): New function extracted
11186 from...
11187 (rank_one_type): ... this.
11188
11189 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11190
11191 * gdbtypes.c (rank_one_type_parm_func): New function extracted
11192 from...
11193 (rank_one_type): ... this.
11194
11195 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11196
11197 * gdbtypes.c (rank_one_type_parm_array): New function extracted
11198 from...
11199 (rank_one_type): ... this.
11200
11201 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
11202
11203 * gdbtypes.c (rank_one_type_parm_ptr): New function extracted
11204 from...
11205 (rank_one_type): ... this.
11206
11207 2019-02-27 Philippe Waroquiers <philippe.waroquiers@skynet.be>
11208
11209 * inferior.c (initialize_inferiors): Ensure 'help set/show print
11210 inferior-events' shows the example events.
11211
11212 2019-03-08 Eli Zaretskii <eliz@gnu.org>
11213
11214 Support styling on native MS-Windows console
11215
11216 PR/24315
11217 * utils.c (can_emit_style_escape) [_WIN32]: Don't disable styling
11218 on MS-Windows if $TERM is not defined.
11219
11220 * cli/cli-style.c: Set cli_styling to 1 in the MinGW build.
11221
11222 * posix-hdep.c (gdb_console_fputs):
11223 * mingw-hdep.c (rgb_to_16colors, gdb_console_fputs): New
11224 functions.
11225 * ui-file.h (gdb_console_fputs): Add prototype.
11226
11227 * ui-file.c (stdio_file::puts): Call gdb_console_fputs, and fall
11228 back to fputs only if the former returns zero.
11229
11230 2019-03-07 Tom Tromey <tom@tromey.com>
11231
11232 * symmisc.c (print_symbol_bcache_statistics): Update.
11233 (print_objfile_statistics): Update.
11234 * symfile.c (allocate_symtab): Update.
11235 * stabsread.c: Don't include bcache.h.
11236 * psymtab.h (struct psymbol_bcache): Don't declare.
11237 (class psymtab_storage) <psymbol_cache>: Now a bcache.
11238 (psymbol_bcache_init, psymbol_bcache_free)
11239 (psymbol_bcache_get_bcache): Don't declare.
11240 * psymtab.c (struct psymbol_bcache): Remove.
11241 (psymtab_storage::psymtab_storage): Update.
11242 (psymtab_storage::~psymtab_storage): Update.
11243 (psymbol_bcache_init, psymbol_bcache_free)
11244 (psymbol_bcache_get_bcache, psymbol_bcache_full): Remove.
11245 (add_psymbol_to_bcache): Update.
11246 (allocate_psymtab): Update.
11247 * objfiles.h (struct objfile_per_bfd_storage) <filename_cache,
11248 macro_cache>: No longer pointers.
11249 * objfiles.c (get_objfile_bfd_data): Don't call bcache_xmalloc.
11250 (free_objfile_per_bfd_storage): Don't call bcache_xfree.
11251 * macrotab.c (macro_bcache): Update.
11252 * macroexp.c: Don't include bcache.h.
11253 * gdbtypes.c (check_types_worklist): Update.
11254 (types_deeply_equal): Remove TRY/CATCH. Update.
11255 * elfread.c (elf_symtab_read): Update.
11256 * dwarf2read.c: Don't include bcache.h.
11257 * buildsym.c (buildsym_compunit::get_macro_table): Update.
11258 * bcache.h (bcache, bcache_full, bcache_xffree, bcache_xmalloc)
11259 (print_bcache_statistics, bcache_memory_used): Don't declare.
11260 (struct bcache): Move from bcache.c. Add constructor, destructor,
11261 methods. Rename all data members.
11262 * bcache.c (struct bcache): Move to bcache.h.
11263 (bcache::expand_hash_table): Rename from expand_hash_table.
11264 (bcache): Remove.
11265 (bcache::insert): Rename from bcache_full.
11266 (bcache::compare): Rename from bcache_compare.
11267 (bcache_xmalloc): Remove.
11268 (bcache::~bcache): Rename from bcache_xfree.
11269 (bcache::print_statistics): Rename from print_bcache_statistics.
11270 (bcache::memory_used): Rename from bcache_memory_used.
11271
11272 2019-03-07 Pedro Alves <palves@redhat.com>
11273
11274 * infrun.c (normal_stop): Also check for
11275 TARGET_WAITKIND_NO_RESUMED before referring to inferior_thread().
11276
11277 2019-03-07 Andrew Burgess <andrew.burgess@embecosm.com>
11278
11279 * f-lang.c (value_from_host_double): Moved to...
11280 * value.c (value_from_host_double): ...here.
11281 * value.h (value_from_host_double): Declare.
11282 * guile/scm-math.c (vlscm_convert_typed_number): Use
11283 value_from_host_double.
11284 (vlscm_convert_number): Likewise.
11285 * guile/scm-value.c (gdbscm_value_to_real): Likewise.
11286 * python/py-value.c (convert_value_from_python): Likewise.
11287
11288 2019-03-06 Tom Tromey <tom@tromey.com>
11289
11290 * gcore.c (write_gcore_file): Use SCOPE_EXIT.
11291
11292 2019-03-06 Tom Tromey <tom@tromey.com>
11293
11294 * utils.h (free_current_contents): Don't declare.
11295 * utils.c (free_current_contents): Remove.
11296
11297 2019-03-06 Tom Tromey <tom@tromey.com>
11298
11299 * top.c (quit_force): Update.
11300 * main.c (captured_command_loop): Update.
11301 * common/new-op.c (operator new): Update.
11302 * common/common-exceptions.c (struct catcher)
11303 <save_cleanup_chain>: Remove member.
11304 (exceptions_state_mc_init): Update.
11305 (exception_try_scope_entry): Return nullptr.
11306 (exception_try_scope_exit, exception_rethrow)
11307 (throw_exception_sjlj, throw_exception_cxx): Update.
11308 * common/cleanups.h (make_cleanup, make_cleanup_dtor)
11309 (all_cleanups, do_cleanups, discard_cleanups)
11310 (discard_final_cleanups, save_cleanups, save_final_cleanups)
11311 (restore_cleanups, restore_final_cleanups): Don't declare.
11312 (do_final_cleanups): Remove parameter.
11313 * common/cleanups.c (cleanup_chain, make_cleanup)
11314 (make_cleanup_dtor, all_cleanups, do_cleanups)
11315 (discard_my_cleanups, discard_cleanups)
11316 (discard_final_cleanups, save_my_cleanups, save_cleanups)
11317 (save_final_cleanups, restore_my_cleanups, restore_cleanups)
11318 (null_cleanup): Remove.
11319 (do_final_cleanups): Remove parameter.
11320
11321 2019-03-06 Tom Tromey <tom@tromey.com>
11322
11323 * remote.c (remote_target::remote_parse_stop_reply): Use
11324 unique_xmalloc_ptr.
11325
11326 2019-03-06 Tom Tromey <tom@tromey.com>
11327
11328 * stabsread.c (struct stabs_field_info): Rename from field_info.
11329 <list, fnlist>: Add initializers.
11330 <obstack>: New member.
11331 (read_member_functions, read_struct_fields, read_baseclasses):
11332 Allocate on obstack. Don't use cleanups.
11333 (read_one_struct_field, read_member_functions, read_struct_fields)
11334 (read_baseclasses, read_tilde_fields, attach_fn_fields_to_type)
11335 (attach_fields_to_type, read_cpp_abbrev, read_member_functions)
11336 (read_struct_type): Update.
11337
11338 2019-03-06 Tom Tromey <tom@tromey.com>
11339
11340 * nat/linux-namespaces.c (linux_mntns_access_fs): Use SCOPE_EXIT.
11341 * common/filestuff.h (make_cleanup_close): Don't declare.
11342 * common/filestuff.c (do_close_cleanup, make_cleanup_close):
11343 Remove.
11344
11345 2019-03-06 Tom Tromey <tom@tromey.com>
11346
11347 * solib-aix.c: Use make_scope_exit.
11348
11349 2019-03-06 Tom Tromey <tom@tromey.com>
11350
11351 * solib-svr4.c (svr4_parse_libraries, svr4_current_sos_direct):
11352 Use make_scope_exit.
11353
11354 2019-03-06 Tom Tromey <tom@tromey.com>
11355
11356 * solib-svr4.c (disable_probes_interface): Remove parameter.
11357 (svr4_handle_solib_event): Use make_scope_exit.
11358
11359 2019-03-06 Tom Tromey <tom@tromey.com>
11360
11361 * remote.c (struct stop_reply_deleter): Remove.
11362 (stop_reply_up): Update.
11363 (struct stop_reply): Derive from notif_event. Don't typedef.
11364 <regcache>: Now a std::vector.
11365 (stop_reply_xfree): Remove.
11366 (stop_reply::~stop_reply): Rename from stop_reply_dtr.
11367 (remote_notif_stop_alloc_reply): Return a unique_ptr. Use new.
11368 (remote_target::discard_pending_stop_replies): Use delete.
11369 (remote_target::remote_parse_stop_reply): Update.
11370 (remote_target::process_stop_reply): Update.
11371 * remote-notif.h (struct notif_event): Add virtual destructor.
11372 Remove "dtr" member.
11373 (struct notif_client) <alloc_event>: Return a unique_ptr.
11374 (notif_event_xfree): Don't declare.
11375 (notif_event_up): New typedef.
11376 * remote-notif.c (remote_notif_ack, remote_notif_parse): Update.
11377 (notif_event_xfree, do_notif_event_xfree): Remove.
11378 (remote_notif_state_xfree): Update.
11379
11380 2019-03-06 Tom Tromey <tom@tromey.com>
11381
11382 * infrun.c (displaced_step_clear_cleanup): Now a
11383 forward_scope_exit type.
11384 (displaced_step_prepare_throw): Update.
11385 (displaced_step_fixup): Update.
11386
11387 2019-03-06 Tom Tromey <tom@tromey.com>
11388
11389 * inferior.h (class inferior): Update comment.
11390 * gdbthread.h (class thread_info): Update comment.
11391
11392 2019-03-06 Joel Brobecker <brobecker@adacore.com>
11393 Tom Tromey <tom@tromey.com>
11394
11395 * stabsread.h (struct stab_section_list): Remove.
11396 (coffstab_build_psymtabs): Update.
11397 * dbxread.c (symbuf_sections): Now a std::vector.
11398 (sect_idx): New global.
11399 (fill_symbuf): Update.
11400 (coffstab_build_psymtabs): Change type of stabsects parameter.
11401 Update.
11402 * coffread.c (struct coff_symfile_info) <stabsects>: Now a
11403 std::vector.
11404 (linetab, linetab_offset, linetab_size, stringtab): Move earlier.
11405 (coff_locate_sections): Update.
11406 (coff_symfile_read): Remove cleanups. Update.
11407 (init_stringtab): Add storage parameter.
11408 (free_stringtab, free_stringtab_cleanup): Remove.
11409 (init_lineno): Add storage parameter.
11410 (free_linetab, free_linetab_cleanup): Remove.
11411
11412 2019-03-06 Pedro Alves <palves@redhat.com>
11413
11414 * linux-fork.c (fork_info::clobber_regs): Delete.
11415 (fork_load_infrun_state): Remove reference to 'clobber_regs'.
11416 (fork_save_infrun_state): Remove 'clobber_regs' parameter. Update
11417 comment. Adjust.
11418 (scoped_switch_fork_info::scoped_switch_fork_info)
11419 (checkpoint_command, linux_fork_context): Adjust
11420 fork_save_infrun_state calls.
11421
11422 2019-03-06 Pedro Alves <palves@redhat.com>
11423
11424 * linux-fork.c (inf_has_multiple_thread_cb): Delete.
11425 (inf_has_multiple_threads): Return 'bool' and rewrite using
11426 inferior_info::threads().
11427
11428 2019-03-06 Pedro Alves <palves@redhat.com>
11429
11430 * linux-fork.c: Include <list>.
11431 (fork_list): Now a std::list instance.
11432 (fork_info): Add ctor, dtor, and in-class initialize all fields.
11433 (forks_exist_p, find_last_fork): Adjust.
11434 (new_fork): Delete.
11435 (one_fork_p): New.
11436 (add_fork): Adjust.
11437 (free_fork): Delete, folded into fork_info::~fork_info().
11438 (delete_fork, find_fork_ptid, find_fork_id, find_fork_pid):
11439 Adjust.
11440 (init_fork_list): Delete.
11441 (linux_fork_killall, linux_fork_mourn_inferior)
11442 (linux_fork_detach, info_checkpoints_command): Adjust.
11443 (_initialize_linux_fork): No longer call init_fork_list.
11444
11445 2019-03-06 Pedro Alves <palves@redhat.com>
11446
11447 * linux-fork.c (new_fork): New, split out of ...
11448 (add_fork): ... this. Return void. Move "first fork" special
11449 case from here, to ...
11450 (checkpoint_command): ... here.
11451 * linux-linux.h (add_fork): Return void.
11452
11453 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
11454
11455 * f-exp.y (direct_abs_decl): Handle TYPE*SIZE type names.
11456
11457 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
11458 Chris January <chris.january@arm.com>
11459 David Lecomber <david.lecomber@arm.com>
11460
11461 * f-exp.y: New token, UNOP_INTRINSIC.
11462 (exp): New pattern using UNOP_INTRINSIC token.
11463 (f77_keywords): Add 'abs' keyword.
11464 * f-lang.c: Add 'target-float.h' and 'math.h' includes.
11465 (value_from_host_double): New function.
11466 (evaluate_subexp_f): Support UNOP_ABS.
11467
11468 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
11469
11470 * f-lang.c (build_fortran_types): Use TYPE_CODE_CHAR for character
11471 types.
11472
11473 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
11474
11475 * f-exp.y (convert_to_kind_type): Handle integer (kind=8).
11476 * f-lang.c (build_fortran_types): Setup builtin_integer_s8.
11477 * f-lang.h (struct builtin_f_type): Add builtin_integer_s8 field.
11478
11479 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
11480
11481 * f-exp.y (convert_to_kind_type): Handle more type kinds.
11482
11483 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
11484 Chris January <chris.january@arm.com>
11485
11486 * expprint.c (dump_subexp_body_standard): Support UNOP_KIND.
11487 * f-exp.y: Define 'KIND' token.
11488 (exp): New pattern for KIND expressions.
11489 (ptype): Handle types with a kind extension.
11490 (direct_abs_decl): Extend to spot kind extensions.
11491 (f77_keywords): Add 'kind' to the list.
11492 (push_kind_type): New function.
11493 (convert_to_kind_type): New function.
11494 * f-lang.c (evaluate_subexp_f): Support UNOP_KIND.
11495 * parse.c (operator_length_standard): Likewise.
11496 * parser-defs.h (enum type_pieces): Add tp_kind.
11497 * std-operator.def: Add UNOP_KIND.
11498
11499 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
11500
11501 * f-exp.y (f_parse): Set yydebug.
11502
11503 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
11504
11505 * f-lang.c (evaluate_subexp_f): New function.
11506 (exp_descriptor_f): New global.
11507 (f_language_defn): Use exp_descriptor_f instead of
11508 exp_descriptor_standard.
11509
11510 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
11511
11512 * f-exp.y (struct token): Add comments.
11513 (dot_ops): Remove uppercase versions and the end marker.
11514 (f77_keywords): Likewise.
11515 (yylex): Use ARRAY_SIZE to iterate over dot_ops, assert all
11516 entries in the dot_ops array are case insensitive, and use
11517 strncasecmp to compare strings. Also some whitespace cleanup in
11518 this area. Similar for the f77_keywords array, except entries in
11519 this list might be case sensitive.
11520
11521 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
11522
11523 * f-exp.y (struct f77_boolean_val): Add comments.
11524 (boolean_values): Remove uppercase versions, and end marker.
11525 (yylex): Use ARRAY_SIZE for iterating over boolean_values array,
11526 and use strncasecmp to achieve case insensitivity. Additionally,
11527 perform whitespace cleanup around this code.
11528
11529 2019-03-06 Tom Tromey <tromey@adacore.com>
11530
11531 * remote-sim.c (gdbsim_target_open): Use result of
11532 gdb_argv::release.
11533
11534 2019-03-06 Richard Bunt <richard.bunt@arm.com>
11535 Dirk Schubert <dirk.schubert@arm.com>
11536 Chris January <chris.january@arm.com>
11537
11538 * eval.c (evaluate_subexp_standard): Call Fortran argument
11539 wrapping logic.
11540 * f-lang.c (struct value): A value which can be passed into a
11541 Fortran function call.
11542 (fortran_argument_convert): Wrap Fortran arguments in a pointer
11543 where appropriate.
11544 (struct type): Value ready for a Fortran function call.
11545 (fortran_preserve_arg_pointer): Undo check_typedef, the pointer
11546 is needed.
11547 * f-lang.h (fortran_argument_convert): Declaration.
11548 (fortran_preserve_arg_pointer): Declaration.
11549 * infcall.c (value_arg_coerce): Call Fortran argument logic.
11550
11551 2019-03-05 Tom Tromey <tromey@adacore.com>
11552
11553 * python/py-prettyprint.c (print_string_repr): Remove #if.
11554 * python/py-utils.c (unicode_to_encoded_string): Remove #if.
11555
11556 2019-03-05 Tom Tromey <tromey@adacore.com>
11557
11558 * target.c (the_dummy_target): Move later. Change type to
11559 "dummy_target".
11560 (initialize_targets): Don't initialize the_dummy_target.
11561
11562 2019-03-05 Tom Tromey <tromey@adacore.com>
11563
11564 * gdb_bfd.c (gdb_bfd_fdopenr): Remove.
11565 * gdb_bfd.h (gdb_bfd_fdopenr): Don't declare.
11566
11567 2019-03-05 Tom Tromey <tromey@adacore.com>
11568
11569 * windows-nat.c (windows_nat_target::attach)
11570 (windows_nat_target::detach): Don't call gdb_flush.
11571 * valprint.c (generic_val_print, val_print, val_print_string):
11572 Don't call gdb_flush.
11573 * utils.c (defaulted_query): Don't call gdb_flush.
11574 * typeprint.c (print_type_scalar): Don't call gdb_flush.
11575 * target.c (target_announce_detach): Don't call gdb_flush.
11576 * sparc64-tdep.c (adi_print_versions): Don't call gdb_flush.
11577 * remote.c (extended_remote_target::attach): Don't call
11578 gdb_flush.
11579 * procfs.c (procfs_target::detach): Don't call gdb_flush.
11580 * printcmd.c (do_examine): Don't call gdb_flush.
11581 (info_display_command): Don't call gdb_flush.
11582 * p-valprint.c (pascal_val_print): Don't call gdb_flush.
11583 * nto-procfs.c (nto_procfs_target::attach): Don't call gdb_flush.
11584 * memattr.c (info_mem_command): Don't call gdb_flush.
11585 * mdebugread.c (mdebug_build_psymtabs): Don't call gdb_flush.
11586 * m2-valprint.c (m2_val_print): Don't call gdb_flush.
11587 * infrun.c (follow_exec, handle_command): Don't call gdb_flush.
11588 * inf-ptrace.c (inf_ptrace_target::attach): Don't call gdb_flush.
11589 * hppa-tdep.c (unwind_command): Don't call gdb_flush.
11590 * gnu-nat.c (gnu_nat_target::attach): Don't call gdb_flush.
11591 (gnu_nat_target::detach): Don't call gdb_flush.
11592 * f-valprint.c (f_val_print): Don't call gdb_flush.
11593 * darwin-nat.c (darwin_nat_target::attach): Don't call gdb_flush.
11594 * cli/cli-script.c (read_command_lines): Don't call gdb_flush.
11595 * cli/cli-cmds.c (shell_escape, print_disassembly): Don't call
11596 gdb_flush.
11597 * c-valprint.c (c_val_print): Don't call gdb_flush.
11598 * ada-valprint.c (ada_print_scalar): Don't call gdb_flush.
11599
11600 2019-03-05 Tom Tromey <tromey@adacore.com>
11601
11602 * varobj.c (update_dynamic_varobj_children): Update.
11603 (install_default_visualizer): Use reset, not release.
11604 * value.c (set_internalvar): Update.
11605 * dwarf2loc.c (value_of_dwarf_reg_entry): Update.
11606 * common/gdb_ref_ptr.h (class ref_ptr) <release>: Add
11607 ATTRIBUTE_UNUSED_RESULT.
11608
11609 2019-03-05 Tom Tromey <tromey@adacore.com>
11610
11611 * remote.c (class scoped_remote_fd) <release>: Add
11612 ATTRIBUTE_UNUSED_RESULT.
11613
11614 2019-03-05 Tom Tromey <tromey@adacore.com>
11615
11616 * macroexp.c (struct macro_buffer) <release>: Add
11617 ATTRIBUTE_UNUSED_RESULT.
11618
11619 2019-03-05 Tom Tromey <tromey@adacore.com>
11620
11621 * nat/linux-btrace.c (linux_enable_bts, linux_enable_pt): Update.
11622 * common/scoped_mmap.h (class scoped_mmap) <release>: Add
11623 ATTRIBUTE_UNUSED_RESULT.
11624
11625 2019-03-05 Tom Tromey <tromey@adacore.com>
11626
11627 * common/scoped_fd.h (class scoped_fd) <release>: Add
11628 ATTRIBUTE_UNUSED_RESULT.
11629
11630 2019-03-05 Tom Tromey <tromey@adacore.com>
11631
11632 * parser-defs.h (struct parser_state) <release>: Add
11633 ATTRIBUTE_UNUSED_RESULT.
11634
11635 2019-03-05 Tom Tromey <tromey@adacore.com>
11636
11637 * utils.h (class gdb_argv) <release>: Add
11638 ATTRIBUTE_UNUSED_RESULT.
11639 * common/common-defs.h (ATTRIBUTE_UNUSED_RESULT): Define.
11640
11641 2019-03-02 Eli Zaretskii <eliz@gnu.org>
11642
11643 * xml-syscall.c (xml_list_syscalls_by_group): Drop 'struct' from
11644 for-loop range, to avoid compiler warnings.
11645
11646 * tui/tui.c (tui_enable) [__MINGW32__]: Don't declare 'cap', to
11647 avoid compiler warnings about unused variables.
11648
11649 * NEWS: Mention end of support for native debugging on MS-Windows
11650 before XP.
11651
11652 PR gdb/24292
11653 * common/netstuff.c:
11654 * gdbserver/gdbreplay.c
11655 * gdbserver/remote-utils.c:
11656 * ser-tcp.c:
11657 * unittests/parse-connection-spec-selftests.c [USE_WIN32API]:
11658 Include ws2tcpip.h instead of wsiapi.h and winsock2.h. Redefine
11659 _WIN32_WINNT to 0x0501 if defined to a smaller value, as
11660 'getaddrinfo' and 'freeaddrinfo' were not available before
11661 Windows XP, and mingw.org's MinGW headers by default define
11662 _WIN32_WINNT to 0x500.
11663
11664 2019-03-01 Gary Benson <gbenson@redhat.com>
11665
11666 * coffread.c (coff_start_symtab): Remove unnecessary xstrdup.
11667
11668 2019-02-28 Brian Vandenberg <phantall@gmail.com>
11669 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
11670
11671 PR gdb/8527
11672 * procfs.c (proc_wait_for_stop): Wrap write of PCWSTOP in
11673 set_sigint_trap, clear_sigint_trap.
11674
11675 2019-02-27 Philippe Waroquiers <philippe.waroquiers@skynet.be>
11676
11677 * target.c (target_detach): Clear the regcache and the
11678 frame cache.
11679
11680 2019-02-27 Pedro Alves <palves@redhat.com>
11681
11682 * utils.c (set_screen_size): When we cap the height/width sizes,
11683 tweak the corresponding command variable to show "unlimited":
11684
11685 2019-02-27 Saagar Jha <saagar@saagarjha.com>
11686 Pedro Alves <palves@redhat.com>
11687
11688 * utils.c (set_screen_size): Reduce "infinite" rows and columns
11689 before calling rl_set_screen_size.
11690
11691 2019-02-27 Tom Tromey <tromey@adacore.com>
11692
11693 * configure.ac (HAVE_LIBPYTHON2_4, HAVE_LIBPYTHON2_5): Never
11694 define.
11695 * python/py-value.c: Remove Python 2.4 workaround.
11696 * python/py-utils.c (gdb_pymodule_addobject): Remove Python 2.4
11697 workaround.
11698 * python/py-type.c (convert_field, gdbpy_initialize_types): Remove
11699 Python 2.4 workaround.
11700 * python/python-internal.h: Remove Python 2.4 comment.
11701 (Py_ssize_t): Don't define.
11702 (PyVarObject_HEAD_INIT, Py_TYPE): Don't define.
11703 (gdb_Py_DECREF): Remove Python 2.4 workaround.
11704 (gdb_PyObject_GetAttrString, PyObject_GetAttrString): Remove.
11705 (gdb_PyObject_HasAttrString, PyObject_HasAttrString): Remove.
11706 * python/python.c (do_start_initialization): Remove Python 2.4
11707 workaround.
11708 * python/py-prettyprint.c (class dummy_python_frame): Remove.
11709 (print_children): Remove Python 2.4 workaround.
11710 * python/py-inferior.c (buffer_procs): Remove Python 2.4
11711 workaround.
11712 (CHARBUFFERPROC_NAME): Remove.
11713 * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Remove
11714 Python 2.4 workaround.
11715
11716 2019-02-27 Kevin Buettner <kevinb@redhat.com>
11717
11718 * NEWS: Note minimum Python version.
11719
11720 2019-02-27 Kevin Buettner <kevinb@redhat.com>
11721
11722 * python/py-inferior.c (infpy_write_memory): Remove non-IS_PY3K
11723 code from these functions. Remove corresponding ifdefs. Use
11724 Py_buffer_up instead of explicit calls to PyBuffer_Release.
11725 Remove gotos and target of gotos.
11726 (infpy_search_memory): Likewise.
11727
11728 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
11729
11730 * gdb/hppa-tdep.c (hppa_dummy_id): Delete.
11731 (hppa_gdbarch_init): Don't register deleted functions with
11732 gdbarch.
11733
11734 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
11735
11736 * gdb/h8300-tdep.c (h8300_unwind_pc): Delete.
11737 (h8300_unwind_sp): Delete.
11738 (h8300_dummy_id): Delete.
11739 (h8300_gdbarch_init): Don't register deleted functions with
11740 gdbarch.
11741
11742 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
11743
11744 * gdb/ft32-tdep.c (ft32_dummy_id): Delete.
11745 (ft32_unwind_pc): Delete.
11746 (ft32_unwind_sp): Delete.
11747 (ft32_gdbarch_init): Don't register deleted functions with
11748 gdbarch.
11749
11750 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
11751
11752 * gdb/frv-tdep.c (frv_dummy_id): Delete.
11753 (frv_unwind_pc): Delete.
11754 (frv_unwind_sp): Delete.
11755 (frv_gdbarch_init): Don't register deleted functions with
11756 gdbarch.
11757
11758 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
11759
11760 * gdb/riscv-tdep.c (riscv_dummy_id): Delete.
11761 (riscv_unwind_pc): Delete.
11762 (riscv_unwind_sp): Delete.
11763 (riscv_gdbarch_init): Don't register deleted functions with
11764 gdbarch.
11765
11766 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
11767
11768 * gdb/csky-tdep.c (csky_dummy_id): Delete.
11769 (csky_unwind_pc): Delete.
11770 (csky_unwind_sp): Delete.
11771 (csky_gdbarch_init): Don't register deleted functions with
11772 gdbarch.
11773
11774 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
11775
11776 * gdb/cris-tdep.c (cris_dummy_id): Delete.
11777 (cris_unwind_pc): Delete.
11778 (cris_unwind_sp): Delete.
11779 (cris_gdbarch_init): Don't register deleted functions with
11780 gdbarch.
11781
11782 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
11783
11784 * gdb/bfin-tdep.c (bfin_dummy_id): Delete.
11785 (bfin_unwind_pc): Delete.
11786 (bfin_gdbarch_init): Don't register deleted functions with gdbarch.
11787
11788 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
11789
11790 * gdb/arm-tdep.c (arm_dummy_id): Delete.
11791 (arm_unwind_pc): Delete.
11792 (arm_unwind_sp): Delete.
11793 (arm_gdbarch_init): Don't register deleted functions with gdbarch.
11794
11795 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
11796
11797 * gdb/arc-tdep.c (arc_dummy_id): Delete.
11798 (arc_unwind_pc): Delete.
11799 (arc_unwind_sp): Delete.
11800 (arc_gdbarch_init): Don't register deleted functions with gdbarch.
11801
11802 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
11803
11804 * gdb/alpha-tdep.c (alpha_dummy_id): Delete.
11805 (alpha_unwind_pc): Delete.
11806 (alpha_gdbarch_init): Don't register deleted functions with
11807 gdbarch.
11808
11809 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
11810
11811 * gdb/aarch64-tdep.c (aarch64_dummy_id): Delete.
11812 (aarch64_unwind_pc): Delete.
11813 (aarch64_unwind_sp): Delete.
11814 (aarch64_gdbarch_init): Don't register deleted functions with
11815 gdbarch.
11816
11817 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
11818
11819 * gdbtypes.c (type_align): Don't consider static members when
11820 computing structure alignment.
11821
11822 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
11823
11824 * arc-tdep.c (arc_type_align): Provide alignment for basic types,
11825 return 0 for other types.
11826 * arch-utils.c (default_type_align): Always return 0.
11827 * gdbarch.h: Regenerate.
11828 * gdbarch.sh (type_align): Extend comment.
11829 * gdbtypes.c (type_align): Add additional comments, always call
11830 gdbarch_type_align before applying the default rules.
11831 * i386-tdep.c (i386_type_align): Return 0 as the default rule,
11832 generic code will then apply a suitable default.
11833 * nios2-tdep.c (nios2_type_align): Provide alignment for basic
11834 types, return 0 for other types.
11835
11836 2019-02-27 Joel Brobecker <brobecker@adacore.com>
11837
11838 * NEWS: Create a new section for the next release branch.
11839 Rename the section of the current branch, now that it has
11840 been cut.
11841
11842 2019-02-27 Joel Brobecker <brobecker@adacore.com>
11843
11844 GDB 8.3 branch created (143420fb0d5ae54323ba9953f0818c194635228d):
11845 * version.in: Bump version to 8.3.50.DATE-git.
11846
11847 2019-02-26 Simon Marchi <simon.marchi@efficios.com>
11848
11849 * aix-thread.c (ptid_cmp): Remove unused variable.
11850 (get_signaled_thread): Likewise.
11851 (store_regs_user_thread): Likewise.
11852 (store_regs_kernel_thread): Likewise.
11853 (fetch_regs_kernel_thread): Remove shadowed variable.
11854
11855 2019-02-26 Andrew Burgess <andrew.burgess@embecosm.com>
11856
11857 * features/riscv/32bit-cpu.xml: Add register numbers.
11858 * features/riscv/32bit-fpu.c: Regenerate.
11859 * features/riscv/32bit-fpu.xml: Add register numbers.
11860 * features/riscv/64bit-cpu.xml: Add register numbers.
11861 * features/riscv/64bit-fpu.c: Regenerate.
11862 * features/riscv/64bit-fpu.xml: Add register numbers.
11863
11864 2019-02-26 Kevin Buettner <kevinb@redhat.com>
11865
11866 * NEWS: Mention two argument form of gdb.Value constructor.
11867 * python/py-value.c (convert_buffer_and_type_to_value): New
11868 function.
11869 (valpy_new): Parse arguments via gdb_PyArg_ParseTupleAndKeywords.
11870 Add support for handling an optional second argument. Call
11871 convert_buffer_and_type_to_value as appropriate.
11872 * python/python-internal.h (Py_buffer_deleter): New struct.
11873 (Py_buffer_up): New typedef.
11874
11875 2019-02-25 John Baldwin <jhb@FreeBSD.org>
11876
11877 * dwarf2read.c (dwarf2_get_dwz_file): Reset dwz_bfd to nullptr
11878 instead of releasing ownership.
11879
11880 2019-02-25 Jordan Rupprecht <rupprecht@google.com>
11881
11882 * dwarf2read.c (open_and_init_dwp_file): Call
11883 elf_numsections instead of bfd_count_sections to initialize
11884 dwp_file->num_sections.
11885
11886 2019-02-25 Tom Tromey <tromey@adacore.com>
11887
11888 * solib-darwin.c (darwin_get_dyld_bfd): Don't release dyld_bfd.
11889
11890 2019-02-23 Sergio Durigan Junior <sergiodj@redhat.com>
11891
11892 * gcore.in: Add '--readnever' option when invoking GDB.
11893
11894 2019-02-22 Simon Marchi <simon.marchi@polymtl.ca>
11895
11896 * MAINTAINERS: Update my email address.
11897
11898 2019-02-22 Simon Marchi <simon.marchi@polymtl.ca>
11899
11900 * build-id.c (build_id_to_debug_bfd_1): New function.
11901 (build_id_to_debug_bfd): Look for separate debug file in
11902 sysroot.
11903
11904 2019-02-22 Andrew Burgess <andrew.burgess@embecosm.com>
11905
11906 * gdbarch.sh: Update the copyright year range that is placed into
11907 generated files.
11908
11909 2019-02-22 Keith Seitz <keiths@redhat.com>
11910
11911 PR symtab/23853
11912 * linespec.c (create_sals_line_offset): Search for the default
11913 symtab's filename instead of its fullname.
11914
11915 2019-02-21 Alan Hayward <alan.hayward@arm.com>
11916
11917 * NEWS: Update style defaults.
11918
11919 2019-02-21 Alan Hayward <alan.hayward@arm.com>
11920
11921 * main.c (captured_main_1): Disable styling in batch mode.
11922
11923 2019-02-20 Tom Tromey <tom@tromey.com>
11924
11925 * symtab.c (symtab_symbol_info): Fix typos.
11926
11927 2019-02-20 Tom Tromey <tromey@adacore.com>
11928
11929 * findcmd.c (_initialize_mem_search): Use upper case for
11930 metasyntactic variables.
11931
11932 2019-02-20 Alan Hayward <alan.hayward@arm.com>
11933
11934 * aarch64-tdep.c (aarch64_add_reggroups): New function.
11935 (aarch64_gdbarch_init): Call aarch64_add_reggroups.
11936
11937 2019-02-19 Simon Marchi <simon.marchi@polymtl.ca>
11938
11939 * top.h (source_file_name): Change to std::string.
11940 * top.c (source_file_name): Likewise.
11941 (command_line_input): Adjust.
11942 * cli/cli-script.c (script_from_file): Adjust.
11943
11944 2019-02-19 Tom Tromey <tromey@adacore.com>
11945
11946 * ravenscar-thread.c
11947 (ravenscar_thread_target::update_thread_list): Don't call
11948 ada_build_task_list.
11949 * ada-lang.h (ada_build_task_list): Don't declare.
11950 * ada-tasks.c (struct ada_tasks_inferior_data)
11951 <task_list_valid_p>: Now bool.
11952 (read_known_tasks, ada_task_list_changed)
11953 (ada_tasks_invalidate_inferior_data): Update.
11954 (read_known_tasks_array): Return bool.
11955 (read_known_tasks_list): Likewise.
11956 (read_known_tasks): Return void.
11957 (ada_build_task_list): Now static.
11958
11959 2019-02-18 Andrew Burgess <andrew.burgess@embecosm.com>
11960
11961 * gdbtypes.c (type_align): Allow alignment of TYPE_CODE_METHODPTR
11962 and TYPE_CODE_MEMBERPTR to be overridden by the gdbarch.
11963
11964 2019-02-18 Philippe Waroquiers <philippe.waroquiers@skynet.be>
11965
11966 * ada-task.c (_initialize_tasks): Use 'with_cleanup' register
11967 variant for ada_tasks_pspace_data_handle and
11968 ada_tasks_inferior_data_handle.
11969 (ada_tasks_pspace_data_cleanup): New function.
11970 (ada_tasks_inferior_data_cleanup): New function.
11971
11972 2019-02-17 Tom Tromey <tom@tromey.com>
11973
11974 * macrotab.h (macro_source_fullname): Return a std::string.
11975 * macrotab.c (macro_include, check_for_redefinition)
11976 (macro_undef, macro_lookup_definition, foreach_macro)
11977 (foreach_macro_in_scope): Update.
11978 (macro_source_fullname): Return a std::string.
11979 * macrocmd.c (show_pp_source_pos): Update.
11980
11981 2019-02-17 Tom Tromey <tom@tromey.com>
11982
11983 * macrocmd.c (show_pp_source_pos): Style the file names.
11984
11985 2019-02-17 Tom Tromey <tom@tromey.com>
11986
11987 PR tui/24197:
11988 * tui/tui-source.c (tui_set_source_content_nil): Rewrite.
11989
11990 2019-02-17 Tom Tromey <tom@tromey.com>
11991
11992 * ada-lang.c (user_select_syms): Use filtered printing.
11993 * utils.c (wrap_style): New global.
11994 (desired_style): Remove.
11995 (emit_style_escape): Add stream parameter.
11996 (set_output_style, reset_terminal_style, prompt_for_continue):
11997 Update.
11998 (flush_wrap_buffer): Only flush gdb_stdout.
11999 (wrap_here): Set wrap_style.
12000 (fputs_maybe_filtered): Clear the wrap buffer on exception. Don't
12001 treat escape sequences as a character. Change when wrap buffer is
12002 flushed.
12003 (fputs_styled): Do not set the output style when the default is
12004 requested.
12005 * ui-style.h (struct ui_file_style) <is_default>: New method.
12006 * source.c (print_source_lines_base): Emit escape sequences in one
12007 piece.
12008
12009 2019-02-17 Joel Brobecker <brobecker@adacore.com>
12010
12011 * gdbtypes.c (type_align): Handle TYPE_CODE_RANGE the same as
12012 integers and enumeration types.
12013
12014 2019-02-17 Joel Brobecker <brobecker@adacore.com>
12015
12016 * ada-lang.c (standard_lookup): Use ada_lookup_encoded_symbol
12017 instead of lookup_symbol_in_language
12018 (do_exact_match): New function.
12019 (ada_get_symbol_name_matcher): Return do_exact_match when
12020 doing a verbatim match.
12021
12022 2019-02-15 Tom Tromey <tromey@adacore.com>
12023
12024 * ravenscar-thread.c (ravenscar_thread_target::resume)
12025 (ravenscar_thread_target::wait): Special case wildcard requests.
12026
12027 2019-02-15 Tom Tromey <tromey@adacore.com>
12028
12029 * ravenscar-thread.c (base_ptid): Remove.
12030 (struct ravenscar_thread_target) <close>: New method.
12031 <m_base_ptid>: New member.
12032 <update_inferior_ptid, active_task, task_is_currently_active,
12033 runtime_initialized>: Declare methods.
12034 <ravenscar_thread_target>: Add constructor.
12035 (ravenscar_thread_target::task_is_currently_active)
12036 (ravenscar_thread_target::update_inferior_ptid)
12037 (ravenscar_runtime_initialized): Rename. Now methods.
12038 (ravenscar_thread_target::resume, ravenscar_thread_target::wait)
12039 (ravenscar_thread_target::update_thread_list): Update.
12040 (ravenscar_thread_target::active_task): Now method.
12041 (ravenscar_thread_target::store_registers)
12042 (ravenscar_thread_target::prepare_to_store)
12043 (ravenscar_thread_target::prepare_to_store)
12044 (ravenscar_thread_target::mourn_inferior): Update.
12045 (ravenscar_inferior_created): Use "new" to create target.
12046 (ravenscar_thread_target::get_ada_task_ptid): Update.
12047 (_initialize_ravenscar): Don't initialize base_ptid.
12048 (ravenscar_ops): Remove global.
12049
12050 2019-02-15 Tom Tromey <tromey@adacore.com>
12051
12052 * target.h (push_target): Declare new overload.
12053 * target.c (push_target): New overload, taking an rvalue reference.
12054 * remote.c (remote_target::open_1): Use push_target overload.
12055 * corelow.c (core_target_open): Use push_target overload.
12056
12057 2019-02-15 Tom Tromey <tromey@adacore.com>
12058
12059 * ravenscar-thread.c (is_ravenscar_task)
12060 (ravenscar_task_is_currently_active): Return bool.
12061 (ravenscar_update_inferior_ptid, get_running_thread_msymbol)
12062 (_initialize_ravenscar): Remove "(void)".
12063 (has_ravenscar_runtime, ravenscar_runtime_initialized): Likewise.
12064 Return bool.
12065
12066 2019-02-15 Tom Tromey <tromey@adacore.com>
12067
12068 * ravenscar-thread.c (ravenscar_runtime_initializer)
12069 (has_ravenscar_runtime, get_running_thread_id)
12070 (ravenscar_thread_target::resume): Fix indentation.
12071
12072 2019-02-15 Tom Tromey <tromey@adacore.com>
12073
12074 * sparc-ravenscar-thread.c (struct sparc_ravenscar_ops): Derive
12075 from ravenscar_arch_ops.
12076 (sparc_ravenscar_ops::fetch_registers)
12077 (sparc_ravenscar_ops::store_registers): Now methods.
12078 (sparc_ravenscar_prepare_to_store): Remove.
12079 (sparc_ravenscar_ops): Redefine.
12080 * ravenscar-thread.h (struct ravenscar_arch_ops): Add virtual
12081 methods and destructor. Remove members.
12082 * ravenscar-thread.c (ravenscar_thread_target::fetch_registers)
12083 (ravenscar_thread_target::store_registers)
12084 (ravenscar_thread_target::prepare_to_store): Update.
12085 * ppc-ravenscar-thread.c (ppc_ravenscar_generic_prepare_to_store):
12086 Remove.
12087 (struct ppc_ravenscar_powerpc_ops): Derive from
12088 ravenscar_arch_ops.
12089 (ppc_ravenscar_powerpc_ops::fetch_registers)
12090 (ppc_ravenscar_powerpc_ops::store_registers): Now methods.
12091 (ppc_ravenscar_powerpc_ops): Redefine.
12092 (struct ppc_ravenscar_e500_ops): Derive from ravenscar_arch_ops.
12093 (ppc_ravenscar_e500_ops::fetch_registers)
12094 (ppc_ravenscar_e500_ops::store_registers): Now methods.
12095 (ppc_ravenscar_e500_ops): Redefine.
12096 * aarch64-ravenscar-thread.c
12097 (aarch64_ravenscar_generic_prepare_to_store): Remove.
12098 (struct aarch64_ravenscar_ops): Derive from ravenscar_arch_ops.
12099 (aarch64_ravenscar_fetch_registers)
12100 (aarch64_ravenscar_store_registers): Now methods.
12101 (aarch64_ravenscar_ops): Redefine.
12102
12103 2019-02-15 Tom Tromey <tromey@adacore.com>
12104
12105 * ravenscar-thread.c (ravenscar_thread_target::stopped_by_sw_breakpoint)
12106 (ravenscar_thread_target::stopped_by_hw_breakpoint)
12107 (ravenscar_thread_target::stopped_by_watchpoint)
12108 (ravenscar_thread_target::stopped_data_address)
12109 (ravenscar_thread_target::core_of_thread): Use scoped_restore.
12110
12111 2019-02-15 Tom Tromey <tromey@adacore.com>
12112
12113 * ravenscar-thread.c: Fix some typos.
12114
12115 2019-02-15 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12116 Tom Tromey <tromey@adacore.com>
12117
12118 * ada-lang.c (ada_exception_sal): Change addr_string to a
12119 std::string.
12120 (create_ada_exception_catchpoint): Update.
12121
12122 2019-02-15 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12123 Tom Tromey <tromey@adacore.com>
12124
12125 * breakpoint.c (~bp_location): Rename from bp_location_dtor.
12126 (bp_location_ops): Remove.
12127 (base_breakpoint_allocate_location): Update.
12128 (free_bp_location): Update.
12129 * ada-lang.c (class ada_catchpoint_location)
12130 <ada_catchpoint_location>: Remove ops parameter.
12131 (ada_catchpoint_location_dtor): Remove.
12132 (ada_catchpoint_location_ops): Remove.
12133 (allocate_location_exception): Update.
12134 * breakpoint.h (struct bp_location_ops): Remove.
12135 (class bp_location) <bp_location>: Remove bp_location_ops
12136 parameter.
12137 <~bp_location>: Add destructor.
12138 <ops>: Remove.
12139
12140 2019-02-14 Thomas Schwinge <thomas@codesourcery.com>
12141 Pedro Alves <palves@redhat.com>
12142
12143 * remote.c (remote_target::remote_parse_stop_reply): Avoid using
12144 'PATH_MAX'.
12145
12146 2019-02-14 David Michael <fedora.dm0@gmail.com>
12147 Samuel Thibault <samuel.thibault@gnu.org>
12148 Thomas Schwinge <thomas@codesourcery.com>
12149
12150 * gnu-nat.c (S_proc_getmsgport_reply, S_proc_task2proc_reply)
12151 (S_proc_pid2proc_reply): Adjust to Hurd "proc" interface changes.
12152
12153 2019-02-14 Thomas Schwinge <thomas@codesourcery.com>
12154
12155 * gnu-nat.c (gnu_write_inferior, parse_int_arg, _parse_bool_arg)
12156 (check_empty): Use "const char *".
12157
12158 * gnu-nat.c (gnu_nat_target::detach): Instead of
12159 'detach_inferior (pid)' call
12160 'detach_inferior (find_inferior_pid (pid))'.
12161
12162 * configure.nat [gdb_host == i386gnu] (NATDEPFILES): Add
12163 'nat/fork-inferior.o'.
12164 * gnu-nat.c: #include "nat/fork-inferior.h".
12165
12166 * gnu-nat.c (gnu_nat_target::detach): Instead of
12167 'inf_child_maybe_unpush_target (ops)' call 'maybe_unpush_target'.
12168 * gnu-nat.h: #include "inf-child.h".
12169 * i386-gnu-nat.c (gnu_fetch_registers): Rename/move to
12170 'i386_gnu_nat_target::fetch_registers'.
12171 (gnu_store_registers): Rename/move to
12172 'i386_gnu_nat_target::store_registers'.
12173
12174 * config/i386/nm-i386gnu.h: Don't "#include" any files.
12175 * gnu-nat.h (mach_thread_info): New function.
12176 * gnu-nat.c (thread_takeover_sc_cmd): Use it.
12177
12178 * config/i386/nm-i386gnu.h (gnu_target_pid_to_str): Remove.
12179
12180 2019-02-14 Frederic Konrad <konrad@adacore.com>
12181
12182 * riscv-rdep.c (riscv_type_alignment): Handle TYPE_CODE_RANGE.
12183
12184 2019-02-14 Joel Brobecker <brobecker@adacore.com>
12185
12186 * windows-nat.c (windows_add_thread): Add new parameter
12187 "main_thread_p" with default value set to false. Update
12188 function documentation as well as all callers.
12189 (windows_delete_thread): Likewise.
12190 (fake_create_process): Update call to windows_add_thread.
12191 (get_windows_debug_event) <CREATE_THREAD_DEBUG_EVENT>
12192 <CREATE_PROCESS_DEBUG_EVENT>: Likewise.
12193 <EXIT_THREAD_DEBUG_EVENT, EXIT_PROCESS_DEBUG_EVENT>: Update
12194 call to windows_delete_thread.
12195
12196 2019-02-13 Simon Marchi <simon.marchi@ericsson.com>
12197
12198 * MAINTAINERS: Add Andrew Burgess as global maintainer.
12199
12200 2019-02-12 John Baldwin <jhb@FreeBSD.org>
12201
12202 * symfile.c (find_separate_debug_file): Use canonical path of
12203 sysroot with child_path instead of gdb_sysroot if it is valid.
12204
12205 2019-02-12 John Baldwin <jhb@FreeBSD.org>
12206
12207 * symfile.c (find_separate_debug_file): Use child_path to
12208 determine if an object file is under a sysroot.
12209
12210 2019-02-12 John Baldwin <jhb@FreeBSD.org>
12211
12212 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
12213 unittests/child-path-selftests.c.
12214 * common/pathstuff.c (child_path): New function.
12215 * common/pathstuff.h (child_path): New prototype.
12216 * unittests/child-path-selftests.c: New file.
12217
12218 2019-02-12 John Baldwin <jhb@FreeBSD.org>
12219
12220 * symfile.c (find_separate_debug_file): Look for separate debug
12221 files in debug directories under the sysroot.
12222
12223 2019-02-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12224
12225 * symtab.h (struct minimal_symbol data_p): New const method.
12226 (struct minimal_symbol text_p): Likewise.
12227 * symtab.c (output_source_filename): Use file name style
12228 to print file name.
12229 (print_symbol_info): Likewise.
12230 (print_msymbol_info): Use address style to print addresses.
12231 Use function name style to print executable text symbols.
12232 (expand_symtab_containing_pc): Use data_p.
12233 (find_pc_sect_compunit_symtab): Likewise.
12234
12235 2019-02-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12236
12237 * breakpoint.c (describe_other_breakpoints): Use address style
12238 to print addresses.
12239 (say_where): Likewise.
12240
12241 2019-02-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12242
12243 * ada-typeprint.c (print_func_type): Print function name
12244 style to print function name.
12245 * c-typeprint.c (c_print_type_1): Likewise.
12246
12247 2019-02-11 Alan Hayward <alan.hayward@arm.com>
12248
12249 * aarch64-linux-tdep.c (aarch64_linux_get_syscall_number): Check
12250 for execve.
12251
12252 2019-02-10 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12253
12254 * c-exp.y (direct_abs_decl): Use emplace_back to record the
12255 type_stack.
12256
12257 2019-02-10 Joel Brobecker <brobecker@adacore.com>
12258
12259 * ada-varobj.c (ada_value_is_changeable_p): Add handling of
12260 TYPE_CODE_REF types.
12261
12262 2019-02-08 Jim Wilson <jimw@sifive.com>
12263
12264 * riscv-linux-tdep.c (riscv_linux_fregmap): New.
12265 (riscv_linux_fregset): New.
12266 (riscv_linux_iterate_over_regset_sections): Call cb for .reg2 section.
12267
12268 2019-02-07 Tom Tromey <tom@tromey.com>
12269
12270 * thread.c (thread_cancel_execution_command): Update.
12271 * thread-fsm.h (struct thread_fsm): Add constructor, destructor,
12272 methods.
12273 (struct thread_fsm_ops): Remove.
12274 (thread_fsm_ctor, thread_fsm_delete, thread_fsm_clean_up)
12275 (thread_fsm_should_stop, thread_fsm_return_value)
12276 (thread_fsm_set_finished, thread_fsm_finished_p)
12277 (thread_fsm_async_reply_reason, thread_fsm_should_notify_stop):
12278 Don't declare.
12279 * mi/mi-interp.c (mi_on_normal_stop_1): Update.
12280 * infrun.c (clear_proceed_status_thread)
12281 (clean_up_just_stopped_threads_fsms, fetch_inferior_event)
12282 (print_stop_event): Update.
12283 * infcmd.c (struct step_command_fsm): Inherit from thread_fsm.
12284 Add constructor.
12285 (step_command_fsm_ops): Remove.
12286 (new_step_command_fsm): Remove.
12287 (step_1): Update.
12288 (step_command_fsm::should_stop): Rename from
12289 step_command_fsm_should_stop.
12290 (step_command_fsm::clean_up): Rename from
12291 step_command_fsm_clean_up.
12292 (step_command_fsm::do_async_reply_reason): Rename from
12293 step_command_fsm_async_reply_reason.
12294 (struct until_next_fsm): Inherit from thread_fsm. Add
12295 constructor.
12296 (until_next_fsm_ops): Remove.
12297 (new_until_next_fsm): Remove.
12298 (until_next_fsm::should_stop): Rename from
12299 until_next_fsm_should_stop.
12300 (until_next_fsm::clean_up): Rename from until_next_fsm_clean_up.
12301 (until_next_fsm::do_async_reply_reason): Rename from
12302 until_next_fsm_async_reply_reason.
12303 (struct finish_command_fsm): Inherit from thread_fsm. Add
12304 constructor. Change type of breakpoint.
12305 (finish_command_fsm_ops): Remove.
12306 (new_finish_command_fsm): Remove.
12307 (finish_command_fsm::should_stop): Rename from
12308 finish_command_fsm_should_stop.
12309 (finish_command_fsm::clean_up): Rename from
12310 finish_command_fsm_clean_up.
12311 (finish_command_fsm::return_value): Rename from
12312 finish_command_fsm_return_value.
12313 (finish_command_fsm::do_async_reply_reason): Rename from
12314 finish_command_fsm_async_reply_reason.
12315 (finish_command): Update.
12316 * infcall.c (struct call_thread_fsm): Inherit from thread_fsm.
12317 Add constructor.
12318 (call_thread_fsm_ops): Remove.
12319 (call_thread_fsm::call_thread_fsm): Rename from
12320 new_call_thread_fsm.
12321 (call_thread_fsm::should_stop): Rename from
12322 call_thread_fsm_should_stop.
12323 (call_thread_fsm::should_notify_stop): Rename from
12324 call_thread_fsm_should_notify_stop.
12325 (run_inferior_call, call_function_by_hand_dummy): Update.
12326 * cli/cli-interp.c (should_print_stop_to_console): Update.
12327 * breakpoint.c (struct until_break_fsm): Inherit from thread_fsm.
12328 Add constructor. Change type of location_breakpoint,
12329 caller_breakpoint.
12330 (until_break_fsm_ops): Remove.
12331 (new_until_break_fsm): Remove.
12332 (until_break_fsm::should_stop): Rename from
12333 until_break_fsm_should_stop.
12334 (until_break_fsm::clean_up): Rename from
12335 until_break_fsm_clean_up.
12336 (until_break_fsm::do_async_reply_reason): Rename from
12337 until_break_fsm_async_reply_reason.
12338 (until_break_command): Update.
12339 * thread-fsm.c: Remove.
12340 * Makefile.in (COMMON_SFILES): Remove thread-fsm.c.
12341
12342 2019-02-07 Tom Tromey <tom@tromey.com>
12343
12344 * yy-remap.h: Add include guard.
12345 * xtensa-tdep.h: Add include guard.
12346 * xcoffread.h: Rename include guard.
12347 * varobj-iter.h: Add include guard.
12348 * tui/tui.h: Rename include guard.
12349 * tui/tui-winsource.h: Rename include guard.
12350 * tui/tui-wingeneral.h: Rename include guard.
12351 * tui/tui-windata.h: Rename include guard.
12352 * tui/tui-win.h: Rename include guard.
12353 * tui/tui-stack.h: Rename include guard.
12354 * tui/tui-source.h: Rename include guard.
12355 * tui/tui-regs.h: Rename include guard.
12356 * tui/tui-out.h: Rename include guard.
12357 * tui/tui-layout.h: Rename include guard.
12358 * tui/tui-io.h: Rename include guard.
12359 * tui/tui-hooks.h: Rename include guard.
12360 * tui/tui-file.h: Rename include guard.
12361 * tui/tui-disasm.h: Rename include guard.
12362 * tui/tui-data.h: Rename include guard.
12363 * tui/tui-command.h: Rename include guard.
12364 * tic6x-tdep.h: Add include guard.
12365 * target/waitstatus.h: Rename include guard.
12366 * target/wait.h: Rename include guard.
12367 * target/target.h: Rename include guard.
12368 * target/resume.h: Rename include guard.
12369 * target-float.h: Rename include guard.
12370 * stabsread.h: Add include guard.
12371 * rs6000-tdep.h: Add include guard.
12372 * riscv-fbsd-tdep.h: Add include guard.
12373 * regformats/regdef.h: Rename include guard.
12374 * record.h: Rename include guard.
12375 * python/python.h: Rename include guard.
12376 * python/python-internal.h: Rename include guard.
12377 * python/py-stopevent.h: Rename include guard.
12378 * python/py-ref.h: Rename include guard.
12379 * python/py-record.h: Rename include guard.
12380 * python/py-record-full.h: Rename include guard.
12381 * python/py-record-btrace.h: Rename include guard.
12382 * python/py-instruction.h: Rename include guard.
12383 * python/py-events.h: Rename include guard.
12384 * python/py-event.h: Rename include guard.
12385 * procfs.h: Add include guard.
12386 * proc-utils.h: Add include guard.
12387 * p-lang.h: Add include guard.
12388 * or1k-tdep.h: Rename include guard.
12389 * observable.h: Rename include guard.
12390 * nto-tdep.h: Rename include guard.
12391 * nat/x86-linux.h: Rename include guard.
12392 * nat/x86-linux-dregs.h: Rename include guard.
12393 * nat/x86-gcc-cpuid.h: Add include guard.
12394 * nat/x86-dregs.h: Rename include guard.
12395 * nat/x86-cpuid.h: Rename include guard.
12396 * nat/ppc-linux.h: Rename include guard.
12397 * nat/mips-linux-watch.h: Rename include guard.
12398 * nat/linux-waitpid.h: Rename include guard.
12399 * nat/linux-ptrace.h: Rename include guard.
12400 * nat/linux-procfs.h: Rename include guard.
12401 * nat/linux-osdata.h: Rename include guard.
12402 * nat/linux-nat.h: Rename include guard.
12403 * nat/linux-namespaces.h: Rename include guard.
12404 * nat/linux-btrace.h: Rename include guard.
12405 * nat/glibc_thread_db.h: Rename include guard.
12406 * nat/gdb_thread_db.h: Rename include guard.
12407 * nat/gdb_ptrace.h: Rename include guard.
12408 * nat/fork-inferior.h: Rename include guard.
12409 * nat/amd64-linux-siginfo.h: Rename include guard.
12410 * nat/aarch64-sve-linux-sigcontext.h: Rename include guard.
12411 * nat/aarch64-sve-linux-ptrace.h: Rename include guard.
12412 * nat/aarch64-linux.h: Rename include guard.
12413 * nat/aarch64-linux-hw-point.h: Rename include guard.
12414 * mn10300-tdep.h: Add include guard.
12415 * mips-linux-tdep.h: Add include guard.
12416 * mi/mi-parse.h: Rename include guard.
12417 * mi/mi-out.h: Rename include guard.
12418 * mi/mi-main.h: Rename include guard.
12419 * mi/mi-interp.h: Rename include guard.
12420 * mi/mi-getopt.h: Rename include guard.
12421 * mi/mi-console.h: Rename include guard.
12422 * mi/mi-common.h: Rename include guard.
12423 * mi/mi-cmds.h: Rename include guard.
12424 * mi/mi-cmd-break.h: Rename include guard.
12425 * m2-lang.h: Add include guard.
12426 * location.h: Rename include guard.
12427 * linux-record.h: Rename include guard.
12428 * linux-nat.h: Add include guard.
12429 * linux-fork.h: Add include guard.
12430 * i386-darwin-tdep.h: Rename include guard.
12431 * hppa-linux-offsets.h: Add include guard.
12432 * guile/guile.h: Rename include guard.
12433 * guile/guile-internal.h: Rename include guard.
12434 * gnu-nat.h: Rename include guard.
12435 * gdb-stabs.h: Rename include guard.
12436 * frv-tdep.h: Add include guard.
12437 * f-lang.h: Add include guard.
12438 * event-loop.h: Add include guard.
12439 * darwin-nat.h: Rename include guard.
12440 * cp-abi.h: Rename include guard.
12441 * config/sparc/nm-sol2.h: Rename include guard.
12442 * config/nm-nto.h: Rename include guard.
12443 * config/nm-linux.h: Add include guard.
12444 * config/i386/nm-i386gnu.h: Rename include guard.
12445 * config/djgpp/nl_types.h: Rename include guard.
12446 * config/djgpp/langinfo.h: Rename include guard.
12447 * compile/gcc-cp-plugin.h: Add include guard.
12448 * compile/gcc-c-plugin.h: Add include guard.
12449 * compile/compile.h: Rename include guard.
12450 * compile/compile-object-run.h: Rename include guard.
12451 * compile/compile-object-load.h: Rename include guard.
12452 * compile/compile-internal.h: Rename include guard.
12453 * compile/compile-cplus.h: Rename include guard.
12454 * compile/compile-c.h: Rename include guard.
12455 * common/xml-utils.h: Rename include guard.
12456 * common/x86-xstate.h: Rename include guard.
12457 * common/version.h: Rename include guard.
12458 * common/vec.h: Rename include guard.
12459 * common/tdesc.h: Rename include guard.
12460 * common/selftest.h: Rename include guard.
12461 * common/scoped_restore.h: Rename include guard.
12462 * common/scoped_mmap.h: Rename include guard.
12463 * common/scoped_fd.h: Rename include guard.
12464 * common/safe-iterator.h: Rename include guard.
12465 * common/run-time-clock.h: Rename include guard.
12466 * common/refcounted-object.h: Rename include guard.
12467 * common/queue.h: Rename include guard.
12468 * common/ptid.h: Rename include guard.
12469 * common/print-utils.h: Rename include guard.
12470 * common/preprocessor.h: Rename include guard.
12471 * common/pathstuff.h: Rename include guard.
12472 * common/observable.h: Rename include guard.
12473 * common/netstuff.h: Rename include guard.
12474 * common/job-control.h: Rename include guard.
12475 * common/host-defs.h: Rename include guard.
12476 * common/gdb_wait.h: Rename include guard.
12477 * common/gdb_vecs.h: Rename include guard.
12478 * common/gdb_unlinker.h: Rename include guard.
12479 * common/gdb_unique_ptr.h: Rename include guard.
12480 * common/gdb_tilde_expand.h: Rename include guard.
12481 * common/gdb_sys_time.h: Rename include guard.
12482 * common/gdb_string_view.h: Rename include guard.
12483 * common/gdb_splay_tree.h: Rename include guard.
12484 * common/gdb_setjmp.h: Rename include guard.
12485 * common/gdb_ref_ptr.h: Rename include guard.
12486 * common/gdb_optional.h: Rename include guard.
12487 * common/gdb_locale.h: Rename include guard.
12488 * common/gdb_assert.h: Rename include guard.
12489 * common/filtered-iterator.h: Rename include guard.
12490 * common/filestuff.h: Rename include guard.
12491 * common/fileio.h: Rename include guard.
12492 * common/environ.h: Rename include guard.
12493 * common/common-utils.h: Rename include guard.
12494 * common/common-types.h: Rename include guard.
12495 * common/common-regcache.h: Rename include guard.
12496 * common/common-inferior.h: Rename include guard.
12497 * common/common-gdbthread.h: Rename include guard.
12498 * common/common-exceptions.h: Rename include guard.
12499 * common/common-defs.h: Rename include guard.
12500 * common/common-debug.h: Rename include guard.
12501 * common/cleanups.h: Rename include guard.
12502 * common/buffer.h: Rename include guard.
12503 * common/btrace-common.h: Rename include guard.
12504 * common/break-common.h: Rename include guard.
12505 * cli/cli-utils.h: Rename include guard.
12506 * cli/cli-style.h: Rename include guard.
12507 * cli/cli-setshow.h: Rename include guard.
12508 * cli/cli-script.h: Rename include guard.
12509 * cli/cli-interp.h: Rename include guard.
12510 * cli/cli-decode.h: Rename include guard.
12511 * cli/cli-cmds.h: Rename include guard.
12512 * charset-list.h: Add include guard.
12513 * buildsym-legacy.h: Rename include guard.
12514 * bfin-tdep.h: Add include guard.
12515 * ax.h: Rename include guard.
12516 * arm-linux-tdep.h: Add include guard.
12517 * arm-fbsd-tdep.h: Add include guard.
12518 * arch/xtensa.h: Rename include guard.
12519 * arch/tic6x.h: Add include guard.
12520 * arch/i386.h: Add include guard.
12521 * arch/arm.h: Rename include guard.
12522 * arch/arm-linux.h: Rename include guard.
12523 * arch/arm-get-next-pcs.h: Rename include guard.
12524 * arch/amd64.h: Add include guard.
12525 * arch/aarch64-insn.h: Rename include guard.
12526 * arch-utils.h: Rename include guard.
12527 * annotate.h: Add include guard.
12528 * amd64-darwin-tdep.h: Rename include guard.
12529 * aarch64-linux-tdep.h: Add include guard.
12530 * aarch64-fbsd-tdep.h: Add include guard.
12531 * aarch32-linux-nat.h: Add include guard.
12532
12533 2019-02-06 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12534
12535 * macrotab.c (macro_define_internal): New function that
12536 factorizes macro_define_object_internal and macro_define_function
12537 code.
12538 (macro_define_object_internal): Use macro_define_internal.
12539 (macro_define_function): Likewise.
12540
12541 2019-02-06 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12542
12543 * macrocmd.c (extract_identifier): Return
12544 a gdb::unique_xmalloc_ptr<char> instead of a char *, and update
12545 callers.
12546
12547 2019-02-06 John Baldwin <jhb@FreeBSD.org>
12548
12549 * fbsd-nat.c (fbsd_fetch_cmdline): Join arguments with spaces.
12550
12551 2019-02-05 Tom Tromey <tom@tromey.com>
12552
12553 * target.c (target_stack::unpush): Move assertion earlier.
12554
12555 2019-01-30 Tom Tromey <tom@tromey.com>
12556
12557 PR python/23615:
12558 * python/python.c (execute_gdb_command): Use gdbpy_allow_threads.
12559 (gdbpy_parse_and_eval): Likewise.
12560 * python/python-internal.h (gdbpy_allow_threads): New class.
12561
12562 2019-01-28 John Baldwin <jhb@FreeBSD.org>
12563
12564 * aarch64-fbsd-tdep.c (aarch64_fbsd_gregmap)
12565 (aarch64_fbsd_fpregmap): Move earlier.
12566 (AARCH64_MCONTEXT_REG_SIZE, AARCH64_MCONTEXT_FPREG_SIZE): Delete.
12567 (aarch64_fbsd_sigframe_init): Use trad_frame_set_reg_regmap
12568 instead of individual calls to trad_frame_set_reg_addr.
12569 * arm-fbsd-tdep.c (arm_fbsd_gregmap, arm_fbsd_vfpregmap): Move
12570 earlier.
12571 (ARM_MCONTEXT_REG_SIZE, ARM_MCONTEXT_VFP_REG_SIZE): Delete.
12572 (arm_fbsd_sigframe_init): Use trad_frame_set_reg_regmap
12573 instead of individual calls to trad_frame_set_reg_addr.
12574
12575 2019-01-28 Alan Hayward <alan.hayward@arm.com>
12576
12577 * CONTRIBUTE: Replace contribution list with wiki link.
12578
12579 2019-01-25 Tom Tromey <tom@tromey.com>
12580
12581 * Makefile.in (GDB_CFLAGS): Don't add -I for common.
12582
12583 2019-01-25 Tom Tromey <tom@tromey.com>
12584
12585 * xtensa-linux-nat.c: Fix common/ includes.
12586 * xml-support.h: Fix common/ includes.
12587 * xml-support.c: Fix common/ includes.
12588 * x86-linux-nat.c: Fix common/ includes.
12589 * windows-nat.c: Fix common/ includes.
12590 * varobj.h: Fix common/ includes.
12591 * varobj.c: Fix common/ includes.
12592 * value.c: Fix common/ includes.
12593 * valops.c: Fix common/ includes.
12594 * utils.c: Fix common/ includes.
12595 * unittests/xml-utils-selftests.c: Fix common/ includes.
12596 * unittests/utils-selftests.c: Fix common/ includes.
12597 * unittests/unpack-selftests.c: Fix common/ includes.
12598 * unittests/tracepoint-selftests.c: Fix common/ includes.
12599 * unittests/style-selftests.c: Fix common/ includes.
12600 * unittests/string_view-selftests.c: Fix common/ includes.
12601 * unittests/scoped_restore-selftests.c: Fix common/ includes.
12602 * unittests/scoped_mmap-selftests.c: Fix common/ includes.
12603 * unittests/scoped_fd-selftests.c: Fix common/ includes.
12604 * unittests/rsp-low-selftests.c: Fix common/ includes.
12605 * unittests/parse-connection-spec-selftests.c: Fix common/
12606 includes.
12607 * unittests/optional-selftests.c: Fix common/ includes.
12608 * unittests/offset-type-selftests.c: Fix common/ includes.
12609 * unittests/observable-selftests.c: Fix common/ includes.
12610 * unittests/mkdir-recursive-selftests.c: Fix common/ includes.
12611 * unittests/memrange-selftests.c: Fix common/ includes.
12612 * unittests/memory-map-selftests.c: Fix common/ includes.
12613 * unittests/lookup_name_info-selftests.c: Fix common/ includes.
12614 * unittests/function-view-selftests.c: Fix common/ includes.
12615 * unittests/environ-selftests.c: Fix common/ includes.
12616 * unittests/copy_bitwise-selftests.c: Fix common/ includes.
12617 * unittests/common-utils-selftests.c: Fix common/ includes.
12618 * unittests/cli-utils-selftests.c: Fix common/ includes.
12619 * unittests/array-view-selftests.c: Fix common/ includes.
12620 * ui-file.c: Fix common/ includes.
12621 * tui/tui-io.c: Fix common/ includes.
12622 * tracepoint.h: Fix common/ includes.
12623 * tracepoint.c: Fix common/ includes.
12624 * tracefile-tfile.c: Fix common/ includes.
12625 * top.h: Fix common/ includes.
12626 * top.c: Fix common/ includes.
12627 * thread.c: Fix common/ includes.
12628 * target/waitstatus.h: Fix common/ includes.
12629 * target/waitstatus.c: Fix common/ includes.
12630 * target.h: Fix common/ includes.
12631 * target.c: Fix common/ includes.
12632 * target-memory.c: Fix common/ includes.
12633 * target-descriptions.c: Fix common/ includes.
12634 * symtab.h: Fix common/ includes.
12635 * symfile.c: Fix common/ includes.
12636 * stap-probe.c: Fix common/ includes.
12637 * spu-linux-nat.c: Fix common/ includes.
12638 * sparc-nat.c: Fix common/ includes.
12639 * source.c: Fix common/ includes.
12640 * solib.c: Fix common/ includes.
12641 * solib-target.c: Fix common/ includes.
12642 * ser-unix.c: Fix common/ includes.
12643 * ser-tcp.c: Fix common/ includes.
12644 * ser-pipe.c: Fix common/ includes.
12645 * ser-base.c: Fix common/ includes.
12646 * selftest-arch.c: Fix common/ includes.
12647 * s12z-tdep.c: Fix common/ includes.
12648 * rust-exp.y: Fix common/ includes.
12649 * rs6000-aix-tdep.c: Fix common/ includes.
12650 * riscv-tdep.c: Fix common/ includes.
12651 * remote.c: Fix common/ includes.
12652 * remote-notif.h: Fix common/ includes.
12653 * remote-fileio.h: Fix common/ includes.
12654 * remote-fileio.c: Fix common/ includes.
12655 * regcache.h: Fix common/ includes.
12656 * regcache.c: Fix common/ includes.
12657 * record-btrace.c: Fix common/ includes.
12658 * python/python.c: Fix common/ includes.
12659 * python/py-type.c: Fix common/ includes.
12660 * python/py-inferior.c: Fix common/ includes.
12661 * progspace.h: Fix common/ includes.
12662 * producer.c: Fix common/ includes.
12663 * procfs.c: Fix common/ includes.
12664 * proc-api.c: Fix common/ includes.
12665 * printcmd.c: Fix common/ includes.
12666 * ppc-linux-nat.c: Fix common/ includes.
12667 * parser-defs.h: Fix common/ includes.
12668 * osdata.c: Fix common/ includes.
12669 * obsd-nat.c: Fix common/ includes.
12670 * nat/x86-linux.c: Fix common/ includes.
12671 * nat/x86-linux-dregs.c: Fix common/ includes.
12672 * nat/x86-dregs.h: Fix common/ includes.
12673 * nat/x86-dregs.c: Fix common/ includes.
12674 * nat/ppc-linux.c: Fix common/ includes.
12675 * nat/mips-linux-watch.h: Fix common/ includes.
12676 * nat/mips-linux-watch.c: Fix common/ includes.
12677 * nat/linux-waitpid.c: Fix common/ includes.
12678 * nat/linux-ptrace.h: Fix common/ includes.
12679 * nat/linux-ptrace.c: Fix common/ includes.
12680 * nat/linux-procfs.c: Fix common/ includes.
12681 * nat/linux-personality.c: Fix common/ includes.
12682 * nat/linux-osdata.c: Fix common/ includes.
12683 * nat/linux-namespaces.c: Fix common/ includes.
12684 * nat/linux-btrace.h: Fix common/ includes.
12685 * nat/linux-btrace.c: Fix common/ includes.
12686 * nat/fork-inferior.c: Fix common/ includes.
12687 * nat/amd64-linux-siginfo.c: Fix common/ includes.
12688 * nat/aarch64-sve-linux-ptrace.c: Fix common/ includes.
12689 * nat/aarch64-linux.c: Fix common/ includes.
12690 * nat/aarch64-linux-hw-point.h: Fix common/ includes.
12691 * nat/aarch64-linux-hw-point.c: Fix common/ includes.
12692 * namespace.h: Fix common/ includes.
12693 * mips-linux-tdep.c: Fix common/ includes.
12694 * minsyms.c: Fix common/ includes.
12695 * mi/mi-parse.h: Fix common/ includes.
12696 * mi/mi-main.c: Fix common/ includes.
12697 * mi/mi-cmd-env.c: Fix common/ includes.
12698 * memrange.h: Fix common/ includes.
12699 * memattr.c: Fix common/ includes.
12700 * maint.h: Fix common/ includes.
12701 * maint.c: Fix common/ includes.
12702 * main.c: Fix common/ includes.
12703 * machoread.c: Fix common/ includes.
12704 * location.c: Fix common/ includes.
12705 * linux-thread-db.c: Fix common/ includes.
12706 * linux-nat.c: Fix common/ includes.
12707 * linux-fork.c: Fix common/ includes.
12708 * inline-frame.c: Fix common/ includes.
12709 * infrun.c: Fix common/ includes.
12710 * inflow.c: Fix common/ includes.
12711 * inferior.h: Fix common/ includes.
12712 * inferior.c: Fix common/ includes.
12713 * infcmd.c: Fix common/ includes.
12714 * inf-ptrace.c: Fix common/ includes.
12715 * inf-child.c: Fix common/ includes.
12716 * ia64-linux-nat.c: Fix common/ includes.
12717 * i387-tdep.c: Fix common/ includes.
12718 * i386-tdep.c: Fix common/ includes.
12719 * i386-linux-tdep.c: Fix common/ includes.
12720 * i386-linux-nat.c: Fix common/ includes.
12721 * i386-go32-tdep.c: Fix common/ includes.
12722 * i386-fbsd-tdep.c: Fix common/ includes.
12723 * i386-fbsd-nat.c: Fix common/ includes.
12724 * guile/scm-type.c: Fix common/ includes.
12725 * guile/guile.c: Fix common/ includes.
12726 * go32-nat.c: Fix common/ includes.
12727 * gnu-nat.c: Fix common/ includes.
12728 * gdbthread.h: Fix common/ includes.
12729 * gdbarch-selftests.c: Fix common/ includes.
12730 * gdb_usleep.c: Fix common/ includes.
12731 * gdb_select.h: Fix common/ includes.
12732 * gdb_bfd.c: Fix common/ includes.
12733 * gcore.c: Fix common/ includes.
12734 * fork-child.c: Fix common/ includes.
12735 * findvar.c: Fix common/ includes.
12736 * fbsd-nat.c: Fix common/ includes.
12737 * event-top.c: Fix common/ includes.
12738 * event-loop.c: Fix common/ includes.
12739 * dwarf2read.c: Fix common/ includes.
12740 * dwarf2loc.c: Fix common/ includes.
12741 * dwarf2-frame.c: Fix common/ includes.
12742 * dwarf-index-cache.c: Fix common/ includes.
12743 * dtrace-probe.c: Fix common/ includes.
12744 * disasm-selftests.c: Fix common/ includes.
12745 * defs.h: Fix common/ includes.
12746 * csky-tdep.c: Fix common/ includes.
12747 * cp-valprint.c: Fix common/ includes.
12748 * cp-support.h: Fix common/ includes.
12749 * cp-support.c: Fix common/ includes.
12750 * corelow.c: Fix common/ includes.
12751 * completer.h: Fix common/ includes.
12752 * completer.c: Fix common/ includes.
12753 * compile/compile.c: Fix common/ includes.
12754 * compile/compile-loc2c.c: Fix common/ includes.
12755 * compile/compile-cplus-types.c: Fix common/ includes.
12756 * compile/compile-cplus-symbols.c: Fix common/ includes.
12757 * command.h: Fix common/ includes.
12758 * cli/cli-dump.c: Fix common/ includes.
12759 * cli/cli-cmds.c: Fix common/ includes.
12760 * charset.c: Fix common/ includes.
12761 * build-id.c: Fix common/ includes.
12762 * btrace.h: Fix common/ includes.
12763 * btrace.c: Fix common/ includes.
12764 * breakpoint.h: Fix common/ includes.
12765 * breakpoint.c: Fix common/ includes.
12766 * ax.h:
12767 (enum agent_op): Fix common/ includes.
12768 * ax-general.c (struct aop_map): Fix common/ includes.
12769 * ax-gdb.c: Fix common/ includes.
12770 * auxv.c: Fix common/ includes.
12771 * auto-load.c: Fix common/ includes.
12772 * arm-tdep.c: Fix common/ includes.
12773 * arch/riscv.c: Fix common/ includes.
12774 * arch/ppc-linux-common.c: Fix common/ includes.
12775 * arch/i386.c: Fix common/ includes.
12776 * arch/arm.c: Fix common/ includes.
12777 * arch/arm-linux.c: Fix common/ includes.
12778 * arch/arm-get-next-pcs.c: Fix common/ includes.
12779 * arch/amd64.c: Fix common/ includes.
12780 * arch/aarch64.c: Fix common/ includes.
12781 * arch/aarch64-insn.c: Fix common/ includes.
12782 * arch-utils.c: Fix common/ includes.
12783 * amd64-windows-tdep.c: Fix common/ includes.
12784 * amd64-tdep.c: Fix common/ includes.
12785 * amd64-sol2-tdep.c: Fix common/ includes.
12786 * amd64-obsd-tdep.c: Fix common/ includes.
12787 * amd64-nbsd-tdep.c: Fix common/ includes.
12788 * amd64-linux-tdep.c: Fix common/ includes.
12789 * amd64-linux-nat.c: Fix common/ includes.
12790 * amd64-fbsd-tdep.c: Fix common/ includes.
12791 * amd64-fbsd-nat.c: Fix common/ includes.
12792 * amd64-dicos-tdep.c: Fix common/ includes.
12793 * amd64-darwin-tdep.c: Fix common/ includes.
12794 * agent.c: Fix common/ includes.
12795 * ada-lang.h: Fix common/ includes.
12796 * ada-lang.c: Fix common/ includes.
12797 * aarch64-tdep.c: Fix common/ includes.
12798
12799 2019-01-25 Tom Tromey <tom@tromey.com>
12800
12801 * common/create-version.sh: Use common/version.h.
12802
12803 2019-01-24 Pedro Alves <palves@redhat.com>
12804
12805 * infrun.c (signal_stop, signal_print, signal_program)
12806 (signal_catch, signal_pass): Now arrays instead of pointers.
12807 (update_signals_program_target, do_target_resume)
12808 (signal_catch_update, handle_command, _initialize_infrun): Adjust.
12809 * linux-nat.c (linux_nat_target::pass_signals)
12810 (linux_nat_target::create_inferior, linux_nat_target::attach):
12811 Adjust.
12812 * linux-nat.h (linux_nat_target::pass_signals): Adjust.
12813 * nto-procfs.c (nto_procfs_target::pass_signals): Adjust.
12814 * procfs.c (procfs_target::pass_signals): Adjust.
12815 * record-full.c (record_full_target::resume): Adjust.
12816 * remote.c (remote_target::pass_signals)
12817 (remote_target::program_signals): Adjust.
12818 * target-debug.h (target_debug_print_signals): Now takes a
12819 gdb::array_view as parameter. Adjust.
12820 * target.h (target_ops) <pass_signals, program_signals>: Replace
12821 pointer and length parameters with gdb::array_view.
12822 (target_pass_signals, target_program_signals): Likewise.
12823 * target-delegates.c: Regenerate.
12824
12825 2019-01-24 Pedro Alves <palves@redhat.com>
12826
12827 * common/forward-scope-exit.h
12828 (forward_scope_exit::forward_scope_exit): Pass arguments to
12829 m_bind_function directly, instead of creating a std::bind and
12830 copying that.
12831
12832 2019-01-24 Alan Hayward <alan.hayward@arm.com>
12833
12834 * aarch64-tdep.c (aapcs_is_vfp_call_or_return_candidate_1): Check
12835 for static members.
12836 (pass_in_v_vfp_candidate): Likewise.
12837
12838 2019-01-23 Tom Tromey <tom@tromey.com>
12839 Pedro Alves <palves@redhat.com>
12840
12841 * regcache.c (class regcache_invalidator): Remove.
12842 (regcache::raw_write): Use make_scope_exit.
12843
12844 2019-01-23 Tom Tromey <tom@tromey.com>
12845
12846 * ui-out.h (class ui_out_emit_type): Update comment.
12847
12848 2019-01-23 Tom Tromey <tom@tromey.com>
12849
12850 * infrun.c (fetch_inferior_event): Update comment.
12851
12852 2019-01-23 Tom Tromey <tom@tromey.com>
12853 Pedro Alves <palves@redhat.com>
12854
12855 * infrun.c (reinstall_readline_callback_handler_cleanup): Remove
12856 parameter.
12857 (fetch_inferior_event): Use SCOPE_EXIT.
12858
12859
12860 2019-01-23 Tom Tromey <tom@tromey.com>
12861 Pedro Alves <palves@redhat.com>
12862
12863 * infrun.c (disable_thread_events): Delete.
12864 (stop_all_threads): Use SCOPE_EXIT.
12865
12866 2019-01-23 Tom Tromey <tom@tromey.com>
12867 Pedro Alves <palves@redhat.com>
12868
12869 * symfile.c: Include forward-scope-exit.h.
12870 (clear_symtab_users_cleanup): Replace forward declaration with
12871 a FORWARD_SCOPE_EXIT.
12872 (syms_from_objfile_1): Use the forward_scope_exit and
12873 gdb::optional instead of cleanup_function.
12874 (reread_symbols): Use the forward_scope_exit instead of
12875 cleanup_function.
12876 (clear_symtab_users_cleanup): Remove function.
12877
12878 2019-01-23 Tom Tromey <tom@tromey.com>
12879 Pedro Alves <palves@redhat.com>
12880
12881 * linux-nat.c: Include scope-exit.h.
12882 (cleanup_target_stop): Remove.
12883 (linux_nat_target::static_tracepoint_markers_by_strid): Use
12884 SCOPE_EXIT.
12885
12886 2019-01-23 Tom Tromey <tom@tromey.com>
12887 Pedro Alves <palves@redhat.com>
12888
12889 * infcall.c (cleanup_delete_std_terminate_breakpoint): Remove.
12890 (call_function_by_hand_dummy): Use SCOPE_EXIT.
12891
12892 2019-01-23 Tom Tromey <tom@tromey.com>
12893 Andrew Burgess <andrew.burgess@embecosm.com>
12894 Pedro Alves <palves@redhat.com>
12895
12896 * infrun.c (fetch_inferior_event): Use scope_exit.
12897 * utils.h (make_bpstat_clear_actions_cleanup): Don't declare.
12898 * top.c (execute_command): Use scope_exit.
12899 * breakpoint.c (bpstat_do_actions): Use scope_exit.
12900 * utils.c (do_bpstat_clear_actions_cleanup)
12901 (make_bpstat_clear_actions_cleanup): Remove.
12902
12903 2019-01-23 Tom Tromey <tom@tromey.com>
12904 Pedro Alves <palves@redhat.com>
12905
12906 * infrun.c: Include "common/scope-exit.h"
12907 (delete_just_stopped_threads_infrun_breakpoints_cleanup): Remove.
12908 (wait_for_inferior): Use SCOPE_EXIT.
12909 (fetch_inferior_event): Use scope_exit.
12910
12911 2019-01-23 Tom Tromey <tom@tromey.com>
12912 Pedro Alves <palves@redhat.com>
12913
12914 * breakpoint.c (create_breakpoint): Remove cleanup.
12915
12916 2019-01-23 Tom Tromey <tom@tromey.com>
12917 Andrew Burgess <andrew.burgess@embecosm.com>
12918 Pedro Alves <palves@redhat.com>
12919
12920 2019-01-23 Pedro Alves <palves@redhat.com>
12921
12922 * gdbarch-selftests.c (struct on_exit): Use SCOPE_EXIT.
12923
12924 2019-01-23 Pedro Alves <palves@redhat.com>
12925 Andrew Burgess <andrew.burgess@embecosm.com>
12926
12927 * gdbthread.h: Include "common/forward-scope-exit.h".
12928 (scoped_finish_thread_state): Redefine custom class in terms of
12929 forward_scope_exit.
12930
12931 2019-01-23 Pedro Alves <palves@redhat.com>
12932 Andrew Burgess <andrew.burgess@embecosm.com>
12933
12934 * common/forward-scope-exit.h: New file.
12935
12936 2019-01-23 Pedro Alves <palves@redhat.com>
12937 Andrew Burgess <andrew.burgess@embecosm.com>
12938 Tom Tromey <tom@tromey.com>
12939
12940 * common/scope-exit.h: New file.
12941
12942 2019-01-23 Pedro Alves <palves@redhat.com>
12943
12944 * common/preprocessor.h (ESC): Rename to ...
12945 (ESC_PARENS): ... this.
12946 * common/valid-expr.h (CHECK_VALID_EXPR_1, CHECK_VALID_EXPR_2)
12947 (CHECK_VALID_EXPR_3, CHECK_VALID_EXPR_4): Adjust.
12948
12949 2019-01-23 Tom Tromey <tom@tromey.com>
12950
12951 * language.h (class scoped_switch_to_sym_language_if_auto):
12952 Initialize m_lang in both cases.
12953
12954 2019-01-23 Alan Hayward <alan.hayward@arm.com>
12955
12956 * nat/aarch64-linux.c (aarch64_linux_new_thread): Replace XNEW
12957 with XCNEW.
12958
12959 2019-01-22 Tom Tromey <tom@tromey.com>
12960
12961 * corelow.c: Do not include sys/file.h.
12962
12963 2019-01-22 Tom Tromey <tom@tromey.com>
12964
12965 * tui/tui-wingeneral.h: Include gdb_curses.h.
12966
12967 2019-01-22 Tom Tromey <tom@tromey.com>
12968
12969 * source-cache.h (class source_cache) <get_source_lines,
12970 get_plain_source_lines, extract_lines>: Rename "lines" parameter.
12971
12972 2019-01-22 Tom Tromey <tom@tromey.com>
12973
12974 * remote-fileio.h (struct remote_target): Declare.
12975
12976 2019-01-22 Tom Tromey <tom@tromey.com>
12977
12978 * python/py-arch.c: Do not include py-ref.h.
12979 * python/py-bpevent.c: Do not include py-ref.h.
12980 * python/py-cmd.c: Do not include py-ref.h.
12981 * python/py-continueevent.c: Do not include py-ref.h.
12982 * python/py-event.h: Do not include py-ref.h.
12983 * python/py-evtregistry.c: Do not include py-ref.h.
12984 * python/py-finishbreakpoint.c: Do not include py-ref.h.
12985 * python/py-frame.c: Do not include py-ref.h.
12986 * python/py-framefilter.c: Do not include py-ref.h.
12987 * python/py-function.c: Do not include py-ref.h.
12988 * python/py-infevents.c: Do not include py-ref.h.
12989 * python/py-linetable.c: Do not include py-ref.h.
12990 * python/py-objfile.c: Do not include py-ref.h.
12991 * python/py-param.c: Do not include py-ref.h.
12992 * python/py-prettyprint.c: Do not include py-ref.h.
12993 * python/py-progspace.c: Do not include py-ref.h.
12994 * python/py-symbol.c: Do not include py-ref.h.
12995 * python/py-symtab.c: Do not include py-ref.h.
12996 * python/py-type.c: Do not include py-ref.h.
12997 * python/py-unwind.c: Do not include py-ref.h.
12998 * python/py-utils.c: Do not include py-ref.h.
12999 * python/py-value.c: Do not include py-ref.h.
13000 * python/py-varobj.c: Do not include py-ref.h.
13001 * python/py-xmethods.c: Do not include py-ref.h.
13002 * python/python.c: Do not include py-ref.h.
13003 * varobj.c: Do not include py-ref.h.
13004
13005 2019-01-22 Tom Tromey <tom@tromey.com>
13006
13007 * objfiles.h (struct objfile_per_bfd_storage): Use "struct"
13008 keyword for bcache.
13009
13010 2019-01-22 Tom Tromey <tom@tromey.com>
13011
13012 * compile/compile-cplus-types.c: Remove a comment by #include.
13013
13014 2019-01-22 Tom Tromey <tom@tromey.com>
13015
13016 * compile/gcc-c-plugin.h: Include compile-internal.h.
13017
13018 2019-01-22 Tom Tromey <tom@tromey.com>
13019
13020 * stabsread.c (EXTERN): Do not define.
13021 (symnum, next_symbol_text_func, processing_gcc_compilation)
13022 (within_function, global_sym_chain, global_stabs)
13023 (previous_stab_code, this_object_header_files)
13024 (n_this_object_header_files)
13025 (n_allocated_this_object_header_files): Define.
13026 * stabsread.h (EXTERN): Never define. Use "extern".
13027
13028 2019-01-22 Philippe Waroquiers <philippe.waroquiers@skynet.be>
13029
13030 * event-top.c (handle_line_of_input): use unique_xmalloc_ptr for
13031 history_value.
13032
13033 2019-01-21 Tom Tromey <tom@tromey.com>
13034
13035 * ui-out.c: Fix includes.
13036 * tui/tui-source.c: Fix includes.
13037 * target.c: Fix includes.
13038 * remote.c: Fix includes.
13039 * regcache.c: Fix includes.
13040 * python/py-block.c: Fix includes.
13041 * printcmd.c: Fix includes.
13042 * or1k-tdep.c: Fix includes.
13043 * mi/mi-main.c: Fix includes.
13044 * m32r-tdep.c: Fix includes.
13045 * csky-tdep.c: Fix includes.
13046 * compile/compile-cplus-types.c: Fix includes.
13047 * cli/cli-interp.c: Fix includes.
13048
13049 2019-01-21 Alan Hayward <alan.hayward@arm.com>
13050
13051 * aarch64-tdep.c (aapcs_is_vfp_call_or_return_candidate_1): Check
13052 for padding.
13053
13054 2019-01-16 Tom Tromey <tom@tromey.com>
13055
13056 * objfiles.h (struct minimal_symbol_iterator): Rename. Move
13057 earlier.
13058 (struct objfile) <msymbols_range>: Move from top level.
13059 <msymbols>: New method.
13060 (class objfile_msymbols): Remove.
13061 * symtab.c (default_collect_symbol_completion_matches_break_on):
13062 Update.
13063 * symmisc.c (dump_msymbols): Update.
13064 * stabsread.c (scan_file_globals): Update.
13065 * objc-lang.c (info_selectors_command, info_classes_command)
13066 (find_methods): Update.
13067 * minsyms.c (find_solib_trampoline_target): Update.
13068 * hppa-tdep.c (hppa_lookup_stub_minimal_symbol): Update.
13069 * coffread.c (coff_symfile_read): Update.
13070 * ada-lang.c (ada_lookup_simple_minsym)
13071 (ada_collect_symbol_completion_matches): Update.
13072
13073 2019-01-16 Tom Tromey <tom@tromey.com>
13074
13075 * objfiles.h (class objfile_msymbols) <iterator>: Change argument
13076 type. Remove no-argument constructor.
13077 <iterator::operator++>: Simplify.
13078 <begin>: Update.
13079 <end>: Use minimal_symbol_count.
13080
13081 2019-01-16 Tom Tromey <tom@tromey.com>
13082
13083 * objfiles.h (struct objfile) <psymtabs>: New method.
13084 (class objfile_psymtabs): Remove.
13085 * psymtab.h (class psymtab_storage) <partial_symtab_range>: New
13086 typedef.
13087 <range>: New method.
13088 (require_partial_symbols): Change return type.
13089 * psymtab.c (require_partial_symbols)
13090 (psym_expand_symtabs_matching): Update.
13091 * mdebugread.c (parse_partial_symbols): Update.
13092 * dbxread.c (dbx_end_psymtab): Update.
13093
13094 2019-01-15 Tom Tromey <tom@tromey.com>
13095
13096 * symtab.c (lookup_objfile_from_block)
13097 (lookup_symbol_in_objfile_symtabs)
13098 (basic_lookup_transparent_type_1, find_pc_sect_compunit_symtab)
13099 (find_line_symtab, info_sources_command)
13100 (default_collect_symbol_completion_matches_break_on)
13101 (make_source_files_completion_list): Update.
13102 * symmisc.c (print_objfile_statistics, dump_objfile)
13103 (maintenance_print_symbols, maintenance_info_symtabs)
13104 (maintenance_check_symtabs, maintenance_info_line_tables):
13105 Update.
13106 * source.c (select_source_symtab)
13107 (forget_cached_source_info_for_objfile): Update.
13108 * objfiles.h (class objfile_compunits): Remove.
13109 (struct objfile) <compunits_range>: New typedef.
13110 (compunits): New method.
13111 * objfiles.c (objfile_relocate1): Update.
13112 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Update.
13113 * maint.c (count_symtabs_and_blocks): Update.
13114 * linespec.c (iterate_over_all_matching_symtabs): Update.
13115 * cp-support.c (add_symbol_overload_list_qualified): Update.
13116 * coffread.c (coff_symtab_read): Update.
13117 * ada-lang.c (add_nonlocal_symbols)
13118 (ada_collect_symbol_completion_matches)
13119 (ada_add_global_exceptions): Update.
13120
13121 2019-01-15 Tom Tromey <tom@tromey.com>
13122
13123 * progspace.h (program_space) <objfiles_safe_range>: New
13124 typedef.
13125 <objfiles_safe>: New method.
13126 * objfiles.h (class all_objfiles_safe): Remove.
13127 * objfiles.c (free_all_objfiles, objfile_purge_solibs): Update.
13128 * jit.c (jit_inferior_exit_hook): Update.
13129
13130 2019-01-17 Tom Tromey <tom@tromey.com>
13131
13132 * progspace.h (program_space) <objfiles_range>: New typedef.
13133 <objfiles>: New method.
13134 <objfiles_head>: Rename from objfiles.
13135 (object_files): Update.
13136 * guile/scm-progspace.c (gdbscm_progspace_objfiles): Update.
13137 * guile/scm-pretty-print.c
13138 (ppscm_find_pretty_printer_from_objfiles): Update.
13139 * guile/scm-objfile.c (gdbscm_objfiles): Update.
13140 * python/py-xmethods.c (gdbpy_get_matching_xmethod_workers):
13141 Update.
13142 * python/py-progspace.c (pspy_get_objfiles): Update.
13143 * python/py-prettyprint.c (find_pretty_printer_from_objfiles):
13144 Update.
13145 * python/py-objfile.c (objfpy_lookup_objfile_by_name)
13146 (objfpy_lookup_objfile_by_build_id): Update.
13147 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Update.
13148 * windows-tdep.c (windows_iterate_over_objfiles_in_search_order):
13149 Update.
13150 * symtab.c (iterate_over_symtabs, matching_obj_sections)
13151 (expand_symtab_containing_pc, lookup_objfile_from_block)
13152 (lookup_static_symbol, basic_lookup_transparent_type)
13153 (find_pc_sect_compunit_symtab, find_symbol_at_address)
13154 (find_line_symtab, info_sources_command)
13155 (default_collect_symbol_completion_matches_break_on)
13156 (make_source_files_completion_list, find_main_name): Update.
13157 * symmisc.c (print_symbol_bcache_statistics)
13158 (print_objfile_statistics, maintenance_print_symbols)
13159 (maintenance_print_msymbols, maintenance_print_objfiles)
13160 (maintenance_info_symtabs, maintenance_check_symtabs)
13161 (maintenance_expand_symtabs, maintenance_info_line_tables):
13162 Update.
13163 * symfile.c (remove_symbol_file_command, overlay_invalidate_all)
13164 (find_pc_overlay, find_pc_mapped_section, list_overlays_command)
13165 (map_overlay_command, unmap_overlay_command)
13166 (simple_overlay_update, expand_symtabs_matching)
13167 (map_symbol_filenames): Update.
13168 * symfile-debug.c (set_debug_symfile): Update.
13169 * spu-tdep.c (spu_overlay_update, spu_objfile_from_frame):
13170 Update.
13171 * source.c (select_source_symtab, forget_cached_source_info):
13172 Update.
13173 * solib.c (solib_read_symbols): Update.
13174 * solib-spu.c (append_ocl_sos): Update.
13175 * psymtab.c (maintenance_print_psymbols)
13176 (maintenance_info_psymtabs, maintenance_check_psymtabs): Update.
13177 * probe.c (parse_probes_in_pspace, find_probe_by_pc): Update.
13178 * printcmd.c (info_symbol_command): Update.
13179 * ppc-linux-tdep.c (ppc_linux_spe_context_inferior_created):
13180 Update.
13181 * objfiles.h (class all_objfiles): Remove.
13182 * objfiles.c (have_partial_symbols, have_full_symbols)
13183 (have_minimal_symbols, qsort_cmp, update_section_map)
13184 (shared_objfile_contains_address_p)
13185 (default_iterate_over_objfiles_in_search_order): Update.
13186 * objc-lang.c (info_selectors_command, info_classes_command)
13187 (find_methods): Update.
13188 * minsyms.c (find_solib_trampoline_target): Update.
13189 * maint.c (maintenance_info_sections)
13190 (maintenance_translate_address, count_symtabs_and_blocks):
13191 Update.
13192 * main.c (captured_main_1): Update.
13193 * linux-thread-db.c (try_thread_db_load_from_pdir)
13194 (has_libpthread): Update.
13195 * linespec.c (iterate_over_all_matching_symtabs)
13196 (search_minsyms_for_name): Update.
13197 * jit.c (jit_find_objf_with_entry_addr): Update.
13198 * hppa-tdep.c (find_unwind_entry)
13199 (hppa_lookup_stub_minimal_symbol): Update.
13200 * gcore.c (gcore_create_callback, objfile_find_memory_regions):
13201 Update.
13202 * elfread.c (elf_gnu_ifunc_resolve_by_cache)
13203 (elf_gnu_ifunc_resolve_by_got): Update.
13204 * dwarf2-frame.c (dwarf2_frame_find_fde): Update.
13205 * dwarf-index-write.c (save_gdb_index_command): Update.
13206 * cp-support.c (add_symbol_overload_list_qualified): Update.
13207 * breakpoint.c (create_overlay_event_breakpoint)
13208 (create_longjmp_master_breakpoint)
13209 (create_std_terminate_master_breakpoint)
13210 (create_exception_master_breakpoint): Update.
13211 * blockframe.c (find_pc_partial_function): Update.
13212 * ada-lang.c (ada_lookup_simple_minsym, add_nonlocal_symbols)
13213 (ada_collect_symbol_completion_matches)
13214 (ada_add_global_exceptions): Update.
13215
13216 2019-01-17 Tom Tromey <tom@tromey.com>
13217
13218 * solib-target.c (lm_info_target_p): Remove typedef. Don't
13219 declare VEC.
13220 (solib_target_parse_libraries): Change return type.
13221 (library_list_start_segment, library_list_start_section)
13222 (library_list_end_library, library_list_start_library); Update.
13223 (solib_target_free_library_list): Remove.
13224 (solib_target_parse_libraries): Remove cleanup. Change return
13225 type.
13226 (solib_target_current_sos): Update.
13227
13228 2019-01-17 Tom Tromey <tromey@bapiya>
13229
13230 * valprint.c: Replace "the the" with "the".
13231 * symtab.c: Replace "the the" with "the".
13232 * solib.c: Replace "the the" with "the".
13233 * solib-dsbt.c: Replace "the the" with "the".
13234 * linespec.c: Replace "the the" with "the".
13235 * dwarf2loc.h: Replace "the the" with "the".
13236 * amd64-windows-tdep.c: Replace "the the" with "the".
13237 * aarch64-tdep.c: Replace "the the" with "the".
13238
13239 2019-01-16 Keith Seitz <keiths@redhat.com>
13240
13241 PR gdb/23773
13242 * dwarf2read.c (dwarf2_cu) <ancestor>: New field.
13243 <builder>: Rename to ..
13244 <m_builder>: ... this and make private.
13245 (dwarf2_cu::get_builder): New method. Change all users of
13246 `builder' to use this method.
13247 (dwarf2_start_symtab): Move to ...
13248 (dwarf2_cu::start_symtab): ... here. Update all callers
13249 (setup_type_unit_groups): Move to ...
13250 (dwarf2_cu::setup_type_unit_groups): ... here. Update all
13251 callers.
13252 (dwarf2_cu::reset_builder): New method.
13253 (process_full_compunit, process_full_type_unit): Use
13254 dwarf2_cu::reset_builder.
13255 (follow_die_offset): Record the ancestor CU if it is different
13256 from the followed DIE's CU.
13257 (follow_die_sig_1): Likewise.
13258
13259 2019-01-15 Tom Tromey <tom@tromey.com>
13260
13261 * remote.c (class remote_state) <buf>: Now a char_vector.
13262 <buf_size>: Remove.
13263 (remote_target::getpkt): Change type of buf. Remove sizeof_buf
13264 parameter.
13265 (remote_target::getpkt_or_notif_sane_1)
13266 (remote_target::getpkt_sane)
13267 (remote_target::getpkt_or_notif_sane): Likewise.
13268 (class remote_target) <putpkt>: New overload.
13269 (remote_target::read_frame): Change type of "buf_p". Remove
13270 sizeof_p parameter.
13271 (packet_ok): New overload.
13272 (packet_check_result): New overload.
13273 Update all uses.
13274
13275 2019-01-14 Tom Tromey <tom@tromey.com>
13276
13277 * remote-notif.c (handle_notification, remote_notif_ack)
13278 (remote_notif_parse): Make "buf" const.
13279 * remote-notif.h (struct notif_client) <parse, ack>: Make "buf"
13280 const.
13281 (remote_notif_parse, remote_notif_ack, handle_notification):
13282 Likewise.
13283 * remote.c (remote_notif_stop_parse): Make "buf" const.
13284 (remote_target::remote_parse_stop_reply): Make "buf" const.
13285 (remote_notif_stop_ack): Make "buf" const.
13286
13287 2019-01-14 Tom Tromey <tom@tromey.com>
13288
13289 * remote.c (remote_console_output): Make parameter const.
13290
13291 2019-01-14 Tom Tromey <tom@tromey.com>
13292
13293 * target-debug.h (target_debug_print_signals): Constify.
13294 * nto-procfs.c (nto_procfs_target::pass_signals): Update.
13295 * procfs.c (procfs_target::pass_signals): Update.
13296 * linux-nat.c (linux_nat_target::pass_signals): Update.
13297 * linux-nat.h (class linux_nat_target) <pass_signals>: Update.
13298 * target-delegates.c: Rebuild.
13299 * remote.c (remote_target::program_signals): Update.
13300 (remote_target::pass_signals): Update.
13301 * target.c (target_pass_signals): Constify argument.
13302 (target_program_signals): Likewise.
13303 * target.h (struct target_ops) <pass_signals, program_signals>:
13304 Constify argument.
13305 (target_pass_signals, target_program_signals): Constify argument.
13306
13307 2019-01-14 Tom Tromey <tom@tromey.com>
13308
13309 PR tui/28819:
13310 * tui/tui-io.c (gdb_wgetch): Print \r when needed.
13311
13312 2019-01-14 Pedro Franco de Carvalho <pedromfc@linux.ibm.com>
13313
13314 * ppc-tdep.h (struct gdbarch_tdep) <ppc_v0_alias_regnum>: New
13315 field.
13316 * rs6000-tdep.c: Include reggroups.h.
13317 (IS_V_ALIAS_PSEUDOREG): Define.
13318 (rs6000_register_name): Return names for the "vX" aliases.
13319 (rs6000_pseudo_register_type): Return type for the "vX" aliases.
13320 (rs6000_pseudo_register_reggroup_p): Restore. Handle "vX"
13321 aliases. Call default_register_reggroup_p for all other
13322 pseudo-registers.
13323 (v_alias_pseudo_register_read, v_alias_pseudo_register_write):
13324 New functions.
13325 (rs6000_pseudo_register_read, rs6000_pseudo_register_write):
13326 Handle "vX" aliases.
13327 (v_alias_pseudo_register_collect): New function.
13328 (rs6000_ax_pseudo_register_collect): Handle "vX" aliases.
13329 (rs6000_gdbarch_init): Initialize "vX" aliases as
13330 pseudo-registers. Restore registration of
13331 rs6000_pseudo_register_reggroup_p with
13332 set_tdesc_pseudo_register_reggroup_p.
13333
13334 2019-01-13 Max Filippov <jcmvbkbc@gmail.com>
13335
13336 * xtensa-linux-tdep.c (xtensa_linux_init_abi): Update
13337 tdep->num_pseudo_regs. Add calls to set_gdbarch_num_regs and
13338 set_gdbarch_num_pseudo_regs.
13339
13340 2019-01-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
13341
13342 * cli/cli-style.h (class cli_style_option): <add_setshow_commands>
13343 Remove arg prefixname, add do_set and do_show.
13344 Add member functions set_list and show_list.
13345 * cli/cli-style.c (class cli_style_option): Update accordingly.
13346 (style_set_list): Move to file scope.
13347 (style_show_list): Likewise.
13348 (set_style): Call help_list.
13349 (show_style): Call cmd_show_list.
13350 (_initialize_cli_style): New macro STYLE_ADD_SETSHOW_COMMANDS.
13351 Update to use the new macro.
13352
13353 2019-10-12 Joel Brobecker <brobecker@adacore.com>
13354
13355 * ada-lang.c (_initialize_ada_language): Expand the help text
13356 for the "catch exception" command.
13357
13358 2019-01-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
13359
13360 * symtab.c (matching_obj_sections): Initialize obj,
13361 declare it closer to its usage.
13362
13363 2019-01-10 Tom Tromey <tom@tromey.com>
13364
13365 * thread-iter.h (inf_threads_iterator): Use next_iterator.
13366 (basic_inf_threads_range): Remove.
13367 (inf_threads_range, inf_non_exited_threads_range)
13368 (safe_inf_threads_range): Use next_adapter.
13369
13370 2019-01-10 Keith Seitz <keiths@redhat.com>
13371
13372 PR gdb/23712
13373 PR symtab/23010
13374 * dwarf2read.c (dw2_add_symbol_to_list): Remove.
13375 (fixup_go_packaging, new_symbol): Use add_symbol_to_list.
13376
13377 2019-01-10 Keith Seitz <keiths@redhat.com>
13378
13379 PR gdb/23712
13380 PR symtab/23010
13381 * dictionary.c (pending_to_vector): Remove.
13382 (dict_create_hashed_1, dict_create_linear_1, dict_add_pending_1):
13383 Remove _1 suffix, replacing functions of the same name. Update
13384 all callers.
13385 (dict_create_hashed, dict_create_hashed_expandable)
13386 (dict_create_linear, dict_create_linear_expandable, dict_free)
13387 (dict_add_symbol, dict_add_pending, dict_size, dict_empty):
13388 Make functions static.
13389
13390 2019-01-10 Keith Seitz <keiths@redhat.com>
13391
13392 PR gdb/23712
13393 PR symtab/23010
13394 * dictionary.h (struct dictionary): Replace declaration with
13395 multidictionary.
13396 (dict_create_hashed, dict_create_hashed_expandable)
13397 (dict_create_linear, dict_create_linear_expandable)
13398 (dict_free, dict_add_symbol, dict_add_pending, dict_empty)
13399 (dict_iterator_first, dict_iterator_next, dict_iter_match_first)
13400 (dict_iter_match_next, dict_size): Rename to "mdict_" versions
13401 taking multidictionary argument.
13402 [ALL_DICT_SYMBOLS]: Update for multidictionary.
13403 * block.h (struct block) <dict>: Change to multidictionary
13404 and rename `multidict'.
13405 * block.c, buildsym.c, jit.c, mdebugread.c, objfiles.c,
13406 symmisc.c: Update all dictionary references to multidictionary.
13407
13408 2019-01-10 Keith Seitz <keiths@redhat.com>
13409
13410 PR gdb/23712
13411 PR symtab/23010
13412 * dictionary.c: Include unordered_map.
13413 (pending_to_vector): New function.
13414 (dict_create_hashed_1, dict_create_linear_1, dict_add_pending_1):
13415 Rewrite the non-"_1" functions to take vector instead
13416 of linked list.
13417 (dict_create_hashed, dict_create_linear, dict_add_pending): Use the
13418 "new" _1 versions of the same name.
13419 (multidictionary): Define.
13420 (std::hash<enum language): New definition.
13421 (collate_pending_symbols_by_language, mdict_create_hashed)
13422 (mdict_create_hashed_expandable, mdict_create_linear)
13423 (mdict_create_linear_expandable, mdict_free)
13424 (find_language_dictionary, create_new_language_dictionary)
13425 (mdict_add_symbol, mdict_add_pending, mdict_iterator_first)
13426 (mdict_iterator_next, mdict_iter_match_first, mdict_iter_match_next)
13427 (mdict_size, mdict_empty): New functions.
13428 * dictionary.h (mdict_iterator): Define.
13429
13430 2019-01-10 Pedro Alves <palves@redhat.com>
13431
13432 * breakpoint.c (read_uploaded_action)
13433 (create_tracepoint_from_upload): Adjust to use
13434 gdb::unique_xmalloc_ptr.
13435 * ctf.c (ctf_write_uploaded_tp):
13436 (SET_ARRAY_FIELD): Use emplace_back.
13437 (SET_STRING_FIELD): Adjust to use gdb::unique_xmalloc_ptr.
13438 * tracefile-tfile.c (tfile_write_uploaded_tp):
13439 * tracepoint.c (parse_tracepoint_definition): Adjust to use
13440 gdb::unique_xmalloc_ptr.
13441 * tracepoint.h (struct uploaded_tp) <cond, actions, step_actions,
13442 at_string, cond_string, cmd_strings>: Replace char pointers
13443 with gdb::unique_xmalloc_ptr.
13444
13445 2019-01-10 Pedro Alves <palves@redhat.com>
13446
13447 * solib-target.c (library_list_start_library): Don't xstrdup name.
13448
13449 2019-01-10 Pedro Alves <palves@redhat.com>
13450
13451 * mdebugread.c (parse_partial_symbols): Use
13452 gdb::unique_xmalloc_ptr to manage heap-allocated 'stabsstring'.
13453
13454 2019-01-10 Andrew Burgess <andrew.burgess@embecosm.com>
13455
13456 * linux-fork.c (scoped_switch_fork_info)
13457 <~scoped_switch_fork_info>: Fix incorrect variable name.
13458
13459 2019-01-10 Andrew Burgess <andrew.burgess@embecosm.com>
13460
13461 * linux-fork.c (scoped_switch_fork_info)
13462 <scoped_switch_fork_info>: Make explicit.
13463 <~scoped_switch_fork_info>: Wrap core in TRY/CATCH.
13464
13465 2019-01-10 Tom Tromey <tom@tromey.com>
13466
13467 * objfiles.h (objfile::reset_psymtabs): Update.
13468 * objfiles.c (objfile::objfile): Update.
13469 * psymtab.h (psymtab_storage::obstack): Update.
13470 (psymtab_storage::m_obstack): Use gdb::optional.
13471 (class psymtab_storage): Update comment. Remove objfile
13472 parameter.
13473 * psymtab.c (psymtab_storage::psymtab_storage): Update.
13474
13475 2019-01-10 Tom Tromey <tom@tromey.com>
13476
13477 * psymtab.h (psymtab_storage::allocate_psymtab): New method.
13478 <free_psymtabs>: Now private.
13479 * psymtab.c (psymtab_storage::allocate_psymtab): Implement.
13480 (allocate_psymtab): Use new method.
13481
13482 2019-01-10 Tom Tromey <tom@tromey.com>
13483
13484 * xcoffread.c (xcoff_end_psymtab): Use allocate_dependencies.
13485 * psymtab.h (psymtab_storage::allocate_dependencies): New method.
13486 * mdebugread.c (parse_partial_symbols): Use
13487 allocate_dependencies.
13488 * dwarf2read.c (dwarf2_create_include_psymtab): Use
13489 allocate_dependencies.
13490 (process_psymtab_comp_unit_reader)
13491 (build_type_psymtab_dependencies): Likewise.
13492 * dbxread.c (dbx_end_psymtab): Use allocate_dependencies.
13493
13494 2019-01-10 Tom Tromey <tom@tromey.com>
13495
13496 * psymtab.c (add_psymbol_to_bcache): Pass psymtab obstack to
13497 PSYMBOL_SET_LANGUAGE.
13498 (allocate_psymtab): Allocate psymtab on the psymtab obstack.
13499
13500 2019-01-10 Tom Tromey <tom@tromey.com>
13501
13502 * psymtab.h (psymtab_storage::obstack): New method.
13503 <m_obstack>: Rename from obstack; now private.
13504 * psymtab.c (psymtab_storage): Update.
13505 * dwarf2read.c (create_addrmap_from_index)
13506 (create_addrmap_from_aranges, dwarf2_build_psymtabs_hard):
13507 Update.
13508
13509 2019-01-10 Tom Tromey <tom@tromey.com>
13510
13511 * symfile.c (reread_symbols): Call objfile->reset_psymtabs.
13512 * objfiles.h (objfile::reset_psymtabs): New method.
13513
13514 2019-01-10 Tom Tromey <tom@tromey.com>
13515
13516 * symmisc.c (print_symbol_bcache_statistics): Update.
13517 (print_objfile_statistics): Update.
13518 * symfile.c (reread_symbols): Update.
13519 * psymtab.h (class psymtab_storage): New.
13520 * psymtab.c (psymtab_storage): New constructor.
13521 (~psymtab_storage): New destructor.
13522 (require_partial_symbols): Update.
13523 (ALL_OBJFILE_PSYMTABS_REQUIRED): Rewrite.
13524 (find_pc_sect_psymtab, find_pc_sect_psymbol)
13525 (match_partial_symbol, lookup_partial_symbol, dump_psymtab)
13526 (psym_dump, recursively_search_psymtabs, psym_has_symbols)
13527 (psym_find_compunit_symtab_by_address, sort_pst_symbols)
13528 (start_psymtab_common, end_psymtab_common)
13529 (add_psymbol_to_bcache, add_psymbol_to_list, init_psymbol_list)
13530 (allocate_psymtab): Update.
13531 (psymtab_storage::discard_psymtab): Rename from discard_psymtab.
13532 Update.
13533 (dump_psymtab_addrmap, maintenance_print_psymbols)
13534 (maintenance_check_psymtabs): Update.
13535 (class objfile_psymtabs): Move to objfiles.h.
13536 * psympriv.h (discard_psymtab): Now inline.
13537 (psymtab_discarder::psymtab_discarder): Update.
13538 (psymtab_discarder::~psymtab_discarder): Update.
13539 (ALL_OBJFILE_PSYMTABS): Rewrite.
13540 * objfiles.h (struct objfile) <psymtabs, psymtabs_addrmap,
13541 free_psymtabs, psymbol_cache, global_psymbols, static_psymbols>:
13542 Remove fields.
13543 <partial_symtabs>: New field.
13544 (class objfile_psymtabs): Move from psymtab.h. Update.
13545 * objfiles.c (objfile::objfile): Initialize partial_symtabs, not
13546 psymbol_cache.
13547 (objfile::~objfile): Don't destroy psymbol_cache.
13548 * mdebugread.c (parse_partial_symbols): Update.
13549 * dwarf2read.c (create_addrmap_from_index)
13550 (create_addrmap_from_aranges, dw2_find_pc_sect_compunit_symtab)
13551 (process_psymtab_comp_unit_reader, dwarf2_build_psymtabs_hard)
13552 (add_partial_subprogram, dwarf2_ranges_read): Update.
13553 * dwarf-index-write.c (write_address_map)
13554 (write_one_signatured_type, recursively_write_psymbols)
13555 (class debug_names, class debug_names, write_psymtabs_to_index):
13556 Update.
13557
13558 2019-01-10 Tom Tromey <tom@tromey.com>
13559
13560 * symtab.h (SYMBOL_SET_NAMES): Update.
13561 (symbol_set_names): Update.
13562 (MSYMBOL_SET_NAMES): Update.
13563 * symtab.c (symbol_set_names): Change argument to be an
13564 objfile_per_bfd_storage.
13565 * psymtab.c (add_psymbol_to_bcache): Update.
13566 * psympriv.h (PSYMBOL_SET_NAMES): Take per_bfd argument.
13567
13568 2019-01-10 Tom Tromey <tom@tromey.com>
13569
13570 * symtab.c (create_demangled_names_hash): Change argument to be an
13571 objfile_per_bfd_storage.
13572 (symbol_set_names): Update.
13573
13574 2019-01-10 Tom Tromey <tom@tromey.com>
13575
13576 * xcoffread.c (xcoff_initial_scan): Unconditionally call
13577 init_psymbol_list.
13578 * psymtab.c (init_psymbol_list): Do nothing if already called.
13579 * psympriv.h (init_psymbol_list): Add comment.
13580 * dwarf2read.c (dwarf2_build_psymtabs): Unconditionally call
13581 init_psymbol_list.
13582 * dbxread.c (dbx_symfile_read): Unconditionally call
13583 init_psymbol_list.
13584
13585 2019-01-10 Tom Tromey <tom@tromey.com>
13586
13587 * xcoffread.c (scan_xcoff_symtab): Update.
13588 * psymtab.c (add_psymbol_to_list): Replace "list" parameter with
13589 "where".
13590 * mdebugread.c (parse_partial_symbols)
13591 (handle_psymbol_enumerators): Update.
13592 * dwarf2read.c (add_partial_symbol, load_partial_dies): Update.
13593 * dbxread.c (read_dbx_symtab): Update.
13594 * psympriv.h (psymbol_placement): New enum.
13595 (add_psymbol_to_list): Update.
13596
13597 2019-01-10 Tom Tromey <tom@tromey.com>
13598
13599 * xcoffread.c (xcoff_start_psymtab): Remove global_psymbols and
13600 static_psymbols parameters.
13601 (scan_xcoff_symtab): Update.
13602 * psymtab.c (start_psymtab_common): Remove global_psymbols and
13603 static_psymbols parameters.
13604 * psympriv.h (start_psymtab_common): Update.
13605 * mdebugread.c (parse_partial_symbols): Update.
13606 * dwarf2read.c (create_partial_symtab): Update.
13607 * dbxread.c (read_dbx_symtab): Update.
13608 (start_psymtab): Remove global_psymbols and static_psymbols
13609 parameters.
13610
13611 2019-01-10 Tom Tromey <tom@tromey.com>
13612
13613 * xcoffread.c (xcoff_end_psymtab): Remove some initializations.
13614 * psymtab.c (allocate_psymtab): Add comment.
13615 * psympriv.h (allocate_psymtab): Add comment.
13616 * dwarf2read.c (dwarf2_create_include_psymtab): Remove some
13617 initializations.
13618 * dbxread.c (dbx_end_psymtab): Remove some initializations.
13619
13620 2019-01-10 Tom Tromey <tom@tromey.com>
13621
13622 * symfile.h (mdebug_build_psymtabs, elfmdebug_build_psymtabs):
13623 Don't declare.
13624 * mipsread.c: Include mdebugread.h.
13625 * mdebugread.h (mdebug_build_psymtabs, elfmdebug_build_psymtabs):
13626 Declare.
13627 * elfread.c: Include mdebugread.h.
13628
13629 2019-01-09 Tom Tromey <tom@tromey.com>
13630
13631 * dbxread.c (dbx_end_psymtab): Use objfile_psymtabs.
13632 * mdebugread.c (parse_partial_symbols): Use objfile_psymtabs.
13633 * psymtab.c (ALL_OBJFILE_PSYMTABS_REQUIRED): Remove.
13634 (psym_map_symtabs_matching_filename, find_pc_sect_psymtab)
13635 (psym_lookup_symbol, psym_find_last_source_symtab)
13636 (psym_forget_cached_source_info, psym_print_stats)
13637 (psym_expand_symtabs_for_function, psym_expand_all_symtabs)
13638 (psym_expand_symtabs_with_fullname, psym_map_symbol_filenames)
13639 (psym_map_matching_symbols, psym_expand_symtabs_matching)
13640 (psym_find_compunit_symtab_by_address)
13641 (maintenance_print_psymbols, maintenance_info_psymtabs)
13642 (maintenance_check_psymtabs): Use ranged for.
13643 * psymtab.h (class objfile_psymtabs): New.
13644 (require_partial_symbols): Return objfile_psymtabs.
13645 * psympriv.h (ALL_OBJFILE_PSYMTABS): Remove.
13646
13647 2019-01-09 Tom Tromey <tom@tromey.com>
13648
13649 * symfile.c (overlay_invalidate_all, find_pc_overlay)
13650 (find_pc_mapped_section, list_overlays_command)
13651 (map_overlay_command, unmap_overlay_command)
13652 (simple_overlay_update): Use all_objfiles.
13653 * spu-tdep.c (spu_overlay_update): Use all_objfiles.
13654 * printcmd.c (info_symbol_command): Use all_objfiles.
13655 * objfiles.h (ALL_OBJSECTIONS): Remove.
13656 * maint.c (maintenance_translate_address): Use all_objfiles.
13657 * gcore.c (gcore_create_callback): Use all_objfiles.
13658 (objfile_find_memory_regions): Likewise.
13659
13660 2019-01-09 Tom Tromey <tom@tromey.com>
13661
13662 * symtab.c (find_line_symtab, info_sources_command)
13663 (make_source_files_completion_list): Use objfile_compunits.
13664 * source.c (select_source_symtab): Use objfile_compunits.
13665 * objfiles.h (struct objfile): Update comment.
13666 (ALL_OBJFILES): Remove.
13667 (ALL_FILETABS): Remove.
13668 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Use
13669 objfile_compunits.
13670
13671 2019-01-09 Tom Tromey <tom@tromey.com>
13672
13673 * symmisc.c (print_objfile_statistics, dump_objfile)
13674 (maintenance_print_symbols): Use compunit_filetabs.
13675 * source.c (forget_cached_source_info_for_objfile): Use
13676 compunit_filetabs.
13677 * objfiles.h (ALL_OBJFILE_FILETABS): Remove.
13678 (ALL_FILETABS): Use compunit_filetabs.
13679 * objfiles.c (objfile_relocate1): Use compunit_filetabs.
13680 * coffread.c (coff_symtab_read): Use compunit_filetabs.
13681
13682 2019-01-09 Tom Tromey <tom@tromey.com>
13683
13684 * symtab.h (ALL_COMPUNIT_FILETABS): Remove.
13685 (compunit_filetabs): New.
13686 * symtab.c (iterate_over_some_symtabs, find_pc_sect_line): Use
13687 compunit_filetabs.
13688 (info_sources_command, make_source_files_completion_list): Remove
13689 declaration.
13690 * symmisc.c (print_objfile_statistics, dump_objfile)
13691 (maintenance_print_symbols): Remove declaration.
13692 (maintenance_info_symtabs): Use compunit_filetabs.
13693 (maintenance_info_line_tables): Likewise.
13694 * source.c (select_source_symtab): Change local variable name.
13695 (forget_cached_source_info_for_objfile): Remove declaration.
13696 * objfiles.h (ALL_OBJFILE_FILETABS): Use compunit_filetabs.
13697 * objfiles.c (objfile_relocate1): Remove declaration.
13698 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Remove
13699 declaration.
13700 * maint.c (count_symtabs_and_blocks): Use compunit_filetabs.
13701 * coffread.c (coff_symtab_read): Remove declaration.
13702 * buildsym.c (buildsym_compunit::end_symtab_with_blockvector): Use
13703 compunit_filetabs.
13704
13705 2019-01-09 Tom Tromey <tom@tromey.com>
13706
13707 * symtab.c (lookup_objfile_from_block)
13708 (find_pc_sect_compunit_symtab, search_symbols)
13709 (default_collect_symbol_completion_matches_break_on): Use
13710 objfile_compunits.
13711 * objfiles.h (ALL_COMPUNITS): Remove.
13712 * maint.c (count_symtabs_and_blocks): Use objfile_compunits.
13713 * cp-support.c (add_symbol_overload_list_qualified): Use
13714 objfile_compunits.
13715 * ada-lang.c (ada_collect_symbol_completion_matches)
13716 (ada_add_global_exceptions): Use objfile_compunits.
13717
13718 2019-01-09 Tom Tromey <tom@tromey.com>
13719
13720 * source.c (select_source_symtab)
13721 (forget_cached_source_info_for_objfile): Remove declaration.
13722 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Remove
13723 declaration.
13724 * maint.c (count_symtabs_and_blocks): Remove declaration.
13725 * cp-support.c (add_symbol_overload_list_qualified): Remove
13726 declaration.
13727 * coffread.c (coff_symtab_read): Remove declaration.
13728 * symtab.c (lookup_symbol_in_objfile_symtabs)
13729 (basic_lookup_transparent_type_1): Use objfile_compunits.
13730 (lookup_objfile_from_block, find_pc_sect_compunit_symtab)
13731 (info_sources_command, search_symbols)
13732 (default_collect_symbol_completion_matches_break_on)
13733 (make_source_files_completion_list): Remove declaration.
13734 * ada-lang.c (add_nonlocal_symbols): Use objfile_compunits.
13735 (ada_collect_symbol_completion_matches)
13736 (ada_add_global_exceptions): Remove declaration.
13737 * linespec.c (iterate_over_all_matching_symtabs): Use
13738 objfile_compunits.
13739 * objfiles.h (ALL_OBJFILE_COMPUNITS): Remove.
13740 (class objfile_compunits): New.
13741 (ALL_COMPUNITS): Use objfile_compunits.
13742 * symmisc.c (print_objfile_statistics, maintenance_info_symtabs)
13743 (maintenance_check_symtabs, maintenance_info_line_tables): Use
13744 objfile_compunits.
13745 * objfiles.c (objfile_relocate1): Use objfile_compunits.
13746
13747 2019-01-09 Tom Tromey <tom@tromey.com>
13748
13749 * symtab.c (search_symbols)
13750 (default_collect_symbol_completion_matches_break_on): Use
13751 objfile_msymbols.
13752 * ada-lang.c (ada_lookup_simple_minsym)
13753 (ada_collect_symbol_completion_matches): Use objfile_msymbols.
13754 * minsyms.c (find_solib_trampoline_target): Use objfile_msymbols.
13755 * hppa-tdep.c (hppa_lookup_stub_minimal_symbol): Use
13756 objfile_msymbols.
13757 * coffread.c (coff_symfile_read): Use objfile_msymbols.
13758 * symmisc.c (dump_msymbols): Use objfile_msymbols.
13759 * objc-lang.c (find_methods): Use objfile_msymbols.
13760 (info_selectors_command, info_classes_command): Likewise.
13761 * stabsread.c (scan_file_globals): Use objfile_msymbols.
13762 * objfiles.h (class objfile_msymbols): New.
13763 (ALL_OBJFILE_MSYMBOLS): Remove.
13764 (ALL_MSYMBOLS): Remove.
13765
13766 2019-01-09 Tom Tromey <tom@tromey.com>
13767
13768 * common/next-iterator.h (next_adapter): Add Iterator template
13769 parameter.
13770 * objfiles.h (ALL_OBJFILES_SAFE): Remove.
13771 (class all_objfiles_safe): New.
13772 * jit.c (jit_inferior_exit_hook): Use all_objfiles_safe.
13773 * objfiles.c (put_objfile_before): Update comment.
13774 (add_separate_debug_objfile): Likewise.
13775 (free_all_objfiles): Use all_objfiles_safe.
13776 (objfile_purge_solibs): Likewise.
13777
13778 2019-01-09 Tom Tromey <tom@tromey.com>
13779
13780 * symtab.c (iterate_over_symtabs, matching_obj_sections)
13781 (expand_symtab_containing_pc, lookup_static_symbol)
13782 (basic_lookup_transparent_type, find_pc_sect_compunit_symtab)
13783 (find_symbol_at_address, find_line_symtab, find_main_name): Use
13784 all_objfiles.
13785 * probe.c (find_probe_by_pc, collect_probes): Use all_objfiles.
13786 * breakpoint.c (create_overlay_event_breakpoint)
13787 (create_longjmp_master_breakpoint)
13788 (create_std_terminate_master_breakpoint)
13789 (create_exception_master_breakpoint): Use all_objfiles.
13790 * linux-thread-db.c (try_thread_db_load_from_pdir)
13791 (has_libpthread): Use all_objfiles.
13792 * ada-lang.c (add_nonlocal_symbols): Use all_objfiles.
13793 * linespec.c (iterate_over_all_matching_symtabs)
13794 (search_minsyms_for_name): Use all_objfiles.
13795 * maint.c (maintenance_info_sections): Use all_objfiles.
13796 * main.c (captured_main_1): Use all_objfiles.
13797 * spu-tdep.c (spu_objfile_from_frame): Use all_objfiles.
13798 * guile/scm-objfile.c (gdbscm_objfiles): Use all_objfiles.
13799 * guile/scm-pretty-print.c
13800 (ppscm_find_pretty_printer_from_objfiles): Use all_objfiles.
13801 * solib-spu.c (append_ocl_sos): Use all_objfiles.
13802 * symmisc.c (maintenance_print_symbols): Use all_objfiles.
13803 (maintenance_print_msymbols): Use all_objfiles.
13804 * source.c (select_source_symtab): Use all_objfiles.
13805 * jit.c (jit_find_objf_with_entry_addr): Use all_objfiles.
13806 * symfile.c (remove_symbol_file_command)
13807 (expand_symtabs_matching, map_symbol_filenames): Use
13808 all_objfiles.
13809 * ppc-linux-tdep.c (ppc_linux_spe_context_inferior_created): Use
13810 all_objfiles.
13811 * dwarf2-frame.c (dwarf2_frame_find_fde): Use all_objfiles.
13812 * objc-lang.c (find_methods): Use all_objfiles.
13813 * objfiles.c (have_partial_symbols, have_full_symbols)
13814 (have_minimal_symbols, qsort_cmp)
13815 (default_iterate_over_objfiles_in_search_order): Use
13816 all_objfiles.
13817 * hppa-tdep.c (find_unwind_entry): Use all_objfiles.
13818 * psymtab.c (maintenance_print_psymbols): Use all_objfiles.
13819 (maintenance_check_psymtabs): Use all_objfiles.
13820 (ALL_PSYMTABS): Remove.
13821 * compile/compile-object-run.c (do_module_cleanup): Use
13822 all_objfiles.
13823 * blockframe.c (find_pc_partial_function): Use all_objfiles.
13824 * cp-support.c (add_symbol_overload_list_qualified): Use
13825 all_objfiles.
13826 * windows-tdep.c (windows_iterate_over_objfiles_in_search_order):
13827 Use all_objfiles.
13828 * dwarf-index-write.c (save_gdb_index_command): Use all_objfiles.
13829 * python/py-xmethods.c (gdbpy_get_matching_xmethod_workers): Use
13830 all_objfiles.
13831 * python/py-objfile.c (objfpy_lookup_objfile_by_name)
13832 (objfpy_lookup_objfile_by_build_id): Use all_objfiles.
13833 * python/py-prettyprint.c (find_pretty_printer_from_objfiles):
13834 Uses all_objfiles.
13835 * solib.c (solib_read_symbols): Use all_objfiles
13836
13837 2019-01-09 Tom Tromey <tom@tromey.com>
13838
13839 * probe.c (parse_probes_in_pspace): Use all_objfiles.
13840 * guile/scm-progspace.c (gdbscm_progspace_objfiles): Use
13841 all_objfiles.
13842 * objfiles.h (ALL_PSPACE_OBJFILES): Remove.
13843 * symmisc.c (print_symbol_bcache_statistics)
13844 (print_objfile_statistics, maintenance_print_objfiles)
13845 (maintenance_info_symtabs, maintenance_check_symtabs)
13846 (maintenance_expand_symtabs, maintenance_info_line_tables): Use
13847 all_objfiles.
13848 * source.c (forget_cached_source_info): Use all_objfiles.
13849 * symfile-debug.c (set_debug_symfile): Use all_objfiles.
13850 * elfread.c (elf_gnu_ifunc_resolve_by_cache)
13851 (elf_gnu_ifunc_resolve_by_got): Use all_objfiles.
13852 * objfiles.c (update_section_map): Use all_objfiles.
13853 (shared_objfile_contains_address_p): Likewise.
13854 * psymtab.c (maintenance_info_psymtabs): Use all_objfiles.
13855 * python/py-progspace.c (pspy_get_objfiles): Use all_objfiles.
13856
13857 2019-01-09 Tom Tromey <tom@tromey.com>
13858
13859 * common/next-iterator.h: New file.
13860 * objfiles.h (class all_objfiles): New.
13861 (struct objfile_iterator): New.
13862
13863 2019-01-09 Philippe Waroquiers <philippe.waroquiers@skynet.be>
13864
13865 * NEWS: Move the description of the changed "frame", "select-frame",
13866 and "info frame" commands to the Changed commands section.
13867
13868 2019-01-09 Simon Marchi <simon.marchi@ericsson.com>
13869
13870 * gdbtypes.c (check_stub_method_group): Remove handling of old
13871 mangling schemes.
13872 * linespec.c (find_methods): Likewise.
13873 * stabsread.c (read_member_functions): Likewise.
13874 * valops.c (search_struct_method): Likewise.
13875 (value_struct_elt_for_reference): Likewise.
13876 * NEWS: Mention this change.
13877
13878 2019-01-09 Andrew Burgess <andrew.burgess@embecosm.com>
13879
13880 * cli/cli-cmds.c (list_command): Pass a source_lines_range to
13881 print_source_lines.
13882 * source.c (print_source_lines_base): Update line number check.
13883 (print_source_lines): New function.
13884 (source_lines_range::source_lines_range): New function.
13885 * source.h (class source_lines_range): New class.
13886 (print_source_lines): New declaration.
13887
13888 2019-01-09 Philippe Waroquiers <philippe.waroquiers@skynet.be>
13889
13890 * linespec.c (linespec_state_destructor): Free self->canonical_names.
13891
13892 2019-01-08 Tom Tromey <tom@tromey.com>
13893 Simon Marchi <simon.marchi@ericsson.com>
13894
13895 PR gdb/24060
13896 * ada-exp.y (DOLLAR_VARIABLE): Rename from SPECIAL_VARIABLE.
13897 * ada-lex.l (DOLLAR_VARIABLE): Likewise.
13898 * c-exp.y (DOLLAR_VARIABLE): Rename from VARIABLE.
13899 * f-exp.y (DOLLAR_VARIABLE): Likewise.
13900 * m2-exp.y (DOLLAR_VARIABLE): Rename from INTERNAL_VAR.
13901 * p-exp.y (DOLLAR_VARIABLE): Rename from VARIABLE.
13902
13903 2019-01-08 Andrew Burgess <andrew.burgess@embecosm.com>
13904
13905 * source.c (select_source_symtab): Move header comment to
13906 declaration in source.h.
13907 (forget_cached_source_info_for_objfile): Likewise.
13908 (forget_cached_source_info): Likewise.
13909 (identify_source_line): Likewise.
13910 * source.h (identify_source_line): Move declaration from symtab.h
13911 and add comment from source.c
13912 (print_source_lines): Likewise.
13913 (forget_cached_source_info_for_objfile): Likewise.
13914 (forget_cached_source_info): Likewise.
13915 (select_source_symtab): Likewise.
13916 (enum print_source_lines_flag): Move definition from symtab.h.
13917 * symtab.h (identify_source_line): Move declaration to source.h.
13918 (print_source_lines): Likewise.
13919 (forget_cached_source_info_for_objfile): Likewise.
13920 (forget_cached_source_info): Likewise.
13921 (select_source_symtab): Likewise.
13922 (enum print_source_lines_flag): Move definition to source.h.
13923 * tui/tui-hooks.c: Add 'source.h' include.
13924
13925 2019-01-08 Andrew Burgess <andrew.burgess@embecosm.com>
13926
13927 * source.c (print_source_lines_base): Handle requests to print
13928 reverse line number sequences, and guard against empty lines
13929 string.
13930
13931 2019-01-08 Andrew Burgess <andrew.burgess@embecosm.com>
13932
13933 * source.c (print_source_lines_base): Fix skip of '\r' if next
13934 character is '\n'.
13935
13936 2019-01-06 Tom Tromey <tom@tromey.com>
13937
13938 * c-exp.y (struct c_parse_state) <macro_original_text,
13939 expansion_obstack>: New member.
13940 (macro_original_text, expansion_obstack): Remove globals.
13941 (scan_macro_expansion, scanning_macro_expansion)
13942 (finished_macro_expansion): Update.
13943 (scan_macro_cleanup): Remove.
13944 (yylex, c_parse): Update.
13945
13946 2019-01-06 Tom Tromey <tom@tromey.com>
13947
13948 * c-exp.y (struct c_parse_state) <strings>: New member.
13949 (operator_stoken): Update.
13950
13951 2019-01-06 Tom Tromey <tom@tromey.com>
13952
13953 * parser-defs.h (type_ptr): Remove typedef. Don't declare VEC.
13954 (union type_stack_elt) <typelist_val>: Now a pointer to
13955 std::vector.
13956 (type_stack_cleanup): Don't declare.
13957 (push_typelist): Update.
13958 * parse.c (pop_typelist): Return a std::vector.
13959 (push_typelist): Take a std::vector.
13960 (follow_types): Update. Do not free args.
13961 (type_stack_cleanup): Remove.
13962 * c-exp.y (struct c_parse_state): New.
13963 (cpstate): New global.
13964 (type_aggregate_p, exp, ptr_operator, parameter_typelist)
13965 (nonempty_typelist): Update.
13966 (func_mod): Create a new vector.
13967 (c_parse): Create a c_parse_state.
13968 (check_parameter_typelist): Do not delete params.
13969 (function_method): Update. Do not delete type_list.
13970
13971 2019-01-06 Tom Tromey <tom@tromey.com>
13972
13973 PR gdb/28155:
13974 * python/py-finishbreakpoint.c (bpfinishpy_init): Use
13975 check_typedef.
13976 * infcmd.c (finish_command_fsm_should_stop): Use check_typedef.
13977 (print_return_value): Likewise.
13978
13979 2019-01-05 Tom Tromey <tom@tromey.com>
13980
13981 * contrib/cleanup_check.py: Remove.
13982 * contrib/gcc-with-excheck: Remove.
13983 * contrib/exsummary.py: Remove.
13984 * contrib/excheck.py: Remove.
13985
13986 2019-01-05 Joel Brobecker <brobecker@adacore.com>
13987
13988 * thread.c (delete_thread_1): Add gdb_assert that THR is not
13989 NULL. Initialize tpprev to NULL instead of assigning it
13990 to NULL on the next statement.
13991 * windows-nat.c (windows_delete_thread): Remove check for
13992 main_thread_id before printing thread exit notifications.
13993 (get_windows_debug_event) <EXIT_THREAD_DEBUG_EVENT>:
13994 Remove thread ID check against main_thread_id.
13995 <CREATE_PROCESS_DEBUG_EVENT>: Remove call to
13996 windows_delete_thread.
13997 <EXIT_PROCESS_DEBUG_EVENT>: Add call to windows_delete_thread.
13998
13999 2019-01-04 Tom Tromey <tom@tromey.com>
14000
14001 * compile/compile.c (_initialize_compile): Use upper case for
14002 metasyntactic variables.
14003 * symmisc.c (_initialize_symmisc): Use upper case for
14004 metasyntactic variables.
14005 * psymtab.c (_initialize_psymtab): Use upper case for
14006 metasyntactic variables.
14007 * demangle.c (demangle_command): Use upper case for metasyntactic
14008 variables.
14009 (_initialize_demangler): Likewise.
14010 * ax-gdb.c (_initialize_ax_gdb): Use upper case for metasyntactic
14011 variables.
14012
14013 2019-01-03 Tom Tromey <tom@tromey.com>
14014
14015 * tui/tui-source.c (tui_set_source_content): Use xstrdup.
14016
14017 2019-01-03 Tom Tromey <tom@tromey.com>
14018
14019 * python/py-symtab.c (salpy_str): Update.
14020 (struct salpy_sal_object) <symtab>: Now a PyObject.
14021 (salpy_dealloc): Update.
14022 (del_objfile_sal): Use gdbpy_ref.
14023
14024 2019-01-03 Tom Tromey <tom@tromey.com>
14025
14026 * python/py-type.c (convert_field): Use new_reference. Return
14027 gdbpy_ref.
14028 (make_fielditem): Return gdbpy_ref.
14029 (typy_fields): Update.
14030 (typy_getitem): Update.
14031 (field_name): Return gdbpy_ref. Use new_reference.
14032 (typy_iterator_iternext): Update.
14033
14034 2019-01-03 Tom Tromey <tom@tromey.com>
14035
14036 * python/py-record.c (gdbpy_stop_recording): Use Py_RETURN_NONE.
14037
14038 2019-01-03 Tom Tromey <tom@tromey.com>
14039
14040 * python/py-value.c (valpy_dealloc): Use Py_XDECREF.
14041 * python/py-type.c (typy_fields_items): Use gdbpy_ref.
14042 * python/py-progspace.c (pspy_set_printers): Use gdbpy_ref.
14043 (pspy_set_frame_filters, pspy_set_frame_unwinders)
14044 (pspy_set_type_printers): Likewise.
14045 * python/py-function.c (fnpy_init): Use gdbpy_ref.
14046 * python/py-cmd.c (cmdpy_init): Use gdbpy_ref.
14047 * python/py-objfile.c (objfpy_set_printers): Use gdbpy_ref.
14048 (objfpy_set_frame_filters, objfpy_set_frame_unwinders)
14049 (objfpy_set_type_printers): Likewise.
14050
14051 2019-01-03 Tom Tromey <tom@tromey.com>
14052
14053 * python/python.c (gdbpy_enter, ~gdbpy_enter): Update.
14054 (gdbpy_print_stack): Use gdbpy_err_fetch.
14055 * python/python-internal.h (class gdbpy_err_fetch): New class.
14056 (class gdbpy_enter) <m_error_type, m_error_value,
14057 m_error_traceback>: Remove.
14058 <m_error>: New member.
14059 (gdbpy_exception_to_string): Don't declare.
14060 * python/py-varobj.c (py_varobj_iter_next): Use gdbpy_err_fetch.
14061 * python/py-value.c (convert_value_from_python): Use
14062 gdbpy_err_fetch.
14063 * python/py-utils.c (gdbpy_err_fetch::to_string): Rename from
14064 gdbpy_exception_to_string.
14065 (gdbpy_handle_exception): Use gdbpy_err_fetch.
14066 * python/py-prettyprint.c (print_stack_unless_memory_error): Use
14067 gdbpy_err_fetch.
14068
14069 2019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
14070
14071 * linux-nat.c (delete_lwp_cleanup): Delete.
14072 (struct lwp_deleter): New struct.
14073 (lwp_info_up): New typedef.
14074 (linux_nat_target::follow_fork): Delete cleanup, and make use of
14075 lwp_info_up.
14076
14077 2019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
14078
14079 * linux-fork.c (class scoped_switch_fork_info): New class.
14080 (inferior_call_waitpid): Update to use scoped_switch_fork_info.
14081
14082 2019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
14083
14084 * valops.c (find_overload_match): Remove use of null_cleanup, and
14085 calls to do_cleanups.
14086
14087 2019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
14088
14089 * compile/compile-cplus-types.c
14090 (compile_cplus_instance::decl_name): Handle changes to
14091 cp_func_name.
14092 * cp-support.c (cp_func_name): Update header comment, update
14093 return type.
14094 * cp-support.h (cp_func_name): Update return type in declaration.
14095 * valops.c (find_overload_match): Move temp_func local to top
14096 level of function and change its type. Use temp_func to hold and
14097 delete temporary string obtained from cp_func_name.
14098
14099 2019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
14100
14101 * remote.c (remote_target::remote_check_symbols): Convert `msg` to
14102 gdb::char_vector, remove cleanup, and update uses of `msg`.
14103
14104 2019-01-03 Jim Wilson <jimw@sifive.com>
14105
14106 * riscv-tdep.c (riscv_freg_feature): Drop s0 name from f8.
14107
14108 2019-01-02 Tom Tromey <tom@tromey.com>
14109
14110 * xml-tdesc.c (xml_cache): Hold a target_desc_up.
14111 (tdesc_parse_xml): Remove cleanups.
14112 * target-descriptions.h (make_cleanup_free_target_description):
14113 Don't declare.
14114 (target_desc_deleter): New struct.
14115 (target_desc_up): New typedef.
14116 * target-descriptions.c (target_desc_deleter::operator()): Rename
14117 from free_target_description.
14118 (make_cleanup_free_target_description): Remove.
14119
14120 2019-01-02 Tom Tromey <tom@tromey.com>
14121
14122 * linespec.c (struct linespec_parser): Rename from ls_parser. Add
14123 constructor, destructor.
14124 (linespec_parser): Remove typedef.
14125 (~linespec_parser): Rename from linespec_parser_delete.
14126 (linespec_lex_to_end, linespec_complete_label)
14127 (linespec_complete): Update.
14128 (decode_line_full): Remove cleanups.
14129 (decode_line_1): Update.
14130
14131 2019-01-02 Tom Tromey <tom@tromey.com>
14132
14133 * python/python-internal.h (inferior_to_inferior_object): Change
14134 return type.
14135 * python/py-exitedevent.c (create_exited_event_object): Update.
14136 * python/py-inferior.c (inferior_to_inferior_object): Return
14137 gdbpy_ref.
14138 (python_new_inferior, python_inferior_deleted)
14139 (thread_to_thread_object, delete_thread_object)
14140 (build_inferior_list, gdbpy_selected_inferior): Update.
14141 * python/py-infthread.c (create_thread_object): Update. Also fail
14142 if inferior_to_inferior_object fails.
14143
14144 2019-01-02 Simon Marchi <simon.marchi@ericsson.com>
14145
14146 * inferior.h (class inferior) <displaced_step_state>: New field.
14147 * infrun.h (struct displaced_step_state): Move here from
14148 infrun.c. Initialize fields, add constructor.
14149 <inf>: Remove field.
14150 <reset>: New method.
14151 * infrun.c (struct displaced_step_inferior_state): Move to
14152 infrun.h.
14153 (displaced_step_inferior_states): Remove.
14154 (get_displaced_stepping_state): Adust.
14155 (displaced_step_in_progress_any_inferior): Adjust.
14156 (displaced_step_in_progress_thread): Adjust.
14157 (displaced_step_in_progress): Adjust.
14158 (add_displaced_stepping_state): Remove.
14159 (get_displaced_step_closure_by_addr): Adjust.
14160 (remove_displaced_stepping_state): Remove.
14161 (infrun_inferior_exit): Call displaced_step_state.reset.
14162 (use_displaced_stepping): Don't check for NULL.
14163 (displaced_step_prepare_throw): Call
14164 get_displaced_stepping_state.
14165 (displaced_step_fixup): Don't check for NULL.
14166 (prepare_for_detach): Don't check for NULL.
14167
14168 2019-01-02 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14169
14170 * infcall.c (call_function_by_hand_dummy): cleanup/destroy sm
14171 in case of call that did not complete.
14172
14173 2019-01-02 Andrey Utkin <autkin@undo.io>
14174
14175 * symfile.c (find_separate_debug_file): Fix search of debug files for
14176 remote debuggee.
14177
14178 2019-01-02 Tom Tromey <tom@tromey.com>
14179
14180 * python/py-inferior.c (gdbpy_initialize_inferior): Fix
14181 indentation.
14182 * python/py-frame.c (frapy_older): Remove cast.
14183 (frapy_newer): Likewise.
14184 * python/py-breakpoint.c (local_setattro): Remove cast.
14185 * python/py-arch.c (archpy_name): Remove local variable.
14186 * python/py-type.c (gdbpy_lookup_type): Remove cast.
14187
14188 2019-01-02 Joel Brobecker <brobecker@adacore.com>
14189
14190 * unittests/basic_string_view/element_access/char/empty.cc:
14191 Fix year range in copyright header.
14192
14193 2019-01-01 Andrew Burgess <andrew.burgess@embecosm.com>
14194
14195 * arch/riscv.h (struct riscv_gdbarch_features) <hw_float_abi>:
14196 Delete.
14197 <operator==>: Update with for removed field.
14198 <hash>: Likewise.
14199 * riscv-tdep.h (struct gdbarch_tdep) <features>: Renamed to...
14200 <isa_features>: ...this.
14201 <abi_features>: New field.
14202 (riscv_isa_flen): Update comment.
14203 (riscv_abi_xlen): New declaration.
14204 (riscv_abi_flen): New declaration.
14205 * riscv-tdep.c (riscv_isa_xlen): Update to get answer from
14206 isa_features.
14207 (riscv_abi_xlen): New function.
14208 (riscv_isa_flen): Update to get answer from isa_features.
14209 (riscv_abi_flen): New function.
14210 (riscv_has_fp_abi): Update to get answer from abi_features.
14211 (riscv_call_info::riscv_call_info): Use abi xlen and flen, not isa
14212 xlen and flen.
14213 (riscv_call_info) <xlen, flen>: Update comment.
14214 (riscv_call_arg_struct): Remove invalid assertions
14215 (riscv_features_from_gdbarch_info): Update now hw_float_abi field
14216 is removed.
14217 (riscv_gdbarch_init): Gather isa features and abi features
14218 separately, ensure both match on the gdbarch when reusing an old
14219 gdbarch. Relax an error check to allow 32-bit abi float to run on
14220 a target with 64-bit float hardware.
14221
14222 2019-01-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14223
14224 * source.c (search_command_helper): Stop reverse search
14225 when line 1 has been searched.
14226
14227 2019-01-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14228
14229 * record-full.c (record_full_base_target::close): Rewrite
14230 record_full_core_buf_list free logic.
14231
14232 2019-01-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14233
14234 * break-catch-syscall.c (print_one_catch_syscall): xfree
14235 the last text.
14236
14237 2019-01-01 Joel Brobecker <brobecker@adacore.com>
14238
14239 * top.c (print_gdb_version): Update Copyright year in version
14240 message.
14241
14242 2019-01-01 Joel Brobecker <brobecker@adacore.com>
14243
14244 Update copyright year range in all GDB files.
14245
14246 2019-01-01, 19 Joel Brobecker <brobecker@adacore.com>
14247
14248 * config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2018.
14249
14250 For older changes see ChangeLog-2018.
14251 \f
14252 Local Variables:
14253 mode: change-log
14254 left-margin: 8
14255 fill-column: 74
14256 version-control: never
14257 coding: utf-8
14258 End:
14259