Add missing ChangeLog entry for the previous commit
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2019-11-27 Christian Biesinger <cbiesinger@google.com>
2
3 * NEWS: Mention the new multithreaded symbol loading.
4
5 2019-11-27 Christian Biesinger <cbiesinger@google.com>
6
7 * maint.c (n_worker_threads): Default to 0.
8 (worker_threads_disabled): New function.
9 * maint.h (worker_threads_disabled): New function.
10 * minsyms.c (minimal_symbol_reader::record_full): Call symbol_set_names
11 here if worker_threads_disabled () is true.
12 (minimal_symbol_reader::install): Skip all threading if
13 worker_threads_disabled () is true.
14
15 2019-11-27 Christian Biesinger <cbiesinger@google.com>
16
17 * minsyms.c (add_minsym_to_hash_table): Use a previously computed
18 hash code if possible.
19 (add_minsym_to_demangled_hash_table): Likewise.
20 (minimal_symbol_reader::install): Compute the hash codes for msymbol
21 on the background thread.
22 * symtab.h (struct minimal_symbol) <hash_value, demangled_hash_value>:
23 Add these fields.
24
25 2019-11-27 Christian Biesinger <cbiesinger@google.com>
26
27 * minsyms.c (minimal_symbol_reader::install): Also compute the hash
28 of the mangled name on the background thread.
29 * symtab.c (symbol_set_names): Allow passing in the hash of the
30 linkage_name.
31 * symtab.h (symbol_set_names): Likewise.
32
33 2019-11-27 Kevin Buettner <kevinb@redhat.com>
34
35 * dwarf2read.c (inherit_abstract_dies): Ensure that delayed
36 physnames are computed for inherited DIEs.
37
38 2019-11-27 Tom Tromey <tromey@adacore.com>
39
40 * dwarf2read.h (struct dwarf2_per_objfile): Remove unnecessary
41 backslashes.
42 * cp-support.c: Remove unnecessary backslashes.
43
44 2019-11-27 Christian Biesinger <cbiesinger@google.com>
45
46 * ada-exp.y (write_ambiguous_var): Replace SYMBOL_SET_LINKAGE_NAME
47 with sym->set_linkage_name.
48 * coffread.c (coff_read_enum_type): Likewise.
49 * mdebugread.c (parse_symbol): Likewise.
50 * stabsread.c (patch_block_stabs): Likewise.
51 (define_symbol): Likewise.
52 (read_enum_type): Likewise.
53 (common_block_end): Likewise.
54 * symtab.h (struct general_symbol_info) <set_linkage_name>: New
55 function.
56 (SYMBOL_SET_LINKAGE_NAME): Remove.
57 * xcoffread.c (process_xcoff_symbol): Replace SYMBOL_SET_LINKAGE_NAME
58 with sym->set_linkage_name.
59
60 2019-11-27 Andrew Burgess <andrew.burgess@embecosm.com>
61
62 * mi/mi-cmds.c (mi_cmds): Add 'symbol-info-modules' entry.
63 * mi/mi-cmds.h (mi_cmd_symbol_info_modules): Declare.
64 * mi/mi-symbol-cmds.c (mi_cmd_symbol_info_modules): New function.
65 * NEWS: Mention new MI command.
66
67 2019-11-27 Andrew Burgess <andrew.burgess@embecosm.com>
68
69 * mi/mi-cmds.c (mi_cmds): Add '-symbol-info-functions',
70 '-symbol-info-types', and '-symbol-info-variables'.
71 * mi/mi-cmds.h (mi_cmd_symbol_info_functions): Declare.
72 (mi_cmd_symbol_info_types): Declare.
73 (mi_cmd_symbol_info_variables): Declare.
74 * mi/mi-symbol-cmds.c: Add 'source.h' and 'mi-getopt.h' includes.
75 (output_debug_symbol): New function.
76 (output_nondebug_symbol): New function.
77 (mi_symbol_info): New function.
78 (mi_info_functions_or_variables): New function.
79 (mi_cmd_symbol_info_functions): New function.
80 (mi_cmd_symbol_info_types): New function.
81 (mi_cmd_symbol_info_variables): New function.
82 * NEWS: Mention new commands.
83
84 2019-11-27 Andrew Burgess <andrew.burgess@embecosm.com>
85
86 * symtab.c (symbol_to_info_string): New function, most content
87 moved from print_symbol_info, but updated to return a std::string.
88 (print_symbol_info): Update to use symbol_to_info_string and print
89 returned string.
90 * symtab.h (symbol_to_info_string): Declare new function.
91
92 2019-11-27 Andrew Burgess <andrew.burgess@embecosm.com>
93
94 * python/python.c (gdbpy_rbreak): Convert to using
95 global_symbol_searcher.
96 * symtab.c (file_matches): Convert return type to bool, change
97 file list to std::vector, update header comment.
98 (search_symbols): Rename to...
99 (global_symbol_searcher::search): ...this and update now its
100 a member function of global_symbol_searcher. Take account of the
101 changes to file_matches.
102 (symtab_symbol_info): Convert to using global_symbol_searcher.
103 (rbreak_command): Likewise.
104 (search_module_symbols): Likewise.
105 * symtab.h (enum symbol_search): Update comment.
106 (search_symbols): Remove declaration.
107 (class global_symbol_searcher): New class.
108
109 2019-11-26 Tom Tromey <tromey@adacore.com>
110
111 * cp-support.c (_initialize_cp_support): Conditionally initialize
112 gdb_demangle_attempt_core_dump.
113
114 2019-11-26 Tom Tromey <tom@tromey.com>
115
116 * python/py-function.c (fnpy_init): Update.
117 * value.h (add_internal_function): Adjust declaration.
118 * value.c (function_destroyer): Remove.
119 (do_add_internal_function): Don't set destroyer or copy name.
120 (add_internal_function): Take unique_xmalloc_ptr<char> for name.
121 Set name_allocated.
122 * python/py-cmd.c (cmdpy_destroyer): Don't free "name".
123 (cmdpy_init): Set name_allocated.
124 * cli/cli-decode.h (struct cmd_list_element) <name_allocated>: New
125 member.
126 (~cmd_list_element): Free "name" if needed.
127
128 2019-11-26 Tom Tromey <tom@tromey.com>
129
130 * value.h (add_internal_function): Add new overload. Move
131 documentation from value.h.
132 * value.c (do_add_internal_function): New function.
133 (add_internal_function): Use it. Add new overload.
134 (function_destroyer): Don't free doc.
135 * python/py-function.c (fnpy_init): Update.
136
137 2019-11-26 Tom Tromey <tom@tromey.com>
138
139 * python/py-cmd.c (cmdpy_destroyer): Don't free "doc".
140 (cmdpy_init): Set "doc_allocated".
141
142 2019-11-26 Tom Tromey <tom@tromey.com>
143
144 * gdbsupport/thread-pool.c (thread_pool::set_thread_count): Set
145 name of worker thread.
146 * gdbsupport/common.m4 (GDB_AC_COMMON): Check for
147 pthread_setname_np.
148 * configure, config.in: Rebuild.
149
150 2019-11-26 Tom Tromey <tom@tromey.com>
151
152 * python/python.c (class gdbpy_gil): New.
153 (struct gdbpy_event): Add constructor, destructor, operator().
154 (gdbpy_post_event): Use run_on_main_thread.
155 (gdbpy_initialize_events): Remove.
156 (do_start_initialization): Update.
157
158 2019-11-26 Tom Tromey <tom@tromey.com>
159
160 * NEWS: Add entry.
161 * maint.c (_initialize_maint_cmds): Add "worker-threads" maint
162 commands. Call update_thread_pool_size.
163 (update_thread_pool_size, maintenance_set_worker_threads): New
164 functions.
165 (n_worker_threads): New global.
166
167 2019-11-26 Christian Biesinger <cbiesinger@google.com>
168 Tom Tromey <tom@tromey.com>
169
170 * minsyms.c (minimal_symbol_reader::install): Use
171 parallel_for_each.
172 * gdbsupport/parallel-for.h: New file.
173 * Makefile.in (HFILES_NO_SRCDIR): Add gdbsupport/parallel-for.h.
174
175 2019-11-26 Christian Biesinger <cbiesinger@google.com>
176 Tom Tromey <tom@tromey.com>
177
178 * gdbsupport/thread-pool.h: New file.
179 * gdbsupport/thread-pool.c: New file.
180 * Makefile.in (COMMON_SFILES): Add thread-pool.c.
181 (HFILES_NO_SRCDIR): Add thread-pool.h.
182
183 2019-11-26 Tom Tromey <tom@tromey.com>
184
185 * event-top.h (thread_local_segv_handler): Declare.
186 * event-top.c (thread_local_segv_handler): New global.
187 (install_handle_sigsegv, handle_sigsegv): New functions.
188 (async_init_signals): Install SIGSEGV handler.
189 * cp-support.c (gdb_demangle_jmp_buf): Change type. Now
190 thread-local.
191 (report_failed_demangle): New function.
192 (gdb_demangle): Make core_dump_allowed atomic. Remove signal
193 handler-setting code, instead use segv_handler. Run warning code
194 on main thread.
195
196 2019-11-26 Tom Tromey <tom@tromey.com>
197
198 * run-on-main-thread.c: New file.
199 * run-on-main-thread.h: New file.
200 * unittests/main-thread-selftests.c: New file.
201 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
202 main-thread-selftests.c.
203 (HFILES_NO_SRCDIR): Add run-on-main-thread.h.
204 (COMMON_SFILES): Add run-on-main-thread.c.
205
206 2019-11-26 Tom Tromey <tom@tromey.com>
207
208 * main.c (setup_alternate_signal_stack): Remove.
209 (captured_main_1): Use gdb::alternate_signal_stack.
210 * gdbsupport/alt-stack.h: New file.
211
212 2019-11-26 Tom Tromey <tom@tromey.com>
213
214 * gdbsupport/signals-state-save-restore.c (original_signal_mask):
215 Remove comment.
216 (save_original_signals_state, restore_original_signals_state): Use
217 gdb_sigmask.
218 * linux-nat.c (block_child_signals, restore_child_signals_mask)
219 (_initialize_linux_nat): Use gdb_sigmask.
220 * guile/guile.c (_initialize_guile): Use block_signals.
221 * Makefile.in (HFILES_NO_SRCDIR): Add gdb-sigmask.h.
222 * gdbsupport/gdb-sigmask.h: New file.
223 * event-top.c (async_sigtstp_handler): Use gdb_sigmask.
224 * cp-support.c (gdb_demangle): Use gdb_sigmask.
225 * gdbsupport/common.m4 (GDB_AC_COMMON): Check for
226 pthread_sigmask.
227 * configure, config.in: Rebuild.
228 * gdbsupport/block-signals.h: New file.
229
230 2019-11-26 Tom Tromey <tom@tromey.com>
231
232 * acinclude.m4: Include ax_pthread.m4.
233 * Makefile.in (PTHREAD_CFLAGS, PTHREAD_LIBS): New variables.
234 (INTERNAL_CFLAGS_BASE): Use PTHREAD_CFLAGS.
235 (CLIBS): Use PTHREAD_LIBS.
236 (aclocal_m4_deps): Add ax_pthread.m4.
237 * config.in, configure: Rebuild.
238 * gdbsupport/common.m4 (GDB_AC_COMMON): Check for std::thread.
239
240 2019-11-26 Tom Tromey <tom@tromey.com>
241
242 * symtab.h (struct minimal_symbol) <name_set>: New member.
243 * minsyms.c (minimal_symbol_reader::record_full): Copy name.
244 Don't call symbol_set_names.
245 (minimal_symbol_reader::install): Call symbol_set_names.
246
247 2019-11-26 Philippe Waroquiers <philippe.waroquiers@skynet.be>
248
249 * python/python.c (gdbpy_enter::~gdbpy_enter): Release GIL after
250 restore_active_ext_lang, as GIL is needed for (indirectly)
251 called PyOS_InterruptOccurred.
252
253 2019-11-26 Simon Marchi <simon.marchi@efficios.com>
254
255 * sparc-nat.c (sparc_xfer_wcookie): Sync declaration with
256 definition.
257
258 2019-11-26 Simon Marchi <simon.marchi@efficios.com>
259
260 * remote-sim.c (simulator_command): Make static, remove
261 declaration.
262
263 2019-11-26 Simon Marchi <simon.marchi@efficios.com>
264
265 * unittests/array-view-selftests.c (check_ptr_size_ctor2): Make
266 static.
267 * unittests/basic_string_view/capacity/1.cc (test01): Likewise.
268 * unittests/basic_string_view/cons/char/1.cc (test01): Likewise.
269 (main): Likewise.
270 * unittests/basic_string_view/cons/char/2.cc (test03): Likewise.
271 (main): Likewise.
272 * unittests/basic_string_view/cons/char/3.cc (test05): Likewise.
273 (main): Likewise.
274 * unittests/basic_string_view/element_access/char/1.cc (test01):
275 Likewise.
276 (main): Likewise.
277 * unittests/basic_string_view/element_access/char/empty.cc (main):
278 Likewise.
279 * unittests/basic_string_view/element_access/char/front_back.cc
280 (test01): Likewise.
281 (main): Likewise.
282 * unittests/basic_string_view/inserters/char/2.cc (test05):
283 Likewise.
284 (main): Likewise.
285 * unittests/basic_string_view/modifiers/remove_prefix/char/1.cc
286 (test01): Likewise.
287 (main): Likewise.
288 * unittests/basic_string_view/modifiers/remove_suffix/char/1.cc
289 (test01): Likewise.
290 (main): Likewise.
291 * unittests/basic_string_view/modifiers/swap/char/1.cc (test01):
292 Likewise.
293 * unittests/basic_string_view/operations/compare/char/1.cc
294 (test01): Likewise.
295 (main): Likewise.
296 * unittests/basic_string_view/operations/compare/char/13650.cc
297 (test01): Likewise.
298 * unittests/basic_string_view/operations/copy/char/1.cc (test01):
299 Likewise.
300 (main): Likewise.
301 * unittests/basic_string_view/operations/data/char/1.cc (test01):
302 Likewise.
303 (main): Likewise.
304 * unittests/basic_string_view/operations/find/char/1.cc (test01):
305 Likewise.
306 (main): Likewise.
307 * unittests/basic_string_view/operations/find/char/2.cc (test02):
308 Likewise.
309 (main): Likewise.
310 * unittests/basic_string_view/operations/find/char/3.cc (test03):
311 Likewise.
312 (main): Likewise.
313 * unittests/basic_string_view/operations/find/char/4.cc (main):
314 Likewise.
315 * unittests/basic_string_view/operations/rfind/char/1.cc (test01):
316 Likewise.
317 (main): Likewise.
318 * unittests/basic_string_view/operations/rfind/char/2.cc (test02):
319 Likewise.
320 (main): Likewise.
321 * unittests/basic_string_view/operations/rfind/char/3.cc (test03):
322 Likewise.
323 (main): Likewise.
324 * unittests/basic_string_view/operations/substr/char/1.cc
325 (test01): Likewise.
326 (main): Likewise.
327 * unittests/basic_string_view/operators/char/2.cc (main):
328 Likewise.
329 * unittests/optional/assignment/1.cc (test): Likewise.
330 * unittests/optional/assignment/2.cc (test): Likewise.
331 * unittests/optional/assignment/3.cc (test): Likewise.
332 * unittests/optional/assignment/4.cc (test): Likewise.
333 * unittests/optional/assignment/5.cc (test): Likewise.
334 * unittests/optional/assignment/6.cc (test): Likewise.
335 * unittests/optional/assignment/7.cc (test): Likewise.
336 * unittests/optional/cons/copy.cc (test): Likewise.
337 * unittests/optional/cons/default.cc (test): Likewise.
338 * unittests/optional/cons/move.cc (test): Likewise.
339 * unittests/optional/cons/value.cc (test): Likewise.
340 * unittests/optional/in_place.cc (test): Likewise.
341 * unittests/optional/observers/1.cc (test): Likewise.
342 * unittests/optional/observers/2.cc (test): Likewise.
343
344 2019-11-26 Simon Marchi <simon.marchi@efficios.com>
345
346 * tui-win.h (tui_set_var_cmd): Remove.
347 * tui-win.c (tui_set_var_cmd): Make static.
348
349 2019-11-26 Simon Marchi <simon.marchi@efficios.com>
350
351 * breakpoint.h (hbreak_command_wrapper, thbreak_command_wrapper,
352 rbreak_command_wrapper): Remove.
353 * symtab.c (rbreak_command_wrapper): Remove.
354
355 2019-11-26 Simon Marchi <simon.marchi@efficios.com>
356
357 * inferior.h (info_terminal_command): Remove declaration.
358 * inflow.c (info_terminal_command): Make static.
359
360 2019-11-26 Simon Marchi <simon.marchi@efficios.com>
361
362 * inferior.c (exit_inferior_silent): Remove.
363
364 2019-11-26 Simon Marchi <simon.marchi@efficios.com>
365
366 * dictionary.c (dict_empty, mdict_empty): Remove.
367 * dictionary.c (mdict_empty): Remove.
368
369 2019-11-26 Simon Marchi <simon.marchi@efficios.com>
370
371 * arc-tdep.c (arc_insn_get_memory_base_reg): Make static.
372 (arc_insn_get_memory_offset): Likewise.
373 (arc_insn_dump): Likewise.
374 * cp-support.c (test_cp_symbol_name_matches): Likewise.
375 * csky-linux-tdep.c (csky_supply_fregset): Likewise.
376 * dictionary.c (dict_iterator_next): Likewise.
377 (dict_iter_match_first): Likewise.
378 (dict_iter_match_next): Likewise.
379 * f-lang.c (evaluate_subexp_f): Likewise.
380 * hppa-tdep.c (hppa_read_pc): Likewise.
381 * i386-tdep.c (i386_floatformat_for_type): Likewise.
382 * parse.c (write_exp_elt_msym): Likewise.
383 * ppc-linux-tdep.c (ppc_floatformat_for_type): Likewise.
384 * remote.c (remote_packet_size): Likewise.
385 (remote_notif_stop_parse): Likewise.
386 * rs6000-aix-tdep.c (aix_sighandle_frame_sniffer): Likewise.
387 * s12z-tdep.c (s12z_disassemble_info): Likewise.
388 * source.c (prepare_path_for_appending): Likewise.
389 * sparc64-linux-tdep.c
390 (sparc64_linux_handle_segmentation_fault); Likewise.
391 * stack.c (frame_selection_by_function_completer): Likewise.
392
393 2019-11-26 Simon Marchi <simon.marchi@efficios.com>
394
395 * completer.c (set_gdb_completion_word_break_characters):
396 Remove.
397
398 2019-11-26 Simon Marchi <simon.marchi@efficios.com>
399
400 * dwarf-index-write.c: Include dwarf-index-write.h.
401 * mi/mi-interp.c: Include mi/mi-interp.h.
402
403 2019-11-26 Simon Marchi <simon.marchi@efficios.com>
404
405 * aarch32-tdep.c: Include aarch32-tdep.h.
406 * aarch32-tdep.h: Forward-declare struct target_desc.
407
408 2019-11-26 Christian Biesinger <cbiesinger@google.com>
409
410 * linux-nat.c (detach_one_lwp): Call safe_strerror instead of
411 strerror.
412 * nto-procfs.c (nto_procfs_target::create_inferior): Likewise.
413 * windows-nat.c (windows_nat_target::create_inferior): Likewise.
414
415 2019-11-25 Tom de Vries <tdevries@suse.de>
416
417 * contrib/words.sh: Add -c option.
418
419 2019-11-25 Christian Biesinger <cbiesinger@google.com>
420
421 * solib.c (solib_find_1): Change int to bool.
422 (exec_file_find): Change int to bool.
423 (solib_find): Change int to bool.
424 (solib_read_symbols): Change int to bool.
425 (solib_used): Change int to bool.
426 (solib_add): Change int to bool.
427 (info_sharedlibrary_command): Change int to bool.
428 (solib_contains_address_p): Change int to bool.
429 (solib_keep_data_in_core): Change int to bool.
430 (in_solib_dynsym_resolve_code): Change int to bool.
431 (reload_shared_libraries_1): Change int to bool.
432 (gdb_sysroot_changed): Change int to bool.
433 * solib.h (solib_read_symbols): Change int to bool.
434 (solib_contains_address_p): Change int to bool.
435 (solib_keep_data_in_core): Change int to bool.
436 (in_solib_dynsym_resolve_code): Change int to bool.
437 (libpthread_name_p): Change int to bool.
438
439 2019-11-25 Luis Machado <luis.machado@linaro.org>
440
441 * NEWS (New Commands): Mention "set debug remote-packet-max-chars".
442 * remote.c (REMOTE_DEBUG_MAX_CHAR): Remove.
443 (remote_packet_max_chars): New static global.
444 (show_remote_packet_max_chars): New function.
445 (remote_target::putpkt_binary): Adjust to use new
446 remote_packet_max_chars option.
447 (remote_target::getpkt_or_notif_sane_1): Likewise.
448 (_initialize_remote): Register new remote-packet-max-chars option.
449
450 2019-11-24 Simon Marchi <simon.marchi@efficios.com>
451
452 * m68k-linux-nat.c: Include gdbarch.h.
453
454 2019-11-24 Tom Tromey <tom@tromey.com>
455
456 * symfile.c (read_symbols): Update.
457 * psymtab.c (require_partial_symbols): Change type of "verbose" to
458 bool.
459 (psym_map_symtabs_matching_filename, find_pc_sect_psymtab)
460 (psym_lookup_symbol, psym_find_last_source_symtab)
461 (psym_forget_cached_source_info, psym_print_stats)
462 (psym_expand_symtabs_for_function, psym_expand_all_symtabs)
463 (psym_expand_symtabs_with_fullname, psym_map_symbol_filenames)
464 (psym_map_matching_symbols, psym_expand_symtabs_matching)
465 (psym_find_compunit_symtab_by_address)
466 (maintenance_print_psymbols, maintenance_info_psymtabs)
467 (maintenance_check_psymtabs): Update.
468 * psymtab.h (require_partial_symbols): Change type of "verbose" to
469 bool.
470
471 2019-11-22 Tom Tromey <tom@tromey.com>
472
473 * observable.h: Update comments.
474
475 2019-11-22 Tom Tromey <tromey@adacore.com>
476
477 * ada-tasks.c (ada_task_is_alive): Make parameter const.
478 (print_ada_task_info): Don't try to fetch thread id if task is not
479 alive.
480
481 2019-11-22 Christian Biesinger <cbiesinger@google.com>
482
483 * ada-exp.y: Update.
484 * ada-lang.c (sort_choices): Update.
485 (ada_print_symbol_signature): Update.
486 (resolve_subexp): Update.
487 (ada_parse_renaming): Update.
488 (ada_read_renaming_var_value): Update.
489 (lesseq_defined_than): Update.
490 (remove_extra_symbols): Update.
491 (remove_irrelevant_renamings): Update.
492 (ada_add_block_symbols): Update.
493 (ada_collect_symbol_completion_matches): Update.
494 (ada_is_renaming_symbol): Update.
495 (aggregate_assign_from_choices): Update.
496 (ada_evaluate_subexp): Update.
497 (ada_has_this_exception_support): Update.
498 (ada_is_non_standard_exception_sym): Update.
499 (ada_add_exceptions_from_frame): Update.
500 (ada_add_global_exceptions): Update.
501 (ada_print_subexp): Update.
502 * ax-gdb.c (gen_var_ref): Update.
503 (gen_maybe_namespace_elt): Update.
504 (gen_expr_for_cast): Update.
505 (gen_expr): Update.
506 * block.h: Update.
507 * blockframe.c (find_pc_partial_function): Update.
508 * breakpoint.c (print_breakpoint_location): Update.
509 (update_static_tracepoint): Update.
510 * btrace.c (ftrace_print_function_name): Update.
511 (ftrace_function_switched): Update.
512 * buildsym.c (find_symbol_in_list): Update.
513 * c-exp.y: Update.
514 * c-typeprint.c (c_print_typedef): Update.
515 (c_type_print_template_args): Update.
516 * cli/cli-cmds.c (edit_command): Update.
517 (list_command): Update.
518 (print_sal_location): Update.
519 * coffread.c (patch_opaque_types): Update.
520 (process_coff_symbol): Update.
521 (coff_read_enum_type): Update.
522 * compile/compile-c-symbols.c (c_symbol_substitution_name): Update.
523 (convert_one_symbol): Update.
524 (hash_symname): Update.
525 (eq_symname): Update.
526 * compile/compile-cplus-symbols.c (convert_one_symbol): Update.
527 * compile/compile-cplus-types.c (debug_print_scope): Update.
528 * compile/compile-loc2c.c (do_compile_dwarf_expr_to_c): Update.
529 * compile/compile-object-load.c (get_out_value_type): Update.
530 * cp-namespace.c (cp_scan_for_anonymous_namespaces): Update.
531 (search_symbol_list): Update.
532 (cp_lookup_symbol_imports_or_template): Update.
533 * cp-support.c (overload_list_add_symbol): Update.
534 * ctfread.c (psymtab_to_symtab): Update.
535 * dbxread.c (cp_set_block_scope): Update.
536 * dictionary.c (iter_match_first_hashed): Update.
537 (iter_match_next_hashed): Update.
538 (insert_symbol_hashed): Update.
539 (iter_match_next_linear): Update.
540 * dictionary.h: Update.
541 * dwarf2loc.c (func_get_frame_base_dwarf_block): Update.
542 (locexpr_describe_location_piece): Update.
543 (locexpr_describe_location_1): Update.
544 (locexpr_generate_c_location): Update.
545 (loclist_describe_location): Update.
546 (loclist_generate_c_location): Update.
547 * dwarf2read.c (dw2_debug_names_lookup_symbol): Update.
548 (read_func_scope): Update.
549 (process_enumeration_scope): Update.
550 (new_symbol): Update.
551 (dwarf2_const_value): Update.
552 (dwarf2_symbol_mark_computed): Update.
553 * eval.c (evaluate_funcall): Update.
554 (evaluate_subexp_standard): Update.
555 * expprint.c (print_subexp_standard): Update.
556 (dump_subexp_body_standard): Update.
557 * f-valprint.c (info_common_command_for_block): Update.
558 * findvar.c (get_hosting_frame): Update.
559 (default_read_var_value): Update.
560 * go-lang.c (go_symbol_package_name): Update.
561 * guile/scm-block.c (bkscm_print_block_smob): Update.
562 * guile/scm-symbol.c (syscm_print_symbol_smob): Update.
563 (gdbscm_symbol_name): Update.
564 (gdbscm_symbol_linkage_name): Update.
565 (gdbscm_symbol_print_name): Update.
566 * infcall.c (get_function_name): Update.
567 * infcmd.c (jump_command): Update.
568 (finish_command): Update.
569 * infrun.c (insert_exception_resume_breakpoint): Update.
570 * linespec.c (canonicalize_linespec): Update.
571 (create_sals_line_offset): Update.
572 (convert_linespec_to_sals): Update.
573 (complete_label): Update.
574 (find_label_symbols_in_block): Update.
575 * m2-typeprint.c (m2_print_typedef): Update.
576 * mdebugread.c (mdebug_reg_to_regnum): Update.
577 (parse_symbol): Update.
578 (mylookup_symbol): Update.
579 * mi/mi-cmd-stack.c (list_arg_or_local): Update.
580 (list_args_or_locals): Update.
581 * objc-lang.c (compare_selectors): Update.
582 (info_selectors_command): Update.
583 (compare_classes): Update.
584 (info_classes_command): Update.
585 (find_imps): Update.
586 * p-typeprint.c (pascal_print_typedef): Update.
587 * printcmd.c (build_address_symbolic): Update.
588 (info_address_command): Update.
589 (print_variable_and_value): Update.
590 * python/py-framefilter.c (extract_sym): Update.
591 (py_print_single_arg): Update.
592 * python/py-symbol.c (sympy_str): Update.
593 (sympy_get_name): Update.
594 (sympy_get_linkage_name): Update.
595 * python/python.c (gdbpy_rbreak): Update.
596 * record-btrace.c (btrace_get_bfun_name): Update.
597 (btrace_call_history): Update.
598 * rust-lang.c (rust_print_typedef): Update.
599 * solib-frv.c (frv_fdpic_find_canonical_descriptor): Update.
600 * stabsread.c (stab_reg_to_regnum): Update.
601 (define_symbol): Update.
602 (read_enum_type): Update.
603 (common_block_end): Update.
604 (cleanup_undefined_types_1): Update.
605 (scan_file_globals): Update.
606 * stack.c (print_frame_arg): Update.
607 (print_frame_args): Update.
608 (find_frame_funname): Update.
609 (info_frame_command_core): Update.
610 (iterate_over_block_locals): Update.
611 (print_block_frame_labels): Update.
612 (do_print_variable_and_value): Update.
613 (iterate_over_block_arg_vars): Update.
614 (return_command): Update.
615 * symmisc.c (dump_symtab_1): Update.
616 (print_symbol): Update.
617 * symtab.c (eq_symbol_entry): Update.
618 (symbol_cache_dump): Update.
619 (lookup_language_this): Update.
620 (find_pc_sect_line): Update.
621 (skip_prologue_sal): Update.
622 (symbol_search::compare_search_syms): Update.
623 (treg_matches_sym_type_name): Update.
624 (search_symbols): Update.
625 (print_symbol_info): Update.
626 (rbreak_command): Update.
627 (completion_list_add_symbol): Update.
628 (find_gnu_ifunc): Update.
629 (get_symbol_address): Update.
630 (search_module_symbols): Update.
631 (info_module_subcommand): Update.
632 * symtab.h (SYMBOL_NATURAL_NAME): Remove.
633 (SYMBOL_LINKAGE_NAME): Remove.
634 (SYMBOL_DEMANGLED_NAME): Remove.
635 (SYMBOL_PRINT_NAME): Remove.
636 (SYMBOL_SEARCH_NAME): Remove.
637 * tracepoint.c (set_traceframe_context): Update.
638 (validate_actionline): Update.
639 (collection_list::collect_symbol): Update.
640 (encode_actions_1): Update.
641 (info_scope_command): Update.
642 (print_one_static_tracepoint_marker): Update.
643 * typeprint.c (typedef_hash_table::add_template_parameters): Update.
644 * valops.c (address_of_variable): Update.
645 (find_overload_match): Update.
646 (find_oload_champ): Update.
647
648 2019-11-22 Christian Biesinger <cbiesinger@google.com>
649
650 * ada-lang.c (ada_lookup_simple_minsym): Update.
651 (ada_collect_symbol_completion_matches): Update.
652 * ada-tasks.c (read_atcb): Update.
653 * amd64-windows-tdep.c (amd64_skip_main_prologue): Update.
654 (amd64_windows_skip_trampoline_code): Update.
655 * arm-tdep.c (skip_prologue_function): Update.
656 (arm_skip_stack_protector): Update.
657 * arm-wince-tdep.c (arm_pe_skip_trampoline_code): Update.
658 (arm_wince_skip_main_prologue): Update.
659 * ax-gdb.c (gen_expr): Update.
660 * block.c (call_site_for_pc): Update.
661 * blockframe.c (find_pc_partial_function): Update.
662 * breakpoint.c (set_breakpoint_location_function): Update.
663 * btrace.c (ftrace_print_function_name): Update.
664 (ftrace_function_switched): Update.
665 * c-valprint.c (print_unpacked_pointer): Update.
666 * coffread.c (coff_symfile_read): Update.
667 * compile/compile-c-symbols.c (convert_symbol_bmsym): Update.
668 * compile/compile-cplus-symbols.c (convert_symbol_bmsym): Update.
669 * dwarf-index-write.c (write_psymbols): Update.
670 * dwarf2loc.c (call_site_to_target_addr): Update.
671 (func_verify_no_selftailcall): Update.
672 (tailcall_dump): Update.
673 (call_site_find_chain_1): Update.
674 (dwarf_expr_reg_to_entry_parameter): Update.
675 * elfread.c (elf_gnu_ifunc_record_cache): Update.
676 * eval.c (evaluate_funcall): Update.
677 (evaluate_subexp_standard): Update.
678 (evaluate_subexp_for_sizeof): Update.
679 * expprint.c (print_subexp_standard): Update.
680 (dump_subexp_body_standard): Update.
681 * frame.c (get_prev_frame_always_1): Update.
682 * frv-tdep.c (frv_skip_main_prologue): Update.
683 * gnu-v2-abi.c (gnuv2_value_rtti_type): Update.
684 * gnu-v3-abi.c (gnuv3_rtti_type): Update.
685 (gnuv3_get_typename_from_type_info): Update.
686 (gnuv3_skip_trampoline): Update.
687 * hppa-tdep.c (hppa_lookup_stub_minimal_symbol): Update.
688 * i386-tdep.c (i386_skip_main_prologue): Update.
689 (i386_pe_skip_trampoline_code): Update.
690 * ia64-tdep.c (ia64_convert_from_func_ptr_addr): Update.
691 * infcall.c (get_function_name): Update.
692 * linespec.c (minsym_found): Update.
693 * linux-fork.c (info_checkpoints_command): Update.
694 * m32c-tdep.c (m32c_m16c_address_to_pointer): Update.
695 (m32c_m16c_pointer_to_address): Update.
696 * maint.c (maintenance_translate_address): Update.
697 * minsyms.c (add_minsym_to_hash_table): Update.
698 (add_minsym_to_demangled_hash_table): Update.
699 (lookup_minimal_symbol_mangled): Update.
700 (lookup_minimal_symbol_demangled): Update.
701 (lookup_minimal_symbol_linkage): Update.
702 (lookup_minimal_symbol_text): Update.
703 (lookup_minimal_symbol_by_pc_name): Update.
704 (minimal_symbol_is_less_than): Update.
705 (compact_minimal_symbols): Update.
706 (build_minimal_symbol_hash_tables): Update.
707 (find_solib_trampoline_target): Update.
708 * mips-tdep.c (mips_stub_frame_sniffer): Update.
709 (mips_skip_pic_trampoline_code): Update.
710 * msp430-tdep.c (msp430_skip_trampoline_code): Update.
711 * objc-lang.c (info_selectors_command): Update.
712 (info_classes_command): Update.
713 (find_methods): Update.
714 (find_imps): Update.
715 * p-valprint.c (pascal_val_print): Update.
716 * ppc-linux-tdep.c (powerpc_linux_in_dynsym_resolve_code): Update.
717 * ppc-sysv-tdep.c (convert_code_addr_to_desc_addr): Update.
718 * printcmd.c (build_address_symbolic): Update.
719 (info_symbol_command): Update.
720 * psymtab.c (psymbol_name_matches): Update.
721 (match_partial_symbol): Update.
722 (lookup_partial_symbol): Update.
723 (print_partial_symbols): Update.
724 (sort_pst_symbols): Update.
725 (maintenance_check_psymtabs): Update.
726 * python/py-framefilter.c (py_print_frame): Update.
727 * python/python.c (gdbpy_rbreak): Update.
728 * record-btrace.c (btrace_get_bfun_name): Update.
729 (btrace_call_history): Update.
730 * rs6000-tdep.c (rs6000_skip_main_prologue): Update.
731 (rs6000_skip_trampoline_code): Update.
732 * sol-thread.c (info_cb): Update.
733 * stabsread.c (scan_file_globals): Update.
734 * stack.c (find_frame_funname): Update.
735 (info_frame_command_core): Update.
736 * symmisc.c (dump_msymbols): Update.
737 * symtab.c (symbol_natural_name): Rename to..,
738 (general_symbol_info::natural_name): ...this.
739 (symbol_demangled_name): Rename to...
740 (general_symbol_info::demangled_name): ...this.
741 (symbol_search_name): Rename to...
742 (general_symbol_info::search_name): ...this.
743 (symbol_matches_search_name): Update.
744 (find_pc_sect_line): Update.
745 (skip_prologue_sal): Update.
746 (search_symbols): Update.
747 (print_msymbol_info): Update.
748 (rbreak_command): Update.
749 (completion_list_add_msymbol): Update.
750 (completion_list_objc_symbol): Update.
751 (get_msymbol_address): Update.
752 * symtab.h (struct general_symbol_info): Add member functions
753 natural_name (), linkage_name (), print_name (), demangled_name (),
754 and search_name ().
755 (SYMBOL_NATURAL_NAME): Update.
756 (symbol_natural_name): Move to a member function on general_symbol_info.
757 (SYMBOL_DEMANGLED_NAME): Update.
758 (symbol_demangled_name): Move to a member function on
759 general_symbol_info.
760 (SYMBOL_SEARCH_NAME): Update.
761 (symbol_search_name): Move to a member function on general_symbol_info.
762 (MSYMBOL_NATURAL_NAME): Remove.
763 (MSYMBOL_LINKAGE_NAME): Remove.
764 (MSYMBOL_PRINT_NAME): Remove.
765 (MSYMBOL_DEMANGLED_NAME): Remove.
766 (MSYMBOL_SEARCH_NAME): Remove.
767 * x86-tdep.c (x86_in_indirect_branch_thunk): Update.
768
769 2019-11-22 Christian Biesinger <cbiesinger@google.com>
770
771 * symtab.c (create_demangled_names_hash): Use per_bfd->
772 minimal_symbol_count for computing the initial size, if greater
773 than our default size.
774
775 2019-11-22 Tom de Vries <tdevries@suse.de>
776
777 * contrib/words.sh: Improve words extraction.
778
779 2019-11-22 Tom de Vries <tdevries@suse.de>
780
781 * contrib/words.sh: Combine sed invocations.
782
783 2019-11-21 Christian Biesinger <cbiesinger@google.com>
784
785 * Makefile.in: Update.
786 * demangle.c: Rename to...
787 * gdb-demangle.c: ..this.
788 (is_cplus_marker): Change return type to bool.
789 (_initialize_demangler): Rename to...
790 (_initialize_gdb_demangle): ...this.
791 * gdb-demangle.h (is_cplus_marker): Change return type to bool.
792 * symtab.h (demangle): Remove declaration; instead include
793 gdb-demangle.h.
794
795 2019-11-21 Tom Tromey <tromey@adacore.com>
796
797 * gdbsupport/format.c (format_pieces): Parse %I64d.
798 * unittests/format_pieces-selftests.c (test_windows_formats): New
799 function.
800 (run_tests): Call it.
801
802 2019-11-21 Peeter Joot <peeter.joot@lzlabs.com>
803
804 Byte reverse display of variables with DW_END_big, DW_END_little
805 (DW_AT_endianity) dwarf attributes if different than the native
806 byte order.
807 * ada-lang.c (ada_value_binop):
808 Use type_byte_order instead of gdbarch_byte_order.
809 * ada-valprint.c (printstr):
810 (ada_val_print_string):
811 * ada-lang.c (value_pointer):
812 (ada_value_binop):
813 Use type_byte_order instead of gdbarch_byte_order.
814 * c-lang.c (c_get_string):
815 Use type_byte_order instead of gdbarch_byte_order.
816 * c-valprint.c (c_val_print_array):
817 Use type_byte_order instead of gdbarch_byte_order.
818 * cp-valprint.c (cp_print_class_member):
819 Use type_byte_order instead of gdbarch_byte_order.
820 * dwarf2loc.c (rw_pieced_value):
821 Use type_byte_order instead of gdbarch_byte_order.
822 * dwarf2read.c (read_base_type): Handle DW_END_big,
823 DW_END_little
824 * f-lang.c (f_get_encoding):
825 Use type_byte_order instead of gdbarch_byte_order.
826 * findvar.c (default_read_var_value):
827 Use type_byte_order instead of gdbarch_byte_order.
828 * gdbtypes.c (check_types_equal):
829 Require matching TYPE_ENDIANITY_NOT_DEFAULT if set.
830 (recursive_dump_type): Print TYPE_ENDIANITY_BIG,
831 and TYPE_ENDIANITY_LITTLE if set.
832 (type_byte_order): new function.
833 * gdbtypes.h (TYPE_ENDIANITY_NOT_DEFAULT): New macro.
834 (struct main_type) <flag_endianity_not_default>:
835 New field.
836 (type_byte_order): New function.
837 * infcmd.c (default_print_one_register_info):
838 Use type_byte_order instead of gdbarch_byte_order.
839 * p-lang.c (pascal_printstr):
840 Use type_byte_order instead of gdbarch_byte_order.
841 * p-valprint.c (pascal_val_print):
842 Use type_byte_order instead of gdbarch_byte_order.
843 * printcmd.c (print_scalar_formatted):
844 Use type_byte_order instead of gdbarch_byte_order.
845 * solib-darwin.c (darwin_current_sos):
846 Use type_byte_order instead of gdbarch_byte_order.
847 * solib-svr4.c (solib_svr4_r_ldsomap):
848 Use type_byte_order instead of gdbarch_byte_order.
849 * stap-probe.c (stap_modify_semaphore):
850 Use type_byte_order instead of gdbarch_byte_order.
851 * target-float.c (target_float_same_format_p):
852 Use type_byte_order instead of gdbarch_byte_order.
853 * valarith.c (scalar_binop):
854 (value_bit_index):
855 Use type_byte_order instead of gdbarch_byte_order.
856 * valops.c (value_cast):
857 Use type_byte_order instead of gdbarch_byte_order.
858 * valprint.c (generic_emit_char):
859 (generic_printstr):
860 (val_print_string):
861 Use type_byte_order instead of gdbarch_byte_order.
862 * value.c (unpack_long):
863 (unpack_bits_as_long):
864 (unpack_value_bitfield):
865 (modify_field):
866 (pack_long):
867 (pack_unsigned_long):
868 Use type_byte_order instead of gdbarch_byte_order.
869 * findvar.c (unsigned_pointer_to_address):
870 (signed_pointer_to_address):
871 (unsigned_address_to_pointer):
872 (address_to_signed_pointer):
873 (default_read_var_value):
874 (default_value_from_register):
875 Use type_byte_order instead of gdbarch_byte_order.
876 * gnu-v3-abi.c (gnuv3_make_method_ptr):
877 Use type_byte_order instead of gdbarch_byte_order.
878 * riscv-tdep.c (riscv_print_one_register_info):
879 Use type_byte_order instead of gdbarch_byte_order.
880
881 2019-11-21 Simon Marchi <simon.marchi@polymtl.ca>
882
883 * top.c (current_ui_gdb_stdout_ptr): Spell out by hand.
884 (current_ui_gdb_stdin_ptr): Likewise.
885 (current_ui_gdb_stderr_ptr): Likewise.
886 (current_ui_gdb_stdlog_ptr): Likewise.
887 (current_ui_current_uiout_ptr): Likewise.
888 (gen_ret_current_ui_field_ptr): Remove.
889
890 2019-11-21 Tom de Vries <tdevries@suse.de>
891
892 PR gdb/24956
893 * cli/cli-script.c (execute_control_command): Only switch to
894 INTERP_CONSOLE's ui_out when INTERP_MI is active.
895
896 2019-11-19 Tom Tromey <tom@tromey.com>
897
898 * tui/tui-win.c (tui_partial_win_by_name): Move from tui-data.c.
899 Now static. Change type of "name".
900 (tui_set_win_height_command): Don't copy "arg".
901 * tui/tui-data.h (tui_partial_win_by_name): Don't declare.
902 * tui/tui-data.c (tui_partial_win_by_name): Move to tui-win.c.
903
904 2019-11-19 Ali Tamur <tamur@google.com>
905
906 * dwarf2read.c (dw2_get_file_names_reader): Replace "if (attr)" with
907 "if (attr != nullptr)".
908 (dwarf2_find_base_address): Likewise.
909 (dwarf2_build_include_psymtabs): Likewise.
910 (read_cutu_die_from_dwo): Likewise.
911 (read_func_scope): Likewise.
912 (read_call_site_scope): Likewise.
913 (dwarf2_get_pc_bounds): Likewise.
914 (dwarf2_record_block_ranges): Likewise.
915 (dwarf2_add_field): Likewise.
916 (dwarf2_add_member_fn): Likewise.
917 (read_structure_type): Likewise.
918 (read_enumeration_type): Likewise.
919 (read_array_type): Likewise.
920 (read_array_order): Likewise.
921 (read_set_type): Likewise.
922 (read_common_block): Likewise.
923 (read_tag_reference_type): Likewise.
924 (read_tag_string_type): Likewise.
925 (read_subroutine_type): Likewise.
926 (read_base_type): Likewise.
927 (read_subrange_type): Likewise.
928 (new_symbol): Likewise.
929 (prepare_one_comp_unit): Likewise.
930
931 2019-11-19 Tom Tromey <tromey@adacore.com>
932
933 * windows-nat.c (windows_nat_target::attach): Include GetLastError
934 result in error when DebugActiveProcess fails.
935
936 2019-11-18 Sergio Durigan Junior <sergiodj@redhat.com>
937 Pedro Alves <palves@redhat.com>
938
939 https://bugzilla.redhat.com/show_bug.cgi?id=1765117
940 * target.c (target_stack::push): Call 'unpush' if there's a
941 target on top of the stack.
942
943 2019-11-18 Philippe Waroquiers <philippe.waroquiers@skynet.be>
944
945 * python/py-block.c (blpy_dealloc): Call tp_free.
946 (blpy_block_syms_dealloc): Likewise.
947 * python/py-finishbreakpoint.c (bpfinishpy_dealloc): Likewise.
948 * python/py-inferior.c (infpy_dealloc): Likewise.
949 * python/py-lazy-string.c (stpy_dealloc): Likewise.
950 * python/py-linetable.c (ltpy_iterator_dealloc): Likewise.
951 * python/py-symbol.c (sympy_dealloc): Likewise.
952 * python/py-symtab.c (stpy_dealloc): Likewise.
953 * python/py-type.c (typy_iterator_dealloc): Likewise.
954
955 2019-11-18 Christian Biesinger <cbiesinger@google.com>
956
957 * symtab.h (struct symbol) <owner>: Initialize explicitly in the
958 constructor instead of using a class initializer.
959
960 2019-11-15 Christian Biesinger <cbiesinger@google.com>
961
962 * Makefile.in: Replace {posix,mingw}-strerror.c with safe-strerror.c.
963 * configure: Regenerate.
964 * configure.ac: Don't source common.host.
965 * gdbsupport/common.host: Remove.
966 * gdbsupport/mingw-strerror.c: Remove.
967 * gdbsupport/posix-strerror.c: Rename to...
968 * gdbsupport/safe-strerror.c: ...this.
969
970 2019-11-15 Christian Biesinger <cbiesinger@google.com>
971
972 * maint.c (scoped_command_stats::print_time): Use localtime_r
973 instead of localtime (provided through gnulib if necessary).
974 * nat/linux-osdata.c (time_from_time_t): Use ctime_r instead
975 of ctime.
976
977 2019-11-15 Christian Biesinger <cbiesinger@google.com>
978
979 * gdbsupport/common-defs.h: Include time.h before pathmax.h to
980 avoid compile errors.
981
982 2019-11-15 Christian Biesinger <cbiesinger@google.com>
983
984 * config.in: Regenerate.
985 * configure: Regenerate.
986 * gdbsupport/common.m4: No longer check for strerror_r.
987 * gdbsupport/posix-strerror.c (safe_strerror): Always call the
988 POSIX version of strerror_r, now that gnulib provides it if
989 necessary.
990
991 2019-11-14 Christian Biesinger <cbiesinger@google.com>
992
993 * README (`configure' options): Update.
994
995 2019-11-14 Tom Tromey <tromey@adacore.com>
996
997 * eval.c (evaluate_subexp_standard) <BINOP_ASSIGN>: Do not pass an
998 expected type for the RHS if the LHS is a convenience variable.
999
1000 2019-11-14 Simon Marchi <simon.marchi@polymtl.ca>
1001
1002 * unittests/vec-utils-selftests.c (unordered_remove_tests::obj):
1003 Provide explicit default and copy constructor.
1004
1005 2019-11-14 Philippe Waroquiers <philippe.waroquiers@skynet.be>
1006
1007 * python/py-finishbreakpoint.c (gdbpy_breakpoint_created):
1008 only call Py_INCREF (newbp) in the bppy_pending_object case.
1009
1010 2019-11-13 Tom Tromey <tromey@adacore.com>
1011
1012 PR build/25182:
1013 * psympriv.h (partial_symbol): Remove static assert.
1014 * symtab.h (general_symbol_info, symbol): Remove static assert.
1015
1016 2019-11-12 Andrew Burgess <andrew.burgess@embecosm.com>
1017
1018 * gdbsupport/format.c (format_pieces::format_pieces): Support
1019 printf 'z' size modifier.
1020 * gdbsupport/format.h (enum argclass): Add size_t_arg.
1021 * printcmd.c (ui_printf): Handle size_t_arg.
1022 * ui-out.c (ui_out::vmessage): Likewise.
1023 * unittests/format_pieces-selftests.c (test_format_int_sizes): New
1024 function.
1025 (run_tests): Call test_format_int_sizes.
1026
1027 2019-11-12 Christian Biesinger <cbiesinger@google.com>
1028
1029 * ada-exp.y (write_ambiguous_var): Update.
1030 * buildsym.c (add_symbol_to_list): Update.
1031 * dwarf2read.c (read_variable): Update.
1032 (new_symbol): Update.
1033 * jit.c (finalize_symtab): Update.
1034 * language.c (language_alloc_type_symbol): Update.
1035 * symtab.c (fixup_symbol_section): Update.
1036 (initialize_objfile_symbol_1): Move code to...
1037 (initialize_objfile_symbol): ...here. Remove now-unnecessary memset.
1038 (allocate_symbol): Update.
1039 (allocate_template_symbol): Update.
1040 (get_symbol_address): Update.
1041 * symtab.h (struct symbol): Inherit from general_symbol_info instead
1042 of having as a field, and add a constructor.
1043 (SYMBOL_VALUE): Update.
1044 (SYMBOL_VALUE_ADDRESS): Update.
1045 (SET_SYMBOL_VALUE_ADDRESS): Update.
1046 (SYMBOL_VALUE_BYTES): Update.
1047 (SYMBOL_VALUE_COMMON_BLOCK): Update.
1048 (SYMBOL_BLOCK_VALUE): Update.
1049 (SYMBOL_VALUE_CHAIN): Update.
1050 (SYMBOL_LANGUAGE): Update.
1051 (SYMBOL_SECTION): Update.
1052 (SYMBOL_OBJ_SECTION): Update.
1053 (SYMBOL_SET_LANGUAGE): Update.
1054 (SYMBOL_SET_LINKAGE_NAME): Update.
1055 (SYMBOL_SET_NAMES): Update.
1056 (SYMBOL_NATURAL_NAME): Update.
1057 (SYMBOL_LINKAGE_NAME): Update.
1058 (SYMBOL_DEMANGLED_NAME): Update.
1059 (SYMBOL_SEARCH_NAME): Update.
1060 (SYMBOL_MATCHES_SEARCH_NAME): Update.
1061 (struct symbol): Update.
1062 (struct template_symbol): Update.
1063 (struct rust_vtable_symbol): Update.
1064 * xcoffread.c (SYMBOL_DUP): Update.
1065
1066 2019-11-12 Tom Tromey <tom@tromey.com>
1067
1068 * tui/tui-layout.c (show_layout): Set current_layout.
1069 (show_source_disasm_command, show_data)
1070 (show_source_or_disasm_and_command): Don't set current_layout.
1071
1072 2019-11-12 Tom Tromey <tom@tromey.com>
1073
1074 * tui/tui-layout.c (_initialize_tui_layout): Move to end.
1075
1076 2019-11-12 Tom Tromey <tom@tromey.com>
1077
1078 * tui/tui-win.c (resize_message): New global.
1079 (show_tui_resize_message): New function.
1080 (tui_async_resize_screen): Print message if requested.
1081 (_initialize_tui_win): Add tui-resize-message setting.
1082 * NEWS: Add entry for new commands.
1083
1084 2019-11-11 Tom Tromey <tom@tromey.com>
1085
1086 * tui/tui.c (tui_initialize_readline): Add new bindable readline
1087 functions.
1088
1089 2019-11-11 Christian Biesinger <cbiesinger@google.com>
1090
1091 * nat/linux-osdata.c (user_from_uid): Use getpwuid_r.
1092
1093 2019-11-10 Andrew Burgess <andrew.burgess@embecosm.com>
1094
1095 * python/py-symbol.c (gdbpy_lookup_static_symbols): New
1096 function.
1097 * python/python-internal.h (gdbpy_lookup_static_symbols):
1098 Declare new function.
1099 * python/python.c (python_GdbMethods): Add
1100 gdb.lookup_static_symbols method.
1101 * NEWS: Mention gdb.lookup_static_symbols.
1102
1103 2019-11-10 Andrew Burgess <andrew.burgess@embecosm.com>
1104
1105 * python/py-symbol.c (gdbpy_lookup_static_symbol): Lookup in
1106 static block of current object file first. Also fix typo in
1107 header comment.
1108
1109 2019-11-10 Andrew Burgess <andrew.burgess@embecosm.com>
1110
1111 * stack.c (set_last_displayed_sal): Delete.
1112 (last_displayed_sal_valid): Delete.
1113 (last_displayed_pspace): Delete.
1114 (last_displayed_addr): Delete.
1115 (last_displayed_symtab): Delete.
1116 (last_displayed_line): Delete.
1117 (class last_displayed_symtab_info_type): New.
1118 (last_displayed_symtab_info): New static global variable.
1119 (print_frame_info): Call methods on last_displayed_symtab_info.
1120 (clear_last_displayed_sal): Update header comment, and make use of
1121 last_displayed_symtab_info.
1122 (last_displayed_sal_is_valid): Likewise.
1123 (get_last_displayed_pspace): Likewise.
1124 (get_last_displayed_addr): Likewise.
1125 (get_last_displayed_symtab): Likewise.
1126 (get_last_displayed_line): Likewise.
1127 (get_last_displayed_sal): Likewise.
1128 * stack.h (clear_last_displayed_sal): Update header comment.
1129 (last_displayed_sal_is_valid): Likewise.
1130 (get_last_displayed_pspace): Likewise.
1131 (get_last_displayed_addr): Likewise.
1132 (get_last_displayed_symtab): Likewise.
1133 (get_last_displayed_line): Likewise.
1134 (get_last_displayed_sal): Likewise.
1135
1136 2019-11-10 Andrew Burgess <andrew.burgess@embecosm.com>
1137
1138 * stack.c (frame_show_address): Convert return type to bool.
1139 * stack.h (frame_show_address): Likewise, and update header
1140 comment.
1141
1142 2019-11-10 Andrew Burgess <andrew.burgess@embecosm.com>
1143
1144 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add new file to the list.
1145 * unittests/vec-utils-selftests.c: New file.
1146 * gdbsupport/gdb_vecs.h (unordered_remove): Avoid self move assign.
1147
1148 2019-11-10 Tom Tromey <tom@tromey.com>
1149
1150 * tui/tui-wingeneral.c (tui_unhighlight_win): Use can_box.
1151 (tui_highlight_win): Likewise.
1152 (tui_win_info::check_and_display_highlight_if_needed): Likewise.
1153 * tui/tui-data.h (struct tui_win_info) <can_highlight>: Remove.
1154 * tui/tui-command.h (struct tui_cmd_window) <tui_cmd_window>:
1155 Don't set can_highlight.
1156
1157 2019-11-10 Tom Tromey <tom@tromey.com>
1158
1159 * cli/cli-style.h (class cli_style_option) <cli_style_option>:
1160 Remove unused declaration.
1161
1162 2019-11-08 Tom Tromey <tromey@adacore.com>
1163
1164 * top.c (read_command_file): Update.
1165 (command_line_input): Make return type const.
1166 * python/py-gdb-readline.c: Update.
1167 * linespec.c (decode_line_2): Update.
1168 * defs.h (command_line_input): Make return type const.
1169 * cli/cli-script.c (read_next_line): Make return type const.
1170 * ada-lang.c (get_selections): Update.
1171
1172 2019-11-06 Christian Biesinger <cbiesinger@google.com>
1173
1174 * linux-tdep.c (linux_info_proc): Use strtok_r instead of strtok.
1175 * mi/mi-main.c (output_cores): Likewise.
1176 * nat/linux-osdata.c (linux_xfer_osdata_cpus): Likewise.
1177 (linux_xfer_osdata_modules): Likewise.
1178 * remote.c (register_remote_support_xml): Likewise.
1179 * sparc64-tdep.c (adi_is_addr_mapped): Likewise.
1180 * xml-syscall.c (syscall_create_syscall_desc): Likewise.
1181
1182 2019-11-06 Tom Tromey <tom@tromey.com>
1183
1184 * tui/tui-interp.c: Don't include readline.h.
1185 * tui/tui-hooks.c: Don't include readline.h.
1186 * symmisc.c: Include tilde.h, not readline.h.
1187 * symfile.c: Include tilde.h, not readline.h.
1188 * source.c: Include tilde.h, not readline.h.
1189 * solib.c: Include tilde.h, not readline.h.
1190 * psymtab.c: Include tilde.h, not readline.h.
1191 * exec.c: Include tilde.h, not readline.h.
1192 * corelow.c: Include tilde.h, not readline.h.
1193 * cli/cli-dump.c: Include tilde.h, not readline.h.
1194 * cli/cli-cmds.c: Don't include readline.h.
1195
1196 2019-11-05 Tom Tromey <tom@tromey.com>
1197
1198 * tui/tui-disasm.c (struct tui_asm_line) <addr_size>: New member.
1199 (tui_disassemble): Set addr_size.
1200 (tui_disasm_window::set_contents): Use addr_size.
1201
1202 2019-11-05 Tom Tromey <tom@tromey.com>
1203
1204 * rust-lang.c (rust_language_defn): Update.
1205 * python/py-value.c (valpy_string): Call c_get_string.
1206 * p-lang.c (pascal_language_defn): Update.
1207 * opencl-lang.c (opencl_language_defn): Update.
1208 * objc-lang.c (objc_language_defn): Update.
1209 * m2-lang.c (m2_language_defn): Update.
1210 * language.c (unknown_language_defn, auto_language_defn): Update.
1211 (default_get_string): Remove.
1212 * guile/scm-value.c (gdbscm_value_to_string): Use c_get_string.
1213 * go-lang.c (go_language_defn): Update.
1214 * f-lang.c (f_language_defn): Update.
1215 * d-lang.c (d_language_defn): Update.
1216 * c-lang.c (c_language_defn, cplus_language_defn)
1217 (asm_language_defn, minimal_language_defn): Update.
1218 * ada-lang.c (ada_language_defn): Update.
1219 * language.h (struct language_defn) <la_get_string>: Remove.
1220 (LA_GET_STRING): Remove.
1221 (default_get_string): Don't declare.
1222
1223 2019-11-05 Tom Tromey <tom@tromey.com>
1224
1225 * tui/tui-source.h (struct tui_source_window): Inline
1226 constructor. Remove destructor.
1227 <style_changed, m_observable>: Move to superclass.
1228 * tui/tui-winsource.h (tui_copy_source_line): Declare.
1229 (struct tui_source_window_base): Move private members to end.
1230 <style_changed, m_observable>: Move from tui_source_window.
1231 * tui/tui-winsource.c (tui_copy_source_line): Move from
1232 tui-source.c. Rename from copy_source_line. Add special handling
1233 for negative line number.
1234 (tui_source_window_base::style_changed): Move from
1235 tui_source_window.
1236 (tui_source_window_base): Register observer.
1237 (~tui_source_window_base): New.
1238 * tui/tui-source.c (copy_source_line): Move to tui-winsource.c;
1239 rename.
1240 (tui_source_window::set_contents): Use tui_copy_source_line.
1241 (tui_source_window::tui_source_window): Move to tui-source.h.
1242 (tui_source_window::~tui_source_window): Remove.
1243 (tui_source_window::style_changed): Move to superclass.
1244 * tui/tui-disasm.c (tui_disassemble): Create string file with
1245 styling, when possible. Add "addr_size" parameter.
1246 (tui_disasm_window::set_contents): Use tui_copy_source_line.
1247 Don't compute maximum size.
1248 (len_without_escapes): New function
1249
1250 2019-11-05 Tom Tromey <tom@tromey.com>
1251
1252 * tui/tui-winsource.h (struct tui_source_element) <line>: Now a
1253 std::string.
1254 * tui/tui-winsource.c (tui_show_source_line): Update.
1255 * tui/tui-source.c (tui_source_window::set_contents): Update.
1256 * tui/tui-disasm.c (tui_disasm_window::set_contents): Update.
1257
1258 2019-11-05 Christian Biesinger <cbiesinger@google.com>
1259
1260 * symtab.h (gdb_static_assert): Put && operator at the beginning
1261 of the line instead of the end.
1262
1263 2019-11-04 Christian Biesinger <cbiesinger@google.com>
1264
1265 * psympriv.h: Add static_asserts for sizeof (general_symbol_info)
1266 and sizeof (symbol).
1267 * symtab.h: Add a static_assert for sizeof (partial_symbol).
1268
1269 2019-11-04 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
1270
1271 * NEWS (Changes since GDB 8.3): Document Solaris 10 removal.
1272 * configure.host: Mark *-*-solaris2.10* obsolete.
1273 * configure.tgt: Mark Solaris < 11 obsolete.
1274 * MAINTAINERS (Target Instruction Set Architectures) <sparc>:
1275 Update target triplet.
1276
1277 2019-11-01 Tom Tromey <tromey@adacore.com>
1278
1279 * utils.c (print_sys_errmsg): Simplify.
1280
1281 2019-11-01 Tom Tromey <tromey@adacore.com>
1282
1283 * gdbsupport/mingw-strerror.c (safe_strerror): Constify result.
1284
1285 2019-11-01 Christian Biesinger <cbiesinger@google.com>
1286
1287 * configure: Regenerate.
1288 * configure.ac: Remove check for strerror_r.
1289 * gdbsupport/common.m4: Check for strerror_r.
1290
1291 2019-11-01 Luis Machado <luis.machado@linaro.org>
1292
1293 PR gdb/25124
1294
1295 * arm-tdep.c (arm_per_objfile): Rename to ...
1296 (arm_per_bfd): ... this.
1297 (arm_objfile_data_key): Rename to ...
1298 (arm_bfd_data_key): ... this.
1299 (arm_find_mapping_symbol): Adjust access to new bfd_key-based
1300 data.
1301 (arm_record_special_symbol): Likewise.
1302
1303 2019-10-31 Andrew Burgess <andrew.burgess@embecosm.com>
1304
1305 * ada-typeprint.c (ada_print_typedef): Don't print newline at the
1306 end.
1307 * c-typeprint.c (c_print_typedef): Likewise.
1308 * f-typeprint.c (f_print_typedef): Likewise.
1309 * m2-typeprint.c (m2_print_typedef): Likewise.
1310 * p-typeprint.c (pascal_print_typedef): Likewise.
1311 * rust-lang.c (rust_print_typedef): Likewise.
1312 * symtab.c (print_symbol_info): Print a newline after calling
1313 typedef_print.
1314
1315 2019-10-31 Andrew Burgess <andrew.burgess@embecosm.com>
1316
1317 * symtab.c (info_module_cmdlist): New variable.
1318 (info_module_command): New function.
1319 (search_module_symbols): New function.
1320 (info_module_subcommand): New function.
1321 (struct info_modules_var_func_options): New struct.
1322 (info_modules_var_func_options_defs): New variable.
1323 (make_info_modules_var_func_options_def_group): New function.
1324 (info_module_functions_command): New function.
1325 (info_module_variables_command): New function.
1326 (info_module_var_func_command_completer): New function.
1327 (_initialize_symtab): Register new 'info module functions' and
1328 'info module variables' commands.
1329 * symtab.h (typedef symbol_search_in_module): New typedef.
1330 (search_module_symbols): Declare new function.
1331 * NEWS: Mention new commands.
1332
1333 2019-10-31 Andrew Burgess <andrew.burgess@embecosm.com>
1334
1335 * dwarf2read.c (dw2_symtab_iter_next): Handle MODULE_DOMAIN.
1336 (dw2_expand_marked_cus): Handle MODULES_DOMAIN.
1337 (dw2_debug_names_iterator::next): Handle MODULE_DOMAIN and
1338 MODULES_DOMAIN.
1339 (scan_partial_symbols): Only create partial module symbols for non
1340 declarations.
1341 * psymtab.c (recursively_search_psymtabs): Handle MODULE_DOMAIN
1342 and MODULES_DOMAIN.
1343 * symtab.c (search_domain_name): Likewise.
1344 (search_symbols): Likewise.
1345 (print_symbol_info): Likewise.
1346 (symtab_symbol_info): Likewise.
1347 (info_modules_command): New function.
1348 (_initialize_symtab): Register 'info modules' command.
1349 * symtab.h (enum search_domain): Add MODULES_DOMAIN.
1350 * NEWS: Mention new 'info modules' command.
1351
1352 2019-10-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
1353
1354 * NEWS: Mention $_gdb_setting, $_gdb_setting_str, $_gdb_maint_setting
1355 and $_gdb_maint_setting_str.
1356
1357 2019-10-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
1358
1359 * cli/cli-cmds.c (setting_cmd, value_from_setting)
1360 (gdb_setting_internal_fn, gdb_maint_setting_internal_fn)
1361 (str_value_from_setting, gdb_setting_str_internal_fn)
1362 (gdb_maint_setting_str_internal_fn): New functions.
1363 (_initialize_cli_cmds): Define the new convenience functions.
1364 * gdb/cli/cli-setshow.h (get_setshow_command_value_string): Constify.
1365 * gdb/cli/cli-setshow.c (get_setshow_command_value_string): Constify.
1366
1367 2019-10-31 Christian Biesinger <cbiesinger@google.com>
1368
1369 * agent.c (set_can_use_agent): When the setting is turned on,
1370 look up agent symbols if we don't have them yet.
1371 (agent_new_objfile): Don't look up agent symbols when the agent
1372 setting is off.
1373
1374 2019-10-31 Christian Biesinger <cbiesinger@google.com>
1375
1376 * config.in: Regenerate.
1377
1378 2019-10-31 Christian Biesinger <cbiesinger@google.com>
1379
1380 * configure: Regenerate.
1381 * configure.ac: Check for strerror_r.
1382 * gdbsupport/common-utils.h (safe_strerror): Change return value
1383 to const char * and document that this function is now threadsafe.
1384 * gdbsupport/posix-strerror.c (safe_strerror): Make buf
1385 thread_local and call strerror_r, if available.
1386 * utils.c (perror_string): Update.
1387 (print_sys_errmsg): Update.
1388
1389 2019-10-31 Luis Machado <luis.machado@linaro.org>
1390
1391 * arm-tdep.c (arm_exidx_data_key): Use bfd_key instead of
1392 objfile_key.
1393 (arm_exidx_new_objfile): Adjust to use objfile->obfd instead of
1394 objfile to fetch per-bfd data.
1395 (arm_find_exidx_entry): Likewise.
1396
1397 2019-10-31 Christian Biesinger <cbiesinger@google.com>
1398
1399 * gdbsupport/agent.c (debug_agent): Change type to bool.
1400 (use_agent): Likewise.
1401 (all_agent_symbols_look_up): Likewise.
1402 (agent_loaded_p): Change return value to bool.
1403 (agent_look_up_symbols): Update.
1404 (agent_capability_check): Change return value to bool.
1405 * gdbsupport/agent.h (agent_loaded_p): Likewise.
1406 (debug_agent): Change type to bool.
1407 (use_agent): Likewise.
1408 (agent_capability_check): Change return value to bool.
1409
1410 2019-10-30 Christian Biesinger <cbiesinger@google.com>
1411
1412 * minsyms.c (clear_minimal_symbol_hash_tables): New function.
1413 (build_minimal_symbol_hash_tables): Code to clear the table moved
1414 to clear_minimal_symbol_hash_tables.
1415 (minimal_symbol_reader::install): Call clear_minimal_symbol_hash_tables
1416 when needed.
1417
1418 2019-10-29 Simon Marchi <simon.marchi@polymtl.ca>
1419
1420 * infcmd.c: Remove includes.
1421 * infrun.c: Remove includes.
1422
1423 2019-10-29 Simon Marchi <simon.marchi@polymtl.ca>
1424
1425 * ada-lang.h (GROW_VECT): Move to ada-lang.c.
1426 (grow_vect): Remove declaration.
1427 (ada_type_of_array): Remove declaration.
1428 (ada_update_initial_language): Remove declaration.
1429 (ada_fold_name): Remove declaration.
1430 (ada_fill_in_ada_prototype): Remove declaration.
1431 (user_select_syms): Remove declaration.
1432 (get_selections): Remove declaration.
1433 (ada_tag_type): Remove declaration.
1434 (ada_value_tag): Remove declaration.
1435 (ada_is_others_clause): Remove declaration.
1436 (ada_in_variant): Remove declaration.
1437 (ada_value_struct_elt): Remove declaration.
1438 (ada_attribute_name): Remove declaration.
1439 (ada_system_address_type): Remove declaration.
1440 * ada-lang.c (ada_watch_location_expression): Make static.
1441 (GROW_VECT): Move here from ada-lang.h.
1442 (grow_vect): Make static.
1443 (ada_update_initial_language): Make static.
1444 (ada_fold_name): Make static.
1445 (ada_type_of_array): Make static.
1446 (encoded_ordered_before): Move up.
1447 (sort_choices): Move up.
1448 (print_signatures): Move up.
1449 (ada_print_symbol_signature): Move up.
1450 (get_selections): Move up and make static.
1451 (user_select_syms): Move up and make static.
1452 (ada_value_struct_elt): Move up and make static.
1453 (ada_tag_type): Make static.
1454 (ada_value_tag): Make static.
1455 (ada_is_others_clause): Make static.
1456 (ada_in_variant): Make static.
1457 (ada_attribute_name): Make static.
1458
1459 2019-10-29 Simon Marchi <simon.marchi@polymtl.ca>
1460
1461 * ada-lang.c: Remove includes.
1462 * ada-typeprint.c: Remove includes.
1463 * ada-valprint.c: Remove includes.
1464
1465 2019-10-29 Simon Marchi <simon.marchi@efficios.com>
1466
1467 * addrmap.c: Add static assertions of type size, moved from
1468 _initialize_addrmap.
1469 (_initialize_addrmap): Remove.
1470
1471 2019-10-29 Christian Biesinger <cbiesinger@google.com>
1472
1473 * coffread.c (record_minimal_symbol): Update.
1474 (process_coff_symbol): Update.
1475 * dbxread.c (read_dbx_symtab): Update.
1476 * dwarf2read.c (add_partial_symbol): Update.
1477 (fixup_go_packaging): Update.
1478 (load_partial_dies): Update.
1479 (new_symbol): Update.
1480 * elfread.c (record_minimal_symbol): Change signature to use
1481 gdb::string_view instead of name+len.
1482 (elf_symtab_read): Update.
1483 (elf_rel_plt_read): Update.
1484 * mdebugread.c (parse_partial_symbols): Update.
1485 (handle_psymbol_enumerators): Update.
1486 (new_symbol): Update.
1487 * minsyms.c (minimal_symbol_reader::record_full): Change signature
1488 to use gdb::string_view instead of name+len.
1489 * minsyms.h (class minimal_symbol_reader) <record_full>: Likewise.
1490 * psympriv.h (add_psymbol_to_list): Likewise.
1491 * psymtab.c (add_psymbol_to_bcache): Likewise.
1492 (add_psymbol_to_list): Likewise.
1493 * stabsread.c (define_symbol): Update.
1494 * symtab.c (symbol_set_names): Change signature to use gdb::string_view.
1495 * symtab.h (SYMBOL_SET_NAMES): Likewise.
1496 (symbol_set_names): Likewise.
1497 * xcoffread.c (scan_xcoff_symtab): Update.
1498
1499 2019-10-29 Christian Biesinger <cbiesinger@google.com>
1500
1501 * symtab.h (symbol_set_names): Document that copy_name must be
1502 set to true for non-nullterminated strings.
1503 * symtab.c (symbol_set_names): Only make a nullterminated copy of
1504 linkage_name if the entry was not found and we need to demangle.
1505
1506 2019-10-29 Christian Biesinger <cbiesinger@google.com>
1507
1508 * Makefile.in (HFILES_NO_SRCDIR): Add gdb_binary_search.h.
1509 * dwarf2-frame.c (bsearch_fde_cmp): Update.
1510 (dwarf2_frame_find_fde): Replace bsearch with gdb::binary_search.
1511 * gdbsupport/gdb_binary_search.h: New file.
1512
1513 2019-10-29 Christian Biesinger <cbiesinger@google.com>
1514
1515 * NEWS: Mention new --with-system-gdbinit-dir option.
1516 * config.in: Regenerate.
1517 * configure: Regenerate.
1518 * configure.ac: Add new option --with-system-gdbinit-dir.
1519 * extension.c (get_ext_lang_of_file): Return extension_language_gdb
1520 for a ".gdb" suffix.
1521 * main.c (get_init_files): Change system_gdbinit argument to
1522 a vector and return the files in SYSTEM_GDBINIT_DIR in
1523 addition to SYSTEM_GDBINIT.
1524 (captured_main_1): Update.
1525 (print_gdb_help): Update.
1526 * top.c (print_gdb_configuration): Also print the value of
1527 SYSTEM_GDBINIT_DIR.
1528
1529 2019-10-28 Christian Biesinger <cbiesinger@google.com>
1530
1531 * gdbsupport/common-utils.h (startswith): Add an overloaded version
1532 that takes gdb::string_view arguments.
1533
1534 2019-10-26 Tom de Vries <tdevries@suse.de>
1535
1536 * aarch64-linux-tdep.c: Fix typos in comments.
1537 * aarch64-tdep.c: Same.
1538 * ada-lang.c: Same.
1539 * amd64-nat.c: Same.
1540 * arc-tdep.c: Same.
1541 * arch/aarch64-insn.c: Same.
1542 * block.c: Same.
1543 * breakpoint.h: Same.
1544 * btrace.h: Same.
1545 * c-varobj.c: Same.
1546 * cli/cli-decode.c: Same.
1547 * cli/cli-script.c: Same.
1548 * cli/cli-utils.h: Same.
1549 * coff-pe-read.c: Same.
1550 * coffread.c: Same.
1551 * compile/compile-cplus-symbols.c: Same.
1552 * compile/compile-object-run.c: Same.
1553 * completer.c: Same.
1554 * corelow.c: Same.
1555 * cp-support.c: Same.
1556 * demangle.c: Same.
1557 * dwarf-index-write.c: Same.
1558 * dwarf2-frame.c: Same.
1559 * dwarf2-frame.h: Same.
1560 * eval.c: Same.
1561 * frame-base.h: Same.
1562 * frame.h: Same.
1563 * gdbcmd.h: Same.
1564 * gdbtypes.h: Same.
1565 * gnu-nat.c: Same.
1566 * guile/scm-objfile.c: Same.
1567 * i386-tdep.c: Same.
1568 * i386-tdep.h: Same.
1569 * infcall.c: Same.
1570 * infcall.h: Same.
1571 * linux-nat.c: Same.
1572 * m68k-tdep.c: Same.
1573 * macroexp.c: Same.
1574 * memattr.c: Same.
1575 * mi/mi-cmd-disas.c: Same.
1576 * mi/mi-getopt.h: Same.
1577 * mi/mi-main.c: Same.
1578 * minsyms.c: Same.
1579 * nat/aarch64-sve-linux-sigcontext.h: Same.
1580 * objfiles.h: Same.
1581 * ppc-linux-nat.c: Same.
1582 * ppc-linux-tdep.c: Same.
1583 * ppc-tdep.h: Same.
1584 * progspace.h: Same.
1585 * prologue-value.h: Same.
1586 * python/py-evtregistry.c: Same.
1587 * python/py-instruction.h: Same.
1588 * record-btrace.c: Same.
1589 * record-full.c: Same.
1590 * remote.c: Same.
1591 * rs6000-tdep.c: Same.
1592 * ser-tcp.c: Same.
1593 * sol-thread.c: Same.
1594 * sparc-sol2-tdep.c: Same.
1595 * sparc64-tdep.c: Same.
1596 * stabsread.c: Same.
1597 * symfile.c: Same.
1598 * symtab.h: Same.
1599 * target.c: Same.
1600 * tracepoint.c: Same.
1601 * tui/tui-data.h: Same.
1602 * tui/tui-io.c: Same.
1603 * tui/tui-win.c: Same.
1604 * tui/tui.c: Same.
1605 * unittests/rsp-low-selftests.c: Same.
1606 * user-regs.h: Same.
1607 * utils.c: Same.
1608 * utils.h: Same.
1609 * valarith.c: Same.
1610 * valops.c: Same.
1611 * valprint.c: Same.
1612 * valprint.h: Same.
1613 * value.c: Same.
1614 * value.h: Same.
1615 * varobj.c: Same.
1616 * x86-nat.h: Same.
1617 * xtensa-tdep.c: Same.
1618
1619 2019-10-25 Ali Tamur <tamur@google.com>
1620
1621 * charset.c (find_charset_names): Reflect API change.
1622
1623 2019-10-25 Christian Biesinger <cbiesinger@google.com>
1624
1625 * symtab.c (struct demangled_name_entry): Change demangled name
1626 to a unique_xmalloc_ptr<char>, now that we don't allocate it as
1627 part of the struct anymore.
1628 (symbol_set_names): No longer obstack allocate + copy the demangled
1629 name, just store the allocated name from bfd.
1630
1631 2019-10-25 Tom Tromey <tromey@adacore.com>
1632
1633 * dwarf2-frame.c (dwarf2_cie_table): Now a typedef.
1634 (bsearch_cie_cmp, add_cie): Remove.
1635 (find_cie): Reimplement.
1636 (decode_frame_entry_1, decode_frame_entry): Change type. Update.
1637 (dwarf2_build_frame_info): Update.
1638
1639 2019-10-24 H.J. Lu <hongjiu.lu@intel.com>
1640
1641 PR gdb/25126
1642 * symfile.c (reread_symbols): Call forget_cached_source_info to
1643 clear the stale source cache.
1644
1645 2019-10-24 Christian Biesinger <cbiesinger@google.com>
1646
1647 * configure: Regenerate.
1648 * configure.ac: Remove code that sets python_has_threads.
1649
1650 2019-10-24 Christian Biesinger <cbiesinger@google.com>
1651
1652 * config.in: Regenerate.
1653 * configure: Regenerate.
1654 * configure.ac: Remove the code that uses sed to get the python
1655 version and defines HAVE_LIBPYTHON2_6 / HAVE_LIBPYTHON2_7.
1656
1657 2019-10-24 Andrew Burgess <andrew.burgess@embecosm.com>
1658
1659 * python/py-progspace.c (pspy_block_for_pc): Return None for all
1660 error paths.
1661
1662 2019-10-23 Tom Tromey <tom@tromey.com>
1663
1664 * arc-tdep.c: Remove ".." from include.
1665 * frv-tdep.c: Remove ".." from include.
1666 * lm32-tdep.c: Remove ".." from include.
1667 * microblaze-tdep.c: Remove ".." from include.
1668 * or1k-tdep.h: Remove ".." from include.
1669 * s12z-tdep.c: Remove ".." from include.
1670 * Makefile.in (OPCODES_CFLAGS): Add comment.
1671 (TOP_CFLAGS): New variable.
1672 (INTERNAL_CFLAGS_BASE): Add TOP_CFLAGS.
1673
1674 2019-10-23 Tom Tromey <tom@tromey.com>
1675
1676 * Makefile.in (READLINE_DIR): Update.
1677
1678 2019-10-23 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
1679
1680 * infcall.c (call_function_by_hand_dummy): Fix the function
1681 comment. And extract out a code section into...
1682 (reserve_stack_space): ...this new function.
1683
1684 2019-10-23 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
1685
1686 * infcall.c (value_arg_coerce): Remove an unused parameter.
1687 (call_function_by_hand_dummy): Update the call to
1688 'value_arg_coerce'.
1689
1690 2019-10-23 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
1691
1692 * infcall.c (call_function_by_hand_dummy): Refactor.
1693
1694 2019-10-23 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
1695
1696 * MAINTAINERS (Write After Approval): Add Tankut Baris Aktemur.
1697
1698 2019-10-23 Tom Tromey <tom@tromey.com>
1699
1700 * configure: Rebuild.
1701 * configure.ac: Don't check for sigprocmask.
1702 * gdbsupport/common.m4 (GDB_AC_COMMON): Check for sigprocmask.
1703
1704 2019-10-23 Tom Tromey <tom@tromey.com>
1705
1706 * configure: Rebuild.
1707 * acinclude.m4: Use m4_include, not sinclude.
1708
1709 2019-10-23 Tom de Vries <tdevries@suse.de>
1710
1711 PR breakpoints/24687
1712 * symtab.c (iterate_over_some_symtabs): Apply gdb_realpath on fullname.
1713
1714 2019-10-22 Christian Biesinger <cbiesinger@google.com>
1715
1716 * symtab.c (struct demangled_name_entry) <language>: Change from
1717 bitfield to regular variable.
1718
1719 2019-10-22 Christian Biesinger <cbiesinger@google.com>
1720
1721 * symtab.c (struct demangled_name_entry): Add a constructor.
1722 (free_demangled_name_entry): New function to call the destructor
1723 for demangled_name_entry.
1724 (create_demangled_names_hash): Pass free_demangled_name_entry to
1725 htab_create_alloc.
1726 (symbol_set_names): Call placement new for demangled_name_entry.
1727 * utils.c: No longer include xxhash.h here, now that fast_hash
1728 is inlined in the header.
1729 * utils.h: Instead, include it here.
1730
1731 2019-10-22 Christian Biesinger <cbiesinger@google.com>
1732
1733 * Makefile.in: Link with libxxhash.
1734 * config.in: Regenerate.
1735 * configure: Regenerate.
1736 * configure.ac: Search for libxxhash.
1737 * utils.c (fast_hash): Use xxhash if present.
1738
1739 2019-10-22 Christian Biesinger <cbiesinger@google.com>
1740
1741 * utils.h (fast_hash): New function.
1742 * symtab.c (hash_demangled_name_entry): Call new function
1743 fast_hash.
1744
1745 2019-10-22 Christian Biesinger <cbiesinger@google.com>
1746
1747 * symtab.c (struct demangled_name_entry): Change type of mangled
1748 to gdb::string_view. Also adds a constructor that takes the
1749 mangled name.
1750 (hash_demangled_name_entry): Update.
1751 (eq_demangled_name_entry): Update.
1752 (free_demangled_name_entry): New function to call the destructor
1753 now that this is not a POD anymore.
1754 (create_demangled_names_hash): Pass free_demangled_name_entry to
1755 htab_create_alloc.
1756 (symbol_set_names): Update.
1757
1758 2019-10-21 Ali Tamur <tamu@google.com>
1759
1760 * dwarf2read.c (dir_index): Change type.
1761 (file_name_index): Likewise.
1762 (line_header::include_dir_at): Change comment and implementation on
1763 whether it is DWARF 5.
1764 (line_header::is_valid_file_index): New function.
1765 (line_header::file_name_at): Change comment and implementation on
1766 whether it is DWARF 5.
1767 (line_header::file_names): Change to private field renamed as
1768 m_file_names and introduce a new accessor method.
1769 (line_header::file_names_size): New method.
1770 (line_header::include_dirs): Change to private field and rename as
1771 m_include_dirs.
1772 (dw2_get_file_names_reader): Define local var at a smaller scope and
1773 reflect API change.
1774 (dwarf2_cu::setup_type_unit_groups): Reflect API change.
1775 (process_structure_scope): Likewise.
1776 (line_header::add_include_dir): Change message and reflect renaming.
1777 (line_header::add_file_name): Likewise.
1778 (read_formatted_entries): Handle DW_FORM_data16.
1779 (dwarf_decode_line_header): Fix line header length calculation.
1780 (psymtab_include_file_name): Change comment and API.
1781 (lnp_state_machine::m_file): Update comment and reflect type change.
1782 (lnp_state_machine::record_line): Reflect type change.
1783 (dwarf_decode_lines): Reflect API change.
1784 (file_file_name): Likewise.
1785 (file_full_name): Likewise.
1786
1787 2019-10-21 Andrew Burgess <andrew.burgess@embecosm.com>
1788
1789 * objfiles.c (sort_cmp): Ensure that !(a < a) holds true.
1790
1791 2019-10-21 Tom Tromey <tom@tromey.com>
1792
1793 * tui/tui-winsource.h (tui_exec_info_content): Remove typedef.
1794
1795 2019-10-21 Tom Tromey <tom@tromey.com>
1796
1797 * configure.ac (nm.h): Conditionally create nm.h link. Subst
1798 NM_H. Use AC_CONFIG_LINKS.
1799 * configure: Rebuild.
1800 * Makefile.in (NM_H): New variable.
1801 (generated_files): Add NM_H. Remove gcore.
1802 (nm.h, stamp-nmh): New targets.
1803
1804 2019-10-20 Tom Tromey <tom@tromey.com>
1805
1806 * objfiles.h (unlink_objfile, put_objfile_before): Don't declare.
1807 * objfiles.c (unlink_objfile): Move earlier. Now static. Remove
1808 obsolete comment.
1809 (put_objfile_before): Now static.
1810
1811 2019-10-19 Simon Marchi <simon.marchi@polymtl.ca>
1812
1813 * gdbsupport/common-utils.h (startswith): Change return type to
1814 bool.
1815
1816 2019-10-19 Christian Biesinger <cbiesinger@google.com>
1817
1818 * bcache.c (bcache::print_statistics): Use std::sort instead of qsort.
1819 * breakpoint.c (bp_locations_compare): Rename to...
1820 (bp_location_is_less_than): ...this, and change to std::sort semantics.
1821 (update_global_location_list): Use std::sort instead of qsort.
1822 * buildsym.c (compare_line_numbers): Rename to...
1823 (lte_is_less_than): ...this, and change to std::sort semantics.
1824 (buildsym_compunit::end_symtab_with_blockvector): Use std::sort
1825 instead of qsort.
1826 * disasm.c (compare_lines): Rename to...
1827 (line_is_less_than): ...this, and change to std::sort semantics.
1828 (do_mixed_source_and_assembly_deprecated): Call std::sort instead
1829 of qsort.
1830 * dwarf2-frame.c (qsort_fde_cmp): Rename to...
1831 (fde_is_less_than): ...this, and change to std::sort semantics.
1832 (dwarf2_build_frame_info): Call std::sort instead of qsort.
1833 * mdebugread.c (compare_blocks):
1834 (block_is_less_than): ...this, and change to std::sort semantics.
1835 (sort_blocks): Call std::sort instead of qsort.
1836 * objfiles.c (qsort_cmp): Rename to...
1837 (sort_cmp): ...this, and change to std::sort semantics.
1838 (update_section_map): Call std::sort instead of qsort.
1839 * remote.c (compare_pnums): Remove.
1840 (map_regcache_remote_table): Call std::sort instead of qsort.
1841 * utils.c (compare_positive_ints): Remove.
1842 * utils.h (compare_positive_ints): Remove.
1843 * xcoffread.c (compare_lte): Remove.
1844 (arrange_linetable): Call std::sort instead of qsort.
1845
1846 2019-10-19 Sergio Durigan Junior <sergiodj@redhat.com>
1847
1848 * symfile.c (init_entry_point_info): Fix typo.
1849 * i386-darwin-tdep.c (darwin_dwarf_signal_frame_p): Fix typo.
1850
1851 2019-10-18 Tom de Vries <tdevries@suse.de>
1852
1853 * aarch64-tdep.c: Fix typos in comments.
1854 * ada-lang.c: Same.
1855 * ada-tasks.c: Same.
1856 * alpha-tdep.c: Same.
1857 * alpha-tdep.h: Same.
1858 * amd64-nat.c: Same.
1859 * amd64-windows-tdep.c: Same.
1860 * arc-tdep.c: Same.
1861 * arc-tdep.h: Same.
1862 * arch-utils.c: Same.
1863 * arm-nbsd-tdep.c: Same.
1864 * arm-tdep.c: Same.
1865 * ax-gdb.c: Same.
1866 * blockframe.c: Same.
1867 * btrace.c: Same.
1868 * c-varobj.c: Same.
1869 * coff-pe-read.c: Same.
1870 * coffread.c: Same.
1871 * cris-tdep.c: Same.
1872 * darwin-nat.c: Same.
1873 * dbxread.c: Same.
1874 * dcache.c: Same.
1875 * disasm.c: Same.
1876 * dtrace-probe.c: Same.
1877 * dwarf-index-write.c: Same.
1878 * dwarf2-frame-tailcall.c: Same.
1879 * dwarf2-frame.c: Same.
1880 * dwarf2read.c: Same.
1881 * eval.c: Same.
1882 * exceptions.c: Same.
1883 * fbsd-tdep.c: Same.
1884 * findvar.c: Same.
1885 * frame.c: Same.
1886 * frv-tdep.c: Same.
1887 * gnu-v3-abi.c: Same.
1888 * go32-nat.c: Same.
1889 * h8300-tdep.c: Same.
1890 * hppa-tdep.c: Same.
1891 * i386-linux-tdep.c: Same.
1892 * i386-tdep.c: Same.
1893 * ia64-libunwind-tdep.c: Same.
1894 * ia64-tdep.c: Same.
1895 * infcmd.c: Same.
1896 * infrun.c: Same.
1897 * linespec.c: Same.
1898 * linux-nat.c: Same.
1899 * linux-thread-db.c: Same.
1900 * machoread.c: Same.
1901 * mdebugread.c: Same.
1902 * mep-tdep.c: Same.
1903 * mn10300-tdep.c: Same.
1904 * namespace.c: Same.
1905 * objfiles.c: Same.
1906 * opencl-lang.c: Same.
1907 * or1k-tdep.c: Same.
1908 * osabi.c: Same.
1909 * ppc-linux-nat.c: Same.
1910 * ppc-linux-tdep.c: Same.
1911 * ppc-sysv-tdep.c: Same.
1912 * printcmd.c: Same.
1913 * procfs.c: Same.
1914 * record-btrace.c: Same.
1915 * record-full.c: Same.
1916 * remote-fileio.c: Same.
1917 * remote.c: Same.
1918 * rs6000-tdep.c: Same.
1919 * s12z-tdep.c: Same.
1920 * score-tdep.c: Same.
1921 * ser-base.c: Same.
1922 * ser-go32.c: Same.
1923 * skip.c: Same.
1924 * sol-thread.c: Same.
1925 * solib-svr4.c: Same.
1926 * solib.c: Same.
1927 * source.c: Same.
1928 * sparc-nat.c: Same.
1929 * sparc-sol2-tdep.c: Same.
1930 * sparc-tdep.c: Same.
1931 * sparc64-tdep.c: Same.
1932 * stabsread.c: Same.
1933 * stack.c: Same.
1934 * symfile.c: Same.
1935 * symtab.c: Same.
1936 * target-descriptions.c: Same.
1937 * target-float.c: Same.
1938 * thread.c: Same.
1939 * utils.c: Same.
1940 * valops.c: Same.
1941 * valprint.c: Same.
1942 * value.c: Same.
1943 * varobj.c: Same.
1944 * windows-nat.c: Same.
1945 * xcoffread.c: Same.
1946 * xstormy16-tdep.c: Same.
1947 * xtensa-tdep.c: Same.
1948
1949 2019-10-17 Tom Tromey <tromey@adacore.com>
1950
1951 * configure: Rebuild.
1952 * configure.ac: Use AC_CONFIG_HEADERS. Create stamp-h there, not
1953 in AC_CONFIG_FILES invocation.
1954 * Makefile.in (Makefile, data-directory/Makefile, stamp-h): Use
1955 new-style config.status invocation.
1956
1957 2019-10-17 Tom de Vries <tdevries@suse.de>
1958
1959 * arm-nbsd-nat.c: Fix typos in comments.
1960 * arm-tdep.c: Same.
1961 * darwin-nat-info.c: Same.
1962 * dwarf2read.c: Same.
1963 * elfread.c: Same.
1964 * event-top.c: Same.
1965 * findvar.c: Same.
1966 * gdbtypes.c: Same.
1967 * hppa-tdep.c: Same.
1968 * i386-tdep.c: Same.
1969 * jit.c: Same.
1970 * main.c: Same.
1971 * mdebugread.c: Same.
1972 * moxie-tdep.c: Same.
1973 * nto-procfs.c: Same.
1974 * osabi.c: Same.
1975 * ppc-linux-tdep.c: Same.
1976 * remote.c: Same.
1977 * riscv-tdep.c: Same.
1978 * s390-tdep.c: Same.
1979 * sh-tdep.c: Same.
1980 * sparc-linux-tdep.c: Same.
1981 * sparc-nat.c: Same.
1982 * stack.c: Same.
1983 * target-descriptions.c: Same.
1984 * top.c: Same.
1985 * varobj.c: Same.
1986
1987 2019-10-16 Tom Tromey <tom@tromey.com>
1988
1989 * objfiles.h (struct objfile) <original_name>: Now const.
1990
1991 2019-10-16 Christian Biesinger <cbiesinger@google.com>
1992
1993 * gdbsupport/gdb_setjmp.h (SIGSETJMP): Allow passing in the value to
1994 pass on to sigsetjmp's second argument.
1995 * cp-support.c (gdb_demangle): Unblock SIGSEGV if we caught a crash.
1996
1997 2019-10-16 Keith Seitz <keiths@redhat.com>
1998
1999 PR gdb/23567
2000 * dwarf2read.c (dwarf2_per_objfile::locate_sections): Discard
2001 sections whose size is greater than the file size.
2002
2003 2019-10-16 Jim Wilson <jimw@sifive.com>
2004
2005 * riscv-tdep.c (riscv_gcc_target_options): New.
2006 (riscv_gnu_triplet_regexp): New.
2007 (riscv_gdbarch_init): Call set_gdbarch_gcc_triplet_options and
2008 set_gdbarch_gnu_triplet_regexp.
2009
2010 2019-10-16 Christian Biesinger <cbiesinger@google.com>
2011
2012 * Makefile.in: Add xml-builtin.h.
2013 * features/feature_to_c.sh: Add an include for xml-builtin.h
2014 to ensure that the compiler checks that the types match.
2015 * xml-builtin.h: New file.
2016 * xml-support.c (fetch_xml_builtin): Add missing const.
2017 * xml-support.h: Remove declaration of xml_builtins.
2018
2019 2019-10-16 Tom de Vries <tdevries@suse.de>
2020
2021 PR tdep/25096
2022 * amd64-tdep.c (amd64_classify_aggregate_field): Factor out of ...
2023 (amd64_classify_aggregate): ... here.
2024 (amd64_classify_aggregate_field): Handled fiels of nested structs
2025 recursively.
2026
2027 2019-10-16 Tom de Vries <tdevries@suse.de>
2028
2029 PR tdep/24104
2030 * amd64-tdep.c (amd64_push_arguments): Handle AMD64_NO_CLASS in loop
2031 that handles 'theclass'.
2032
2033 2019-10-15 Andrew Burgess <andrew.burgess@embecosm.com>
2034
2035 * linespec.c (decode_digits_ordinary): Update comment.
2036 * make-target-delegates: No longer need to handle VEC case.
2037 * memrange.c (normalize_mem_ranges): Update comment.
2038 * namespace.c (add_using_directive): Update comment.
2039 * objc-lang.c (uniquify_strings): Update comment.
2040 * ppc-linux-nat.c (struct thread_points): Update comment.
2041 * probe.h (find_probes_in_objfile): Update comment.
2042 * target.h (enum flash_preserve_mode): Update comment.
2043 * varobj.c (varobj_restrict_range): Update comment.
2044 * varobj.h (varobj_list_children): Update comment.
2045
2046 2019-10-15 Andrew Burgess <andrew.burgess@embecosm.com>
2047
2048 * Makefile.in: Remove references to vec.h and vec.c.
2049 * aarch64-tdep.c: No longer include vec.h.
2050 * ada-lang.c: Likewise.
2051 * ada-lang.h: Likewise.
2052 * arm-tdep.c: Likewise.
2053 * ax.h: Likewise.
2054 * breakpoint.h: Likewise.
2055 * charset.c: Likewise.
2056 * cp-support.h: Likewise.
2057 * dtrace-probe.c: Likewise.
2058 * dwarf2read.c: Likewise.
2059 * extension.h: Likewise.
2060 * gdb_bfd.c: Likewise.
2061 * gdbsupport/gdb_vecs.h: Likewise.
2062 * gdbsupport/vec.c: Remove.
2063 * gdbsupport/vec.h: Remove.
2064 * gdbthread.h: Likewise.
2065 * guile/scm-type.c: Likewise.
2066 * inline-frame.c: Likewise.
2067 * machoread.c: Likewise.
2068 * memattr.c: Likewise.
2069 * memrange.h: Likewise.
2070 * namespace.h: Likewise.
2071 * nat/linux-btrace.h: Likewise.
2072 * osdata.c: Likewise.
2073 * parser-defs.h: Likewise.
2074 * progspace.h: Likewise.
2075 * python/py-type.c: Likewise.
2076 * record-btrace.c: Likewise.
2077 * rust-exp.y: Likewise.
2078 * solib-target.c: Likewise.
2079 * stap-probe.c: Likewise.
2080 * target-descriptions.c: Likewise.
2081 * target-memory.c: Likewise.
2082 * target.h: Likewise.
2083 * varobj.c: Likewise.
2084 * varobj.h: Likewise.
2085 * xml-support.h: Likewise.
2086
2087 2019-10-15 Andrew Burgess <andrew.burgess@embecosm.com>
2088
2089 * gdb/dwarf2read.c (dwarf2_per_objfile::~dwarf2_per_objfile):
2090 Update for new std::vector based implementation.
2091 (process_psymtab_comp_unit_reader): Likewise.
2092 (scan_partial_symbols): Likewise.
2093 (recursively_compute_inclusions): Likewise.
2094 (compute_compunit_symtab_includes): Likewise.
2095 (process_imported_unit_die): Likewise.
2096 (queue_and_load_dwo_tu): Likewise.
2097 (follow_die_sig_1): Likewise.
2098 * gdb/dwarf2read.h: Remove DEF_VEC_P.
2099 (typedef dwarf2_per_cu_ptr): Remove.
2100 (struct dwarf2_per_cu_data) <imported_symtabs_empty>: New
2101 function.
2102 (struct dwarf2_per_cu_data) <imported_symtabs_push>: New function.
2103 (struct dwarf2_per_cu_data) <imported_symtabs_size>: New function.
2104 (struct dwarf2_per_cu_data) <imported_symtabs_free>: New function.
2105 (struct dwarf2_per_cu_data) <imported_symtabs>: Change to
2106 std::vector.
2107
2108 2019-10-15 Tom Tromey <tromey@adacore.com>
2109
2110 * windows-nat.c (windows_nat_target::resume): Use %x when logging
2111 TID.
2112
2113 2019-10-15 Tom Tromey <tromey@adacore.com>
2114
2115 * windows-nat.c (windows_nat_target::fetch_registers)
2116 (windows_nat_target::store_registers): Rename "pid" to "tid".
2117
2118 2019-10-15 Tom Tromey <tromey@adacore.com>
2119
2120 * gdbarch.h, gdbarch.c: Rebuild.
2121 * gdbarch.sh (gcc_target_options): Change return type to
2122 std::string.
2123 * compile/compile.c (get_args): Update.
2124 * nios2-tdep.c (nios2_gcc_target_options): Return std::string.
2125 * arm-linux-tdep.c (arm_linux_gcc_target_options): Return
2126 std::string.
2127 * aarch64-linux-tdep.c (aarch64_linux_gcc_target_options): Return
2128 std::string.
2129 * arch-utils.c (default_gcc_target_options): Return std::string.
2130 * arch-utils.h (default_gcc_target_options): Return std::string.
2131 * s390-tdep.c (s390_gcc_target_options): Return std::string.
2132
2133 2019-10-15 Christian Biesinger <cbiesinger@google.com>
2134
2135 * breakpoint.c (breakpoint_chain): Make static.
2136 * tui/tui-winsource.c: Call iterate_over_breakpoints instead
2137 of accessing breakpoint_chain.
2138
2139 2019-10-15 Christian Biesinger <cbiesinger@google.com>
2140
2141 * breakpoint.c (iterate_over_breakpoints): Change function pointer
2142 to a gdb::function_view and return value to bool.
2143 * breakpoint.h (iterate_over_breakpoints): Likewise.
2144 * dummy-frame.c (pop_dummy_frame_bpt): Update.
2145 (pop_dummy_frame): Update.
2146 * guile/scm-breakpoint.c (bpscm_build_bp_list): Update.
2147 (gdbscm_breakpoints): Update.
2148 * python/py-breakpoint.c (build_bp_list): Update.
2149 (gdbpy_breakpoints): Update.
2150 * python/py-finishbreakpoint.c (bpfinishpy_detect_out_scope_cb):
2151 Update.
2152 (bpfinishpy_handle_stop): Update.
2153 (bpfinishpy_handle_exit): Update.
2154 * solib-svr4.c (svr4_update_solib_event_breakpoint): Update.
2155 (svr4_update_solib_event_breakpoints): Update.
2156
2157 2019-10-15 Andreas Arnez <arnez@linux.ibm.com>
2158
2159 * s390-tdep.c (s390_effective_inner_type): Ignore static fields
2160 when unwrapping single-field structs.
2161
2162 2019-10-14 Simon Marchi <simon.marchi@polymtl.ca>
2163
2164 * dwarf2read.c: Remove includes.
2165
2166 2019-10-13 Simon Marchi <simon.marchi@polymtl.ca>
2167
2168 * ui-out.c (ui_out::call_do_message): Silence
2169 -Wformat-nonliteral warning.
2170
2171 2019-10-12 Simon Marchi <simon.marchi@polymtl.ca>
2172
2173 * breakpoint.c: Remove some includes: continuations.h, skip.h,
2174 mi/mi-main.h, readline/readline.h, readline/history.h. Add
2175 include: readline/tilde.h.
2176
2177 2019-10-12 Christian Biesinger <cbiesinger@google.com>
2178
2179 * remote.c (remote_target::get_trace_status): Remove declaration of
2180 trace_regblock_size.
2181
2182 2019-10-12 Christian Biesinger <cbiesinger@google.com>
2183
2184 * cli/cli-cmds.c (max_user_call_depth): Move comment to header.
2185 (show_user): Remove declaration of cmdlist.
2186 * cli/cli-cmds.h (max_user_call_depth): Declare.
2187 * cli/cli-script.c (execute_user_command): Remove declaration
2188 of max_user_call_depth.
2189
2190 2019-10-11 Jim Wilson <jimw@sifive.com>
2191
2192 * gdbsupport/print-utils.h (pulongest): Fix comment.
2193 (plongest): Likewise.
2194 (phex): Add missing comment, mention leading zeros.
2195 (phex_nz): Add mention of no leading zeros to comment.
2196
2197 * riscv-tdep.c (riscv_push_dummy_code): Change %lld to %s and use
2198 plongest instead of unsigned long long cast.
2199
2200 2019-10-10 Christian Biesinger <cbiesinger@google.com>
2201
2202 * main.c (captured_main_1): Include gdbtk.h and remove declarations
2203 for external_editor_command and gdbtk_test.
2204
2205 2019-10-10 Christian Biesinger <cbiesinger@google.com>
2206
2207 * mi/mi-cmd-var.c (varobjdebug): Remove declaration.
2208 * varobj.c (varobjdebug): Move comment to...
2209 * varobj.h (varobjdebug): ...here, and declare.
2210
2211 2019-10-09 Tom Tromey <tom@tromey.com>
2212
2213 * tui/tui-regs.c (tui_data_window::show_registers): Don't call
2214 erase_data_content.
2215
2216 2019-10-09 Tom Tromey <tom@tromey.com>
2217
2218 * tui/tui-wingeneral.h (tui_delete_win): Don't declare.
2219 * tui/tui-stack.c (tui_locator_window::rerender): Update.
2220 * tui/tui-command.c (tui_cmd_window::resize)
2221 (tui_refresh_cmd_win): Update.
2222 * tui/tui-win.c (tui_resize_all, tui_set_focus_command): Update.
2223 * tui/tui.c (tui_rl_other_window, tui_enable): Update.
2224 * tui/tui-data.c (~tui_gen_win_info): Remove.
2225 * tui/tui-layout.c (tui_gen_win_info::resize): Update.
2226 * tui/tui-io.c (update_cmdwin_start_line, tui_putc, tui_puts)
2227 (tui_redisplay_readline, tui_mld_flush)
2228 (tui_mld_erase_entire_line, tui_mld_getc, tui_getc): Update.
2229 * tui/tui-regs.c (tui_data_window::delete_data_content_windows)
2230 (tui_data_window::erase_data_content)
2231 (tui_data_item_window::rerender)
2232 (tui_data_item_window::refresh_window): Update.
2233 * tui/tui-wingeneral.c (tui_gen_win_info::refresh_window)
2234 (box_win, tui_gen_win_info::make_window)
2235 (tui_gen_win_info::make_visible): Update.
2236 (tui_delete_win): Remove.
2237 * tui/tui-winsource.c
2238 (tui_source_window_base::do_erase_source_content): Update.
2239 (tui_show_source_line, tui_source_window_base::update_tab_width)
2240 (tui_source_window_base::update_exec_info): Update.
2241 * tui/tui-data.h (struct curses_deleter): New.
2242 (struct tui_gen_win_info) <handle>: Now a unique_ptr.
2243 (struct tui_gen_win_info) <~tui_gen_win_info>: Define.
2244
2245 2019-10-09 Tom Tromey <tom@tromey.com>
2246
2247 * tui/tui-wingeneral.h (struct tui_gen_win_info): Don't declare.
2248
2249 2019-10-09 Tom Tromey <tom@tromey.com>
2250
2251 * tui/tui-data.c (tui_win_is_auxiliary): Remove.
2252 * tui/tui-data.h (tui_win_is_auxiliary): Don't declare.
2253
2254 2019-10-09 Tom Tromey <tom@tromey.com>
2255
2256 * tui/tui-disasm.c (tui_get_low_disassembly_address): Compute
2257 window height directly.
2258 * tui/tui-layout.h (tui_default_win_viewport_height): Don't
2259 declare.
2260 * tui/tui-layout.c (tui_default_win_height): Remove.
2261 (tui_default_win_viewport_height): Remove.
2262
2263 2019-10-09 Tom Tromey <tom@tromey.com>
2264
2265 * tui/tui.h: Remove comments.
2266
2267 2019-10-09 Tom de Vries <tdevries@suse.de>
2268
2269 * python/lib/gdb/printer/bound_registers.py: Use
2270 '^builtin_type_bound128' as regexp argument for
2271 add_builtin_pretty_printer.
2272
2273 2019-10-09 Christian Biesinger <cbiesinger@google.com>
2274
2275 * guile/guile.c (guile_extension_script_ops): Remove forward
2276 declaration and mark as static.
2277 (guile_script_ops): Likewise.
2278 (extension_language_guile): Move further down in the file so
2279 it can reference the definitions for guile_{extension_,}script_ops.
2280
2281 2019-10-09 Andreas Arnez <arnez@linux.ibm.com>
2282
2283 * s390-tdep.c (390_process_record): Handle new arch13 instructions
2284 except SORTL, DFLTCC, and KDSA.
2285
2286 2019-10-08 Tom Tromey <tromey@adacore.com>
2287
2288 * windows-nat.c (struct windows_thread_info_struct) <sf>: Remove.
2289 (struct safe_symbol_file_add_args): Remove.
2290
2291 2019-10-08 Tom Tromey <tromey@adacore.com>
2292
2293 * windows-nat.c: Don't include buildsym-legacy.h.
2294
2295 2019-10-08 Tom Tromey <tromey@adacore.com>
2296
2297 * contrib/ari/gdb_ari.sh (%p): Allow gdb-specific %p extensions.
2298
2299 2019-10-08 Christian Biesinger <cbiesinger@google.com>
2300
2301 * gdbtypes.c (overload_debug): Move comment to header.
2302 * gdbtypes.h (overload_debug): Declare.
2303 * valops.c: Remove declaration of overload_debug, instead
2304 include gdbtypes.h.
2305
2306 2019-10-08 Christian Biesinger <cbiesinger@google.com>
2307
2308 * language.c (show_language_command): Pass lang_frame_mismatch_warn
2309 through _().
2310 (lang_frame_mismatch_warn): Make const, mark with N_(), and
2311 move comment...
2312 * language.h (lang_frame_mismatch_warn): ... here. Also add
2313 declaration.
2314 * top.c (lang_frame_mismatch_warn): Remove declaration.
2315 (check_frame_language_change): Pass lang_frame_mismatch_warn
2316 through _().
2317
2318 2019-10-07 Christian Biesinger <cbiesinger@google.com>
2319
2320 * c-lang.h (vtbl_ptr_name): Declare.
2321 * cp-valprint.c (vtbl_ptr_name): Remove "extern" now that we get
2322 it from the header.
2323 * stabsread.c (define_symbol): Remove declaration of vtbl_ptr_name.
2324
2325 2019-10-07 Christian Biesinger <cbiesinger@google.com>
2326
2327 * charset.c (your_gdb_wchar_t_is_bogus): Replace with a
2328 gdb_static_assert.
2329
2330 2019-10-07 Weimin Pan <weimin.pan@oracle.com>
2331
2332 * ../Makefile.def (dependencies): Add all-libctf to all-gdb
2333 * ../Makefile.in: Add "all-gdb: maybe-all-libctf"
2334 * ctfread.c: New file.
2335 * ctfread.h: New file.
2336 * elfread.c: Include ctfread.h.
2337 (struct elfinfo text_p): New member ctfsect.
2338 (elf_locate_sections): Mark CTF section.
2339 (elf_symfile_read): Call elfctf_build_psymtabs.
2340 * Makefile.in (LIBCTF): Add.
2341 (CLIBS): Use it.
2342 (CDEPS): Likewise.
2343 (DIST): Add ctfread.c.
2344
2345 2019-10-07 Andrew Burgess <andrew.burgess@embecosm.com>
2346
2347 * ctfread.c (struct nextfield): Renamed to ...
2348 (struct ctf_nextfield): ... this.
2349 (struct field_info): Renamed to ...
2350 (strut ctf_field_info): ... this.
2351 (attach_fields_to_type): Update for renamed structures.
2352 (ctf_add_member_cb): Likewise.
2353 (ctf_add_enum_member_cb): Likewise.
2354 (process_struct_members): Likewise.
2355 (process_enum_type): Likewise.
2356
2357 2019-10-07 Weimin Pan <weimin.pan@oracle.com>
2358
2359 * tracectf.h: Rename, was ctf.h.
2360 * tracectf.c: Rename, was ctf.c, replace ctf.h with tracectf.h.
2361 * tracefile.c: Likewise.
2362 * tracepoint.c: Remove unused include ctf.h.
2363 * mi/mi-main.c: Likewise.
2364 * Makefile.in Replace ctf.c with tracectf.c.
2365
2366 2019-10-06 Joel Brobecker <brobecker@adacore.com>
2367
2368 * version.in: Change version number to "9.0.50.DATE-git".
2369
2370 2019-10-03 Tom Tromey <tom@tromey.com>
2371
2372 PR rust/24976:
2373 * dwarf2read.c (quirk_rust_enum): Handle single-element unions.
2374
2375 2019-10-03 Andrew Burgess <andrew.burgess@embecosm.com>
2376
2377 * f-lang.c (f_language_defn): Use cp_get_symbol_name_matcher and
2378 cp_search_name_hash.
2379 * NEWS: Add entry about nested function support.
2380
2381 2019-10-03 Bernhard Heckel <bernhard.heckel@intel.com>
2382 Andrew Burgess <andrew.burgess@embecosm.com>
2383
2384 * cp-namespace.c (cp_search_static_and_baseclasses): Only search
2385 for nested static variables when searchin VAR_DOMAIN.
2386 * dwarf2read.c (add_partial_symbol): Add nested subroutines to the
2387 global scope, update comment.
2388 (add_partial_subprogram): Call add_partial_subprogram recursively
2389 for nested subroutines when processinng Fortran.
2390 (load_partial_dies): Process the child entities of a subprogram
2391 when processing Fortran.
2392 (partial_die_parent_scope): Handle building scope
2393 for Fortran nested functions.
2394 (process_die): Record that nested functions have a scope.
2395 (new_symbol): Always record Fortran subprograms on the global
2396 symbol list.
2397 (determine_prefix): How to build the prefix for Fortran
2398 subprograms.
2399
2400 2019-10-03 Andrew Burgess <andrew.burgess@embecosm.com>
2401
2402 * linux-nat.c (linux_nat_filter_event): Don't ignore SIGSTOP if we
2403 have just sent the thread a SIGSTOP and are waiting for it to
2404 arrive.
2405
2406 2019-10-03 Andrew Burgess <andrew.burgess@embecosm.com>
2407
2408 * btrace.c (btrace_add_pc): Remove whitespace before the template
2409 parameter in 'std::vector <...>'.
2410 (parse_xml_btrace_block): Likewise.
2411 (btrace_maint_decode_pt): Likewise.
2412 (btrace_maint_update_packets): Likewise.
2413 (btrace_maint_print_packets): Likewise.
2414 * btrace.h (struct btrace_maint_info): Likewise.
2415 * dwarf2read.c (struct type_unit_group): Likewise.
2416 (build_type_psymtabs_reader): Likewise.
2417 * gdbsupport/btrace-common.c (btrace_data_append): Likewise.
2418 * gdbsupport/btrace-common.h (struct btrace_data_bts): Likewise.
2419 * nat/linux-btrace.c (perf_event_read_bts): Likewise.
2420
2421 2019-10-03 Tom de Vries <tdevries@suse.de>
2422
2423 * cli/cli-style.c (_initialize_cli_style): Adding a '.' at the end of
2424 the first line of the help text for set/show style metadata.
2425
2426 2019-10-02 Tom Tromey <tromey@adacore.com>
2427
2428 * Makefile.in (COMMON_SFILES): Add common-inferior.c.
2429 * gdbsupport/common-inferior.c: New file.
2430 * infcmd.c (startup_with_shell): Don't define.
2431 * nat/fork-inferior.h (startup_with_shell): Don't declare.
2432 * gdbsupport/common-inferior.h (startup_with_shell): Declare.
2433 * inferior.h (startup_with_shell): Don't declare.
2434
2435 2019-10-02 Christian Biesinger <cbiesinger@google.com>
2436
2437 * gdbsupport/gdb_assert.h: Include errors.h.
2438 * gdbsupport/gdb_string_view.h: Include gdb_assert.h.
2439
2440 2019-10-02 Tom Tromey <tromey@adacore.com>
2441
2442 * NEWS: Add $_ada_exception entry.
2443 * ada-lang.c (struct ada_catchpoint): Add constructor.
2444 <m_kind>: New member.
2445 (allocate_location_exception, re_set_exception): Remove
2446 "ex" parameter.
2447 (should_stop_exception): Compute $_ada_exception.
2448 (check_status_exception, print_it_exception)
2449 (print_one_exception, print_mention_exception): Remove
2450 "ex" parameter.
2451 (allocate_location_catch_exception, re_set_catch_exception)
2452 (check_status_exception, print_it_catch_exception)
2453 (print_one_catch_exception, print_mention_catch_exception)
2454 (print_recreate_catch_exception)
2455 (allocate_location_catch_exception_unhandled)
2456 (re_set_catch_exception_unhandled)
2457 (check_status_exception, print_it_catch_exception_unhandled)
2458 (print_one_catch_exception_unhandled)
2459 (print_mention_catch_exception_unhandled)
2460 (print_recreate_catch_exception_unhandled)
2461 (allocate_location_catch_assert, re_set_catch_assert)
2462 (check_status_assert, print_it_catch_assert)
2463 (print_one_catch_assert, print_mention_catch_assert)
2464 (print_recreate_catch_assert)
2465 (allocate_location_catch_handlers, re_set_catch_handlers)
2466 (check_status_handlers, print_it_catch_handlers)
2467 (print_one_catch_handlers, print_mention_catch_handlers)
2468 (print_recreate_catch_handlers): Remove.
2469 (create_ada_exception_catchpoint): Update.
2470 (initialize_ada_catchpoint_ops): Update.
2471
2472 2019-10-02 Tom Tromey <tromey@adacore.com>
2473
2474 * ada-lang.c (ada_lookup_simple_minsyms): Remove.
2475 (create_excep_cond_exprs): Simplify exception string computation.
2476 (ada_exception_catchpoint_cond_string): Likewise.
2477
2478 2019-10-02 Tom Tromey <tromey@adacore.com>
2479
2480 * symmisc.c (dump_msymbols): Don't use MSYMBOL_VALUE_ADDRESS.
2481 * ada-lang.c (lesseq_defined_than): Handle
2482 LOC_STATIC.
2483 * dwarf2read.c (dwarf2_per_objfile): Add can_copy
2484 parameter.
2485 (dwarf2_has_info): Likewise.
2486 (new_symbol): Set maybe_copied on symbol when
2487 appropriate.
2488 * dwarf2read.h (dwarf2_per_objfile): Add can_copy
2489 parameter.
2490 <can_copy>: New member.
2491 * elfread.c (record_minimal_symbol): Set maybe_copied
2492 on symbol when appropriate.
2493 (elf_symfile_read): Update call to dwarf2_has_info.
2494 * minsyms.c (lookup_minimal_symbol_linkage): New
2495 function.
2496 * minsyms.h (lookup_minimal_symbol_linkage): Declare.
2497 * symtab.c (get_symbol_address, get_msymbol_address):
2498 New functions.
2499 * symtab.h (get_symbol_address, get_msymbol_address):
2500 Declare.
2501 (SYMBOL_VALUE_ADDRESS, MSYMBOL_VALUE_ADDRESS): Handle
2502 maybe_copied.
2503 (struct symbol, struct minimal_symbol) <maybe_copied>:
2504 New member.
2505
2506 2019-10-02 Tom Tromey <tromey@adacore.com>
2507
2508 * source.c (struct current_source_location): New.
2509 (current_source_key): New global.
2510 (current_source_symtab, current_source_line)
2511 (current_source_pspace): Remove.
2512 (get_source_location): New function.
2513 (get_current_source_symtab_and_line)
2514 (set_default_source_symtab_and_line)
2515 (set_current_source_symtab_and_line)
2516 (clear_current_source_symtab_and_line, select_source_symtab)
2517 (info_source_command, print_source_lines_base)
2518 (info_line_command, search_command_helper, _initialize_source):
2519 Update.
2520
2521 2019-10-02 Tom Tromey <tromey@adacore.com>
2522
2523 * source.c (select_source_symtab): Don't call
2524 decode_line_with_current_source.
2525
2526 2019-10-02 Andrew Burgess <andrew.burgess@embecosm.com>
2527
2528 * symtab.c (lookup_global_symbol): Search global block.
2529
2530 2019-10-02 Tom Tromey <tromey@adacore.com>
2531
2532 * coffread.c (process_coff_symbol): Update.
2533 * dwarf2read.c (var_decode_location, new_symbol): Update.
2534 * mdebugread.c (parse_symbol): Update.
2535 * objfiles.c (relocate_one_symbol): Update.
2536 * stabsread.c (define_symbol, fix_common_block)
2537 (scan_file_globals): Update.
2538 * symtab.h (SYMBOL_VALUE_ADDRESS): Expand to an rvalue.
2539 (SET_SYMBOL_VALUE_ADDRESS): New macro.
2540 * xcoffread.c (process_xcoff_symbol): Update.
2541
2542 2019-10-02 Andreas Arnez <arnez@linux.ibm.com>
2543
2544 * MAINTAINERS: Update my email address.
2545
2546 2019-10-02 Andrew Burgess <andrew.burgess@embecosm.com>
2547
2548 * dwarf2read.c (struct type_unit_group) <tus>: Convert to
2549 std::vector.
2550 (build_type_psymtabs_reader): Update for std::vector.
2551 (build_type_psymtab_dependencies): Likewise.
2552 * dwarf2read.h: Remove use of DEF_VEC_P.
2553 (typedef sig_type_ptr): Delete.
2554
2555 2019-10-02 Andrew Burgess <andrew.burgess@embecosm.com>
2556
2557 * btrace.c (btrace_maint_clear): Update to handle change from VEC
2558 to std::vector.
2559 (btrace_maint_decode_pt): Likewise, and move allocation of the
2560 vector outside of the loop.
2561 (btrace_maint_update_packets): Update to handle change from VEC to
2562 std::vector.
2563 (btrace_maint_print_packets): Likewise.
2564 (maint_info_btrace_cmd): Likewise.
2565 * btrace.h: Remove use of DEF_VEC_O.
2566 (typedef btrace_pt_packet_s): Delete.
2567 (struct btrace_maint_info) <packets>: Change fromm VEC to
2568 std::vector.
2569 * gdbsupport/btrace-common.h: Remove 'vec.h' include.
2570
2571 2019-10-02 Andrew Burgess <andrew.burgess@embecosm.com>
2572
2573 * btrace.c (btrace_compute_ftrace_bts): Update for std::vector,
2574 make accesses into the vector constant references.
2575 (btrace_add_pc): Update for std::vector.
2576 (btrace_stitch_bts): Likewise.
2577 (parse_xml_btrace_block): Likewise.
2578 (btrace_maint_update_packets): Likewise.
2579 (btrace_maint_print_packets): Likewise.
2580 (maint_info_btrace_cmd): Likewise.
2581 * gdbsupport/btrace-common.c (btrace_data::fini): Update for
2582 std::vector.
2583 (btrace_data::empty): Likewise.
2584 (btrace_data_append): Likewise.
2585 * gdbsupport/btrace-common.h: Remove use of DEF_VEC_O.
2586 (typedef btrace_block_s): Delete.
2587 (struct btrace_block): Add constructor.
2588 (struct btrace_data_bts) <blocks>: Change to std::vector.
2589 * nat/linux-btrace.c (perf_event_read_bts): Update for
2590 std::vector.
2591 (linux_read_bts): Likewise.
2592
2593 2019-10-01 Tom Tromey <tom@tromey.com>
2594
2595 * cli/cli-logging.c (show_logging_filename): Use styled_string.
2596
2597 2019-10-01 Tom Tromey <tom@tromey.com>
2598
2599 * stack.c (print_frame, info_frame_command_core): Use
2600 styled_string.
2601 * linux-thread-db.c (try_thread_db_load_1)
2602 (try_thread_db_load_from_pdir_1): Use styled_string.
2603 * auto-load.c (file_is_auto_load_safe, execute_script_contents)
2604 (auto_load_section_scripts, info_auto_load_local_gdbinit)
2605 (maybe_print_unsupported_script_warning)
2606 (maybe_print_script_not_found_warning): Use styled_string.
2607 * ada-lang.c (user_select_syms): Use styled_string.
2608
2609 2019-10-01 Tom Tromey <tom@tromey.com>
2610
2611 * p-lang.c (pascal_printstr): Use metadata style.
2612 * value.c (show_convenience): Use metadata style.
2613 * valprint.c (valprint_check_validity, val_print_optimized_out)
2614 (val_print_not_saved, val_print_unavailable)
2615 (val_print_invalid_address, generic_val_print, val_print)
2616 (value_check_printable, val_print_array_elements): Use metadata
2617 style.
2618 * ui-out.h (class ui_out) <field_fmt>: New overload.
2619 <do_field_fmt>: Add style parameter.
2620 * ui-out.c (ui_out::field_fmt): New overload.
2621 * typeprint.c (type_print_unknown_return_type)
2622 (val_print_not_allocated, val_print_not_associated): Use metadata
2623 style.
2624 * tui/tui-out.h (class tui_ui_out) <do_field_fmt>: Add style
2625 parameter.
2626 * tui/tui-out.c (tui_ui_out::do_field_fmt): Update.
2627 * tracepoint.c (tvariables_info_1): Use metadata style.
2628 * stack.c (print_frame_arg, print_frame_info, print_frame)
2629 (info_frame_command_core): Use metadata style.
2630 * skip.c (info_skip_command): Use metadata style.
2631 * rust-lang.c (rust_print_enum): Use metadata style.
2632 * python/py-prettyprint.c (print_stack_unless_memory_error): Use
2633 metadata style.
2634 * python/py-framefilter.c (py_print_single_arg): Use metadata
2635 style.
2636 * printcmd.c (do_one_display, print_variable_and_value): Use
2637 metadata style.
2638 * p-valprint.c (pascal_val_print)
2639 (pascal_object_print_value_fields): Use metadata style.
2640 * p-typeprint.c (pascal_type_print_base): Use metadata style.
2641 * mi/mi-out.h (class mi_ui_out) <do_field_fmt>: Add style
2642 parameter.
2643 * mi/mi-out.c (mi_ui_out::do_field_fmt): Update.
2644 * m2-valprint.c (m2_print_long_set): Use metadata style.
2645 * m2-typeprint.c (m2_print_type): Use metadata style.
2646 * infcmd.c (print_return_value_1): Use metadata style.
2647 * gnu-v3-abi.c (print_one_vtable): Use metadata style.
2648 * f-valprint.c (info_common_command_for_block): Use metadata
2649 style.
2650 * f-typeprint.c (f_type_print_base): Use metadata style.
2651 * expprint.c (print_subexp_standard): Use metadata style.
2652 * cp-valprint.c (cp_print_value_fields): Use metadata style.
2653 * cli/cli-style.h (class cli_style_option): Add constructor.
2654 (metadata_style): Declare.
2655 * cli/cli-style.c (metadata_style): New global.
2656 (_initialize_cli_style): Register metadata style.
2657 * cli-out.h (class cli_ui_out) <do_field_fmt>: Add style
2658 parameter.
2659 * cli-out.c (cli_ui_out::do_field_fmt): Update.
2660 * c-typeprint.c (c_type_print_base_struct_union)
2661 (c_type_print_base_1): Use metadata style.
2662 * breakpoint.c (watchpoint_value_print)
2663 (print_one_breakpoint_location): Use metadata style.
2664 * break-catch-syscall.c (print_one_catch_syscall): Use metadata
2665 style.
2666 * break-catch-sig.c (signal_catchpoint_print_one): Use metadata
2667 style.
2668 * ada-valprint.c (val_print_packed_array_elements, printstr)
2669 (print_field_values, ada_val_print_ref, ada_val_print): Use
2670 metadata style.
2671 * ada-typeprint.c (print_array_type, ada_print_type): Use metadata
2672 style.
2673 * ada-tasks.c (print_ada_task_info, info_task): Use metadata
2674 style.
2675 * ada-lang.c (user_select_syms): Use metadata style.
2676
2677 2019-10-01 Tom Tromey <tom@tromey.com>
2678
2679 * cli/cli-cmds.c (pwd_command): Style output.
2680
2681 2019-10-01 Pedro Alves <palves@redhat.com>
2682 Tom Tromey <tom@tromey.com>
2683
2684 * symtab.c (print_symbol_info): Use %ps.
2685 (print_msymbol_info): Use %ps.
2686 * symfile.c (symbol_file_add_with_addrs): Use %ps.
2687 * printcmd.c (print_variable_and_value): Use %ps.
2688 * macrocmd.c (show_pp_source_pos): Use %ps.
2689 * infrun.c (print_exited_reason): Use ui_out::message.
2690 * breakpoint.c (watchpoint_check, print_one_breakpoint_location)
2691 (describe_other_breakpoints): Use ui_out::message and new
2692 formats.
2693 (say_where): Use new formats.
2694 (bkpt_print_it, tracepoint_print_one_detail): Use ui_out::message
2695 and new formats.
2696
2697 2019-10-01 Pedro Alves <palves@redhat.com>
2698 Tom Tromey <tom@tromey.com>
2699
2700 * unittests/format_pieces-selftests.c: Add gdb_format parameter.
2701 (test_gdb_formats): New function.
2702 (run_tests): Call it.
2703 (test_format_specifier): Update.
2704 * utils.h (fputs_filtered): Update comment.
2705 (vfprintf_styled, vfprintf_styled_no_gdbfmt)
2706 (fputs_styled_unfiltered): Declare.
2707 * utils.c (fputs_styled_unfiltered): New function.
2708 (vfprintf_maybe_filtered): Add gdbfmt parameter.
2709 (vfprintf_filtered): Update.
2710 (vfprintf_unfiltered, vprintf_filtered): Update.
2711 (vfprintf_styled, vfprintf_styled_no_gdbfmt): New functions.
2712 * ui-out.h (enum ui_out_flag) <unfiltered_output,
2713 disallow_ui_out_field>: New constants.
2714 (enum class field_kind): New.
2715 (struct base_field_s, struct signed_field_s): New.
2716 (signed_field): New function.
2717 (struct string_field_s): New.
2718 (string_field): New function.
2719 (struct styled_string_s): New.
2720 (styled_string): New function.
2721 (class ui_out) <message>: Add comment.
2722 <vmessage, call_do_message>: New methods.
2723 <do_message>: Add style parameter.
2724 * ui-out.c (ui_out::call_do_message, ui_out::vmessage): New
2725 methods.
2726 (ui_out::message): Rewrite.
2727 * mi/mi-out.h (class mi_ui_out) <do_message>: Add style
2728 parameter.
2729 * mi/mi-out.c (mi_ui_out::do_message): Add style parameter.
2730 * gdbsupport/format.h (class format_pieces) <format_pieces>: Add
2731 gdb_extensions parameter.
2732 (class format_piece): Add parameter to constructor.
2733 (n_int_args): New field.
2734 * gdbsupport/format.c (format_pieces::format_pieces): Add
2735 gdb_extensions parameter. Handle '*'.
2736 * cli-out.h (class cli_ui_out) <do_message>: Add style parameter.
2737 * cli-out.c (cli_ui_out::do_message): Add style parameter. Call
2738 vfprintf_styled_no_gdbfmt.
2739 (cli_ui_out::do_field_string, cli_ui_out::do_spaces)
2740 (cli_ui_out::do_text, cli_ui_out::field_separator): Allow
2741 unfiltered output.
2742 * ui-style.h (struct ui_file_style) <ptr>: New method.
2743
2744 2019-10-01 Tom Tromey <tom@tromey.com>
2745
2746 * unittests/format_pieces-selftests.c: Update. Add final format.
2747 * gdbsupport/format.c (format_pieces::format_pieces): Don't add
2748 empty literal pieces.
2749
2750 2019-10-01 Tom Tromey <tom@tromey.com>
2751
2752 * ui-out.h (enum class ui_out_style_kind): Remove.
2753 (class ui_out) <field_string, field_stsream, do_field_string>:
2754 Change type of "style".
2755 * ui-out.c (ui_out::field_core_addr, ui_out::field_stream)
2756 (ui_out::field_string): Update.
2757 * tui/tui-out.h (class tui_ui_out) <do_field_string>: Change type
2758 of "style".
2759 * tui/tui-out.c (tui_ui_out::do_field_string): Update.
2760 * tracepoint.c (print_one_static_tracepoint_marker): Update.
2761 * stack.c (print_frame_arg, print_frame_info, print_frame):
2762 Update.
2763 * source.c (print_source_lines_base): Update.
2764 * solib.c (info_sharedlibrary_command): Update.
2765 * skip.c (info_skip_command): Update.
2766 * record-btrace.c (btrace_call_history_src_line)
2767 (btrace_call_history): Update.
2768 * python/py-framefilter.c (py_print_frame): Update.
2769 * mi/mi-out.h (class mi_ui_out) <do_field_string>: Change type of
2770 "style".
2771 * mi/mi-out.c (mi_ui_out::do_table_header)
2772 (mi_ui_out::do_field_signed, mi_ui_out::do_field_unsigned)
2773 (mi_ui_out::do_field_string): Update.
2774 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn):
2775 Update.
2776 * cli-out.h (class cli_ui_out) <do_field_string>: Change type of
2777 "style".
2778 * cli-out.c (cli_ui_out::do_table_header)
2779 (cli_ui_out::do_field_signed, cli_ui_out::do_field_unsigned)
2780 (cli_ui_out::do_field_skip, cli_ui_out::do_field_string)
2781 (cli_ui_out::do_field_fmt): Update.
2782 * breakpoint.c (print_breakpoint_location): Update.
2783 (update_static_tracepoint): Update.
2784
2785 2019-10-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
2786
2787 * main.c (relocate_gdbinit_path_maybe_in_datadir): Remove std::string
2788 conversion of gdb_datadir.
2789 (captured_main_1): Remove xstrdup when assigning to gdb_datadir,
2790 remove not needed c_str ().
2791
2792 2019-09-30 Ali Tamur <tamur@google.com>
2793
2794 * dwarf2read.c (skip_one_die): Handle DW_FORM_strx forms.
2795 (dwarf2_string_attr): Likewise.
2796
2797 2019-09-30 Ali Tamur <tamur@google.com>
2798
2799 * dwarf2read.c (process_full_comp_unit): Remove whitespace at the EOL.
2800 (process_full_type_unit): Likewise.
2801 (dump_die_shallow): Likewise.
2802 (cu_debug_loc_section): Likewise.
2803
2804 2019-09-28 Christian Biesinger <cbiesinger@google.com>
2805
2806 * minsyms.c (compare_minimal_symbols): Rename to...
2807 (minimal_symbol_is_less_than): ...this, and adjust to STL
2808 conventions (return bool, take arguments as references)
2809 (minimal_symbol_reader::install): Call std::sort instead
2810 of qsort.
2811
2812 2019-09-29 Christian Biesinger <cbiesinger@google.com>
2813
2814 * minsyms.h (msymbol_hash): Document that this is a case-insensitive
2815 hash and why.
2816 * objfiles.h (struct objfile_per_bfd_storage) <demangled_names_hash,
2817 msymbol_hash, msymbol_demangled_hash>: Improve comments.
2818
2819 2019-09-30 Simon Marchi <simon.marchi@polymtl.ca>
2820
2821 * psymtab.c (add_psymbol_to_list): Move comment to psympriv.h.
2822 * psympriv.h (add_psymbol_to_list): Move comment here and update
2823 it.
2824
2825 2019-09-29 Tom de Vries <tdevries@suse.de>
2826
2827 * contrib/cc-with-tweaks.sh (get_tmpdir): New function.
2828 Use $tmpdir/$(basename "$output_file").dwz instead of
2829 "${output_file}.dwz".
2830
2831 2019-09-28 Simon Marchi <simon.marchi@polymtl.ca>
2832
2833 PR gdb/25045
2834 * hppa-linux-nat.c: Include gdbarch.h.
2835
2836 2019-09-26 Christian Biesinger <cbiesinger@google.com>
2837
2838 * blockframe.c (find_pc_partial_function): Change return type to bool.
2839 * elfread.c (elf_gnu_ifunc_resolve_name): Likewise.
2840 * minsyms.c (in_gnu_ifunc_stub): Likewise.
2841 (stub_gnu_ifunc_resolve_name): Likewise.
2842 * symtab.c (compare_filenames_for_search): Likewise.
2843 (compare_glob_filenames_for_search): Likewise.
2844 (matching_obj_sections): Likewise.
2845 (symbol_matches_domain): Likewise.
2846 (find_line_symtab): Change out param EXACT_MATCH to bool *.
2847 (find_line_pc): Change return type to bool.
2848 (find_line_pc_range): Likewise.
2849 (producer_is_realview): Likewise.
2850 * symtab.h (symbol_matches_domain): Likewise.
2851 (find_pc_partial_function): Likewise.
2852 (find_pc_line_pc_range): Likewise.
2853 (in_gnu_ifunc_stub): Likewise.
2854 (struct gnu_ifunc_fns) <gnu_ifunc_resolve_name>: Likewise.
2855 (find_line_pc): Likewise.
2856 (find_line_pc_range): Likewise.
2857 (matching_obj_sections): Likewise.
2858 (find_line_symtab): Change out parameter to bool.
2859 (producer_is_realview): Change return type to bool.
2860 (compare_filenames_for_search): Likewise.
2861 (compare_glob_filenames_for_search): Likewise.
2862
2863 2019-09-26 Tom Tromey <tom@tromey.com>
2864
2865 * Makefile.in (COMMON_SFILES): Remove gdb_usleep.c.
2866 (HFILES_NO_SRCDIR): Remove gdb_usleep.h.
2867 * gdb_usleep.h: Remove.
2868 * gdb_usleep.c: Remove.
2869 * utils.c: Don't include gdb_usleep.h.
2870
2871 2019-09-26 Tom Tromey <tromey@adacore.com>
2872
2873 * python/py-type.c (type_to_type_object): Call check_typedef
2874 for stub types.
2875
2876 2019-09-26 Tom Tromey <tom@tromey.com>
2877
2878 * utils.h (initialize_utils): Don't declare.
2879 * top.c (gdb_init): Don't call initialize_utils.
2880 * utils.c (initialize_utils): Remove. Move contents...
2881 (_initialize_utils): ... here.
2882
2883 2019-09-25 Tom Tromey <tom@tromey.com>
2884
2885 * python/py-objfile.c (objfpy_get_build_id): Use bin2hex.
2886 * utils.h (make_hex_string): Don't declare.
2887 * utils.c (make_hex_string): Remove.
2888
2889 2019-09-24 Tom de Vries <tdevries@suse.de>
2890
2891 PR gdb/23815
2892 * amd64-linux-nat.c (amd64_linux_nat_target::fetch_registers):
2893 Initialize xstateregs before ptrace PTRACE_GETREGSET call.
2894
2895 2019-09-23 Dimitar Dimitrov <dimitar@dinux.eu>
2896
2897 * NEWS: Mention new simulator port for PRU.
2898
2899 2019-09-23 Christian Biesinger <cbiesinger@google.com>
2900
2901 * ada-exp.y (write_object_remaining): Update.
2902 * ada-lang.c (ada_decode): Return a std::string instead of a char*
2903 and eliminate the static buffer.
2904 (ada_decode_symbol): Update.
2905 (ada_la_decode): Update.
2906 (ada_sniff_from_mangled_name): Update.
2907 (is_valid_name_for_wild_match): Update.
2908 (ada_lookup_name_info::matches): Update and simplify.
2909 (name_matches_regex): Update.
2910 (ada_add_global_exceptions): Update.
2911 * ada-lang.h (ada_decode): Update signature.
2912 * ada-varobj.c (ada_varobj_describe_simple_array_child): Update.
2913 * dwarf-index-write.c (debug_names::insert): Update.
2914
2915 2019-09-21 Simon Marchi <simon.marchi@polymtl.ca>
2916
2917 * solib-svr4.c (svr4_iterate_over_objfiles_in_search_order): Fix
2918 formatting.
2919
2920 2019-09-21 Simon Marchi <simon.marchi@polymtl.ca>
2921
2922 * breakpoint.h (bp_location) <inserted, permanent, duplicate>:
2923 Change "nonzero" to "true" in documentation.
2924
2925 2019-09-20 Christian Biesinger <cbiesinger@google.com>
2926
2927 * solib-darwin.c (darwin_lookup_lib_symbol): Remove.
2928 (_initialize_darwin_solib): Don't set
2929 darwin_so_ops.lookup_lib_global_symbol.
2930 * solib-svr4.c (set_solib_svr4_fetch_link_map_offsets): Call
2931 set_gdbarch_iterate_over_objfiles_in_search_order.
2932 (elf_lookup_lib_symbol): Rename to...
2933 (svr4_iterate_over_objfiles_in_search_order): this, and update
2934 to iterate semantics.
2935 (_initialize_svr4_solib): Don't set lookup_lib_global_symbol.
2936 * solib.c (solib_global_lookup): Remove.
2937 * solist.h (struct target_so_ops): Remove lookup_lib_global_symbol.
2938 (solib_global_lookup): Remove.
2939 * symtab.c (lookup_global_or_static_symbol): Remove call to
2940 solib_global_lookup.
2941
2942 2019-09-20 Joel Brobecker <brobecker@adacore.com>
2943
2944 * NEWS: Move entries about default MI version now being
2945 version 3, and about the GDB/MI fix for multi-location
2946 breakpoints to the "since GDB 8.3" section.
2947
2948 2019-09-20 Joel Brobecker <brobecker@adacore.com>
2949
2950 GDB 8.3.1 released.
2951
2952 2019-09-20 Ulrich Weigand <uweigand@de.ibm.com>
2953
2954 * NEWS: Mention that Cell/B.E. debugging support was removed.
2955 * MAINTAINERS: Remove spu target.
2956
2957 * config/djgpp/fnchange.lst: Remove entries for removed files.
2958
2959 * Makefile.in (ALL_TARGET_OBS): Remove solib-spu.o,
2960 spu-multiarch.o, and spu-tdep.o.
2961 (HFILES_NO_SRCDIR): Remove solib-spu.h and spu-tdep.h.
2962 (ALLDEPFILES): Remove solib-spu.c, spu-linux-nat.c,
2963 spu-multiarch.c, and spu-tdep.c.
2964 * spu-linux-nat.c: Remove file.
2965 * spu-multiarch.c: Remove file.
2966 * spu-tdep.c: Remove file.
2967 * spu-tdep.h: Remove file.
2968 * solib-spu.c: Remove file.
2969 * solib-spu.h: Remove file.
2970
2971 * configure.host (powerpc64*-*-linux*): Remove Cell/B.E. support.
2972 * configure.nat (spu-linux): Remove.
2973 * configure.tgt (powerpc*-*-linux*): Remove solib-spu.o and
2974 solib-multiarch.o from gdb_target_obs.
2975 (spu*-*-*): Remove.
2976
2977 * arch/ppc-linux-common.h (struct ppc_linux_features): Remove "cell"
2978 feature flag.
2979 (ppc_linux_no_features): Update.
2980 * arch/ppc-linux-common.c (ppc_linux_match_description): Remove
2981 Cell/B.E. support.
2982 * arch/ppc-linux-tdesc.h (tdesc_powerpc_cell32l): Remove declaration.
2983 (tdesc_powerpc_cell64l): Likewise.
2984 * nat/ppc-linux.h (PPC_FEATURE_CELL): Remove.
2985 * ppc-linux-nat.c (ppc_linux_nat_target::read_description): Remove
2986 Cell/B.E. support.
2987 * ppc-linux-tdep.h: Do not include "solib-spu.h" or "spu-tdep.h".
2988 Do not include "features/rs6000/powerpc-cell32l.c" or
2989 "features/rs6000/powerpc-cell64l.c".
2990 (ppc_linux_spu_section): Remove.
2991 (ppc_linux_core_read_description): Remove Cell/B.E. support.
2992 (spe_context_objfile, spe_context_lm_addr, spe_context_offset,
2993 spe_context_cache_ptid, spe_context_cache_ptid): Remove.
2994 (ppc_linux_spe_context_lookup): Remove.
2995 (ppc_linux_spe_context_inferior_created): Remove.
2996 (ppc_linux_spe_context_solib_loaded): Remove.
2997 (ppc_linux_spe_context_solib_unloaded): Remove.
2998 (ppc_linux_spe_context): Remove.
2999 (struct ppu2spu_cache): Remove.
3000 (ppu2spu_prev_arch, ppu2spu_this_id, ppu2spu_prev_register): Remove.
3001 (struct ppu2spu_data): Remove.
3002 (ppu2spu_unwind_register, ppu2spu_sniffer, ppu2spu_dealloc_cache,
3003 ppu2spu_unwind): Remove.
3004 (ppc_linux_init_abi): Remove Cell/B.E. support.
3005 * rs6000-tdep.h (rs6000_gdbarch_init): Remove Cell/B.E. support.
3006
3007 * features/Makefile (rs6000/powerpc-cell32l-expedite): Remove.
3008 (rs6000/powerpc-cell64l-expedite): Likewise
3009 (WHICH): Remove rs6000/powerpc-cell32l and rs6000/powerpc-cell64l.
3010 (XMLTOC): Remove rs6000/powerpc-cell32l.xml and
3011 rs6000/powerpc-cell64l.xml.
3012 * features/rs6000/powerpc-cell32l.xml: Remove.
3013 * features/rs6000/powerpc-cell64l.xml: Likewise.
3014 * features/rs6000/powerpc-cell32l.c: Remove generated file.
3015 * features/rs6000/powerpc-cell64l.c: Likewise.
3016 * regformats/rs6000/powerpc-cell32l.dat: Remove generated file.
3017 * regformats/rs6000/powerpc-cell64l.dat: Likewise.
3018 * regformats/reg-spu.dat: Remove.
3019
3020 * target.h (enum target_object): Remove TARGET_OBJECT_SPU.
3021 * corelow.c (struct spuid_list): Remove.
3022 (add_to_spuid_list): Remove.
3023 (core_target::xfer_partial): Remove support for TARGET_OBJECT_SPU.
3024 * remote.c (PACKET_qXfer_spu_read, PACKET_qXfer_spu_write): Remove.
3025 (remote_protocol_features): Remove associated entries.
3026 (_initialize_remote): No longer initialize them.
3027 (remote_target::xfer_partial): Remove support for TARGET_OBJECT_SPU.
3028 * linux-nat.c (SPUFS_MAGIC): Remove.
3029 (linux_proc_xfer_spu): Remove.
3030 (spu_enumerate_spu_ids): Remove.
3031 (linux_nat_target::xfer_partial): Remove support for TARGET_OBJECT_SPU.
3032 * linux-tdep.c (-linux_spu_make_corefile_notes): Remove.
3033 (linux_make_corefile_notes): No longer call it.
3034
3035 * regcache.c (cooked_read_test): Remove bfd_arch_spu special case.
3036 (cooked_write_test): Likewise.
3037
3038 2019-09-20 Tom Tromey <tom@tromey.com>
3039
3040 * NEWS: Mention case-sensitivity of TUI commands.
3041 * tui/tui-win.c (tui_set_focus_command): Now case-sensitive.
3042 (tui_set_win_height_command, parse_scrolling_args): Likewise.
3043 * tui/tui-layout.c (tui_layout_command): Now case-sensitive.
3044
3045 2019-09-20 Tom Tromey <tom@tromey.com>
3046
3047 * tui/tui-source.c (tui_source_window::set_contents): Use
3048 make_unique_xstrdup.
3049 * tui/tui-disasm.c (tui_disasm_window::set_contents): Use
3050 make_unique_xstrdup.
3051
3052 2019-09-20 Tom Tromey <tom@tromey.com>
3053
3054 * tui/tui-data.c: Remove separator comments.
3055 * tui/tui-layout.c: Remove separator comments.
3056 * tui/tui-win.c: Remove separator comments.
3057 * tui/tui-wingeneral.c: Remove separator comments.
3058
3059 2019-09-20 Tom Tromey <tom@tromey.com>
3060
3061 * tui/tui.h (strcat_to_buf): Don't declare.
3062 * tui/tui.c (strcat_to_buf): Remove.
3063
3064 2019-09-20 Tom Tromey <tom@tromey.com>
3065
3066 * tui/tui-source.h (struct tui_source_window) <m_fullname>: Rename
3067 from "fullname".
3068 * tui/tui-source.c (tui_source_window::set_contents)
3069 (tui_source_window::location_matches_p)
3070 (tui_source_window::maybe_update): Update.
3071
3072 2019-09-20 Tom Tromey <tom@tromey.com>
3073
3074 * tui/tui-regs.h (struct tui_data_window) <get_current_group>:
3075 Update.
3076 <m_regs_content, m_regs_column_count, m_current_group>: Add "m_"
3077 prefix.
3078 * tui/tui-regs.c (tui_data_window::last_regs_line_no)
3079 (tui_data_window::line_from_reg_element_no)
3080 (tui_data_window::first_reg_element_no_inline)
3081 (tui_data_window::show_registers)
3082 (tui_data_window::show_register_group)
3083 (tui_data_window::display_registers_from)
3084 (tui_data_window::display_registers_from_line)
3085 (tui_data_window::first_data_item_displayed)
3086 (tui_data_window::delete_data_content_windows)
3087 (tui_data_window::erase_data_content)
3088 (tui_data_window::do_scroll_vertical)
3089 (tui_data_window::refresh_window)
3090 (tui_data_window::check_register_values): Update.
3091
3092 2019-09-20 Tom Tromey <tom@tromey.com>
3093
3094 * tui/tui-stack.h (MAX_LOCATOR_ELEMENT_LEN): Remove define.
3095 (struct tui_locator_window) <full_name, proc_name>: Now
3096 std::string.
3097 * tui/tui-stack.c (tui_locator_window::make_status_line)
3098 (tui_locator_window::set_locator_fullname)
3099 (tui_locator_window::set_locator_info): Update.
3100 * tui/tui-source.c (tui_source_window::set_contents)
3101 (tui_source_window::showing_source_p): Update.
3102
3103 2019-09-20 Tom Tromey <tom@tromey.com>
3104
3105 * tui/tui-stack.c (tui_locator_window::set_locator_fullname):
3106 Don't call tui_locator_win_info_ptr.
3107
3108 2019-09-20 Tom Tromey <tom@tromey.com>
3109
3110 * tui/tui-win.c (tui_resize_all): Don't call refresh.
3111
3112 2019-09-20 Tom Tromey <tom@tromey.com>
3113
3114 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Use 1 as
3115 height for locator.
3116 * tui/tui-stack.c (tui_locator_window::rerender): Call scrollok.
3117 * tui/tui-layout.c (show_source_disasm_command, show_data)
3118 (show_source_or_disasm_and_command): Use 1 as height for locator.
3119
3120 2019-09-20 Tom Tromey <tom@tromey.com>
3121
3122 * tui/tui.c (tui_enable): Update.
3123 * tui/tui-win.c (tui_sigwinch_handler, tui_async_resize_screen):
3124 Update.
3125 * tui/tui-data.h (tui_win_resized, tui_set_win_resized_to):
3126 Update.
3127 * tui/tui-data.c (win_resized): Now bool.
3128 (tui_win_resized): Return bool.
3129 (tui_set_win_resized_to): Accept a bool.
3130
3131 2019-09-20 Tom Tromey <tom@tromey.com>
3132
3133 * tui/tui-regs.h (struct tui_data_window) <show_register_group>:
3134 Change type of "refresh_values_only".
3135 * tui/tui-regs.c (tui_data_window::show_register_group): Change
3136 type of "refresh_values_only".
3137
3138 2019-09-20 Tom Tromey <tom@tromey.com>
3139
3140 * tui/tui-disasm.c (struct tui_asm_line) <addr_string, insn>: Now
3141 std::string.
3142 (tui_disassemble): Add "pos" parameter.
3143 (tui_disasm_window::set_contents): Simplify.
3144
3145 2019-09-20 Tom Tromey <tom@tromey.com>
3146
3147 * tui/tui-winsource.h (struct tui_source_window_base)
3148 <show_source_content>: Now private.
3149 * tui/tui-winsource.c
3150 (tui_source_window_base::show_source_content): Don't handle empty
3151 content case.
3152
3153 2019-09-20 Tom Tromey <tom@tromey.com>
3154
3155 * tui/tui-layout.c (show_source_disasm_command)
3156 (show_source_or_disasm_and_command): Don't call
3157 show_source_content.
3158
3159 2019-09-20 Tom Tromey <tom@tromey.com>
3160
3161 * tui/tui-stack.h (struct tui_locator_window) <make_status_line>:
3162 Declare.
3163 * tui/tui-stack.c (tui_locator_window::make_status_line): Rename
3164 from tui_make_status_line.
3165 (tui_locator_window::rerender): Update.
3166
3167 2019-09-20 Tom Tromey <tom@tromey.com>
3168
3169 * tui/tui-stack.c (tui_make_status_line): Return std::string.
3170 (tui_locator_window::rerender): Update.
3171
3172 2019-09-20 Tom Tromey <tom@tromey.com>
3173
3174 * tui/tui-winsource.h (struct tui_source_window_base)
3175 <~tui_source_window_base>: Don't declare.
3176 <fullname>: Remove.
3177 * tui/tui-winsource.c (~tui_source_window_base): Remove.
3178 * tui/tui-source.h (struct tui_source_window) <fullname>: New
3179 member.
3180 * tui/tui-source.c (tui_source_window::set_contents): Update.
3181 (tui_source_window::location_matches_p)
3182 (tui_source_window::maybe_update): Update.
3183
3184 2019-09-20 Tom Tromey <tom@tromey.com>
3185
3186 * tui/tui-winsource.h (~tui_source_element): Remove.
3187 (tui_source_element): Update.
3188 (struct tui_source_element) <line>: Now a unique_xmalloc_ptr.
3189 * tui/tui-winsource.c (tui_show_source_line): Update.
3190 * tui/tui-source.c (tui_source_window::set_contents): Update.
3191 * tui/tui-disasm.c (tui_disasm_window::set_contents): Update.
3192
3193 2019-09-20 Tom Tromey <tom@tromey.com>
3194
3195 * tui/tui-data.h (tui_clear_source_windows_detail): Don't
3196 declare.
3197 * tui/tui-layout.c (tui_add_win_to_layout): Don't call
3198 tui_clear_source_windows_detail.
3199 * tui/tui-winsource.h (struct tui_source_window_base)
3200 <clear_detail>: Don't declare.
3201 * tui/tui-winsource.c (tui_source_window_base::clear_detail):
3202 Remove.
3203 * tui/tui-data.c (tui_clear_source_windows_detail): Remove.
3204
3205 2019-09-20 Tom Tromey <tromey@adacore.com>
3206
3207 PR ada/24919:
3208 * block.c (contained_in): Fix final return value.
3209
3210 2019-09-20 Alan Modra <amodra@gmail.com>
3211
3212 * gdb_bfd.c (gdb_bfd_ref, gdb_bfd_unref): Use bfd_set_usrdata.
3213 * dwarf2read.c (dwarf2_read_gdb_index, dwarf2_read_debug_names),
3214 (read_indirect_string_from_dwz): Use bfd accessor.
3215 * dwarf2read.h (struct dwz_file <filename>): Likewise.
3216 * machoread.c (macho_symfile_read_all_oso): Likewise.
3217 * solib.c (solib_bfd_open): Likewise.
3218
3219 2019-09-19 Christian Biesinger <cbiesinger@google.com>
3220
3221 * eval.c: Move declaration of overload_resolution to...
3222 * value.h: ...here.
3223
3224 2019-09-19 Christian Biesinger <cbiesinger@google.com>
3225
3226 * arm-linux-nat.c: Remove extern declaration for arm_apcs_32.
3227 * arm-linux-tdep.c: Likewise.
3228 * arm-nbsd-nat.c: Likewise.
3229 * arm-tdep.h: Declare arm_apcs_32.
3230 * arm-tdep.c: Move documentation for arm_apcs_32 to arm-tdep.h.
3231
3232 2019-09-19 Christian Biesinger <cbiesinger@google.com>
3233
3234 * dwarf2loc.c: Remove extern declaration of dwarf_always_disassemble.
3235 * dwarf2read.h: Declare dwarf_always_disassemble.
3236
3237 2019-09-19 Tom de Vries <tdevries@suse.de>
3238
3239 PR gdb/25009
3240 * source-cache.c (source_cache::ensure): Catch exception thrown during
3241 construction of the highlighter.
3242
3243 2019-09-18 Alan Modra <amodra@gmail.com>
3244
3245 * aarch64-linux-tdep.c, * arm-tdep.c, * auto-load.c,
3246 * coff-pe-read.c, * coffread.c, * corelow.c, * dbxread.c,
3247 * dicos-tdep.c, * dwarf2-frame.c, * dwarf2read.c, * elfread.c,
3248 * exec.c, * fbsd-tdep.c, * gcore.c, * gdb_bfd.c, * gdb_bfd.h,
3249 * hppa-tdep.c, * i386-cygwin-tdep.c, * i386-fbsd-tdep.c,
3250 * i386-linux-tdep.c, * jit.c, * linux-tdep.c, * machoread.c,
3251 * maint.c, * mdebugread.c, * minidebug.c, * mips-linux-tdep.c,
3252 * mips-sde-tdep.c, * mips-tdep.c, * mipsread.c, * nto-tdep.c,
3253 * objfiles.c, * objfiles.h, * osabi.c, * ppc-linux-tdep.c,
3254 * ppc64-tdep.c, * record-btrace.c, * record-full.c, * remote.c,
3255 * rs6000-aix-tdep.c, * rs6000-tdep.c, * s390-linux-tdep.c,
3256 * s390-tdep.c, * solib-aix.c, * solib-dsbt.c, * solib-frv.c,
3257 * solib-spu.c, * solib-svr4.c, * solib-target.c,
3258 * spu-linux-nat.c, * spu-tdep.c, * symfile-mem.c, * symfile.c,
3259 * symmisc.c, * symtab.c, * target.c, * windows-nat.c,
3260 * xcoffread.c, * cli/cli-dump.c, * compile/compile-object-load.c,
3261 * mi/mi-interp.c: Update throughout for bfd section macro and
3262 function changes.
3263 * gcore (gcore_create_callback): Use bfd_set_section_lma.
3264 * spu-tdep.c (spu_overlay_new_objfile): Likewise.
3265
3266 2019-09-18 Tom Tromey <tom@tromey.com>
3267
3268 * NEWS: Add entry.
3269 * tui/tui.c (tui_initialize_readline): Set name of keymap. Do not
3270 call rl_initialize.
3271 (tui_enable): Do not call rl_initialize.
3272
3273 2019-09-18 Christian Groessler <chris@groessler.org>
3274
3275 * alpha-linux-nat.c: Include gdbarch.h.
3276
3277 2019-09-18 Simon Marchi <simon.marchi@polymtl.ca>
3278
3279 * ui-file.c: Include cli/cli-style.h.
3280 (term_cli_styling): Remove cli_styling declaration.
3281
3282 2019-09-18 Alan Modra <amodra@gmail.com>
3283
3284 * arm-tdep.c (arm_record_special_symbol): Update bfd_get_section
3285 to bfd_asymbol_section.
3286
3287 2019-09-18 Alan Modra <amodra@gmail.com>
3288
3289 * amd64-dicos-tdep.c (amd64_dicos_osabi_sniffer): Constify target.
3290 * i386-cygwin-tdep.c (i386_cygwin_init_abi): Likewise.
3291 * i386-dicos-tdep.c (i386_dicos_osabi_sniffer): Likewise.
3292
3293 2019-09-18 Alan Modra <amodra@gmail.com>
3294
3295 * solib-spu.c (spu_bfd_open): Use bfd_set_filename.
3296 * spu-linux-nat.c (spu_bfd_open): Likewise.
3297
3298 2019-09-18 Christian Biesinger <cbiesinger@google.com>
3299
3300 * dwarf2loc.c: Change extern declaration of dwarf_always_disassemble
3301 to bool to match definition in dwarf2read.c.
3302
3303 2019-09-17 Christian Biesinger <cbiesinger@google.com>
3304
3305 * ada-lang.c (ada_ignore_descriptive_types_p): Change to bool.
3306 (print_signatures): Likewise.
3307 (trust_pad_over_xvs): Likewise.
3308 * arch/aarch64-insn.c (aarch64_debug): Likewise.
3309 * arch/aarch64-insn.h (aarch64_debug): Likewise.
3310 * arm-linux-nat.c (arm_apcs_32): Likewise.
3311 * arm-linux-tdep.c (arm_apcs_32): Likewise.
3312 * arm-nbsd-nat.c (arm_apcs_32): Likewise.
3313 * arm-tdep.c (arm_debug): Likewise.
3314 (arm_apcs_32): Likewise.
3315 * auto-load.c (debug_auto_load): Likewise.
3316 (auto_load_gdb_scripts): Likewise.
3317 (global_auto_load): Likewise.
3318 (auto_load_local_gdbinit): Likewise.
3319 (auto_load_local_gdbinit_loaded): Likewise.
3320 * auto-load.h (global_auto_load): Likewise.
3321 (auto_load_local_gdbinit): Likewise.
3322 (auto_load_local_gdbinit_loaded): Likewise.
3323 * breakpoint.c (disconnected_dprintf): Likewise.
3324 (breakpoint_proceeded): Likewise.
3325 (automatic_hardware_breakpoints): Likewise.
3326 (always_inserted_mode): Likewise.
3327 (target_exact_watchpoints): Likewise.
3328 (_initialize_breakpoint): Update.
3329 * breakpoint.h (target_exact_watchpoints): Change to bool.
3330 * btrace.c (maint_btrace_pt_skip_pad): Likewise.
3331 * cli/cli-cmds.c (trace_commands): Likewise.
3332 * cli/cli-cmds.h (trace_commands): Likewise.
3333 * cli/cli-decode.c (add_setshow_boolean_cmd): Change int* argument
3334 to bool*.
3335 * cli/cli-logging.c (logging_overwrite): Change to bool.
3336 (logging_redirect): Likewise.
3337 (debug_redirect): Likewise.
3338 * cli/cli-option.h (option_def) <boolean>: Change return type to bool*.
3339 (struct boolean_option_def) <get_var_address_cb_>: Change return type
3340 to bool.
3341 <boolean_option_def>: Update.
3342 (struct flag_option_def): Change default type of Context to bool
3343 from int.
3344 <flag_option_def>: Change return type of var_address_cb_ to bool*.
3345 * cli/cli-setshow.c (do_set_command): Cast to bool* instead of int*.
3346 (get_setshow_command_value_string): Likewise.
3347 * cli/cli-style.c (cli_styling): Change to bool.
3348 (source_styling): Likewise.
3349 * cli/cli-style.h (source_styling): Likewise.
3350 (cli_styling): Likewise.
3351 * cli/cli-utils.h (struct qcs_flags) <quiet, cont, silent>: Change
3352 to bool.
3353 * command.h (var_types): Update comment.
3354 (add_setshow_boolean_cmd): Change int* var argument to bool*.
3355 * compile/compile-cplus-types.c (debug_compile_cplus_types): Change to
3356 bool.
3357 (debug_compile_cplus_scopes): Likewise.
3358 * compile/compile-internal.h (compile_debug): Likewise.
3359 * compile/compile.c (compile_debug): Likewise.
3360 (struct compile_options) <raw>: Likewise.
3361 * cp-support.c (catch_demangler_crashes): Likewise.
3362 * cris-tdep.c (usr_cmd_cris_version_valid): Likewise.
3363 (usr_cmd_cris_dwarf2_cfi): Likewise.
3364 * csky-tdep.c (csky_debug): Likewise.
3365 * darwin-nat.c (enable_mach_exceptions): Likewise.
3366 * dcache.c (dcache_enabled_p): Likewise.
3367 * defs.h (info_verbose): Likewise.
3368 * demangle.c (demangle): Likewise.
3369 (asm_demangle): Likewise.
3370 * dwarf-index-cache.c (debug_index_cache): Likewise.
3371 * dwarf2-frame.c (dwarf2_frame_unwinders_enabled_p): Likewise.
3372 * dwarf2-frame.h (dwarf2_frame_unwinders_enabled_p): Likewise.
3373 * dwarf2read.c (check_physname): Likewise.
3374 (use_deprecated_index_sections): Likewise.
3375 (dwarf_always_disassemble): Likewise.
3376 * eval.c (overload_resolution): Likewise.
3377 * event-top.c (set_editing_cmd_var): Likewise.
3378 (exec_done_display_p): Likewise.
3379 * event-top.h (set_editing_cmd_var): Likewise.
3380 (exec_done_display_p): Likewise.
3381 * exec.c (write_files): Likewise.
3382 * fbsd-nat.c (debug_fbsd_lwp): Likewise
3383 (debug_fbsd_nat): Likewise.
3384 * frame.h (struct frame_print_options) <print_raw_frame_arguments>:
3385 Likewise.
3386 (struct set_backtrace_options) <backtrace_past_main>: Likewise.
3387 <backtrace_past_entry> Likewise.
3388 * gdb-demangle.h (demangle): Likewise.
3389 (asm_demangle): Likewise.
3390 * gdb_bfd.c (bfd_sharing): Likewise.
3391 * gdbcore.h (write_files): Likewise.
3392 * gdbsupport/common-debug.c (show_debug_regs): Likewise.
3393 * gdbsupport/common-debug.h (show_debug_regs): Likewise.
3394 * gdbthread.h (print_thread_events): Likewise.
3395 * gdbtypes.c (opaque_type_resolution): Likewise.
3396 (strict_type_checking): Likewise.
3397 * gnu-nat.c (gnu_debug_flag): Likewise.
3398 * guile/scm-auto-load.c (auto_load_guile_scripts): Likewise.
3399 * guile/scm-param.c (pascm_variable): Add boolval.
3400 (add_setshow_generic): Update.
3401 (pascm_param_value): Update.
3402 (pascm_set_param_value_x): Update.
3403 * hppa-tdep.c (hppa_debug): Change to bool..
3404 * infcall.c (may_call_functions_p): Likewise.
3405 (coerce_float_to_double_p): Likewise.
3406 (unwind_on_signal_p): Likewise.
3407 (unwind_on_terminating_exception_p): Likewise.
3408 * infcmd.c (startup_with_shell): Likewise.
3409 * inferior.c (print_inferior_events): Likewise.
3410 * inferior.h (startup_with_shell): Likewise.
3411 (print_inferior_events): Likewise.
3412 * infrun.c (step_stop_if_no_debug): Likewise.
3413 (detach_fork): Likewise.
3414 (debug_displaced): Likewise.
3415 (disable_randomization): Likewise.
3416 (non_stop): Likewise.
3417 (non_stop_1): Likewise.
3418 (observer_mode): Likewise.
3419 (observer_mode_1): Likewise.
3420 (set_observer_mode): Update.
3421 (sched_multi): Change to bool.
3422 * infrun.h (debug_displaced): Likewise.
3423 (sched_multi): Likewise.
3424 (step_stop_if_no_debug): Likewise.
3425 (non_stop): Likewise.
3426 (disable_randomization): Likewise.
3427 * linux-tdep.c (use_coredump_filter): Likewise.
3428 (dump_excluded_mappings): Likewise.
3429 * linux-thread-db.c (auto_load_thread_db): Likewise.
3430 (check_thread_db_on_load): Likewise.
3431 * main.c (captured_main_1): Update.
3432 * maint-test-options.c (struct test_options_opts) <flag_opt, xx1_opt,
3433 xx2_opt, boolean_opt>: Change to bool.
3434 * maint-test-settings.c (maintenance_test_settings_boolean): Likewise.
3435 * maint.c (maintenance_profile_p): Likewise.
3436 (per_command_time): Likewise.
3437 (per_command_space): Likewise.
3438 (per_command_symtab): Likewise.
3439 * memattr.c (inaccessible_by_default): Likewise.
3440 * mi/mi-main.c (mi_async): Likewise.
3441 (mi_async_1): Likewise.
3442 * mips-tdep.c (mips64_transfers_32bit_regs_p): Likewise.
3443 * nat/fork-inferior.h (startup_with_shell): Likewise.
3444 * nat/linux-namespaces.c (debug_linux_namespaces): Likewise.
3445 * nat/linux-namespaces.h (debug_linux_namespaces): Likewise.
3446 * nios2-tdep.c (nios2_debug): Likewise.
3447 * or1k-tdep.c (or1k_debug): Likewise.
3448 * parse.c (parser_debug): Likewise.
3449 * parser-defs.h (parser_debug): Likewise.
3450 * printcmd.c (print_symbol_filename): Likewise.
3451 * proc-api.c (procfs_trace): Likewise.
3452 * python/py-auto-load.c (auto_load_python_scripts): Likewise.
3453 * python/py-param.c (union parmpy_variable): Add "bool boolval" field.
3454 (set_parameter_value): Update.
3455 (add_setshow_generic): Update.
3456 * python/py-value.c (copy_py_bool_obj): Change argument from int*
3457 to bool*.
3458 * python/python.c (gdbpy_parameter_value): Cast to bool* instead of
3459 int*.
3460 * ravenscar-thread.c (ravenscar_task_support): Change to bool.
3461 * record-btrace.c (record_btrace_target::store_registers): Update.
3462 * record-full.c (record_full_memory_query): Change to bool.
3463 (record_full_stop_at_limit): Likewise.
3464 * record-full.h (record_full_memory_query): Likewise.
3465 * remote-notif.c (notif_debug): Likewise.
3466 * remote-notif.h (notif_debug): Likewise.
3467 * remote.c (use_range_stepping): Likewise.
3468 (interrupt_on_connect): Likewise.
3469 (remote_break): Likewise.
3470 * ser-tcp.c (tcp_auto_retry): Likewise.
3471 * ser-unix.c (serial_hwflow): Likewise.
3472 * skip.c (debug_skip): Likewise.
3473 * solib-aix.c (solib_aix_debug): Likewise.
3474 * spu-tdep.c (spu_stop_on_load_p): Likewise.
3475 (spu_auto_flush_cache_p): Likewise.
3476 * stack.c (struct backtrace_cmd_options) <full, no_filters, hide>:
3477 Likewise.
3478 (struct info_print_options) <quiet>: Likewise.
3479 * symfile-debug.c (debug_symfile): Likewise.
3480 * symfile.c (auto_solib_add): Likewise.
3481 (separate_debug_file_debug): Likewise.
3482 * symfile.h (auto_solib_add): Likewise.
3483 (separate_debug_file_debug): Likewise.
3484 * symtab.c (basenames_may_differ): Likewise.
3485 (struct filename_partial_match_opts) <dirname, basename>: Likewise.
3486 (struct info_print_options) <quiet, exclude_minsyms>: Likewise.
3487 (struct info_types_options) <quiet>: Likewise.
3488 * symtab.h (demangle): Likewise.
3489 (basenames_may_differ): Likewise.
3490 * target-dcache.c (stack_cache_enabled_1): Likewise.
3491 (code_cache_enabled_1): Likewise.
3492 * target.c (trust_readonly): Likewise.
3493 (may_write_registers): Likewise.
3494 (may_write_memory): Likewise.
3495 (may_insert_breakpoints): Likewise.
3496 (may_insert_tracepoints): Likewise.
3497 (may_insert_fast_tracepoints): Likewise.
3498 (may_stop): Likewise.
3499 (auto_connect_native_target): Likewise.
3500 (target_stop_and_wait): Update.
3501 (target_async_permitted): Change to bool.
3502 (target_async_permitted_1): Likewise.
3503 (may_write_registers_1): Likewise.
3504 (may_write_memory_1): Likewise.
3505 (may_insert_breakpoints_1): Likewise.
3506 (may_insert_tracepoints_1): Likewise.
3507 (may_insert_fast_tracepoints_1): Likewise.
3508 (may_stop_1): Likewise.
3509 * target.h (target_async_permitted): Likewise.
3510 (may_write_registers): Likewise.
3511 (may_write_memory): Likewise.
3512 (may_insert_breakpoints): Likewise.
3513 (may_insert_tracepoints): Likewise.
3514 (may_insert_fast_tracepoints): Likewise.
3515 (may_stop): Likewise.
3516 * thread.c (struct info_threads_opts) <show_global_ids>: Likewise.
3517 (make_thread_apply_all_options_def_group): Change argument from int*
3518 to bool*.
3519 (thread_apply_all_command): Update.
3520 (print_thread_events): Change to bool.
3521 * top.c (confirm): Likewise.
3522 (command_editing_p): Likewise.
3523 (history_expansion_p): Likewise.
3524 (write_history_p): Likewise.
3525 (info_verbose): Likewise.
3526 * top.h (confirm): Likewise.
3527 (history_expansion_p): Likewise.
3528 * tracepoint.c (disconnected_tracing): Likewise.
3529 (circular_trace_buffer): Likewise.
3530 * typeprint.c (print_methods): Likewise.
3531 (print_typedefs): Likewise.
3532 * utils.c (debug_timestamp): Likewise.
3533 (sevenbit_strings): Likewise.
3534 (pagination_enabled): Likewise.
3535 * utils.h (sevenbit_strings): Likewise.
3536 (pagination_enabled): Likewise.
3537 * valops.c (overload_resolution): Likewise.
3538 * valprint.h (struct value_print_options) <prettyformat_arrays,
3539 prettyformat_structs, vtblprint, unionprint, addressprint, objectprint,
3540 stop_print_at_null, print_array_indexes, deref_ref, static_field_print,
3541 pascal_static_field_print, raw, summary, symbol_print, finish_print>:
3542 Likewise.
3543 * windows-nat.c (new_console): Likewise.
3544 (cygwin_exceptions): Likewise.
3545 (new_group): Likewise.
3546 (debug_exec): Likewise.
3547 (debug_events): Likewise.
3548 (debug_memory): Likewise.
3549 (debug_exceptions): Likewise.
3550 (useshell): Likewise.
3551 * windows-tdep.c (maint_display_all_tib): Likewise.
3552 * xml-support.c (debug_xml): Likewise.
3553
3554 2019-09-17 Mike Gulick <mgulick@mathworks.com>
3555
3556 * source.c (prepare_path_for_appending): New function.
3557 (openp): Make use of new function.
3558 (find_and_open_source): Search for the compilation directory and
3559 source file as a relative path beneath the directory search path.
3560
3561 2019-09-17 Andrew Burgess <andrew.burgess@embecosm.com>
3562
3563 * source-cache.c (source_cache::get_line_charpos): Catch
3564 exceptions and return false, this matches the behaviour documented
3565 in the header file.
3566
3567 2019-09-17 Joel Brobecker <brobecker@adacore.com>
3568
3569 * ada-tasks.c (info_task): Remove quoting of the task's name.
3570
3571 2019-09-16 Christian Biesinger <cbiesinger@google.com>
3572
3573 * symfile.c (auto_solib_add): Replace comment with a reference
3574 to the header file.
3575
3576 2019-09-14 Christian Biesinger <cbiesinger@google.com>
3577
3578 * NEWS: Mention that gdb can now be compiled with Python 3
3579 on Windows.
3580
3581 2019-09-12 Andrew Burgess <andrew.burgess@embecosm.com>
3582
3583 * maint.c (maint_print_section_data::maint_print_section_data):
3584 Force use of 'float log10 (float)' by casting the argument to
3585 float.
3586
3587 2019-09-12 Andrew Burgess <andrew.burgess@embecosm.com>
3588
3589 * maint.c: Add 'cmath' include.
3590 (struct maint_print_section_data): New structure.
3591 (print_section_index): New function.
3592 (print_bfd_section_info): Add header comment, small whitespace
3593 cleanup, and update to call new print_section_index function.
3594 (print_objfile_section_info): Likewise.
3595 (maint_obj_section_from_bfd_section): New function.
3596 (print_bfd_section_info_maybe_relocated): New function.
3597 (maintenance_info_sections): Add header comment, always use
3598 bfd_map_over_sections instead of ALL_OBJFILE_OSECTIONS.
3599
3600 2019-09-12 Andrew Burgess <andrew.burgess@embecosm.com>
3601
3602 * psymtab.c (find_pc_sect_psymtab): Move baseaddr local into more
3603 inner scope, add check that the objfile has psymtabs before
3604 checking psymtabs_addrmap.
3605 * psymtab.h (psymtab_storage) <psymtabs_addrmap>: Extend comment.
3606
3607 2019-09-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
3608
3609 * NEWS: Announce that Ada task names are now shown at more places,
3610 and between quotes (except in info task output).
3611 * gdb/ada-tasks.c (task_to_str): New function.
3612 (display_current_task_id): Call task_to_str.
3613 (task_command_1): Likewise.
3614 (print_ada_task_info): In non-mi mode, Properly align headers and data
3615 when task-id length is > 9 (9 is the default for a 32 bits CORE_ADDR).
3616
3617 2019-09-12 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
3618
3619 * procfs.c (procfs_target::wait) <PR_FAULTED>: Get signal from
3620 prstatus.pr_lwp.pr_info instead of making it up.
3621
3622 2019-09-11 Christian Biesinger <cbiesinger@google.com>
3623
3624 * auto-load.c (auto_load_expand_dir_vars): Update.
3625 * defs.h (gdb_datadir): Change to std::string.
3626 (python_libdir): Likewise.
3627 (relocate_gdb_directory): Change return type to std::string.
3628 * guile/guile.c (gdbscm_data_directory): Update.
3629 (initialize_scheme_side): Update.
3630 * jit.c (jit_reader_dir): Change to std::string.
3631 (jit_reader_load_command): Update.
3632 * main.c (gdb_datadir): Change to std::string.
3633 (python_libdir): Likewise.
3634 (set_gdb_data_directory): Update.
3635 (relocate_path): Change to return std::string.
3636 (relocate_gdb_directory): Change to return std::string.
3637 (relocate_gdbinit_path_maybe_in_datadir): Update.
3638 (captured_main_1): Update.
3639 * python/python.c (do_start_initialization): Update.
3640 * top.c (show_gdb_datadir): Update.
3641 * xml-syscall.c (xml_init_syscalls_info): Update.
3642 (init_syscalls_info): Update.
3643
3644 2019-09-11 Christian Biesinger <cbiesinger@google.com>
3645
3646 * main.c (relocate_gdbinit_path_maybe_in_datadir): Factor this code
3647 out of get_init_files.
3648 (get_init_files): Update.
3649
3650 2019-09-11 Christian Biesinger <cbiesinger@google.com>
3651
3652 * main.c (get_init_files): Change to use std::string.
3653 (captured_main_1): Update.
3654 (print_gdb_help): Update.
3655
3656 2019-09-11 Ali Tamur <tamur@google.com>
3657
3658 *gdb/target-float.c (host_float_ops<T>::to_longest): Update
3659 implementation.
3660
3661 2019-09-11 Christian Biesinger <cbiesinger@google.com>
3662
3663 * dbxread.c (read_dbx_symtab): Update.
3664 * dwarf2read.c (load_partial_dies): Update.
3665 * mdebugread.c (parse_partial_symbols): Update.
3666 (handle_psymbol_enumerators): Update.
3667 * psympriv.h (add_psymbol_to_list): Change type of copy_names to bool.
3668 * psymtab.c (add_psymbol_to_bcache): Likewise.
3669 (add_psymbol_to_list): Likewise.
3670 * symtab.c (symbol_set_names): Likewise.
3671 * symtab.h (symbol_set_names): Likewise.
3672 * xcoffread.c (scan_xcoff_symtab): Update.
3673
3674 2019-09-11 Tom Tromey <tom@tromey.com>
3675
3676 * symfile-mem.c (symbol_file_add_from_memory): Use
3677 bfd_set_filename.
3678 * solib-darwin.c (darwin_bfd_open): Use bfd_set_filename.
3679 * solib-aix.c (solib_aix_bfd_open): Use bfd_set_filename.
3680
3681 2019-09-10 Tom Tromey <tromey@adacore.com>
3682
3683 * dwarf-index-write.c (write_psymbols): Extend error message.
3684 (debug_names::insert): Add Ada code.
3685 (debug_names::write_psymbols): Remove Ada check.
3686 (debug_names) <m_string_obstack>: New member.
3687 * dwarf2read.c (gdb_index_symbol_name_matcher): Remove.
3688 (gdb_index_symbol_name_matcher::matches): Remove.
3689 (mapped_index_base::find_name_components_bounds): Add "lang"
3690 parameter.
3691 (mapped_index_base::build_name_components): Also split names
3692 according to Ada syntax.
3693 (dw2_expand_symtabs_matching_symbol): Loop over languages. Change
3694 type of "match_callback".
3695 (check_match, check_find_bounds_finds)
3696 (dw2_expand_symtabs_matching): Update.
3697 (dw2_debug_names_iterator): Add new constructor.
3698 (dw2_debug_names_map_matching_symbols): New function.
3699 (dw2_debug_names_expand_symtabs_matching): Update.
3700 (dwarf2_debug_names_functions): Use
3701 dw2_debug_names_map_matching_symbols.
3702
3703 2019-09-10 Tom Tromey <tromey@adacore.com>
3704
3705 * dwarf2read.c (dw2_get_file_names_reader): Add the
3706 CU's file name to the results.
3707
3708 2019-09-10 Tom Tromey <tromey@adacore.com>
3709
3710 * ada-lang.c (add_nonlocal_symbols): Combine calls to
3711 map_matching_symbols. Update.
3712 * dwarf2read.c (dw2_map_matching_symbols): Update.
3713 * psymtab.c (match_partial_symbol): Change type; update.
3714 (psym_map_matching_symbols): Likewise.
3715 * symfile-debug.c (debug_qf_map_matching_symbols): Change
3716 type; update.
3717 * symfile.h (struct quick_symbol_functions)
3718 <map_matching_symbols>: Change "name" to be a lookup_name_info.
3719 Remove "match".
3720
3721 2019-09-10 Tom Tromey <tromey@adacore.com>
3722
3723 * psymtab.c (map_block): Remove.
3724 (psym_map_matching_symbols): Use iterate_over_symbols_terminated.
3725 * symtab.c (iterate_over_symbols_terminated): New function.
3726 * symtab.c (iterate_over_symbols_terminated): Declare.
3727
3728 2019-09-10 Tom Tromey <tromey@adacore.com>
3729
3730 * ada-lang.c (ada_iterate_over_symbols): Return bool.
3731 * language.h (struct language_defn) <la_iterate_over_symbols>:
3732 Return bool.
3733 * symtab.c (iterate_over_symbols): Return bool.
3734 * symtab.h (iterate_over_symbols): Return bool.
3735
3736 2019-09-10 Tom Tromey <tromey@adacore.com>
3737
3738 * ada-lang.c (aux_add_nonlocal_symbols): Change type.
3739 (add_nonlocal_symbols): Update.
3740 * dwarf2read.c (dw2_map_matching_symbols): Change type.
3741 * psymtab.c (map_block, psym_map_matching_symbols): Change type.
3742 * symfile-debug.c (debug_qf_map_matching_symbols): Change type.
3743 * symfile.h (struct quick_symbol_functions) <map_matching_symbols>:
3744 Change type of "callback". Remove "data".
3745
3746
3747 2019-09-09 Ali Tamur <tamur@google.com>
3748
3749 * dwarf2read.c (comp_unit_head): Update comment.
3750 (dwarf2_dwo_name): New function declaration.
3751 (dwarf_unit_type_name): New function declaration.
3752 (read_comp_unit_head): Add support for new compilation units,
3753 DW_UT_partial, DW_UT_skeleton, DW_UT_split_compile, DW_UT_split_type.
3754 Particularly, DW_UT_skeleton and DW_UT_split_compile have dwo_id
3755 (currently named as "signature") in their header. Also clarify error
3756 messages.
3757 (lookup_dwo_id): New function. Returns the dwo id of the given
3758 compile unit.
3759 (lookup_dwo_unit): Use the new lookup_dwo_id function.
3760 (init_cutu_and_read_dies): Use the new dwarf2_dwo_name and lookup_dwo_id
3761 functions.
3762 (create_dwo_cu_reader): Use the added lookup_dwo_id function.
3763 (dwarf2_dwo_name): Get the dwo name if present.
3764 (dwarf_unit_type_name): Convert DW_UT_* types to string for diagnostic
3765 purposes.
3766
3767 2019-09-09 Tom Tromey <tom@tromey.com>
3768
3769 * tui/tui-win.c (tui_all_windows_info): Use ui_out.
3770
3771 2019-09-09 Philippe Waroquiers <philippe.waroquiers@skynet.be>
3772
3773 * python/python.c (do_start_initialization): Make progname_copy static,
3774 to avoid a leak report.
3775
3776 2019-09-08 Tom Tromey <tom@tromey.com>
3777
3778 * tui/tui-wingeneral.c (box_win): Truncate long window titles.
3779
3780 2019-09-07 Simon Marchi <simon.marchi@efficios.com>
3781
3782 * dwarf2read.c (struct dw2_symtab_iterator) <block_index>:
3783 Change type to gdb::optional<block_enum>.
3784 (dw2_symtab_iter_init): Change block_index parameter type
3785 to gdb::optional<block_enum>.
3786 (dw2_lookup_symbol): Change block_index parameter
3787 type to block_enum.c
3788 (dw2_debug_names_lookup_symbol): Likewise.
3789 * psymtab.c (psym_lookup_symbol): Likewise.
3790 * symfile-debug.c (debug_qf_lookup_symbol): Likewise.
3791 * symfile.h (struct quick_symbol_functions) <lookup_symbol>:
3792 Likewise.
3793
3794 2019-09-06 Christian Biesinger <cbiesinger@google.com>
3795
3796 * defs.h (relocate_gdb_directory): Change int to bool in
3797 signature and rename flag to relocatable.
3798 * main.c (relocate_path): Likewise.
3799 (relocate_gdb_directory): Likewise.
3800
3801 2019-09-06 Alan Modra <amodra@gmail.com>
3802
3803 * coffread.c (coff_symfile_read): Constify filename variable.
3804 * dbxread.c (dbx_symfile_init, coffstab_build_psymtabs),
3805 (elfstab_build_psymtabs, stabsect_build_psymtabs): Likewise.
3806 * gdb_bfd.c (gdb_bfd_close_or_warn): Likewise.
3807 * solib.c (reload_shared_libraries_1): Likewise.
3808 * symfile.c (reread_symbols): Likewise.
3809 * solib-aix.c (solib_aix_bfd_open): Add cast for xfree of filename.
3810 * solib-darwin.c (darwin_bfd_open): Likewise.
3811 * symfile-mem.c (symbol_file_add_from_memory): Likewise.
3812
3813 2019-09-03 Andrew Burgess <andrew.burgess@embecosm.com>
3814
3815 * psymtab.c (print_partial_symbols): Handle missing domain_enum
3816 values MODULE_DOMAIN and COMMON_BLOCK_DOMAIN.
3817
3818 2019-09-03 Tom Tromey <tromey@adacore.com>
3819
3820 * ada-valprint.c (ada_val_print_num): Don't recurse for range
3821 types.
3822 (has_negatives): Unbias a range type bound.
3823 * dwarf2read.c (read_subrange_type): Handle DW_AT_GNU_bias.
3824 * gdbtypes.c (operator==): Handle new field.
3825 (create_range_type): Add "bias" parameter.
3826 (create_static_range_type, resolve_dynamic_range): Update.
3827 * gdbtypes.h (struct range_bounds) <bias>: New member.
3828 (create_range_type): Add bias parameter.
3829 * printcmd.c (print_scalar_formatted): Unbias range types.
3830 * value.c (unpack_long): Unbias range types.
3831 (pack_long): Bias range types.
3832
3833 2019-09-02 Alan Hayward <alan.hayward@arm.com>
3834
3835 * solib-svr4.c (svr4_find_and_create_probe_breakpoints): Check all
3836 probe arguments.
3837
3838 2019-09-02 Alan Hayward <alan.hayward@arm.com>
3839
3840 * break-catch-throw.c (fetch_probe_arguments): Use gdbarch.
3841 * dtrace-probe.c (dtrace_probe::get_argument_count): Likewise.
3842 * probe.c (probe_safe_evaluate_at_pc) (compute_probe_arg)
3843 (compile_probe_arg): Likewise.
3844 * probe.h (get_argument_count): Likewise.
3845 * solib-svr4.c (solib_event_probe_action): Likewise.
3846 * stap-probe.c (stap_probe::get_argument_count): Likewise.
3847
3848 2019-09-02 Alan Hayward <alan.hayward@arm.com>
3849
3850 * solib-svr4.c (svr4_find_and_create_probe_breakpoints): Move
3851 code to here...
3852 (svr4_create_solib_event_breakpoints): ...from here.
3853
3854 2019-08-30 Sergio Durigan Junior <sergiodj@redhat.com>
3855
3856 * nat/fork-inferior.c (trace_start_error): Remove "\nError: "
3857 suffix from warning message.
3858
3859 2019-08-30 Tom Tromey <tom@tromey.com>
3860
3861 * tui/tui-winsource.h (struct tui_source_window_base)
3862 <refresh_all>: Don't declare.
3863 * tui/tui-winsource.c (tui_source_window_base::refresh_all):
3864 Remove.
3865 * tui/tui-win.c (tui_refresh_all_win): Don't call refresh_all or
3866 tui_show_locator_content.
3867 * tui/tui-regs.h (struct tui_data_window) <refresh_all>: Don't
3868 declare.
3869 * tui/tui-regs.c (tui_data_window::refresh_all): Remove.
3870 * tui/tui-data.h (struct tui_win_info) <refresh_all>: Don't
3871 declare.
3872
3873 2019-08-30 Tom Tromey <tom@tromey.com>
3874
3875 * tui/tui-io.c (tui_cont_sig): Don't call wrefresh.
3876
3877 2019-08-30 Tom Tromey <tom@tromey.com>
3878
3879 * tui/tui-stack.c (_initialize_tui_stack): Move later.
3880 Remove unnecessary forward declarations.
3881
3882 2019-08-30 Tom Tromey <tom@tromey.com>
3883
3884 * tui/tui-stack.c (tui_locator_window::set_locator_fullname): Call
3885 rerender.
3886 (tui_update_locator_fullname, tui_show_frame_info): Don't call
3887 tui_show_locator_content.
3888
3889 2019-08-30 Tom Tromey <tom@tromey.com>
3890
3891 * tui/tui-stack.c (tui_show_locator_content): Move lower. Rewrite.
3892 (tui_locator_window::rerender): Rewrite using body of previous
3893 tui_show_locator_content.
3894
3895 2019-08-30 Tom Tromey <tom@tromey.com>
3896
3897 * tui/tui-stack.h (struct tui_locator_window) <set_locator_info,
3898 set_locator_fullname>: New methods.
3899 * tui/tui-stack.c (tui_locator_window::set_locator_fullname):
3900 Rename from tui_set_locator_fullname.
3901 (tui_locator_window::set_locator_info): Rename from
3902 tui_set_locator_info. Return bool.
3903 (tui_update_locator_fullname, tui_show_frame_info): Update.
3904
3905 2019-08-30 Tom Tromey <tom@tromey.com>
3906
3907 * tui/tui-layout.c (show_layout): Don't call tui_refresh_all.
3908
3909 2019-08-30 Tom Tromey <tom@tromey.com>
3910
3911 * tui/tui-wingeneral.c (tui_gen_win_info::refresh_window): Don't
3912 call touchwin.
3913
3914 2019-08-30 Tom Tromey <tom@tromey.com>
3915
3916 * tui/tui-wingeneral.c (box_win): Assume win_info and
3917 win_info->handle cannot be NULL.
3918
3919 2019-08-30 Tom Tromey <tom@tromey.com>
3920
3921 * tui/tui-regs.h (struct tui_data_item_window) <rerender,
3922 refresh_window>: Declare.
3923 * tui/tui-regs.c (tui_data_window::display_registers_from): Call
3924 resize.
3925 (tui_data_item_window::rerender): Rename from
3926 tui_display_register.
3927 (tui_data_item_window::refresh_window): New method.
3928 * tui/tui-layout.c (tui_gen_win_info::resize): Do nothing on
3929 no-op.
3930
3931 2019-08-30 Tom Tromey <tom@tromey.com>
3932
3933 * tui/tui-regs.h (struct tui_data_window) <regs_content,
3934 regs_column_count, current_group>: Move later. Now private.
3935 <get_current_group>: New method.
3936 * tui/tui-regs.c (tui_reg_command): Update.
3937 * tui/tui-layout.c (tui_set_layout): Update.
3938
3939 2019-08-30 Tom Tromey <tom@tromey.com>
3940
3941 * tui/tui-regs.c (tui_data_window::display_registers_from_line)
3942 (tui_data_window::rerender): Don't call
3943 check_and_display_highlight_if_needed.
3944 (tui_data_window::refresh_all): Remove call to
3945 erase_data_content.
3946
3947 2019-08-30 Tom Tromey <tom@tromey.com>
3948
3949 * tui/tui-regs.c (tui_data_window::last_regs_line_no)
3950 (tui_data_window::display_registers_from)
3951 (tui_data_window::display_reg_element_at_line)
3952 (tui_data_window::display_registers_from_line): Remove checks of
3953 "empty".
3954
3955 2019-08-30 Tom Tromey <tom@tromey.com>
3956
3957 * tui/tui-regs.h (struct tui_data_window) <display_all_data>:
3958 Don't declare.
3959 * tui/tui-regs.c (tui_data_window::show_registers): Call
3960 rerender.
3961 (tui_data_window::rerender): Rename from display_all_data.
3962 (tui_data_window::rerender): Remove old implementation.
3963
3964 2019-08-30 Tom Tromey <tom@tromey.com>
3965
3966 * tui/tui-regs.c (tui_data_window::display_all_data): Change
3967 text.
3968 * tui/tui-data.h (NO_DATA_STRING): Remove define.
3969
3970 2019-08-29 Bernhard Wodok <barto@gmx.net>
3971 Sergio Durigan Junior <sergiodj@redhat.com>
3972
3973 PR win32/24284
3974 * mingw-hdep.c (gdb_select): Handle case when 'n' is zero.
3975
3976 2019-08-28 Andrew Burgess <andrew.burgess@embecosm.com>
3977
3978 * symtab.c (search_symbols): Don't include MODULE_DOMAIN symbols
3979 when searching for types.
3980
3981 2019-08-28 Andrew Burgess <andrew.burgess@embecosm.com>
3982
3983 * f-lang.c (f_language_defn): Use f_print_typedef.
3984 * f-lang.h (f_print_typedef): Declare.
3985 * f-typeprint.c (f_print_typedef): Define.
3986
3987 2019-08-27 Christian Biesinger <cbiesinger@google.com>
3988
3989 * nat/linux-namespaces.c (mnsh_main): Initialize fd (to -1).
3990
3991 2019-08-27 Andrew Burgess <andrew.burgess@embecosm.com>
3992
3993 * cli/cli-utils.c (info_print_options_defs): Delete.
3994 (make_info_print_options_def_group): Delete.
3995 (extract_info_print_options): Delete.
3996 (info_print_command_completer): Delete.
3997 (info_print_args_help): Add extra parameter, and optionally
3998 include text about -n flag.
3999 * cli/cli-utils.h (struct info_print_options): Delete.
4000 (extract_info_print_options): Delete declaration.
4001 (info_print_command_completer): Delete declaration.
4002 (info_print_args_help): Add extra parameter, extend header
4003 comment.
4004 * python/python.c (gdbpy_rbreak): Pass additional parameter to
4005 search_symbols.
4006 * stack.c (struct info_print_options): New type.
4007 (info_print_options_defs): New file scoped variable.
4008 (make_info_print_options_def_group): New static function.
4009 (info_print_command_completer): New static function.
4010 (info_locals_command): Update to use new local functions.
4011 (info_args_command): Likewise.
4012 (_initialize_stack): Add extra parameter to calls to
4013 info_print_args_help.
4014 * symtab.c (search_symbols): Add extra parameter, use this to
4015 possibly excluse non-debug symbols.
4016 (symtab_symbol_info): Add extra parameter, which is passed on to
4017 search_symbols.
4018 (struct info_print_options): New type.
4019 (info_print_options_defs): New file scoped variable.
4020 (make_info_print_options_def_group): New static function.
4021 (info_print_command_completer): New static function.
4022 (info_variables_command): Update to use local functions, and pass
4023 extra parameter through to symtab_symbol_info.
4024 (info_functions_command): Likewise.
4025 (info_types_command): Pass additional argument through to
4026 symtab_symbol_info.
4027 (rbreak_command): Pass extra argument to search_symbols.
4028 (_initialize_symtab): Add extra arguments for calls to
4029 info_print_args_help, and update help text for 'info variables',
4030 'whereis', and 'info functions' commands.
4031 * symtab.h (search_symbols): Add extra argument to declaration.
4032 * NEWS: Mention new flags.
4033
4034 2019-08-26 Christian Biesinger <cbiesinger@google.com>
4035
4036 * symtab.c (lookup_static_symbol): Call the new function (and move
4037 it down to be next to lookup_global_symbol).
4038 (struct global_sym_lookup_data): Add block_enum member and rename to...
4039 (struct global_or_static_sym_lookup_data): ...this.
4040 (lookup_symbol_global_iterator_cb): Pass block_index instead of
4041 GLOBAL_BLOCK to lookup_symbol_in_objfile and rename to...
4042 (lookup_symbol_global_or_static_iterator_cb): ...this.
4043 (lookup_global_or_static_symbol): New function.
4044 (lookup_global_symbol): Call new function.
4045
4046 2019-08-26 Tom de Vries <tdevries@suse.de>
4047
4048 PR c++/24852
4049 * break-catch-throw.c (fetch_probe_arguments): Improve error mesage
4050 when pc_probe.prob == NULL.
4051
4052 2019-08-25 Simon Marchi <simon.marchi@efficios.com>
4053
4054 * dwarf2read.c (dw2_debug_names_iterator::next): Rename local
4055 variable symbol_linkage to symbol_linkage_.
4056
4057 2019-08-25 Simon Marchi <simon.marchi@efficios.com>
4058
4059 * dwarf2read.c (dw2_debug_names_iterator::next): Use enum to
4060 represent whether the symbol is static, dynamic, or we don't
4061 know.
4062
4063 2019-08-25 Yoshinori Sato <ysato@users.sourceforge.jp>
4064
4065 * gdb/rx-tdep.c (rx_register_names): New.
4066 (rx_register_name): Delete.
4067 (rx_psw_type): Delete.
4068 (rx_fpsw_type): Delete.
4069 (rx_register_type): Delete.
4070 (rx_gdbarch_init): Convert target-descriptions.
4071 (_initialize_rx_tdep): Add initialize_tdesc_rx.
4072 * gdb/features/Makefile: Add rx.xml.
4073 * gdb/features/rx.xml: New.
4074 * gdb/features/rx.c: Generated.
4075 * gdb/NEWS: Mention target description support.
4076
4077 2019-08-22 Christian Biesinger <cbiesinger@google.com>
4078
4079 * symtab.c (symbol_cache_lookup): Always initialize *bsc_ptr and
4080 *slot_ptr.
4081
4082 2019-08-23 Sergio Durigan Junior <sergiodj@redhat.com>
4083
4084 * configure.ac: Don't check for 'dlfcn.h' (moved to
4085 gdbsupport/common.m4).
4086 * Makefile.in (COMMON_SFILES): Move 'gdb-dlfcn.c' to
4087 'gdbsupport/'.
4088 (HFILES_NO_SRCDIR): Likewise, for 'gdb-dlfcn.h'.
4089 * compile/compile-c-support.c: Include
4090 'gdbsupport/gdb-dlfcn.h'.
4091 * gdbsupport/common.m4: Check for 'dlfcn.h'.
4092 * gdb-dlfcn.c: Move to...
4093 * gdbsupport/gdb-dlfcn.c: ... here.
4094 * gdb-dlfcn.h: Move to...
4095 * gdbsupport/gdb-dlfcn.h: ... here.
4096
4097 2019-08-23 Sandra Loosemore <sandra@codesourcery.com>
4098
4099 * nios2-tdep.c (struct reg_value): Improve comments. Make
4100 the offset field signed.
4101
4102 2019-08-22 Christian Biesinger <cbiesinger@google.com>
4103
4104 * python/lib/gdb/__init__.py (_execute_file): New function.
4105 * python/python.c (python_run_simple_file): Call gdb._execute_file
4106 on Windows.
4107
4108 2019-08-22 Andrew Burgess <andrew.burgess@embecosm.com>
4109
4110 * f-exp.y (yylex): Remove is_a_field_of_this local variable, and
4111 all uses as this was never set to anything but a zero value.
4112
4113 2019-08-21 Bogdan Harjoc <harjoc@gmail.com>
4114
4115 * cli/cli-cmds.c (with_command_1): Error out if no arguments.
4116
4117 2019-08-21 Christian Biesinger <cbiesinger@google.com>
4118
4119 * tui/tui-data.h (tui_gen_win_info): Add an =default
4120 move constructor, required by some GCC versions.
4121
4122 2019-08-21 Jinke Fan <fanjinke51@yeah.net>
4123
4124 * go32-nat.c (go32_sysinfo): Add hygon_p.
4125
4126 2019-08-20 Tom Tromey <tom@tromey.com>
4127
4128 * tui/tui-regs.h (struct tui_data_window) <last_regs_line_no,
4129 line_from_reg_element_no, first_reg_element_no_inline,
4130 display_all_data, delete_data_content_windows,
4131 erase_data_content>: Now private.
4132
4133 2019-08-20 Tom Tromey <tom@tromey.com>
4134
4135 * tui/tui-wingeneral.c (box_win): Change type of highlight_flag.
4136 (tui_unhighlight_win, tui_highlight_win)
4137 (tui_win_info::make_window): Update.
4138 * tui/tui-data.h (HILITE, NO_HILITE): Remove.
4139
4140 2019-08-20 Tom Tromey <tom@tromey.com>
4141
4142 * tui/tui-data.h (PROC_PREFIX, LINE_PREFIX, PC_PREFIX)
4143 (MIN_LINE_WIDTH, MIN_PROC_WIDTH, MAX_TARGET_WIDTH)
4144 (MAX_PID_WIDTH): Move to tui-stack.c.
4145 * tui/tui-stack.c (PROC_PREFIX, LINE_PREFIX, PC_PREFIX)
4146 (MIN_LINE_WIDTH, MIN_PROC_WIDTH, MAX_TARGET_WIDTH)
4147 (MAX_PID_WIDTH): Move from tui-data.h.
4148
4149 2019-08-20 Tom Tromey <tom@tromey.com>
4150
4151 * tui/tui-wingeneral.h (tui_make_window): Don't declare.
4152 * tui/tui-wingeneral.c (box_win): Change type of win_info.
4153 (box_win): Update.
4154 (tui_gen_win_info::make_window): Rename from tui_make_window.
4155 (tui_win_info::make_window): New method.
4156 (tui_gen_win_info::make_visible): Update.
4157 * tui/tui-source.c (tui_source_window::set_contents): Update.
4158 * tui/tui-regs.c (tui_data_window::show_register_group): Update.
4159 (tui_data_window::display_registers_from): Update.
4160 * tui/tui-layout.c (tui_gen_win_info::resize): Update.
4161 * tui/tui-data.h (struct tui_gen_win_info) <make_window>:
4162 Declare.
4163 <can_box>: Remove.
4164 <title>: Remove.
4165 (struct tui_win_info) <make_window>: Declare.
4166 <can_box>: Now virtual.
4167 <title>: New member.
4168 * tui/tui-data.c (~tui_gen_win_info): Don't free title.
4169 * tui/tui-command.c (tui_cmd_window::resize): Update.
4170
4171 2019-08-20 Tom Tromey <tom@tromey.com>
4172
4173 * tui/tui-regs.h (struct tui_data_window) <display_regs>: Remove.
4174 * tui/tui-regs.c (tui_data_window::show_registers): Update.
4175 (tui_data_window::check_register_values): Update.
4176
4177 2019-08-20 Tom Tromey <tom@tromey.com>
4178
4179 * tui/tui-regs.h (struct tui_data_window): Use
4180 DISABLE_COPY_AND_ASSIGN.
4181 <regs_content>: Change type, removing unique_ptr.
4182 <tui_data_window>: Add move constructor.
4183 * tui/tui-regs.c (tui_data_window::show_registers)
4184 (tui_data_window::show_register_group)
4185 (tui_data_window::display_registers_from)
4186 (tui_data_window::display_registers_from)
4187 (tui_data_window::first_data_item_displayed)
4188 (tui_data_window::delete_data_content_windows)
4189 (tui_data_window::rerender, tui_data_window::refresh_window)
4190 (tui_data_window::check_register_values): Update.
4191
4192 2019-08-20 Tom Tromey <tom@tromey.com>
4193
4194 * tui/tui-regs.h (struct tui_data_window) <show_registers,
4195 show_register_group>: Declare.
4196 (tui_show_register_group): Don't declare.
4197 * tui/tui-regs.c (tui_data_window::show_registers): Rename from
4198 tui_show_registers.
4199 (tui_data_window::show_register_group): Rename from
4200 tui_show_register_group.
4201 (tui_data_window::check_register_values, tui_reg_command):
4202 Update.
4203 * tui/tui-layout.c (tui_set_layout): Update.
4204
4205 2019-08-20 Tom Tromey <tom@tromey.com>
4206
4207 * tui/tui-regs.h (struct tui_data_window) <check_register_values>:
4208 Declare.
4209 (tui_check_register_values): Don't declare.
4210 * tui/tui-regs.c (tui_data_window::check_register_values): Rename
4211 from tui_check_register_values.
4212 * tui/tui-hooks.c (tui_register_changed): Update.
4213
4214 2019-08-20 Tom Tromey <tom@tromey.com>
4215
4216 * tui/tui-regs.c (tui_reg_layout): Move later.
4217 (tui_show_registers): Don't enable TUI mode or change layout.
4218
4219 2019-08-20 Tom Tromey <tom@tromey.com>
4220
4221 * tui/tui-regs.h (struct tui_data_item_window)
4222 <~tui_data_item_window>: Remove.
4223 <content>: Now a unique_xmalloc_ptr.
4224 * tui/tui-regs.c (tui_register_format): Return a
4225 unique_xmalloc_ptr.
4226 (tui_get_register): Update.
4227 (~tui_data_item_window): Remove.
4228 (tui_data_window::display_registers_from, tui_display_register):
4229 Update.
4230 * tui/tui-io.h (tui_expand_tabs): Update.
4231 * tui/tui-io.c (tui_expand_tabs): Return a unique_xmalloc_ptr.
4232 Remove "col" parameter.
4233
4234 2019-08-20 Tom Tromey <tom@tromey.com>
4235
4236 * tui/tui-regs.h (struct tui_data_item_window) <value>: Remove
4237 field.
4238 * tui/tui-regs.c (~tui_data_item_window): Update.
4239
4240 2019-08-20 Tom Tromey <tom@tromey.com>
4241
4242 * tui/tui-regs.c (tui_register_format, tui_get_register): Move
4243 earlier.
4244
4245 2019-08-20 Tom Tromey <tom@tromey.com>
4246
4247 * tui/tui-regs.c (tui_reg_command): Remove NULL check.
4248
4249 2019-08-20 Tom Tromey <tom@tromey.com>
4250
4251 * tui/tui-source.h (struct tui_source_window): Update.
4252 * tui/tui-regs.c (tui_show_registers): Update.
4253 * tui/tui-disasm.h (struct tui_disasm_window): Update.
4254 * tui/tui-data.h (NO_SRC_STRING, NO_DISASSEM_STRING)
4255 (NO_REGS_STRING): Remove defines.
4256
4257 2019-08-20 Conrad Meyer <cem@FreeBSD.org>
4258
4259 * remote.c (remote_target::remote_btrace_maybe_reopen): Avoid
4260 unnecessary thread walk if remote doesn't support the packet.
4261
4262 2019-08-19 Tom Tromey <tromey@adacore.com>
4263
4264 * python/py-value.c (value_has_field): Fix indentation.
4265
4266 2019-08-19 Tom Tromey <tromey@adacore.com>
4267
4268 * printcmd.c (do_one_display, info_display_command): Update.
4269 * block.h (contained_in): Return bool. Add allow_nested
4270 parameter.
4271 * block.c (contained_in): Return bool. Add allow_nested
4272 parameter.
4273
4274 2019-08-19 Tom Tromey <tom@tromey.com>
4275
4276 * configure: Rebuild.
4277 * configure.ac: Disallow the combination of -static-libstdc++ and
4278 source highlight.
4279 * source-cache.c (get_language_name): Handle rust.
4280 (source_cache::get_source_lines): Ignore highlighting exceptions.
4281
4282 2019-08-16 Tom Tromey <tom@tromey.com>
4283
4284 * tui/tui.h (enum tui_win_type) <EXEC_INFO_WIN>: Remove.
4285 * tui/tui-winsource.h (struct tui_exec_info_window): Remove.
4286 (struct tui_source_window_base) <make_visible, refresh_window,
4287 resize>: Remove methods.
4288 <execution_info>: Remove field.
4289 * tui/tui-winsource.c (tui_source_window_base::do_erase_source_content)
4290 (tui_show_source_line, tui_source_window_base)
4291 (~tui_source_window_base): Update.
4292 (tui_source_window_base::resize)
4293 (tui_source_window_base::make_visible)
4294 (tui_source_window_base::refresh_window): Remove.
4295 (tui_source_window_base::update_exec_info): Update.
4296 * tui/tui-source.c (tui_source_window::set_contents): Update.
4297 * tui/tui-disasm.c (tui_disasm_window::set_contents): Update.
4298
4299 2019-08-16 Tom Tromey <tom@tromey.com>
4300
4301 * tui/tui-hooks.c (tui_remove_hooks): Don't set
4302 deprecated_query_hook.
4303
4304 2019-08-16 Tom Tromey <tom@tromey.com>
4305
4306 * tui/tui-winsource.c (tui_update_source_windows_with_addr)
4307 (tui_update_source_windows_with_line): Update.
4308 * tui/tui-source.h (struct tui_source_window)
4309 <show_symtab_source>: Declare.
4310 (tui_show_symtab_source): Don't declare.
4311 * tui/tui-source.c (tui_show_symtab_source): Rename from
4312 tui_show_symtab_source.
4313
4314 2019-08-16 Tom Tromey <tom@tromey.com>
4315
4316 * tui/tui-winsource.h (struct tui_source_window_base)
4317 <set_contents>: Declare.
4318 * tui/tui-winsource.c
4319 (tui_source_window_base::update_source_window_as_is): Update.
4320 * tui/tui-source.h (struct tui_source_window) <set_contents>:
4321 Declare.
4322 (tui_set_source_content): Don't declare.
4323 * tui/tui-source.c (tui_source_window::set_contents): Rename from
4324 tui_set_source_content.
4325 * tui/tui-disasm.h (struct tui_disasm_window) <set_contents>:
4326 Declare.
4327 (tui_set_disassem_content): Don't declare.
4328 * tui/tui-disasm.c (tui_disasm_window::set_contents): Rename from
4329 tui_set_disassem_content.
4330
4331 2019-08-16 Tom Tromey <tom@tromey.com>
4332
4333 * tui/tui-winsource.h (struct tui_source_window_base)
4334 <update_breakpoint_info>: Declare.
4335 (tui_update_breakpoint_info): Don't declare.
4336 * tui/tui-winsource.c (tui_source_window_base::update_source_window_as_is)
4337 (tui_update_all_breakpoint_info): Update.
4338 (tui_source_window_base::update_breakpoint_info): Rename from
4339 tui_update_breakpoint_info.
4340 (tui_source_window_base::update_exec_info): Update.
4341
4342 2019-08-16 Tom Tromey <tom@tromey.com>
4343
4344 * tui/tui-winsource.h (struct tui_source_window_base)
4345 <update_source_window>: Declare.
4346 (tui_update_source_window): Don't declare.
4347 * tui/tui-winsource.c
4348 (tui_source_window_base::update_source_window): Rename from
4349 tui_update_source_window.
4350 (tui_source_window_base::rerender): Update.
4351 * tui/tui-source.c (tui_source_window::maybe_update): Update.
4352 * tui/tui-disasm.c (tui_show_disassem)
4353 (tui_show_disassem_and_update_source)
4354 (tui_disasm_window::maybe_update): Update.
4355
4356 2019-08-16 Tom Tromey <tom@tromey.com>
4357
4358 * tui/tui-winsource.h (struct tui_source_window_base)
4359 <update_source_window_as_is>: Declare.
4360 (tui_update_source_window_as_is): Don't declare.
4361 * tui/tui-winsource.c (tui_update_source_window): Update
4362 (tui_source_window_base::update_source_window_as_is): Rename from
4363 tui_update_source_window_as_is.
4364 (tui_source_window_base::refill): Update.
4365 * tui/tui-source.c (tui_show_symtab_source): Update.
4366 * tui/tui-disasm.c (tui_disasm_window::do_scroll_vertical):
4367 Update.
4368
4369 2019-08-16 Tom Tromey <tom@tromey.com>
4370
4371 * tui/tui-winsource.h (tui_update_source_window)
4372 (tui_update_source_window_as_is): Remove "noerror" parameter.
4373 * tui/tui-winsource.c (tui_update_source_window)
4374 (tui_update_source_window_as_is): Remove "noerror" parameter.
4375 (tui_update_source_windows_with_addr)
4376 (tui_update_source_windows_with_line)
4377 (tui_source_window_base::rerender)
4378 (tui_source_window_base::refill): Update.
4379 * tui/tui-source.h (tui_set_source_content)
4380 (tui_show_symtab_source): Remove "noerror" parameter.
4381 * tui/tui-source.c (tui_set_source_content): Remove "noerror"
4382 parameter.
4383 (tui_show_symtab_source): Likewise.
4384 (tui_source_window::maybe_update): Update.
4385 * tui/tui-disasm.c (tui_show_disassem)
4386 (tui_show_disassem_and_update_source)
4387 (tui_disasm_window::do_scroll_vertical)
4388 (tui_disasm_window::maybe_update): Update.
4389
4390 2019-08-16 Tom Tromey <tom@tromey.com>
4391
4392 * tui/tui.c (tui_is_window_visible): Update.
4393 * tui/tui-wingeneral.c (tui_make_window)
4394 (tui_gen_win_info::make_visible, tui_refresh_all): Update.
4395 * tui/tui-win.c (window_name_completer, tui_refresh_all_win)
4396 (tui_set_focus_command, tui_all_windows_info, update_tab_width)
4397 (tui_set_win_height_command, parse_scrolling_args): Update.
4398 * tui/tui-source.c (tui_source_window::style_changed): Update.
4399 * tui/tui-regs.c (tui_show_registers)
4400 (tui_data_window::first_data_item_displayed)
4401 (tui_data_window::delete_data_content_windows)
4402 (tui_check_register_values, tui_reg_command): Update.
4403 * tui/tui-disasm.c (tui_show_disassem): Update.
4404 * tui/tui-data.h (struct tui_gen_win_info) <is_visible>: New
4405 method.
4406 <is_visible>: Remove field.
4407 * tui/tui-data.c (tui_next_win, tui_prev_win)
4408 (tui_delete_invisible_windows): Update.
4409
4410 2019-08-16 Tom Tromey <tom@tromey.com>
4411
4412 * tui/tui-winsource.h (struct tui_source_window_base)
4413 <m_has_locator>: Remove.
4414 * tui/tui-layout.c (show_source_disasm_command, show_data)
4415 (show_source_or_disasm_and_command): Update.
4416
4417 2019-08-16 Alan Hayward <alan.hayward@arm.com>
4418
4419 * NEWS (Other MI changes): New subsection.
4420 * aarch64-tdep.c (aarch64_get_pc_address_flags): New function.
4421 (aarch64_gdbarch_init): Add aarch64_get_pc_address_flags.
4422 * arch-utils.c (default_get_pc_address_flags): New function.
4423 * arch-utils.h (default_get_pc_address_flags): New declaration.
4424 * gdbarch.sh: Add get_pc_address_flags.
4425 * gdbarch.c: Regenerate.
4426 * gdbarch.h: Likewise.
4427 * stack.c (print_pc): New function.
4428 (print_frame_info) (print_frame): Call print_pc.
4429
4430 2019-08-16 Tom de Vries <tdevries@suse.de>
4431
4432 * maint.c (maintenance_info_sections): Also handle !ALLOBJ case using
4433 print_objfile_section_info.
4434
4435 2019-08-15 Tom Tromey <tom@tromey.com>
4436
4437 * tui/tui-io.c (tui_puts_internal): Check TUI_CMD_WIN before
4438 calling update_cmdwin_start_line.
4439 * tui/tui-winsource.h (struct tui_source_window_base)
4440 <do_make_visible_with_new_height, set_new_height>: Don't declare.
4441 <rerender>: Declare.
4442 * tui/tui-winsource.c (tui_source_window_base::update_tab_width):
4443 Call rerender.
4444 (tui_source_window_base::set_new_height): Remove.
4445 (tui_source_window_base::rerender): Rename from
4446 do_make_visible_with_new_height.
4447 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Use
4448 resize method.
4449 (tui_win_info::make_invisible_and_set_new_height)
4450 (tui_win_info::make_visible_with_new_height): Remove.
4451 * tui/tui-stack.h (struct tui_locator_window) <rerender>:
4452 Declare.
4453 * tui/tui-stack.c (tui_locator_window::rerender): New method.
4454 * tui/tui-regs.h (struct tui_data_window) <set_new_height,
4455 do_make_visible_with_new_height>: Don't declare.
4456 <rerender>: Declare.
4457 * tui/tui-regs.c (tui_data_window::rerender): Rename from
4458 set_new_height.
4459 (tui_data_window::do_make_visible_with_new_height): Remove.
4460 * tui/tui-layout.c (show_source_disasm_command, show_data): Don't
4461 call tui_show_locator_content.
4462 (tui_gen_win_info::resize): Call rerender.
4463 (show_source_or_disasm_and_command): Don't call
4464 tui_show_locator_content.
4465 * tui/tui-data.h (struct tui_gen_win_info) <rerender>: New
4466 method.
4467 (struct tui_win_info) <rerender>: Declare.
4468 <set_new_height, make_invisible_and_set_new_height,
4469 make_visible_with_new_height>: Don't declare.
4470 * tui/tui-data.c (tui_win_list::rerender): New method.
4471 * tui/tui-command.h (struct tui_cmd_window)
4472 <do_make_visible_with_new_height>: Don't declare.
4473 * tui/tui-command.c
4474 (tui_cmd_window::do_make_visible_with_new_height): Remove.
4475
4476 2019-08-15 Tom Tromey <tromey@adacore.com>
4477
4478 * ada-exp.y (convert_char_literal): Handle "Q%c" encoding.
4479 * ada-lang.c (ada_enum_name): Likewise.
4480
4481 2019-08-15 Christian Biesinger <cbiesinger@google.com>
4482
4483 * python/lib/gdb/__init__.py (GdbOutputFile): Rename to have a
4484 leading underscore.
4485 (GdbOutputErrorFile): Likewise.
4486 (global scope): Adjust constructor calls to GdbOutput{,Error}File
4487 accordingly.
4488 (execute_unwinders): Rename to have a leading underscore.
4489 (auto_load_packages): Likewise.
4490 (global scope): Adjust call to auto_load_packages accordingly.
4491 (GdbSetPythonDirectory): Likewise.
4492 * python/py-unwind.c (pyuw_sniffer): Call _execute_unwinders
4493 instead of execute_unwinders.
4494
4495 2019-08-15 Tom Tromey <tom@tromey.com>
4496
4497 * tui/tui-layout.c (show_layout, show_source_disasm_command)
4498 (show_data): Don't change window visibility.
4499 (tui_gen_win_info::resize): Remove special case for command
4500 window. Use wresize, when available.
4501 (show_source_or_disasm_and_command): Don't change window
4502 visibility.
4503 * tui/tui-command.h (struct tui_cmd_window) <resize>: Declare.
4504 <make_visible>: New method.
4505 * tui/tui-command.c (tui_cmd_window::resize): New method.
4506
4507 2019-08-15 Tom Tromey <tom@tromey.com>
4508
4509 * tui/tui-winsource.h (struct tui_source_window_iterator): New.
4510 (struct tui_source_windows): New.
4511 * tui/tui-winsource.c (tui_display_main): Update.
4512 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights)
4513 (new_height_ok, parse_scrolling_args): Update.
4514 * tui/tui-layout.c (show_layout, show_data): Update.
4515 * tui/tui-data.h (tui_source_windows, tui_clear_source_windows)
4516 (tui_add_to_source_windows): Don't declare.
4517 * tui/tui-data.c (source_windows, tui_source_windows)
4518 (tui_clear_source_windows, tui_add_to_source_windows): Remove.
4519
4520 2019-08-15 Tom Tromey <tom@tromey.com>
4521
4522 * tui/tui-winsource.h (struct tui_source_window_base) <resize>:
4523 Rename from reset.
4524 * tui/tui-winsource.c (tui_source_window_base::resize): Rename.
4525 * tui/tui-layout.c (show_source_disasm_command, show_data):
4526 Update.
4527 (tui_gen_win_info::resize): Rename.
4528 (show_source_or_disasm_and_command): Update.
4529 * tui/tui-data.h (struct tui_gen_win_info) <resize>: Rename from
4530 reset.
4531
4532 2019-08-15 Tom Tromey <tom@tromey.com>
4533
4534 * tui/tui-stack.c (tui_initialize_static_data): Remove.
4535 * tui/tui-interp.c (tui_interp::init): Don't call
4536 tui_initialize_static_data.
4537 * tui/tui-data.h (tui_initialize_static_data): Don't declare.
4538
4539 2019-08-15 Tom Tromey <tom@tromey.com>
4540
4541 * tui/tui-layout.c (tui_default_win_viewport_height): Don't
4542 examine tui_win_list.
4543
4544 2019-08-15 Tom Tromey <tom@tromey.com>
4545
4546 * tui/tui-winsource.h (tui_clear_source_content): Don't declare.
4547 * tui/tui-winsource.c (tui_update_source_window_as_is): Don't call
4548 tui_clear_source_content.
4549 (tui_clear_source_content): Remove.
4550 (tui_source_window_base::do_erase_source_content): Hoist call to
4551 content.clear().
4552 * tui/tui-stack.c (tui_show_frame_info): Don't call
4553 tui_clear_source_content.
4554
4555 2019-08-15 Tom Tromey <tom@tromey.com>
4556
4557 * tui/tui-winsource.h (struct tui_source_window_base)
4558 <do_erase_source_content>: New method.
4559 <erase_source_content>: New method.
4560 (tui_erase_source_content): Don't declare.
4561 * tui/tui-winsource.c (tui_clear_source_content): Update.
4562 (tui_source_window_base::do_erase_source_content): Rename from
4563 tui_erase_source_content.
4564 (tui_source_window_base::show_source_content): Update.
4565 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Update.
4566 * tui/tui-source.h (struct tui_source_window)
4567 <erase_source_content>: New method.
4568 * tui/tui-disasm.h (struct tui_disasm_window)
4569 <erase_source_content>: New method.
4570
4571 2019-08-15 Tom Tromey <tom@tromey.com>
4572
4573 * tui/tui-winsource.h (tui_alloc_source_buffer): Don't declare.
4574 (struct tui_source_element): Add DISABLE_COPY_AND_ASSIGN, and move
4575 constructor.
4576 * tui/tui-winsource.c (tui_alloc_source_buffer): Remove.
4577 * tui/tui-source.c (tui_set_source_content): Update.
4578 * tui/tui-disasm.c (tui_set_disassem_content): Update.
4579
4580 2019-08-15 Tom Tromey <tom@tromey.com>
4581
4582 * tui/tui-winsource.h (tui_line_is_displayed): Don't declare.
4583 * tui/tui-winsource.c (tui_line_is_displayed): Move to
4584 tui-source.c.
4585 * tui/tui-source.h (struct tui_source_window) <line_is_displayed>:
4586 Declare.
4587 * tui/tui-source.c (tui_source_window::line_is_displayed): New
4588 method.
4589 (tui_source_window::maybe_update): Update.
4590
4591 2019-08-15 Tom Tromey <tom@tromey.com>
4592
4593 * tui/tui-winsource.h (tui_addr_is_displayed): Don't declare.
4594 * tui/tui-winsource.c (tui_addr_is_displayed): Move to
4595 tui-disasm.c.
4596 * tui/tui-disasm.h (struct tui_disasm_window) <addr_is_displayed>:
4597 Declare.
4598 * tui/tui-disasm.c (tui_disasm_window::addr_is_displayed): New
4599 method.
4600 (tui_disasm_window::maybe_update): Update.
4601
4602 2019-08-15 Tom Tromey <tom@tromey.com>
4603
4604 * tui/tui-winsource.h (struct tui_source_window_base)
4605 <maybe_update>: Declare.
4606 * tui/tui-stack.c (tui_show_frame_info): Call maybe_update
4607 method.
4608 * tui/tui-source.h (struct tui_source_window) <maybe_update>:
4609 Declare.
4610 * tui/tui-source.c (tui_source_window::maybe_update): New method.
4611 * tui/tui-disasm.h (struct tui_disasm_window) <maybe_update>:
4612 Declare.
4613 * tui/tui-disasm.c (tui_disasm_window::maybe_update): New method.
4614
4615 2019-08-15 Tom Tromey <tom@tromey.com>
4616
4617 * tui/tui-stack.c (tui_make_status_line): Use string constructor.
4618
4619 2019-08-15 Tom Tromey <tom@tromey.com>
4620
4621 * tui/tui-wingeneral.c: Include tui-stack.h.
4622 * tui/tui-stack.h (MAX_LOCATOR_ELEMENT_LEN)
4623 (struct tui_locator_window): Move from tui-data.h.
4624 * tui/tui-stack.c (_locator, tui_locator_win_info_ptr)
4625 (tui_initialize_static_data): Move from tui-data.c.
4626 * tui/tui-data.h (MAX_LOCATOR_ELEMENT_LEN)
4627 (struct tui_locator_window): Move to tui-stack.c.
4628 * tui/tui-data.c (_locator, tui_locator_win_info_ptr)
4629 (tui_initialize_static_data): Move to tui-stack.c.
4630
4631 2019-08-15 Tom Tromey <tom@tromey.com>
4632
4633 * tui/tui-layout.c (show_source_disasm_command)
4634 (show_source_or_disasm_and_command): Use make_visible method, not
4635 tui_make_window.
4636 * tui/tui-command.h (struct tui_cmd_window) <make_visible>:
4637 Remove.
4638
4639 2019-08-15 Tom Tromey <tom@tromey.com>
4640
4641 * tui/tui-wingeneral.h (tui_make_window): Update.
4642 * tui/tui-wingeneral.c (tui_make_window): Remove "box_it"
4643 parameter.
4644 (tui_gen_win_info::make_visible): Update.
4645 * tui/tui-regs.c (tui_data_window::display_registers_from):
4646 Update.
4647 * tui/tui-layout.c (show_source_disasm_command)
4648 (show_source_or_disasm_and_command): Update.
4649 * tui/tui-data.h (struct tui_gen_win_info) <can_box>: New method.
4650 (enum tui_box): Remove.
4651 (struct tui_win_info) <can_box>: New method.
4652 * tui/tui-command.h (struct tui_cmd_window) <can_box>: New
4653 method.
4654
4655 2019-08-15 Tom de Vries <tdevries@suse.de>
4656
4657 * linux-nat-trad.c: Include gdbarch.h.
4658
4659 2019-08-14 Alan Hayward <alan.hayward@arm.com>
4660
4661 * aarch64-tdep.c (aarch64_analyze_prologue): Allow any valid
4662 register sizes.
4663
4664 2019-08-14 Tom Tromey <tromey@adacore.com>
4665
4666 * darwin-nat.c: Include gdbarch.h.
4667 * darwin-nat-info.c: Include gdbarch.h.
4668
4669 2019-08-13 Tom Tromey <tom@tromey.com>
4670
4671 * tui/tui-data.h (struct tui_gen_win_info) <last_visible_line>:
4672 Remove.
4673 * tui/tui-data.c (tui_initialize_static_data): Update.
4674
4675 2019-08-13 Tom Tromey <tom@tromey.com>
4676
4677 * tui/tui-winsource.h (struct tui_exec_info_window)
4678 <~tui_exec_info_window, maybe_allocate_content, get_content,
4679 m_content>: Remove.
4680 (struct tui_source_window_base) <set_exec_info_content,
4681 show_exec_info_content>: Don't declare.
4682 * tui/tui-winsource.c
4683 (tui_exec_info_window::maybe_allocate_content): Remove.
4684 (tui_source_window_base::update_exec_info): Rename from
4685 set_exec_info_content.
4686 (tui_source_window_base::show_exec_info_content)
4687 (tui_source_window_base::update_exec_info): Remove.
4688
4689 2019-08-13 Tom Tromey <tom@tromey.com>
4690
4691 * tui/tui-winsource.h (tui_clear_exec_info_content): Don't
4692 declare.
4693 * tui/tui-winsource.c (tui_update_source_window_as_is)
4694 (tui_update_source_windows_with_addr, tui_erase_source_content):
4695 Update.
4696 (tui_clear_exec_info_content): Remove.
4697
4698 2019-08-13 Tom Tromey <tom@tromey.com>
4699
4700 * tui/tui-winsource.h (tui_erase_exec_info_content): Don't
4701 declare.
4702 * tui/tui-winsource.c (tui_source_window_base::refresh_all): Don't
4703 call tui_erase_exec_info_content.
4704 (tui_clear_exec_info_content): Rename from
4705 tui_erase_exec_info_content.
4706 (tui_clear_exec_info_content): Delete.
4707
4708 2019-08-13 Tom Tromey <tom@tromey.com>
4709
4710 * tui/tui-winsource.h (struct tui_source_window_base)
4711 <show_exec_info_content>: Declare.
4712 (tui_show_exec_info_content): Don't declare.
4713 * tui/tui-winsource.c
4714 (tui_source_window_base::show_exec_info_content): Rename from
4715 tui_show_exec_info_content.
4716 (tui_source_window_base::update_exec_info): Update.
4717
4718 2019-08-13 Tom Tromey <tom@tromey.com>
4719
4720 * tui/tui-data.h (enum tui_bp_flag, tui_bp_flags, struct tui_source_element)
4721 (TUI_BP_HIT_POS, TUI_BP_BREAK_POS, TUI_EXEC_POS)
4722 (TUI_EXECINFO_SIZE, tui_exec_info_content): Move ...
4723 * tui/tui-winsource.h (enum tui_bp_flag, tui_bp_flags, struct
4724 tui_source_element, TUI_BP_HIT_POS, TUI_BP_BREAK_POS)
4725 (TUI_EXEC_POS, TUI_EXECINFO_SIZE, tui_exec_info_content):
4726 ... here.
4727
4728 2019-08-13 Tom Tromey <tom@tromey.com>
4729
4730 * tui/tui-winsource.h (struct tui_source_window_base)
4731 <update_exec_info>: Declare.
4732 (tui_update_exec_info): Don't declare.
4733 * tui/tui-winsource.c (tui_update_source_window_as_is)
4734 (tui_source_window_base::refresh_all)
4735 (tui_update_all_breakpoint_info): Update.
4736 (tui_source_window_base::update_exec_info): Rename from
4737 tui_update_exec_info.
4738 * tui/tui-stack.c (tui_show_frame_info): Update.
4739
4740 2019-08-13 Tom Tromey <tom@tromey.com>
4741
4742 * tui/tui-winsource.h (struct tui_source_window_base)
4743 <set_exec_info_content>: Declare.
4744 (tui_set_exec_info_content): Don't declare.
4745 * tui/tui-winsource.c
4746 (tui_source_window_base::set_exec_info_content): Rename from
4747 tui_set_exec_info_content.
4748 (tui_update_exec_info): Update.
4749
4750 2019-08-13 Tom Tromey <tom@tromey.com>
4751
4752 * tui/tui-winsource.h (struct tui_source_window_base)
4753 <show_source_content>: Declare.
4754 (tui_show_source_content): Don't declare.
4755 * tui/tui-winsource.c (tui_update_source_window_as_is): Update.
4756 (tui_source_window_base::show_source_content): Rename from
4757 tui_show_source_content.
4758 (tui_source_window_base::refresh_all): Update.
4759 * tui/tui-layout.c (show_source_disasm_command)
4760 (show_source_or_disasm_and_command): Update.
4761
4762 2019-08-13 Tom Tromey <tom@tromey.com>
4763
4764 * tui/tui-winsource.c (tui_erase_source_content)
4765 (tui_show_source_content, tui_source_window_base::refresh_all):
4766 Update.
4767 * tui/tui-wingeneral.h
4768 (tui_check_and_display_highlight_if_needed): Don't declare.
4769 * tui/tui-wingeneral.c
4770 (tui_win_info::check_and_display_highlight_if_needed): Rename from
4771 check_and_display_highlight_if_needed.
4772 * tui/tui-win.c (tui_rehighlight_all)
4773 (tui_win_info::make_visible_with_new_height): Update.
4774 * tui/tui-regs.c (tui_data_window::display_registers_from_line)
4775 (tui_data_window::erase_data_content)
4776 (tui_data_window::display_all_data): Update.
4777 * tui/tui-data.h (struct tui_win_info)
4778 <check_and_display_highlight_if_needed>: Declare.
4779
4780 2019-08-13 Tom Tromey <tom@tromey.com>
4781
4782 * tui/tui-win.c (tui_resize_all): Call
4783 tui_delete_invisible_windows.
4784 * tui/tui-layout.c (show_layout): Call
4785 tui_delete_invisible_windows.
4786 * tui/tui-data.h (tui_delete_invisible_windows): Declare.
4787 * tui/tui-data.c (tui_delete_invisible_windows): New function.
4788
4789 2019-08-13 Tom Tromey <tom@tromey.com>
4790
4791 * tui/tui-disasm.c (tui_show_disassem): Add assertion. Don't call
4792 tui_add_win_to_layout.
4793
4794 2019-08-13 Tom Tromey <tom@tromey.com>
4795
4796 * tui/tui-layout.h (tui_default_win_height): Don't declare.
4797 * tui/tui-layout.c (tui_default_win_height): Now static.
4798
4799 2019-08-13 Tom Tromey <tom@tromey.com>
4800
4801 * tui/tui-layout.c (show_layout): Unify all layout cases into a
4802 single switch.
4803 (show_source_disasm_command, show_source_or_disasm_and_command):
4804 Don't check current layout.
4805
4806 2019-08-13 Tom Tromey <tom@tromey.com>
4807
4808 * tui/tui-wingeneral.c (make_all_visible): Remove.
4809 (tui_make_all_invisible): Simplify.
4810 * tui/tui-layout.c (tui_make_all_invisible): Move from
4811 tui-wingeneral.c; simplify.
4812 (show_layout): Hoist call to tui_make_all_invisible.
4813 (show_data): Don't call tui_make_all_invisible.
4814
4815 2019-08-13 Tom Tromey <tom@tromey.com>
4816
4817 * tui/tui-wingeneral.h (tui_make_all_visible): Don't declare.
4818 * tui/tui-wingeneral.c (tui_make_all_visible): Remove.
4819
4820 2019-08-13 Tom Tromey <tom@tromey.com>
4821
4822 * tui/tui-layout.c (current_layout, tui_current_layout): Move from
4823 tui-data.c.
4824 (show_source_disasm_command, show_data)
4825 (show_source_or_disasm_and_command): Don't use
4826 tui_set_current_layout_to.
4827 * tui/tui-data.h (tui_set_current_layout_to): Don't declare.
4828 * tui/tui-data.c (current_layout, tui_current_layout): Move to
4829 tui-layout.c.
4830 (tui_set_current_layout_to): Remove.
4831
4832 2019-08-13 Tom Tromey <tom@tromey.com>
4833
4834 * tui/tui-layout.c (tui_set_layout): Update.
4835 * tui/tui-data.h (struct tui_layout_def): Remove.
4836 (tui_layout_def): Don't declare.
4837 * tui/tui-data.c (layout_def): Remove.
4838 (tui_layout_def): Remove.
4839
4840 2019-08-13 Tom Tromey <tom@tromey.com>
4841
4842 * tui/tui-winsource.h (struct tui_source_window_base)
4843 <clear_detail>: No longer "override".
4844 * tui/tui-regs.h (struct tui_data_window) <clear_detail>: Remove.
4845 * tui/tui-regs.c (tui_data_window::clear_detail): Remove.
4846 * tui/tui-data.h (struct tui_win_info) <clear_detail>: Remove.
4847 * tui/tui-command.h (struct tui_cmd_window) <clear_detail>:
4848 Remove.
4849 * tui/tui-command.c (tui_cmd_window::clear_detail): Remove.
4850
4851 2019-08-13 Tom Tromey <tromey@adacore.com>
4852
4853 * tracepoint.c: Don't include readline.h or history.h.
4854
4855 2019-08-12 Tom Tromey <tom@tromey.com>
4856
4857 * configure: Rebuild.
4858 * configure.ac: Check for readline 7.
4859 * NEWS: Mention readline 7 requirement.
4860 * README: Update.
4861
4862 2019-08-12 Tom Tromey <tom@tromey.com>
4863
4864 * mingw-hdep.c (gdb_select): Remove readline hack.
4865
4866 2019-08-09 Pedro Franco de Carvalho <pedromfc@linux.ibm.com>
4867
4868 * blockframe.c (find_pc_partial_function): Set *block to nullptr
4869 when the function fails.
4870
4871 2019-08-09 Andreas Arnez <arnez@linux.ibm.com>
4872
4873 * s390-tdep.c (s390_type_align): New function.
4874 (s390_gdbarch_init): Set it as type_align gdbarch method.
4875
4876 2019-08-09 Tom de Vries <tdevries@suse.de>
4877
4878 PR gdb/24591
4879 * dwarf2read.c (dwarf2_fetch_die_loc_sect_off): Adjust pc_high and
4880 pc_low with relocation offset.
4881
4882 2019-08-07 Tom Tromey <tromey@adacore.com>
4883
4884 * stack.c (print_frame_arg, read_frame_local, read_frame_arg)
4885 (print_frame_args): Update.
4886 * python/py-framefilter.c (py_print_single_arg, enumerate_args):
4887 Update.
4888 * mi/mi-cmd-stack.c (list_arg_or_local): Update.
4889 * frame.h (struct frame_arg): Add initializers.
4890 <error>: Now a unique_xmalloc_ptr.
4891
4892 2019-08-07 Alan Hayward <alan.hayward@arm.com>
4893
4894 * NEWS: Expand the Pointer Authentication entry.
4895 * aarch64-tdep.c (aarch64_frame_unmask_address): Rename from this.
4896 (aarch64_frame_unmask_lr): ... to this.
4897 (aarch64_prologue_prev_register, aarch64_dwarf2_prev_register):
4898 Call aarch64_frame_unmask_lr.
4899 * frame.c (struct frame_info): Add "masked" variable.
4900 (frame_set_previous_pc_masked) (frame_get_pc_masked): New functions.
4901 (fprint_frame): Check for masked pc.
4902 * frame.h (frame_set_previous_pc_masked) (frame_get_pc_masked): New
4903 declarations.
4904 * python/py-framefilter.c (py_print_frame): Check for masked pc.
4905 * stack.c (print_frame): Check for masked pc.
4906
4907 2019-08-06 Tom Tromey <tom@tromey.com>
4908
4909 * stabsread.c (patch_block_stabs, read_one_struct_field)
4910 (read_enum_type): Use obstack_strndup.
4911 * rust-exp.y (rust_parser::copy_name): Use obstack_strndup.
4912 * gdb_obstack.h (obstack_strndup): Use obstack_strndup.
4913 * dwarf2read.c (guess_full_die_structure_name)
4914 (anonymous_struct_prefix): Use obstack_strndup.
4915 * dbxread.c (cp_set_block_scope): Use obstack_strndup.
4916 * c-exp.y (yylex): Use obstack_strndup.
4917 * ada-exp.y (write_object_renaming, write_ambiguous_var)
4918 (write_var_or_type): Use obstack_strndup.
4919
4920 2019-08-06 Tom Tromey <tom@tromey.com>
4921
4922 * symfile.c (reread_symbols): Use obstack_strdup.
4923 * stabsread.c (read_type): Use obstack_strdup.
4924 * gdb_obstack.h (obstack_strdup): New overload.
4925 * dwarf2read.c (dwarf2_compute_name, create_dwo_unit_in_dwp_v1)
4926 (create_dwo_unit_in_dwp_v2, build_error_marker_type)
4927 (dwarf2_canonicalize_name): Use obstack_strdup.
4928 * dbxread.c (read_dbx_symtab): Use obstack_strdup.
4929 * cp-support.c (inspect_type, replace_typedefs_qualified_name):
4930 Use obstack_strdup.
4931
4932 2019-08-06 Tom Tromey <tom@tromey.com>
4933
4934 * gdb_obstack.h (obstack_strdup): Define.
4935 * gdb_obstack.c (obstack_strdup): Don't define.
4936
4937 2019-08-06 Tom Tromey <tom@tromey.com>
4938
4939 * xcoffread.c (SYMNAME_ALLOC, process_xcoff_symbol): Use
4940 obstack_strdup.
4941 * typeprint.c (typedef_hash_table::find_global_typedef): Use
4942 obstack_strdup.
4943 * symfile.c (allocate_compunit_symtab): Use obstack_strdup.
4944 * stabsread.c (common_block_start): Use obstack_strdup.
4945 * objfiles.c (set_objfile_main_name, objfile): Use
4946 obstack_strdup.
4947 * namespace.c (add_using_directive): Use obstack_strdup.
4948 * mdebugread.c (parse_symbol, parse_type): Use obstack_strdup.
4949 * jit.c (finalize_symtab): Use obstack_strdup.
4950 * dwarf2read.c (fixup_go_packaging, dwarf2_physname)
4951 (guess_partial_die_structure_name, partial_die_info::fixup)
4952 (dwarf2_name): Use obstack_strdup.
4953 * coffread.c (coff_read_struct_type, coff_read_enum_type): Use
4954 obstack_strdup.
4955 * c-exp.y (scan_macro_expansion): Use obstack_strdup.
4956 * buildsym.c (buildsym_compunit::end_symtab_with_blockvector): Use
4957 obstack_strdup.
4958 * ada-lang.c (ada_decode_symbol): Use obstack_strdup.
4959
4960 2019-08-07 Philippe Waroquiers <philippe.waroquiers@skynet.be>
4961
4962 * unittests/help-doc-selftests.c: New file.
4963 * Makefile.in: Add the new file.
4964
4965 2019-08-07 Philippe Waroquiers <philippe.waroquiers@skynet.be>
4966
4967 * cli/cli-decode.h (print_doc_line): Add for_value_prefix argument.
4968 * cli/cli-decode.c (print_doc_line): Likewise. It now prints
4969 the full first line, except when FOR_VALUE_PREFIX. In this case,
4970 the trailing '.' is not output, and the first character is uppercased.
4971 (print_help_for_command): Update call to print_doc_line.
4972 (print_doc_of_command): Likewise.
4973 * cli/cli-setshow.c (deprecated_show_value_hack): Likewise.
4974 * cli/cli-option.c (append_indented_doc): Do not append newline.
4975 (build_help_option): Append newline after first appended_indented_doc
4976 only if a second call is done.
4977 (build_help): Append 2 new lines before each option, except the first
4978 one.
4979 * compile/compile.c (_initialize_compile): Add new lines after
4980 %OPTIONS%, when not at the end of the help.
4981 Change help doc or code
4982 producing the help doc to respect the invariants.
4983 * maint-test-options.c (_initialize_maint_test_options): Likewise.
4984 Also removed the new line after 'Options:', as all other commands
4985 do not put an empty line between 'Options:' and the first option.
4986 * printcmd.c (_initialize_printcmd): Likewise.
4987 * stack.c (_initialize_stack): Likewise.
4988 * interps.c (interpreter_exec_cmd): Fix "Usage:" line that was
4989 incorrectly telling COMMAND is optional.
4990 * ada-lang.c (_initialize_ada_language): Change help doc or code
4991 producing the help doc to respect the invariants.
4992 * ada-tasks.c (_initialize_ada_tasks): Likewise.
4993 * breakpoint.c (_initialize_breakpoint): Likewise.
4994 * cli/cli-cmds.c (_initialize_cli_cmds): Likewise.
4995 * cli/cli-logging.c (_initialize_cli_logging): Likewise.
4996 * cli/cli-setshow.c (_initialize_cli_setshow): Likewise.
4997 * cli/cli-style.c (cli_style_option::add_setshow_commands,
4998 _initialize_cli_style): Likewise.
4999 * corelow.c (core_target_info): Likewise.
5000 * dwarf-index-cache.c (_initialize_index_cache): Likewise.
5001 * dwarf2read.c (_initialize_dwarf2_read): Likewise.
5002 * filesystem.c (_initialize_filesystem): Likewise.
5003 * frame.c (_initialize_frame): Likewise.
5004 * gnu-nat.c (add_task_commands): Likewise.
5005 * infcall.c (_initialize_infcall): Likewise.
5006 * infcmd.c (_initialize_infcmd): Likewise.
5007 * interps.c (_initialize_interpreter): Likewise.
5008 * language.c (_initialize_language): Likewise.
5009 * linux-fork.c (_initialize_linux_fork): Likewise.
5010 * maint-test-settings.c (_initialize_maint_test_settings): Likewise.
5011 * maint.c (_initialize_maint_cmds): Likewise.
5012 * memattr.c (_initialize_mem): Likewise.
5013 * printcmd.c (_initialize_printcmd): Likewise.
5014 * python/lib/gdb/function/strfns.py (_MemEq, _StrLen, _StrEq,
5015 _RegEx): Likewise.
5016 * ravenscar-thread.c (_initialize_ravenscar): Likewise.
5017 * record-btrace.c (_initialize_record_btrace): Likewise.
5018 * record-full.c (_initialize_record_full): Likewise.
5019 * record.c (_initialize_record): Likewise.
5020 * regcache-dump.c (_initialize_regcache_dump): Likewise.
5021 * regcache.c (_initialize_regcache): Likewise.
5022 * remote.c (add_packet_config_cmd, init_remote_threadtests,
5023 _initialize_remote): Likewise.
5024 * ser-tcp.c (_initialize_ser_tcp): Likewise.
5025 * serial.c (_initialize_serial): Likewise.
5026 * skip.c (_initialize_step_skip): Likewise.
5027 * source.c (_initialize_source): Likewise.
5028 * stack.c (_initialize_stack): Likewise.
5029 * symfile.c (_initialize_symfile): Likewise.
5030 * symtab.c (_initialize_symtab): Likewise.
5031 * target-descriptions.c (_initialize_target_descriptions): Likewise.
5032 * top.c (init_main): Likewise.
5033 * tracefile-tfile.c (tfile_target_info): Likewise.
5034 * tracepoint.c (_initialize_tracepoint): Likewise.
5035 * tui/tui-win.c (_initialize_tui_win): Likewise.
5036 * utils.c (add_internal_problem_command): Likewise.
5037 * valprint.c (value_print_option_defs): Likewise.
5038
5039 2019-08-06 Frank Ch. Eigler <fche@redhat.com>
5040
5041 PR build/24886
5042 * configure.ac: Drop enable-libmcheck support.
5043 * configure, config.in: Rebuild.
5044 * libmcheck.m4: Remove.
5045 * acinclude.m4: Don't include it.
5046 * Makefile.in: Don't distribute it.
5047 * top.c (print_gdb_configuration): Don't mention it.
5048
5049 2019-08-06 Tom Tromey <tom@tromey.com>
5050
5051 * utils.c (set_output_style): Sometimes pass stream to
5052 emit_style_escape.
5053 * ui-out.h (class ui_out) <can_emit_style_escape>: Declare.
5054 * record-btrace.c (btrace_insn_history): Update.
5055 * mi/mi-out.h (class mi_ui_out) <can_emit_style_escape>: New
5056 method.
5057 * disasm.h (gdb_pretty_print_disassembler): Add uiout parameter.
5058 Update initializers.
5059 <m_uiout>: New field.
5060 <m_di>: Move lower.
5061 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn):
5062 Remove "uiout" parameter.
5063 (dump_insns): Update.
5064 * cli-out.h (class cli_ui_out) <can_emit_style_escape>: Declare.
5065 * cli-out.c (cli_ui_out::can_emit_style_escape): New method.
5066
5067 2019-08-06 Christian Biesinger <cbiesinger@google.com>
5068
5069 * symtab.c (symbol_cache_lookup): Change int to enum block_enum.
5070 (error_in_psymtab_expansion): Likewise.
5071 (lookup_symbol_via_quick_fns): Likewise.
5072 (basic_lookup_transparent_type_quick): Likewise.
5073 (basic_lookup_transparent_type_1): Likewise.
5074
5075 2019-08-06 Tom Tromey <tromey@adacore.com>
5076
5077 * source.c (last_source_error): Now bool.
5078 (print_source_lines_base): Make "noprint" bool. Only open
5079 source file when last_source_visited changes.
5080
5081 2019-08-06 Tom Tromey <tromey@adacore.com>
5082
5083 * annotate.c (annotate_source_line): Use g_source_cache.
5084 * source-cache.c (source_cache::get_plain_source_lines): Change
5085 parameters. Populate m_offset_cache.
5086 (source_cache::ensure): New method.
5087 (source_cache::get_line_charpos): New method.
5088 (extract_lines): Move lower. Change parameters.
5089 (source_cache::get_source_lines): Move lower.
5090 * source-cache.h (class source_cache): Update comment.
5091 <get_line_charpos>: New method.
5092 <get_source_lines>: Update comment.
5093 <clear>: Clear m_offset_cache.
5094 <get_plain_source_lines>: Change parameters.
5095 <ensure>: New method
5096 <m_offset_cache>: New member.
5097 * source.c (forget_cached_source_info_for_objfile): Update.
5098 (info_source_command): Use g_source_cache.
5099 (find_source_lines, open_source_file_with_line_charpos): Remove.
5100 (print_source_lines_base, search_command_helper): Use g_source_cache.
5101 * source.h (open_source_file_with_line_charpos): Don't declare.
5102 * symtab.h (struct symtab) <nlines, line_charpos>: Remove.
5103 * tui/tui-source.c (tui_source_window::do_scroll_vertical):
5104 Use g_source_cache.
5105
5106 2019-08-06 Tom Tromey <tromey@adacore.com>
5107
5108 * source-cache.c (source_cache::get_plain_source_lines):
5109 Remove "first_line" and "last_line" parameters.
5110 (source_cache::get_source_lines): Cache plain text.
5111 * source-cache.h (class source_cache)
5112 <get_plain_source_lines>: Update.
5113
5114 2019-08-06 Tom Tromey <tromey@adacore.com>
5115
5116 * source-cache.c (extract_lines): No longer a method.
5117 Changed type of parameter. Include final newline.
5118 (selftests::extract_lines_test): New function.
5119 (_initialize_source_cache): Likewise.
5120 * source-cache.h (class source_cache)
5121 <extract_lines>: Don't declare.
5122
5123 2019-08-06 Tom Tromey <tromey@adacore.com>
5124
5125 * breakpoint.c (init_breakpoint_sal): Update.
5126 (breakpoint): Update.
5127 * breakpoint.h (struct breakpoint) <filter>: Now a
5128 unique_xmalloc_ptr.
5129
5130 2019-08-05 Christian Biesinger <cbiesinger@google.com>
5131
5132 * NEWS: Mention dictionary access on blocks.
5133 * python/py-block.c (blpy_getitem): New function.
5134 (block_object_as_mapping): New struct.
5135 (block_object_type): Use new struct for tp_as_mapping field.
5136
5137 2019-08-05 Christian Biesinger <cbiesinger@google.com>
5138
5139 * objfiles.h (objfile): Add a comment describing partial symbols.
5140
5141 2019-08-05 Tom Tromey <tromey@adacore.com>
5142
5143 * compile/compile.c (_initialize_compile): Use _(), not N_().
5144 * thread.c (_initialize_thread): Use _(), not N_().
5145 * stack.c (_initialize_stack): Use _(), not N_().
5146 * printcmd.c (_initialize_printcmd): Use _(), not N_().
5147
5148 2019-08-04 Simon Marchi <simon.marchi@polymtl.ca>
5149
5150 * dwarf2read.c (struct dw2_symtab_iterator):
5151 <want_specific_block>: Remove.
5152 <block_index>: Change type to gdb::optional.
5153 (dw2_symtab_iter_init): Remove WANT_SPECIFIC_BLOCK parameter,
5154 change type of BLOCK_INDEX parameter to gdb::optional.
5155 (dw2_symtab_iter_next): Re-write in function of gdb::optional.
5156 (dw2_lookup_symbol): Don't pass argument for
5157 WANT_SPECIFIC_BLOCK.
5158 (dw2_expand_symtabs_for_function): Don't pass argument for
5159 WANT_SPECIFIC_BLOCK, pass empty optional for BLOCK_INDEX.
5160 (class dw2_debug_names_iterator)
5161 <dw2_debug_names_iterator>: Remove WANT_SPECIFIC_BLOCK
5162 parameter, change BLOCK_INDEX type to gdb::optional.
5163 <m_want_specific_block>: Remove.
5164 <m_block_index>: Change type to gdb::optional.
5165 (dw2_debug_names_iterator::next): Change type of IS_STATIC to
5166 gdb::optional. Re-write in function of gdb::optional.
5167 (dw2_debug_names_lookup_symbol): Don't pass argument for
5168 WANT_SPECIFIC_BLOCK.
5169 (dw2_debug_names_expand_symtabs_for_function): Don't pass
5170 argument for WANT_SPECIFIC_BLOCK, pass empty optional for
5171 BLOCK_INDEX.
5172
5173 2019-08-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
5174
5175 * NEWS: Mention changes to "info sources" command.
5176
5177 2019-08-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
5178
5179 * symtab.c (filename_partial_match_opts): New struct type.
5180 (struct output_source_filename_data): New members
5181 regexp, c_regexp, partial_match.
5182 (output_source_filename): Use new members to decide to print file.
5183 (info_sources_option_defs): New variable.
5184 (make_info_sources_options_def_group, print_info_sources_header,
5185 info_sources_command_completer):
5186 New functions.
5187 (info_sources_command): Read new optional arguments.
5188 (_initialize_symtab): Update info sources help.
5189
5190 2019-08-02 Alexandre Oliva <oliva@adacore.com>
5191
5192 * ada-lang.c (exception_support_info_v0): Renamed from...
5193 (default_exception_support_info): ... this. Create new
5194 definition for v1.
5195 (ada_has_this_exception_support): Look up catch_handlers_sym.
5196 (ada_exception_support_info_sniffer): Try v0 after default.
5197
5198 2019-08-01 Tom Tromey <tromey@adacore.com>
5199
5200 * ia64-libunwind-tdep.h (struct libunwind_descr): Include
5201 gdbarch.h.
5202
5203 2019-08-01 Christian Biesinger <cbiesinger@google.com>
5204
5205 * s12z-tdep.c: Fix include path for s12z-opc.h.
5206
5207 2019-08-01 Alan Hayward <alan.hayward@arm.com>
5208
5209 * NEWS: Require GNU make 3.82.
5210
5211 2019-07-16 Tom Tromey <tom@tromey.com>
5212
5213 * tui/tui-wingeneral.h (tui_copy_win, tui_box_win): Don't
5214 declare.
5215
5216 2019-07-30 Tom Tromey <tromey@adacore.com>
5217
5218 * block.c (contained_in): Remove BLOCK_FUNCTION check.
5219
5220 2019-07-30 Kevin Buettner <kevinb@redhat.com>
5221
5222 * printcmd.c (print_address_symbolic): Print negative offsets.
5223 (build_address_symbolic): Force signed arithmetic when computing
5224 offset.
5225
5226 2019-07-30 Christian Biesinger <cbiesinger@google.com>
5227
5228 PR/24474: Add a function to lookup static variables.
5229 * NEWS: Mention this new function.
5230 * python/py-symbol.c (gdbpy_lookup_static_symbol): New function.
5231 * python/python-internal.h (gdbpy_lookup_static_symbol): New function.
5232 * python/python.c (python_GdbMethods): Add new function.
5233
5234 2019-07-29 Christian Biesinger <cbiesinger@google.com>
5235
5236 * NEWS: Mention new functions Objfile.lookup_{global,static}_symbol.
5237 * python/py-objfile.c (objfpy_lookup_global_symbol): New function.
5238 (objfpy_lookup_static_symbol): New function.
5239 (objfile_object_methods): Add new functions.
5240
5241 2019-07-29 Philippe Waroquiers <philippe.waroquiers@skynet.be>
5242
5243 * NEWS: Mention 'set|show print frame-info'. Mention new
5244 'presence' value for 'frame-arguments'. Mention new '-frame-info'
5245 backtrace argument. Mention that python frame filtering code
5246 is now consistent with what 'backtrace' command prints.
5247
5248 2019-07-29 Philippe Waroquiers <philippe.waroquiers@skynet.be>
5249
5250 * frame.h (enum print_what): New value 'SHORT_LOCATION', update
5251 comments.
5252 (print_frame_info_auto, print_frame_info_source_line,
5253 print_frame_info_location, print_frame_info_source_and_location,
5254 print_frame_info_location_and_address, print_frame_info_short_location):
5255 New declarations.
5256 (struct frame_print_options): New member print_frame_info.
5257 * extension.h (enum ext_lang_frame_args): New value CLI_PRESENCE.
5258 * stack.h (get_user_print_what_frame_info): New declaration.
5259 (frame_show_address): New declaration.
5260 * stack.c (print_frame_arguments_choices): New value 'presence'.
5261 (print_frame_info_auto, print_frame_info_source_line,
5262 print_frame_info_location, print_frame_info_source_and_location,
5263 print_frame_info_location_and_address, print_frame_info_short_location,
5264 print_frame_info_choices, print_frame_info_print_what): New definitions.
5265 (print_frame_args): Only print dots for args if print frame-arguments
5266 is 'presence'.
5267 (frame_print_option_defs): New element for "frame-info".
5268 (get_user_print_what_frame_info): New function.
5269 (frame_show_address): Make non static. Move comment to stack.h.
5270 (print_frame_info_to_print_what): New function.
5271 (print_frame_info): Update comment. Use fp_opts.print_frame_info
5272 to decide what to print.
5273 (backtrace_command_1): Handle the new print_frame_arguments_presence
5274 value.
5275 (_initialize_stack): Call add_setshow_enum_cmd for frame-info.
5276 * python/py-framefilter.c (py_print_args): Handle CLI_PRESENCE.
5277 (py_print_frame): In non-mi mode, use LOCATION as default for
5278 print_what, similarly to frame information printed directly by
5279 backtrace command. Handle frame-info user option in non MI mode.
5280
5281 2019-07-27 Kevin Buettner <kevinb@redhat.com>
5282
5283 * linux-thread-db.c (thread_db_target::thread_handle_to_thread_info):
5284 Add case for debugging 32-bit target on 64-bit host. Revise
5285 comment.
5286
5287 2019-07-27 Kevin Buettner <kevinb@redhat.com>
5288
5289 * infrun.c (fill_in_stop_func): Use find_pc_partial_function
5290 instead of find_function_entry_range_from_pc.
5291
5292 2019-07-27 Kevin Buettner <kevinb@redhat.com>
5293
5294 * stack.c (find_frame_funname): Remove code which preferred
5295 minsym over symtab sym in "certain pathological cases".
5296
5297 * valprint.h (build_address_symbolic): Add "prefer_sym_over_minsym"
5298 parameter. Change type of "do_demangle" to bool.
5299 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn):
5300 Pass suitable "prefer_sym_over_minsym" flag to
5301 build_address_symbolic(). Don't output "+" for negative offsets.
5302 * printcmd.c (print_address_symbolic): Update invocation of
5303 build_address_symbolic to include a "prefer_sym_over_minsym"
5304 flag.
5305 (build_address_symbolic): Add "prefer_sym_over_minsym" parameter.
5306 Restrict cases in which use of minimal symbol is preferred to that
5307 of a found symbol. Update comments.
5308
5309 * dwarf2-frame.c (dwarf2_frame_cache): Don't decode FDE instructions
5310 for entry pc when entry pc is out of range for that FDE.
5311
5312 2019-07-26 Brian Callahan <bcallah@openbsd.org>
5313
5314 PR gdb/24839:
5315 * gdb/obsd-nat.c (obsd_nat_target::pid_to_str): Fix typo in return
5316 type.
5317
5318 2019-07-25 Christian Biesinger <cbiesinger@google.com>
5319
5320 * python/py-objfile.c (add_separate_debug_file): Fix comment about
5321 this function's Python signature.
5322
5323
5324 2019-07-24 Christian Biesinger <cbiesinger@google.com>
5325
5326 * compile/compile-object-load.c (compile_object_load): Pass GLOBAL_SCOPE.
5327 * solib-spu.c (spu_lookup_lib_symbol): Pass GLOBAL_SCOPE.
5328 * solib-svr4.c (elf_lookup_lib_symbol): Pass GLOBAL_SCOPE.
5329 * symtab.c (lookup_global_symbol_from_objfile): Add a scope parameter.
5330 * symtab.h (lookup_global_symbol_from_objfile): Likewise.
5331
5332
5333 2019-07-24 Yoshinori Sato <ysato@users.sourceforge.jp>
5334
5335 * h8300-tdep.c (h8300_register_name_common): New.
5336 h8300_register_name): Use h8300_register_name_common.
5337 (h8300s_register_name): Likewise.
5338 (h8300sx_register_name): Likewise.
5339 (h8300h_register_nam): New.
5340 (h8300_gdbarch_init): Use h8300h_register_name in h8300h machine.
5341
5342
5343 2019-07-23 Srinath Parvathaneni <srinath.parvathaneni@arm.com>
5344
5345 * arm-tdep.c (arm_skip_cmse_entry): New function.
5346 (arm_is_sgstubs_section): New function.
5347 (arm_skip_stub): Add call to arm_skip_cmse_entry function.
5348
5349 2019-07-22 Tom Tromey <tom@tromey.com>
5350
5351 * tui/tui-win.c (tui_win_info::make_invisible_and_set_new_height):
5352 Don't self-assign.
5353
5354 2019-07-22 Andrew Burgess <andrew.burgess@embecosm.com>
5355
5356 * c-typeprint.c (c_print_typedef): Pass -1 instead of 0 to
5357 type_print.
5358
5359 2019-07-22 Andrew Burgess <andrew.burgess@embecosm.com>
5360
5361 * symtab.c (search_symbols): Adjust msymbol matching type arrays
5362 so that GDB doesn't match any msymbols when searching in the
5363 TYPES_DOMAIN.
5364 (print_symbol_info): Print using typedef_print or type_print based
5365 on the type of the symbol. Add updated FIXME comment moved from...
5366 (_initialize_symtab): ... move and update FIXME comment to above.
5367
5368 2019-07-22 Andrew Burgess <andrew.burgess@embecosm.com>
5369
5370 * NEWS: Mention adding -q option to "info types".
5371 * symtab.c (struct info_types_options): New struct.
5372 (info_types_options_defs): New variable.
5373 (make_info_types_options_def_group): New function.
5374 (info_types_command): Use gdb::option framework to parse options.
5375 (info_types_command_completer): New function.
5376 (_initialize_symtab): Extend the help text on "info types" and
5377 register command completer.
5378
5379 2019-07-21 Christian Biesinger <cbiesinger@google.com>
5380
5381 * symtab.c (lookup_symbol_in_objfile_symtabs): Change int to block_enum.
5382 (lookup_symbol_in_objfile): Change int to block_enum and add a
5383 gdb_assert to make sure block_index is GLOBAL_BLOCK or STATIC_BLOCK.
5384
5385 2019-07-20 Christian Biesinger <cbiesinger@google.com>
5386
5387 * MAINTAINERS (Write After Approval): Add self.
5388
5389 2019-07-19 Andrew Burgess <andrew.burgess@embecosm.com>
5390
5391 * riscv-tdep.c (riscv_push_dummy_code): Write a 4-byte nop
5392 instruction to the dummy code region.
5393
5394 2019-07-19 Tom Tromey <tromey@adacore.com>
5395
5396 * contrib/ari/gdb_ari.sh: Mention C++11, not ISO C 90.
5397 (ARGSUSED, PARAMS, __func__): Remove rules.
5398
5399 2019-07-19 Alan Hayward <alan.hayward@arm.com>
5400
5401 * arm-tdep.c (_initialize_arm_tdep): Remove xml tests.
5402 * features/arm/arm-with-iwmmxt.c: Remove.
5403 * features/arm/arm-with-iwmmxt.xml: Remove.
5404 * features/arm/arm-with-m-fpa-layout.c: Remove.
5405 * features/arm/arm-with-m-fpa-layout.xml: Remove.
5406 * features/arm/arm-with-m-vfp-d16.c: Remove.
5407 * features/arm/arm-with-m-vfp-d16.xml: Remove.
5408 * features/arm/arm-with-m.c: Remove.
5409 * features/arm/arm-with-m.xml: Remove.
5410 * features/arm/arm-with-neon.c: Remove.
5411 * features/arm/arm-with-neon.xml: Remove.
5412 * features/arm/arm-with-vfpv2.c: Remove.
5413 * features/arm/arm-with-vfpv2.xml: Remove.
5414 * features/arm/arm-with-vfpv3.c: Remove.
5415 * features/arm/arm-with-vfpv3.xml: Remove.
5416
5417 2019-07-19 Alan Hayward <alan.hayward@arm.com>
5418
5419 * arm-tdep.c (_initialize_arm_tdep): Add xml regression tests.
5420
5421 2019-07-19 Alan Hayward <alan.hayward@arm.com>
5422
5423 * arch/aarch32.c (aarch32_create_target_description): Create
5424 target descriptions using features.
5425 * arch/arm.c (arm_create_target_description)
5426 (arm_create_mprofile_target_description): Likewise.
5427 * arm-tdep.c (_initialize_arm_tdep): Remove tdesc init calls.
5428
5429 2019-07-19 Alan Hayward <alan.hayward@arm.com>
5430
5431 * Makefile.in: Add new files.
5432 * aarch32-tdep.c: New file.
5433 * aarch32-tdep.h: New file.
5434 * aarch64-linux-nat.c (aarch64_linux_nat_target::read_description):
5435 Call aarch32_read_description.
5436 * arch/aarch32.c: New file.
5437 * arch/aarch32.h: New file.
5438 * arch/arm.c (arm_create_target_description)
5439 (arm_create_mprofile_target_description): New function.
5440 * arch/arm.h (arm_fp_type, arm_m_profile_type): New enum.
5441 (arm_create_target_description)
5442 (arm_create_mprofile_target_description): New declaration.
5443 * arm-fbsd-tdep.c (arm_fbsd_read_description_auxv): Call
5444 read_description functions.
5445 * arm-linux-nat.c (arm_linux_nat_target::read_description):
5446 Likewise.
5447 * arm-linux-tdep.c (arm_linux_core_read_description): Likewise.
5448 * arm-tdep.c (tdesc_arm_list): New variable.
5449 (arm_register_g_packet_guesses): Call create description functions.
5450 (arm_read_description) (arm_read_mprofile_description): New
5451 function.
5452 * arm-tdep.h (arm_read_description)
5453 (arm_read_mprofile_description): Add declaration.
5454 * configure.tgt: Add new files.
5455
5456 2019-07-18 Guillaume LABARTHE <guillaume.labarthe@gmail.com>
5457
5458 * top.c (new_ui_command): Open specified terminal just once.
5459
5460 2019-07-18 Tom Tromey <tromey@adacore.com>
5461
5462 * symtab.c (main_name): Constify return type.
5463 * symfile.c (set_initial_language): Update.
5464 * symtab.h (main_name): Constify return type.
5465
5466 2019-07-17 Tom Tromey <tom@tromey.com>
5467
5468 * tui/tui-winsource.c (tui_update_source_window)
5469 (tui_update_source_window_as_is)
5470 (tui_update_source_windows_with_line): Remove return.
5471 * tui/tui-disasm.c (tui_show_disassem)
5472 (tui_show_disassem_and_update_source): Remove return.
5473 * tui/tui.c (tui_reset): Remove return.
5474 * tui/tui-wingeneral.c
5475 (tui_check_and_display_highlight_if_needed): Remove return.
5476
5477 2019-07-17 Tom Tromey <tom@tromey.com>
5478
5479 * tui/tui-win.c (parse_scrolling_args): Throw separate errors.
5480
5481 2019-07-17 Tom Tromey <tom@tromey.com>
5482
5483 * tui/tui-winsource.h (struct tui_exec_info_window)
5484 (struct tui_source_window_base): Move from tui-data.h.
5485 * tui/tui-winsource.c: Move many method definitions from
5486 elsewhere. Remove "structuring" comments.
5487 * tui/tui-wingeneral.c (tui_source_window_base::make_visible)
5488 (tui_source_window_base::refresh_window): Move to
5489 tui-winsource.c.
5490 * tui/tui-win.c (tui_source_window_base::refresh_all)
5491 (tui_source_window_base::update_tab_width)
5492 (tui_source_window_base::set_new_height)
5493 (tui_source_window_base::do_make_visible_with_new_height): Move to
5494 tui-winsource.c.
5495 * tui/tui-source.h: Update.
5496 * tui/tui-source.c (tui_source_window_base::reset): Move to
5497 tui-winsource.c.
5498 * tui/tui-disasm.h: Update.
5499 * tui/tui-data.h (struct tui_exec_info_window): Move to
5500 tui-winsource.h.
5501 (struct tui_source_window_base): Likewise.
5502 * tui/tui-data.c (tui_source_window_base::clear_detail)
5503 (tui_source_window_base, ~tui_source_window_base): Move to
5504 tui-winsource.c.
5505
5506 2019-07-17 Tom Tromey <tom@tromey.com>
5507
5508 * tui/tui-win.c (tui_resize_all)
5509 (tui_source_window_base::update_tab_width)
5510 (tui_adjust_win_heights): Update.
5511 (tui_win_info::make_invisible_and_set_new_height): Rename from
5512 make_invisible_and_set_new_height.
5513 * tui/tui-data.h (struct tui_win_info)
5514 <make_invisible_and_set_new_height>: New method.
5515
5516 2019-07-17 Tom Tromey <tom@tromey.com>
5517
5518 * tui/tui.c: Update.
5519 * tui/tui-source.h (struct tui_source_window): Move from
5520 tui-data.h.
5521 * tui/tui-layout.c: Update.
5522 * tui/tui-disasm.c: Update.
5523 * tui/tui-data.h (struct tui_source_window): Move to
5524 tui-source.h.
5525
5526 2019-07-17 Tom Tromey <tom@tromey.com>
5527
5528 * tui/tui-disasm.h (struct tui_disasm_window): Move from
5529 tui-data.h.
5530 * tui/tui-data.h (struct tui_disasm_window): Move to
5531 tui-disasm.h.
5532
5533 2019-07-17 Tom Tromey <tom@tromey.com>
5534
5535 * tui/tui-regs.h (struct tui_data_item_window): Move from
5536 tui-data.h.
5537 * tui/tui-regs.c (tui_data_item_window): Move from tui-data.c.
5538 * tui/tui-data.h (struct tui_data_item_window): Move to
5539 tui-regs.h.
5540 * tui/tui-data.c (~tui_data_item_window): Move to tui-regs.c.
5541
5542 2019-07-17 Tom Tromey <tom@tromey.com>
5543
5544 * tui/tui.c: Update.
5545 * tui/tui-win.c (tui_cmd_window::do_make_visible_with_new_height)
5546 (tui_cmd_window::max_height): Move to tui-command.c.
5547 * tui/tui-layout.c: Update.
5548 * tui/tui-data.h (struct tui_cmd_window): Move to tui-command.h.
5549 * tui/tui-data.c (tui_cmd_window::clear_detail): Move to
5550 tui-command.c.
5551 * tui/tui-command.h (struct tui_cmd_window): Move from
5552 tui-data.h.
5553 * tui/tui-command.c: Remove "structuring" comments.
5554 (tui_cmd_window::clear_detail)
5555 (tui_cmd_window::do_make_visible_with_new_height)
5556 (tui_cmd_window::max_height): Move from elsewhere.
5557
5558 2019-07-17 Tom Tromey <tom@tromey.com>
5559
5560 * tui/tui-io.c (tui_dispatch_ctrl_char): Move from tui-command.c.
5561 Now static.
5562 * tui/tui-command.h (tui_dispatch_ctrl_char): Don't declare.
5563 * tui/tui-command.c (tui_dispatch_ctrl_char): Move to tui-io.c.
5564
5565 2019-07-17 Tom Tromey <tom@tromey.com>
5566
5567 * tui/tui.c: Update.
5568 * tui/tui-wingeneral.c (tui_data_window::refresh_window): Move to
5569 tui-regs.c.
5570 * tui/tui-windata.h: Remove file.
5571 * tui/tui-windata.c: Remove file.
5572 * tui/tui-win.c (tui_data_window::set_new_height)
5573 (tui_data_window::do_make_visible_with_new_height): Move to
5574 tui-regs.c.
5575 * tui/tui-regs.h (struct tui_data_window): Move from tui-data.h.
5576 * tui/tui-regs.c: Remove "structuring" comments.
5577 (tui_data_window::first_data_item_displayed)
5578 (tui_data_window::delete_data_content_windows)
5579 (tui_data_window::erase_data_content)
5580 (tui_data_window::display_all_data)
5581 (tui_data_window::refresh_all)
5582 (tui_data_window::do_scroll_vertical)
5583 (tui_data_window::clear_detail, tui_data_window::set_new_height)
5584 (tui_data_window::do_make_visible_with_new_height)
5585 (tui_data_window::refresh_window): Move from elsewhere.
5586 (_initialize_tui_regs): Move to end of file.
5587 * tui/tui-layout.c: Update.
5588 * tui/tui-hooks.c: Update.
5589 * tui/tui-data.h (struct tui_data_window): Move to tui-regs.h.
5590 * tui/tui-data.c (tui_data_window::clear_detail): Move to
5591 tui-regs.c.
5592 * Makefile.in (SUBDIR_TUI_SRCS): Remove tui-windata.c.
5593
5594 2019-07-17 Tom Tromey <tom@tromey.com>
5595
5596 * tui/tui-io.c (tui_puts_internal): Call wrefresh if newline is
5597 seen.
5598
5599 2019-07-17 Tom Tromey <tom@tromey.com>
5600
5601 * tui/tui-win.c (tui_source_window_base::set_new_height)
5602 (tui_source_window_base::do_make_visible_with_new_height): Use
5603 m_has_locator field directly.
5604 * tui/tui-data.h (struct tui_win_info) <has_locator>: Remove
5605 method.
5606 (struct tui_source_window_base) <has_locator>: Likewise.
5607
5608 2019-07-17 Tom Tromey <tom@tromey.com>
5609
5610 * tui/tui-wingeneral.h (tui_make_visible, tui_make_invisible):
5611 Don't declare.
5612 * tui/tui-wingeneral.c (tui_make_visible, tui_make_invisible):
5613 Remove.
5614 * tui/tui-win.c (tui_source_window_base::set_new_height)
5615 (tui_source_window_base::set_new_height)
5616 (make_invisible_and_set_new_height)
5617 (tui_source_window_base::do_make_visible_with_new_height)
5618 (tui_source_window_base::do_make_visible_with_new_height):
5619 Update.
5620 * tui/tui-layout.c (show_source_disasm_command, show_data)
5621 (show_source_or_disasm_and_command): Update.
5622 * tui/tui-layout.c (show_layout): Update.
5623
5624 2019-07-17 Tom Tromey <tom@tromey.com>
5625
5626 * tui/tui-layout.c (make_data_window): Remove.
5627 (show_data): Unify creation and re-initialization cases.
5628
5629 2019-07-17 Tom Tromey <tom@tromey.com>
5630
5631 * tui/tui-layout.c (make_source_window, make_disasm_window):
5632 Remove.
5633 (show_data): Unify creation and re-initialization cases.
5634
5635 2019-07-17 Tom Tromey <tom@tromey.com>
5636
5637 * tui/tui-layout.c (make_command_window): Remove.
5638 (show_source_disasm_command, show_source_or_disasm_and_command):
5639 Unify creation and re-initialization cases.
5640
5641 2019-07-17 Tom Tromey <tom@tromey.com>
5642
5643 * tui/tui-layout.c (show_source_or_disasm_and_command): Unify
5644 creation and re-initialization cases.
5645
5646 2019-07-17 Tom Tromey <tom@tromey.com>
5647
5648 * tui/tui-regs.c (tui_get_register): Return void.
5649
5650 2019-07-17 Tom Tromey <tom@tromey.com>
5651
5652 * tui/tui-wingeneral.c (tui_gen_win_info::make_visible):
5653 Simplify.
5654
5655 2019-07-17 Tom Tromey <tom@tromey.com>
5656
5657 * tui/tui-layout.c (show_source_disasm_command): Simplify window
5658 resetting.
5659
5660 2019-07-17 Tom Tromey <tom@tromey.com>
5661
5662 * tui/tui.h (tui_set_layout_by_name): Don't declare.
5663 * tui/tui-regs.c (tui_reg_layout): New function.
5664 (tui_show_registers, tui_reg_command): Use it.
5665 * tui/tui-layout.c (LAYOUT_USAGE): Remove.
5666 (tui_layout_command): Rename from tui_set_layout_by_name. Change
5667 parameters.
5668 (tui_layout_command): Remove.
5669
5670 2019-07-17 Tom Tromey <tom@tromey.com>
5671
5672 * tui/tui-layout.h (tui/tui-layout): Return void.
5673 * tui/tui-layout.c (tui_set_layout): Return void. Add assert.
5674
5675 2019-07-17 Tom Tromey <tom@tromey.com>
5676
5677 * tui/tui-layout.c (show_source_disasm_command, show_data):
5678 Update.
5679 (reset_locator): Remove.
5680 (show_source_or_disasm_and_command): Update.
5681
5682 2019-07-17 Tom Tromey <tom@tromey.com>
5683
5684 * tui/tui-source.c (tui_source_window_base::reset): Remove
5685 win_type parameter.
5686 * tui/tui-layout.c (make_command_window, make_source_window)
5687 (make_disasm_window, make_data_window)
5688 (show_source_disasm_command, show_data, tui_gen_win_info::reset)
5689 (reset_locator, show_source_or_disasm_and_command): Update.
5690 * tui/tui-data.h (struct tui_gen_win_info) <reset>: Remove
5691 win_type parameter.
5692 (struct tui_source_window_base) <reset>: Likewise.
5693
5694 2019-07-17 Tom Tromey <tom@tromey.com>
5695
5696 * tui/tui-layout.c (show_source_disasm_command): Use
5697 reset_locator.
5698 (reset_locator): New function.
5699 (init_and_make_win): Remove.
5700 (show_source_or_disasm_and_command): Use reset_locator.
5701
5702 2019-07-17 Tom Tromey <tom@tromey.com>
5703
5704 * tui/tui-winsource.c (tui_set_exec_info_content): Remove
5705 condition.
5706 * tui/tui-wingeneral.c (tui_source_window_base::make_visible):
5707 Remove condition.
5708 * tui/tui-source.c (tui_source_window_base::reset): New method.
5709 * tui/tui-layout.c (make_command_window): Don't call
5710 init_and_make_win.
5711 (make_source_window, make_disasm_window): Don't call
5712 make_source_or_disasm_window.
5713 (make_data_window): Don't call init_and_make_win. Change calling
5714 convention.
5715 (show_source_disasm_command, show_data): Simplify.
5716 (make_source_or_disasm_window): Remove.
5717 (show_source_or_disasm_and_command): Simplify.
5718 * tui/tui-data.h (struct tui_gen_win_info) <reset>: Now virtual.
5719 (struct tui_source_window_base) <reset>: Likewise.
5720 <execution_info>: Remove initializer.
5721 * tui/tui-data.c (tui_source_window_base): Initialize
5722 execution_info.
5723
5724 2019-07-17 Tom Tromey <tom@tromey.com>
5725
5726 * tui/tui-layout.c (tui_set_layout): Remove regs_populate
5727 variable.
5728
5729 2019-07-17 Tom Tromey <tom@tromey.com>
5730
5731 * tui/tui.c (tui_rl_other_window): Update.
5732 * tui/tui-wingeneral.c (tui_data_window::refresh_window): Call
5733 superclass method first. Always iterate over regs_content.
5734 (tui_unhighlight_win, tui_highlight_win): Use refresh_window
5735 method.
5736 * tui/tui-win.c (tui_set_focus_command): Update.
5737
5738 2019-07-17 Tom Tromey <tom@tromey.com>
5739
5740 * tui/tui-win.c (tui_set_focus_command): Rename from
5741 tui_set_focus. Call tui_enable.
5742 (tui_set_focus_command): Remove.
5743
5744 2019-07-17 Tom Tromey <tom@tromey.com>
5745
5746 * tui/tui-winsource.c (tui_show_exec_info_content): Don't call
5747 refresh_window.
5748 * tui/tui-wingeneral.c (tui_gen_win_info::refresh_window): Call
5749 touchwin.
5750 (tui_data_window::refresh_window): Call refresh_window on data
5751 items. Always call superclass refresh_window.
5752 (tui_win_info::refresh): Remove.
5753 (tui_source_window_base::refresh_window): Update.
5754 (tui_refresh_all): Update.
5755 * tui/tui-layout.c (show_source_disasm_command): Remove call to
5756 refresh_window.
5757 (show_source_or_disasm_and_command): Likewise.
5758 * tui/tui-data.h (struct tui_win_info) <refresh>: Remove.
5759 (struct tui_source_window_base) <refresh>: Likewise.
5760
5761 2019-07-17 Tom Tromey <tom@tromey.com>
5762
5763 * tui/tui-winsource.c (tui_clear_source_content)
5764 (tui_show_source_content): Update.
5765 * tui/tui-source.c (tui_source_window::showing_source_p): Check
5766 whether content is empty.
5767 * tui/tui-data.h (struct tui_source_window_base) <content_in_use>:
5768 Remove.
5769
5770 2019-07-17 Tom Tromey <tom@tromey.com>
5771
5772 * tui/tui-winsource.c (tui_erase_source_content): Clear the
5773 window's contents.
5774 * tui/tui-source.h (tui_set_source_content_nil): Don't declare.
5775 * tui/tui-source.c (tui_set_source_content_nil): Remove.
5776
5777 2019-07-17 Tom Tromey <tom@tromey.com>
5778
5779 * tui/tui-data.h (UNDEFINED_ITEM): Remove define.
5780 (struct tui_data_item_window): Update.
5781
5782 2019-07-17 Tom Tromey <tom@tromey.com>
5783
5784 * tui/tui-data.h (MAX_CONTENT_COUNT, TUI_NULL_STR)
5785 (DEFAULT_HISTORY_COUNT, WITH_LOCATOR, NO_LOCATOR): Remove
5786 defines.
5787
5788 2019-07-17 Tom Tromey <tom@tromey.com>
5789
5790 * tui/tui-winsource.h (tui_erase_source_content)
5791 (tui_clear_source_content): Remove "display_prompt" parameter.
5792 * tui/tui-winsource.c (tui_update_source_window_as_is)
5793 (tui_update_source_windows_with_addr): Update.
5794 (tui_clear_source_content): Remove "display_prompt" parameter.
5795 (tui_erase_source_content): Likewise. Simplify.
5796 (tui_show_source_content): Update.
5797 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Update.
5798 * tui/tui-stack.c (tui_show_frame_info): Update.
5799 * tui/tui-data.h (EMPTY_SOURCE_PROMPT, NO_EMPTY_SOURCE_PROMPT):
5800 Remove defines.
5801
5802 2019-07-17 Tom Tromey <tom@tromey.com>
5803
5804 * tui/tui-winsource.c (tui_update_source_window_as_is): Update.
5805 * tui/tui-disasm.h (tui_set_disassem_content): Add win_info
5806 parameter.
5807 * tui/tui-disasm.c (tui_set_disassem_content): Add win_info
5808 parameter.
5809
5810 2019-07-17 Tom Tromey <tom@tromey.com>
5811
5812 * tui/tui-winsource.c (tui_clear_source_content)
5813 (tui_show_source_content, tui_show_exec_info_content)
5814 (tui_clear_exec_info_content): Update.
5815 * tui/tui-stack.c (tui_show_locator_content): Update.
5816 (tui_show_frame_info): Update.
5817 * tui/tui-source.h (tui_source_window): Don't declare.
5818 * tui/tui-source.c (tui_source_window::showing_source_p): Rename
5819 from tui_source_is_displayed.
5820 * tui/tui-data.h (struct tui_gen_win_info) <content_in_use>:
5821 Remove field.
5822 (struct tui_source_window_base) <content_in_use>: New field. Now
5823 bool.
5824 (struct tui_source_window) <showing_source_p>: New method.
5825 (TUI_SRC_WIN): Change cast.
5826 * tui/tui-data.c (tui_initialize_static_data): Update.
5827
5828 2019-07-17 Tom Tromey <tom@tromey.com>
5829
5830 * tui/tui-winsource.c (tui_update_breakpoint_info): Use
5831 location_matches_p.
5832 * tui/tui-source.c (tui_source_window::location_matches_p): New
5833 method.
5834 * tui/tui-disasm.c (tui_disasm_window::location_matches_p): New
5835 method.
5836 * tui/tui-data.h (struct tui_source_window_base)
5837 <location_matches_p>: New method.
5838 (struct tui_source_window, struct tui_disasm_window)
5839 <location_matches_p>: Likewise.
5840
5841 2019-07-17 Tom Tromey <tom@tromey.com>
5842
5843 * tui/tui-win.c (tui_set_win_height_command): Rename from
5844 tui_set_win_height.
5845 (tui_set_win_height_command): Remove.
5846
5847 2019-07-17 Tom Tromey <tom@tromey.com>
5848
5849 * tui/tui-source.c (tui_source_window): New constructor. Add
5850 observer.
5851 (~tui_source_window): New destructor.
5852 (tui_source_window::style_changed): New method.
5853 * tui/tui-hooks.c (tui_redisplay_source): Remove.
5854 (tui_attach_detach_observers): Update.
5855 * tui/tui-data.h (struct tui_source_window): Make constructor not
5856 inline. Add destructor.
5857 (struct tui_source_window) <style_changed>: New method.
5858 <m_observable>: New member.
5859
5860 2019-07-17 Tom Tromey <tom@tromey.com>
5861
5862 * tui/tui-data.c (tui_clear_source_windows_detail): Fix typo.
5863 * tui/tui-win.c (tui_resize_all): Fix typo.
5864
5865 2019-07-17 Tom Tromey <tom@tromey.com>
5866
5867 * tui/tui-wingeneral.h (tui_refresh_all): Update.
5868 * tui/tui-wingeneral.c (make_all_visible): Use foreach.
5869 (tui_refresh_all): Remove "list" parameter. Use foreach.
5870 * tui/tui-win.c (window_name_completer): Use foreach.
5871 (tui_refresh_all_win, tui_rehighlight_all, tui_all_windows_info)
5872 (update_tab_width): Likewise.
5873 * tui/tui-layout.c (show_layout): Update.
5874 * tui/tui-data.h (class tui_window_iterator): New.
5875 (struct all_tui_windows): New.
5876 * tui/tui-data.c (tui_partial_win_by_name): Use foreach.
5877
5878 2019-07-17 Tom Tromey <tom@tromey.com>
5879
5880 * tui/tui-regs.c (tui_reg_next, tui_reg_prev): Add "current_group"
5881 parameter. Don't reference globals.
5882 (tui_reg_command): Update.
5883
5884 2019-07-17 Tom Tromey <tom@tromey.com>
5885
5886 * tui/tui-regs.c (tui_show_registers): Simplify.
5887
5888 2019-07-17 Tom Tromey <tom@tromey.com>
5889
5890 * tui/tui-regs.c (tui_show_registers): Update.
5891 (tui_show_register_group): Add win_info parameter.
5892
5893 2019-07-17 Tom Tromey <tom@tromey.com>
5894
5895 * tui/tui-regs.c (tui_data_window::display_reg_element_at_line):
5896 Rename from tui_display_reg_element_at_line.
5897 (tui_data_window::display_registers_from_line): Update.
5898 * tui/tui-data.h (struct tui_data_window)
5899 <display_reg_element_at_line>: New method.
5900
5901 2019-07-17 Tom Tromey <tom@tromey.com>
5902
5903 * tui/tui-regs.h (tui_display_registers_from)
5904 (tui_display_registers_from_line): Don't declare.
5905 * tui/tui-windata.c (tui_data_window::display_all_data)
5906 (tui_data_window::refresh_all)
5907 (tui_data_window::do_scroll_vertical): Update.
5908 * tui/tui-regs.c (tui_data_window::display_registers_from): Rename
5909 from tui_display_registers_from.
5910 (tui_display_reg_element_at_line): Update.
5911 (tui_data_window::display_registers_from_line): Rename from
5912 tui_display_registers_from_line.
5913 * tui/tui-data.h (struct tui_data_window) <display_registers_from,
5914 display_registers_from_line>: New methods.
5915
5916 2019-07-17 Tom Tromey <tom@tromey.com>
5917
5918 * tui/tui-windata.h (tui_erase_data_content): Don't declare.
5919 * tui/tui-windata.c (tui_data_window::erase_data_content): Rename
5920 from tui_erase_data_content.
5921 (tui_data_window::display_all_data)
5922 (tui_data_window::refresh_all)
5923 (tui_data_window::do_scroll_vertical): Update.
5924 * tui/tui-regs.c (tui_show_registers): Update.
5925 * tui/tui-data.h (struct tui_data_window) <erase_data_content>:
5926 New method.
5927
5928 2019-07-17 Tom Tromey <tom@tromey.com>
5929
5930 * tui/tui-windata.h (tui_delete_data_content_windows): Don't
5931 declare.
5932 * tui/tui-windata.c
5933 (tui_data_window::delete_data_content_windows): Rename from
5934 tui_delete_data_content_windows.
5935 (tui_data_window::display_all_data)
5936 (tui_data_window::do_scroll_vertical): Update.
5937 * tui/tui-data.h (struct tui_data_window)
5938 <delete_data_content_windows>: New method.
5939
5940 2019-07-17 Tom Tromey <tom@tromey.com>
5941
5942 * tui/tui-windata.h (tui_refresh_data_win): Don't declare.
5943 * tui/tui-regs.h (tui_first_reg_element_inline): Don't declare.
5944
5945 2019-07-17 Tom Tromey <tom@tromey.com>
5946
5947 * tui/tui-windata.h (tui_display_all_data): Don't declare.
5948 * tui/tui-windata.c (tui_data_window::display_all_data): Rename
5949 from tui_display_all_data.
5950 * tui/tui-win.c
5951 (tui_data_window::do_make_visible_with_new_height): Update.
5952 * tui/tui-regs.c (tui_show_registers): Update.
5953 * tui/tui-layout.c (tui_set_layout): Update.
5954 * tui/tui-data.h (struct tui_data_window) <display_all_data>: New
5955 method.
5956
5957 2019-07-17 Tom Tromey <tom@tromey.com>
5958
5959 * tui/tui-windata.h (tui_display_data_from): Don't declare.
5960 * tui/tui-windata.c (tui_display_data_from): Remove.
5961 (tui_data_window::refresh_all): Update.
5962
5963 2019-07-17 Tom Tromey <tom@tromey.com>
5964
5965 * tui/tui-windata.h (tui_display_data_from_line): Don't declare.
5966 * tui/tui-windata.c (tui_display_data_from_line): Remove.
5967 (tui_display_data_from, tui_data_window::do_scroll_vertical): Call
5968 tui_display_registers_from_line.
5969 * tui/tui-regs.h (tui_display_registers_from_line): Update.
5970 * tui/tui-regs.c (tui_display_registers_from_line): Remove
5971 "force_display" parameter.
5972
5973 2019-07-17 Tom Tromey <tom@tromey.com>
5974
5975 * tui/tui-regs.h (tui_first_reg_element_no_inline): Don't
5976 declare.
5977 * tui/tui-regs.c (tui_data_window::first_reg_element_no_inline):
5978 Rename from tui_first_reg_element_no_inline.
5979 (tui_display_reg_element_at_line)
5980 (tui_display_registers_from_line): Update.
5981 * tui/tui-data.h (struct tui_data_window)
5982 <first_reg_element_no_inline>: New method.
5983
5984 2019-07-17 Tom Tromey <tom@tromey.com>
5985
5986 * tui/tui-windata.c (tui_display_data_from)
5987 (tui_data_window::do_scroll_vertical): Update.
5988 * tui/tui-regs.h (tui_line_from_reg_element_no): Don't declare.
5989 * tui/tui-regs.c (tui_data_window::line_from_reg_element_no):
5990 Rename from tui_line_from_reg_element_no.
5991 (tui_display_registers_from_line): Update.
5992 * tui/tui-data.h (struct tui_data_window)
5993 <line_from_reg_element_no>: New method.
5994
5995 2019-07-17 Tom Tromey <tom@tromey.com>
5996
5997 * tui/tui-regs.h (tui_last_regs_line_no): Don't declare.
5998 * tui/tui-regs.c (tui_data_window::last_regs_line_no): Rename from
5999 tui_last_regs_line_no.
6000 (tui_display_reg_element_at_line)
6001 (tui_display_registers_from_line): Update.
6002 * tui/tui-data.h (struct tui_data_window) <last_regs_line_no>: New
6003 method.
6004
6005 2019-07-17 Tom Tromey <tom@tromey.com>
6006
6007 PR tui/24722:
6008 * tui/tui-winsource.h (tui_update_all_breakpoint_info)
6009 (tui_update_breakpoint_info): Add "being_deleted" parameter.
6010 * tui/tui-winsource.c (tui_update_source_window_as_is): Update.
6011 (tui_update_all_breakpoint_info): Add "being_deleted" parameter.
6012 (tui_update_breakpoint_info): Likewise.
6013 * tui/tui-hooks.c (tui_event_create_breakpoint)
6014 (tui_event_delete_breakpoint, tui_event_modify_breakpoint):
6015 Update.
6016
6017 2019-07-17 Tom Tromey <tom@tromey.com>
6018
6019 * tui/tui-stack.c (tui_show_frame_info): Consolidate "if"s.
6020
6021 2019-07-17 Tom Tromey <tom@tromey.com>
6022
6023 * tui/tui-winsource.c (tui_update_source_window_as_is)
6024 (tui_update_source_windows_with_addr): Update.
6025 * tui/tui-source.h (tui_set_source_content)
6026 (tui_show_symtab_source): Add "win_info" parameter.
6027 * tui/tui-source.c (tui_set_source_content): Add "win_info"
6028 parameter.
6029 (tui_show_symtab_source): Likewise.
6030
6031 2019-07-17 Tom Tromey <tom@tromey.com>
6032
6033 * tui/tui-wingeneral.c
6034 (tui_check_and_display_highlight_if_needed): Check can_highlight.
6035
6036 2019-07-17 Tom Tromey <tom@tromey.com>
6037
6038 * tui/tui-data.h (struct tui_win_info) <can_scroll>: New method.
6039 (struct tui_cmd_window) <can_scroll>: New method.
6040 * tui/tui-command.c (tui_dispatch_ctrl_char): Use can_scroll
6041 method.
6042
6043 2019-07-17 Tom Tromey <tromey@adacore.com>
6044
6045 * ui-out.h (class ui_out) <field_signed, field_fmt_signed,
6046 do_field_signed>: Rename. Change type of "value".
6047 * ui-out.c (ui_out::field_signed): Rename from field_int.
6048 Change type of "value".
6049 (ui_out::field_fmt_signed): Rename from field_fmt_int. Change
6050 type of "value".
6051 * tui/tui-out.h (class tui_ui_out) <do_field_signed>: Rename from
6052 do_field_int. Change type of "value".
6053 * tui/tui-out.c (tui_ui_out::do_field_signed): Rename from
6054 do_field_int. Change type of "value".
6055 * tracepoint.c (trace_status_mi, tfind_1)
6056 (print_one_static_tracepoint_marker): Update.
6057 * thread.c (print_thread_info_1, print_selected_thread_frame):
6058 Update.
6059 * stack.c (print_frame, print_frame_info): Update.
6060 * spu-tdep.c (info_spu_signal_command, info_spu_dma_cmdlist):
6061 Update.
6062 * source.c (print_source_lines_base): Update.
6063 * skip.c (info_skip_command): Update.
6064 * record-btrace.c (btrace_ui_out_decode_error)
6065 (btrace_call_history_src_line): Update.
6066 * python/py-framefilter.c (py_print_single_arg, py_print_frame):
6067 Update.
6068 * progspace.c (print_program_space): Update.
6069 * mi/mi-symbol-cmds.c (mi_cmd_symbol_list_lines): Update.
6070 * mi/mi-out.h (class mi_ui_out) <do_field_signed>: Rename from
6071 do_field_int. Change type of "value".
6072 * mi/mi-out.c (mi_ui_out::do_table_begin)
6073 (mi_ui_out::do_table_header): Update.
6074 (mi_ui_out::do_field_signed): Rename from do_field_int. Change
6075 type of "value".
6076 * mi/mi-main.c (mi_cmd_thread_list_ids, print_one_inferior)
6077 (mi_cmd_data_list_changed_registers, output_register)
6078 (mi_cmd_data_read_memory, mi_load_progress)
6079 (mi_cmd_trace_frame_collected): Update.
6080 * mi/mi-interp.c (mi_on_normal_stop_1, mi_output_solib_attribs):
6081 Update.
6082 * mi/mi-cmd-var.c (print_varobj, mi_cmd_var_create)
6083 (mi_cmd_var_delete, mi_cmd_var_info_num_children)
6084 (mi_cmd_var_list_children, varobj_update_one): Update.
6085 * mi/mi-cmd-stack.c (mi_cmd_stack_info_depth)
6086 (mi_cmd_stack_list_args, list_arg_or_local): Update.
6087 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file): Update.
6088 * inferior.c (print_inferior): Update.
6089 * gdb_bfd.c (print_one_bfd): Update.
6090 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn):
6091 Update.
6092 * darwin-nat-info.c (darwin_debug_regions_recurse): Update.
6093 * cli-out.h (class cli_ui_out) <do_field_signed>: Rename from
6094 do_field_int. Change type of "value".
6095 * cli-out.c (cli_ui_out::do_field_signed): Rename from
6096 do_field_int. Change type of "value".
6097 * breakpoint.c (watchpoint_check, print_breakpoint_location)
6098 (print_one_breakpoint_location, print_it_catch_fork)
6099 (print_one_catch_fork, print_it_catch_vfork)
6100 (print_one_catch_vfork, print_it_catch_solib)
6101 (print_it_catch_exec, print_it_ranged_breakpoint)
6102 (print_mention_watchpoint, print_mention_masked_watchpoint)
6103 (bkpt_print_it, update_static_tracepoint): Update.
6104 * break-catch-throw.c (print_it_exception_catchpoint): Update.
6105 * break-catch-syscall.c (print_it_catch_syscall): Update.
6106 * ada-tasks.c (print_ada_task_info): Update.
6107 * ada-lang.c (print_it_exception, print_mention_exception):
6108 Update.
6109
6110 2019-07-17 Andrew Burgess <andrew.burgess@embecosm.com>
6111
6112 PR breakpoints/24541
6113 * gdbarch.c: Regenerate.
6114 * gdbarch.h: Regenerate.
6115 * gdbarch.sh: Adjust return type and parameter types for
6116 'stap_adjust_register'.
6117 (i386_stap_adjust_register): Adjust signature and return new
6118 register name.
6119 * stap-probe.c (stap_parse_register_operand): Adjust use of
6120 'gdbarch_stap_adjust_register'.
6121
6122 2019-07-17 Tom Tromey <tromey@adacore.com>
6123
6124 * s390-linux-nat.c (s390_watch_area): Remove typedef. Don't
6125 declare VEC.
6126 (struct s390_debug_reg_state) <watch_areas, break_areas>: Now
6127 std::vector.
6128 (struct s390_process_info): Add initializers.
6129 (s390_add_process): Use new.
6130 (s390_linux_nat_target::low_forget_process): Use delete.
6131 (s390_linux_nat_target::low_new_fork)
6132 (s390_linux_nat_target::stopped_by_watchpoint)
6133 (s390_linux_nat_target::low_prepare_to_resume)
6134 (s390_linux_nat_target::insert_watchpoint)
6135 (s390_linux_nat_target::insert_hw_breakpoint)
6136 (s390_linux_nat_target::remove_watchpoint)
6137 (s390_linux_nat_target::remove_hw_breakpoint): Update.
6138
6139 2019-07-16 John Baldwin <jhb@FreeBSD.org>
6140
6141 * aarch64-fbsd-nat.c: Include regcache.h.
6142 (getregs_supplies, getfpregs_supplies): Remove unused gdbarch
6143 argument.
6144 (aarch64_fbsd_nat_target::fetch_registers)
6145 (aarch64_fbsd_nat_target::store_registers): Remove gdbarch
6146 variable.
6147 * arm-fbsd-nat.c, riscv-fbsd-nat.c: Likewise.
6148
6149 2019-07-16 John Baldwin <jhb@FreeBSD.org>
6150
6151 * fbsd-nat.c: Include gdbarch.h.
6152
6153 2019-07-15 Tom Tromey <tromey@adacore.com>
6154
6155 * mi/mi-out.c (mi_ui_out::do_field_int): Use plongest.
6156
6157 2019-07-15 Tom Tromey <tromey@adacore.com>
6158
6159 * mi/mi-out.h (class mi_ui_out) <do_field_unsigned>: Declare.
6160 * mi/mi-out.c (mi_ui_out::do_field_unsigned): New method.
6161 * cli-out.h (class cli_ui_out) <do_field_unsigned>: Declare.
6162 * cli-out.c (cli_ui_out::do_field_int): New method.
6163 * ui-out.c (ui_out::field_unsigned): New method.
6164 * symfile.c (generic_load): Use field_unsigned.
6165 (print_transfer_performance): Likewise.
6166 * record-btrace.c (ui_out_field_uint): Remove.
6167 (btrace_call_history_insn_range, btrace_call_history): Use
6168 field_unsigned.
6169 * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn): Use
6170 field_unsigned.
6171 * ui-out.h (class ui_out) <field_unsigned>: New method.
6172 <do_field_unsigned>: Likewise.
6173
6174 2019-07-15 Tom Tromey <tromey@adacore.com>
6175
6176 * mi/mi-main.c (list_available_thread_groups): Use field_string.
6177 * mi/mi-interp.c (mi_memory_changed): Use field_string.
6178 * target.c (flash_erase_command): Use field_string.
6179 * infrun.c (print_signal_received_reason): Use field_string.
6180 * i386-tdep.c (i386_mpx_print_bounds): Use field_string.
6181 * breakpoint.c (maybe_print_thread_hit_breakpoint): Use
6182 field_string.
6183 * ada-tasks.c (print_ada_task_info): Use field_string.
6184
6185 2019-07-15 Tom Tromey <tromey@adacore.com>
6186
6187 * target.c (flash_erase_command): Use field_core_addr.
6188 * symfile.c (generic_load): Use field_core_addr.
6189 * sparc64-linux-tdep.c (sparc64_linux_handle_segmentation_fault):
6190 Use field_core_addr.
6191 * i386-linux-tdep.c (i386_linux_handle_segmentation_fault): Use
6192 field_core_addr.
6193
6194 2019-07-12 Andrew Burgess <andrew.burgess@embecosm.com>
6195
6196 * dwarf2loc.c (dwarf2_evaluate_property): Sign extend property
6197 value if its desired type is smaller than a CORE_ADDR and signed.
6198
6199 2019-07-12 Andrew Burgess <andrew.burgess@embecosm.com>
6200
6201 * dwarf2loc.c (dwarf2_evaluate_property): Update to take account
6202 of changes to field names, and use new is_reference field to
6203 decide if a property is a reference or not.
6204 * dwarf2loc.h (struct dwarf2_locexpr_baton): Add 'is_reference'
6205 field.
6206 (struct dwarf2_property_baton): Update header comment, rename
6207 'referenced_type' to 'property_type' and update comments.
6208 * dwarf2read.c (attr_to_dynamic_prop): Add extra parameter to hold
6209 default property type, store in property baton, update to take
6210 accound of renamed field.
6211 (read_func_scope): Update call to attr_to_dynamic_prop.
6212 (read_array_type): Likewise.
6213 (dwarf2_per_cu_addr_sized_int_type): New function.
6214 (read_subrange_index_type): Move type finding code to
6215 dwarf2_per_cu_addr_sized_int_type.
6216 (read_subrange_type): Update calls to attr_to_dynamic_prop.
6217 (dwarf2_per_cu_addr_type): New function.
6218 (set_die_type): Update calls to attr_to_dynamic_prop.
6219
6220 2019-07-12 Andrew Burgess <andrew.burgess@embecosm.com>
6221
6222 * dwarf2read.c (read_subrange_index_type): New function.
6223 (read_subrange_type): Move code into new function and call it.
6224 * gdbtypes.c (create_range_type): Add some asserts.
6225
6226 2019-07-12 Andrew Burgess <andrew.burgess@embecosm.com>
6227
6228 * dwarf2loc.c (dwarf2_evaluate_property): Change return type, and
6229 update return statements.
6230 * dwarf2loc.h (dwarf2_evaluate_property): Update return type on
6231 declaration, and update comment to match.
6232 * gdbtypes.c (resolve_dynamic_array): Update call to
6233 dwarf2_evaluate_property to match new return type.
6234
6235 2019-07-12 Andrew Burgess <andrew.burgess@embecosm.com>
6236
6237 * valarith.c (value_subscripted_rvalue): Change lowerbound
6238 parameter type from int to LONGEST.
6239 * value.h (value_subscripted_rvalue): Likewise in declaration.
6240
6241 2019-07-11 Andrew Burgess <andrew.burgess@embecosm.com>
6242
6243 * cli/cli-utils.c (info_print_command_completer): New function.
6244 * cli/cli-utils.h: Add 'completer.h' include, and forward
6245 declaration for 'struct cmd_list_element'.
6246 (info_print_command_completer): Declare.
6247 * stack.c (_initialize_stack): Add completer for 'info locals' and
6248 'info args'.
6249 * symtab.c (_initialize_symtab): Add completer for 'info
6250 variables' and 'info functions'.
6251 * NEWS: Mention completion for additional info commands.
6252
6253 2019-07-11 Andrew Burgess <andrew.burgess@embecosm.com>
6254
6255 * cli/cli-utils.c (extract_info_print_args): Delete.
6256 (extract_arg_maybe_quoted): Delete.
6257 (info_print_options_defs): New variable.
6258 (make_info_print_options_def_group): New function.
6259 (extract_info_print_options): Define new function.
6260 * cli/cli-utils.h (extract_info_print_args): Delete.
6261 (struct info_print_options): New structure.
6262 (extract_info_print_options): Declare new function.
6263 * stack.c (info_locals_command): Update to use new
6264 extract_info_print_options, also add a header comment.
6265 (info_args_command): Likewise.
6266 * symtab.c (info_variables_command): Likewise.
6267 (info_functions_command): Likewise.
6268
6269 2019-07-11 Andrew Burgess <andrew.burgess@embecosm.com>
6270
6271 * cli/cli-option.c (parse_option): Use extract_string_maybe_quoted
6272 to extract string arguments.
6273 * common/common-utils.c (extract_string_maybe_quoted): New function.
6274 * common/common-utils.h (extract_string_maybe_quoted): Declare.
6275
6276 2019-07-11 Tom Tromey <tromey@adacore.com>
6277
6278 * main.c (get_init_files): Use GDBINIT, not gdbinit.
6279 * auto-load.c (file_is_auto_load_safe): Use GDBINIT, not gdbinit.
6280 * top.h (gdbinit): Don't declare.
6281 * cli/cli-cmds.c (init_cli_cmds): Remove, merging contents
6282 into...
6283 (_initialize_cli_cmds): ...here. Use GDBINIT, not gdbinit.
6284 * top.c (gdb_init): Don't call init_cli_cmds.
6285 (gdbinit): Remove.
6286 * cli/cli-cmds.h (init_cli_cmds): Don't declare.
6287
6288 2019-07-11 Tom Tromey <tromey@adacore.com>
6289
6290 * python/py-inferior.c (add_thread_object): Don't use thread_obj
6291 after it has been moved.
6292
6293 2019-07-10 Simon Marchi <simon.marchi@polymtl.ca>
6294
6295 * valops.c (value_must_coerce_to_target): Change return type to
6296 bool.
6297 * value.h (value_must_coerce_to_target): Likewise.
6298
6299 2019-07-10 Simon Marchi <simon.marchi@efficios.com>
6300
6301 * breakpoint.c (is_hardware_watchpoint): Remove
6302 forward-declaration.
6303 (is_masked_watchpoint): Change return type to bool.
6304 (is_tracepoint): Likewise.
6305 (is_breakpoint): Likewise.
6306 (is_hardware_watchpoint): Likewise.
6307 (is_watchpoint): Likewise.
6308 (is_no_memory_software_watchpoint): Likewise.
6309 (is_catchpoint): Likewise.
6310 (breakpoint_1): Make FILTER parameter's return type bool.
6311 is_masked_watchpoint): Change return type to bool.
6312 (save_breakpoints): Make FILTER parameter's return type bool.
6313 * breakpoint.h (is_breakpoint): Change return type to bool.
6314 (is_watchpoint): Likewise.
6315 (is_catchpoint): Likewise.
6316 (is_tracepoint): Likewise.
6317
6318 2019-07-10 Tom Tromey <tom@tromey.com>
6319
6320 * defs.h: Don't include gdbarch.h.
6321 * aarch64-ravenscar-thread.c, aarch64-tdep.c, alpha-bsd-tdep.h,
6322 alpha-linux-tdep.c, alpha-mdebug-tdep.c, arch-utils.h, arm-tdep.h,
6323 ax-general.c, btrace.c, buildsym-legacy.c, buildsym.h, c-lang.c,
6324 cli/cli-decode.h, cli/cli-dump.c, cli/cli-script.h,
6325 cli/cli-style.h, coff-pe-read.h, compile/compile-c-support.c,
6326 compile/compile-cplus.h, compile/compile-loc2c.c, corefile.c,
6327 cp-valprint.c, cris-linux-tdep.c, ctf.c, d-lang.c, d-namespace.c,
6328 dcache.c, dicos-tdep.c, dictionary.c, disasm-selftests.c,
6329 dummy-frame.c, dummy-frame.h, dwarf2-frame-tailcall.c,
6330 dwarf2expr.c, expression.h, f-lang.c, frame-base.c,
6331 frame-unwind.c, frv-linux-tdep.c, gdbarch-selftests.c, gdbtypes.h,
6332 go-lang.c, hppa-nbsd-tdep.c, hppa-obsd-tdep.c, i386-dicos-tdep.c,
6333 i386-tdep.h, ia64-vms-tdep.c, interps.h, language.c,
6334 linux-record.c, location.h, m2-lang.c, m32r-linux-tdep.c,
6335 mem-break.c, memattr.c, mn10300-linux-tdep.c, nios2-linux-tdep.c,
6336 objfiles.h, opencl-lang.c, or1k-linux-tdep.c, p-lang.c,
6337 parser-defs.h, ppc-tdep.h, probe.h, python/py-record-btrace.c,
6338 record-btrace.c, record.h, regcache-dump.c, regcache.h,
6339 riscv-fbsd-tdep.c, riscv-linux-tdep.c, rust-exp.y,
6340 sh-linux-tdep.c, sh-nbsd-tdep.c, source-cache.c,
6341 sparc-nbsd-tdep.c, sparc-obsd-tdep.c, sparc-ravenscar-thread.c,
6342 sparc64-fbsd-tdep.c, std-regs.c, target-descriptions.h,
6343 target-float.c, tic6x-linux-tdep.c, tilegx-linux-tdep.c, top.c,
6344 tracefile.c, trad-frame.c, type-stack.h, ui-style.c, utils.c,
6345 utils.h, valarith.c, valprint.c, varobj.c, x86-tdep.c,
6346 xml-support.h, xtensa-linux-tdep.c, cli/cli-cmds.h: Update.
6347 * s390-linux-nat.c, procfs.c, inf-ptrace.c: Likewise.
6348
6349 2019-07-10 Tom Tromey <tromey@adacore.com>
6350
6351 * ada-lang.h (is_ada_exception_catchpoint): Declare.
6352 * breakpoint.c (init_ada_exception_breakpoint): Register as
6353 bp_catchpoint.
6354 (print_one_breakpoint_location, print_one_breakpoint): Use
6355 is_ada_exception_catchpoint.
6356 * ada-lang.c (class ada_catchpoint_location): Pass
6357 bp_loc_software_breakpoint to bp_location constructor.
6358 (is_ada_exception_catchpoint): New function.
6359
6360 2019-07-10 Tom Tromey <tromey@adacore.com>
6361
6362 * arm-tdep.c (arm_exidx_entry_s): Remove typedef. Don't define
6363 VEC.
6364 (struct arm_exidx_entry): New method operator<.
6365 (struct arm_exidx_data) <section_maps>: Change type.
6366 (arm_exidx_data_free): Remove.
6367 (arm_exidx_data_key): Change type. Move lower.
6368 (arm_exidx_new_objfile): Update.
6369 (arm_compare_exidx_entries): Remove.
6370 (arm_find_exidx_entry, _initialize_arm_tdep)
6371
6372 2019-07-10 Tom Tromey <tromey@adacore.com>
6373
6374 * solib-spu.c (ocl_program_data_key): Change type.
6375 (append_ocl_sos, ocl_enable_break, _initialize_spu_solib):
6376 Update.
6377
6378 2019-07-10 Tom Tromey <tromey@adacore.com>
6379
6380 * solib-aix.c (lm_info_aix_p): Remove typedef. Don't define VEC.
6381 (struct solib_aix_inferior_data) <library_list>: Change type.
6382 (solib_aix_inferior_data_handle): Change type.
6383 (get_solib_aix_inferior_data): Update.
6384 (solib_aix_free_library_list): Remove.
6385 (library_list_start_library): Update.
6386 (solib_aix_parse_libraries, solib_aix_get_library_list): Change
6387 return type.
6388 (solib_aix_get_library_list)
6389 (solib_aix_solib_create_inferior_hook, solib_aix_current_sos)
6390 (solib_aix_normal_stop_observer, _initialize_solib_aix): Update.
6391
6392 2019-07-10 Tom Tromey <tromey@adacore.com>
6393
6394 * solib-dsbt.c (struct dsbt_info): Add initializers.
6395 (solib_dsbt_pspace_data): Change type.
6396 (dsbt_pspace_data_cleanup): Remove.
6397 (get_dsbt_info, _initialize_dsbt_solib): Update.
6398
6399 2019-07-10 Tom Tromey <tromey@adacore.com>
6400
6401 * spu-tdep.c (spu_overlay_data): Change type.
6402 (spu_get_overlay_table, spu_overlay_new_objfile)
6403 (_initialize_spu_tdep): Update.
6404
6405 2019-07-10 Tom Tromey <tromey@adacore.com>
6406
6407 * gdb-stabs.h (struct dbx_symfile_info): Add initializers and
6408 destructor.
6409 (dbx_objfile_data_key): Change type and declare later.
6410 (DBX_SYMFILE_INFO): Rewrite.
6411 * dbxread.c (dbx_objfile_data_key): Change type.
6412 (dbx_symfile_init): Update.
6413 (~dbx_symfile_info): Rename from dbx_free_symfile_info. Update.
6414 (coffstab_build_psymtabs, elfstab_build_psymtabs)
6415 (stabsect_build_psymtabs, _initialize_dbxread): Update.
6416
6417 2019-07-10 Tom Tromey <tromey@adacore.com>
6418
6419 * jit.c (jit_program_space_key): Change type. Move lower.
6420 (get_jit_program_space_data): Update.
6421 (jit_program_space_data_cleanup): Remove.
6422 (jit_breakpoint_deleted, free_objfile_data, _initialize_jit):
6423 Update.
6424 (struct jit_program_space_data): Add initializers.
6425
6426 2019-07-10 Tom Tromey <tromey@adacore.com>
6427
6428 * solib-darwin.c (struct darwin_info): Add initializers.
6429 (solib_darwin_pspace_data): Change type.
6430 (darwin_pspace_data_cleanup): Remove.
6431 (get_darwin_info, _initialize_darwin_solib): Update.
6432
6433 2019-07-10 Tom Tromey <tromey@adacore.com>
6434
6435 * remote-sim.c (struct sim_inferior_data): Add initializers,
6436 constructor, and destructor.
6437 (sim_inferior_data_key): Change type. Move lower.
6438 (check_for_duplicate_sim_descriptor): Update.
6439 (get_sim_inferior_data): Use new. Update.
6440 (~sim_inferior_data_cleanup): Rename from
6441 sim_inferior_data_cleanup. Simplify.
6442 (gdbsim_close_inferior, simulator_command)
6443 (sim_command_completer, _initialize_remote_sim): Update.
6444 (next_pid, INITIAL_PID): Move earlier.
6445
6446 2019-07-10 Tom Tromey <tromey@adacore.com>
6447
6448 * python/python-internal.h (create_thread_object): Return
6449 gdbpy_ref.
6450 * python/py-infthread.c (create_thread_object): Return gdbpy_ref.
6451 * python/py-inferior.c (struct threadlist_entry): Add
6452 constructor.
6453 <thread_obj>: Now a gdbpy_ref.
6454 (thread_to_thread_object): Update.
6455 (add_thread_object): Use new.
6456 (delete_thread_object): Use delete.
6457 (infpy_threads): Update.
6458 (py_free_inferior): Update. Construct "inf_obj" after acquiring
6459 GIL.
6460
6461 2019-07-10 Tom Tromey <tromey@adacore.com>
6462
6463 * valops.c (value_cast): Specialize error message for Ada.
6464
6465 2019-07-10 Simon Marchi <simon.marchi@polymtl.ca>
6466
6467 * breakpoint.c (breakpoint_1): Update doc and parameter names.
6468
6469 2019-07-10 Simon Marchi <simon.marchi@polymtl.ca>
6470
6471 * breakpoint.h (bpstat_explains_signal, bpstat_causes_stop,
6472 bpstat_should_step): Return bool, adjust comments.
6473 * breakpoint.c (bpstat_explains_signal, bpstat_causes_stop,
6474 bpstat_should_step): Likewise.
6475
6476 2019-07-10 Alan Hayward <alan.hayward@arm.com>
6477
6478 * features/Makefile: Use feature target descriptions for Arm.
6479 * features/arm/arm-core.c: Generate new file.
6480 * features/arm/arm-fpa.c: Likewise.
6481 * features/arm/arm-m-profile-with-fpa.xml: Likewise.
6482 * features/arm/arm-m-profile.c: Likewise.
6483 * features/arm/arm-vfpv2.c: Likewise.
6484 * features/arm/arm-vfpv3.c: Likewise.
6485 * features/arm/xscale-iwmmxt.c: Likewise.
6486 * target-descriptions.c (maint_print_c_tdesc_cmd): Add Arm.
6487
6488 2019-07-10 Alan Hayward <alan.hayward@arm.com>
6489
6490 * arm-linux-nat.c (arm_linux_nat_target::read_description): Check
6491 ptrace earlier.
6492
6493 2019-07-10 Alan Hayward <alan.hayward@arm.com>
6494
6495 * features/aarch64-pauth.c: Regenerate.
6496
6497 2019-07-09 Simon Marchi <simon.marchi@polymtl.ca>
6498
6499 * breakpoint.h (struct bpstat_what) <is_longjmp>: Change type to
6500 bool.
6501 (bpstat_what): Use false instead of 0.
6502
6503 2019-07-09 Pedro Alves <palves@redhat.com>
6504
6505 * break-catch-throw.c (is_exception_catchpoint): New.
6506 * breakpoint.c (print_one_breakpoint_location): New parameter
6507 'raw_loc'. Handle it. Use
6508 is_watchpoint/is_catchpoint/is_exception_catchpoint instead of
6509 looking at the breakpoint's type.
6510 (print_one_breakpoint): If handling "maint info breakpoints", also
6511 print locations of exception catchpoints.
6512 * breakpoint.h (is_exception_catchpoint): Declare.
6513
6514 2019-07-09 Pedro Alves <palves@redhat.com>
6515
6516 * break-catch-throw.c (print_one_exception_catchpoint): Skip the
6517 "addr" field.
6518 (allocate_location_exception_catchpoint): New.
6519 (handle_gnu_v3_exceptions): Don't reset 'type' to bp_breakpoint.
6520 (initialize_throw_catchpoint_ops): Install
6521 allocate_location_exception_catchpoint as allocate_location
6522 method.
6523 * breakpoint.c (bpstat_what) <bp_catch>: Set action to
6524 BPSTAT_WHAT_SINGLE if not stopping and the location's type is not
6525 bp_loc_other.
6526 (breakpoint_address_is_meaningful): Delete.
6527 (bl_address_is_meaningful): New.
6528 (breakpoint_locations_match): Adjust comment.
6529 (bp_location_from_bp_type): New, factored out of...
6530 (bp_location::bp_location(breakpoint *)): ... this.
6531 (bp_location::bp_location(breakpoint *, bp_loc_type)): New,
6532 factored out of...
6533 (bp_location::bp_location(breakpoint *)): ... this. Reimplement.
6534 (bp_loc_is_permanent): Use bl_address_is_meaningful instead of
6535 breakpoint_address_is_meaningful.
6536 (bp_locations_compare): Adjust comment.
6537 (update_global_location_list): Use bl_address_is_meaningful
6538 instead of breakpoint_address_is_meaningful.
6539 * breakpoint.h (bp_location::bp_location(breakpoint *)): New
6540 explicit.
6541 (bp_location::bp_location(breakpoint *, bp_loc_type)): Declare.
6542 * python/py-breakpoint.c (bppy_get_location): No longer check
6543 whether location is null.
6544
6545 2019-07-09 Pedro Alves <palves@redhat.com>
6546
6547 PR c++/15468
6548 * breakpoint.c (print_one_breakpoint_location): Remove
6549 single-location assert.
6550
6551 2019-07-09 Tom Tromey <tom@tromey.com>
6552
6553 * contrib/ari/gdb_ari.sh: Change common to gdbsupport.
6554 * configure: Rebuild.
6555 * configure.ac: Change common to gdbsupport.
6556 * gdbsupport: Rename from common.
6557 * acinclude.m4: Change common to gdbsupport.
6558 * Makefile.in (CONFIG_SRC_SUBDIR, COMMON_SFILES)
6559 (HFILES_NO_SRCDIR, stamp-version, ALLDEPFILES): Change common to
6560 gdbsupport.
6561 * aarch64-tdep.c, ada-lang.c, ada-lang.h, agent.c, alloc.c,
6562 amd64-darwin-tdep.c, amd64-dicos-tdep.c, amd64-fbsd-nat.c,
6563 amd64-fbsd-tdep.c, amd64-linux-nat.c, amd64-linux-tdep.c,
6564 amd64-nbsd-tdep.c, amd64-obsd-tdep.c, amd64-sol2-tdep.c,
6565 amd64-tdep.c, amd64-windows-tdep.c, arch-utils.c,
6566 arch/aarch64-insn.c, arch/aarch64.c, arch/aarch64.h, arch/amd64.c,
6567 arch/amd64.h, arch/arm-get-next-pcs.c, arch/arm-linux.c,
6568 arch/arm.c, arch/i386.c, arch/i386.h, arch/ppc-linux-common.c,
6569 arch/riscv.c, arch/riscv.h, arch/tic6x.c, arm-tdep.c, auto-load.c,
6570 auxv.c, ax-gdb.c, ax-general.c, ax.h, breakpoint.c, breakpoint.h,
6571 btrace.c, btrace.h, build-id.c, build-id.h, c-lang.h, charset.c,
6572 charset.h, cli/cli-cmds.c, cli/cli-cmds.h, cli/cli-decode.c,
6573 cli/cli-dump.c, cli/cli-option.h, cli/cli-script.c,
6574 coff-pe-read.c, command.h, compile/compile-c-support.c,
6575 compile/compile-c.h, compile/compile-cplus-symbols.c,
6576 compile/compile-cplus-types.c, compile/compile-cplus.h,
6577 compile/compile-loc2c.c, compile/compile.c, completer.c,
6578 completer.h, contrib/ari/gdb_ari.sh, corefile.c, corelow.c,
6579 cp-support.c, cp-support.h, cp-valprint.c, csky-tdep.c, ctf.c,
6580 darwin-nat.c, debug.c, defs.h, disasm-selftests.c, disasm.c,
6581 disasm.h, dtrace-probe.c, dwarf-index-cache.c,
6582 dwarf-index-cache.h, dwarf-index-write.c, dwarf2-frame.c,
6583 dwarf2expr.c, dwarf2loc.c, dwarf2read.c, event-loop.c,
6584 event-top.c, exceptions.c, exec.c, extension.h, fbsd-nat.c,
6585 features/aarch64-core.c, features/aarch64-fpu.c,
6586 features/aarch64-pauth.c, features/aarch64-sve.c,
6587 features/i386/32bit-avx.c, features/i386/32bit-avx512.c,
6588 features/i386/32bit-core.c, features/i386/32bit-linux.c,
6589 features/i386/32bit-mpx.c, features/i386/32bit-pkeys.c,
6590 features/i386/32bit-segments.c, features/i386/32bit-sse.c,
6591 features/i386/64bit-avx.c, features/i386/64bit-avx512.c,
6592 features/i386/64bit-core.c, features/i386/64bit-linux.c,
6593 features/i386/64bit-mpx.c, features/i386/64bit-pkeys.c,
6594 features/i386/64bit-segments.c, features/i386/64bit-sse.c,
6595 features/i386/x32-core.c, features/riscv/32bit-cpu.c,
6596 features/riscv/32bit-csr.c, features/riscv/32bit-fpu.c,
6597 features/riscv/64bit-cpu.c, features/riscv/64bit-csr.c,
6598 features/riscv/64bit-fpu.c, features/tic6x-c6xp.c,
6599 features/tic6x-core.c, features/tic6x-gp.c, filename-seen-cache.h,
6600 findcmd.c, findvar.c, fork-child.c, gcore.c, gdb_bfd.c, gdb_bfd.h,
6601 gdb_proc_service.h, gdb_regex.c, gdb_select.h, gdb_usleep.c,
6602 gdbarch-selftests.c, gdbthread.h, gdbtypes.h, gnu-nat.c,
6603 go32-nat.c, guile/guile.c, guile/scm-ports.c,
6604 guile/scm-safe-call.c, guile/scm-type.c, i386-fbsd-nat.c,
6605 i386-fbsd-tdep.c, i386-go32-tdep.c, i386-linux-nat.c,
6606 i386-linux-tdep.c, i386-tdep.c, i387-tdep.c,
6607 ia64-libunwind-tdep.c, ia64-linux-nat.c, inf-child.c,
6608 inf-ptrace.c, infcall.c, infcall.h, infcmd.c, inferior-iter.h,
6609 inferior.c, inferior.h, inflow.c, inflow.h, infrun.c, infrun.h,
6610 inline-frame.c, language.h, linespec.c, linux-fork.c, linux-nat.c,
6611 linux-tdep.c, linux-thread-db.c, location.c, machoread.c,
6612 macrotab.h, main.c, maint.c, maint.h, memattr.c, memrange.h,
6613 mi/mi-cmd-break.h, mi/mi-cmd-env.c, mi/mi-cmd-stack.c,
6614 mi/mi-cmd-var.c, mi/mi-interp.c, mi/mi-main.c, mi/mi-parse.h,
6615 minsyms.c, mips-linux-tdep.c, namespace.h,
6616 nat/aarch64-linux-hw-point.c, nat/aarch64-linux-hw-point.h,
6617 nat/aarch64-linux.c, nat/aarch64-sve-linux-ptrace.c,
6618 nat/amd64-linux-siginfo.c, nat/fork-inferior.c,
6619 nat/linux-btrace.c, nat/linux-btrace.h, nat/linux-namespaces.c,
6620 nat/linux-nat.h, nat/linux-osdata.c, nat/linux-personality.c,
6621 nat/linux-procfs.c, nat/linux-ptrace.c, nat/linux-ptrace.h,
6622 nat/linux-waitpid.c, nat/mips-linux-watch.c,
6623 nat/mips-linux-watch.h, nat/ppc-linux.c, nat/x86-dregs.c,
6624 nat/x86-dregs.h, nat/x86-linux-dregs.c, nat/x86-linux.c,
6625 nto-procfs.c, nto-tdep.c, objfile-flags.h, objfiles.c, objfiles.h,
6626 obsd-nat.c, observable.h, osdata.c, p-valprint.c, parse.c,
6627 parser-defs.h, ppc-linux-nat.c, printcmd.c, probe.c, proc-api.c,
6628 procfs.c, producer.c, progspace.h, psymtab.h,
6629 python/py-framefilter.c, python/py-inferior.c, python/py-ref.h,
6630 python/py-type.c, python/python.c, record-btrace.c, record-full.c,
6631 record.c, record.h, regcache-dump.c, regcache.c, regcache.h,
6632 remote-fileio.c, remote-fileio.h, remote-sim.c, remote.c,
6633 riscv-tdep.c, rs6000-aix-tdep.c, rust-exp.y, s12z-tdep.c,
6634 selftest-arch.c, ser-base.c, ser-event.c, ser-pipe.c, ser-tcp.c,
6635 ser-unix.c, skip.c, solib-aix.c, solib-target.c, solib.c,
6636 source-cache.c, source.c, source.h, sparc-nat.c, spu-linux-nat.c,
6637 stack.c, stap-probe.c, symfile-add-flags.h, symfile.c, symfile.h,
6638 symtab.c, symtab.h, target-descriptions.c, target-descriptions.h,
6639 target-memory.c, target.c, target.h, target/waitstatus.c,
6640 target/waitstatus.h, thread-iter.h, thread.c, tilegx-tdep.c,
6641 top.c, top.h, tracefile-tfile.c, tracefile.c, tracepoint.c,
6642 tracepoint.h, tui/tui-io.c, ui-file.c, ui-out.h,
6643 unittests/array-view-selftests.c,
6644 unittests/child-path-selftests.c, unittests/cli-utils-selftests.c,
6645 unittests/common-utils-selftests.c,
6646 unittests/copy_bitwise-selftests.c, unittests/environ-selftests.c,
6647 unittests/format_pieces-selftests.c,
6648 unittests/function-view-selftests.c,
6649 unittests/lookup_name_info-selftests.c,
6650 unittests/memory-map-selftests.c, unittests/memrange-selftests.c,
6651 unittests/mkdir-recursive-selftests.c,
6652 unittests/observable-selftests.c,
6653 unittests/offset-type-selftests.c, unittests/optional-selftests.c,
6654 unittests/parse-connection-spec-selftests.c,
6655 unittests/ptid-selftests.c, unittests/rsp-low-selftests.c,
6656 unittests/scoped_fd-selftests.c,
6657 unittests/scoped_mmap-selftests.c,
6658 unittests/scoped_restore-selftests.c,
6659 unittests/string_view-selftests.c, unittests/style-selftests.c,
6660 unittests/tracepoint-selftests.c, unittests/unpack-selftests.c,
6661 unittests/utils-selftests.c, unittests/xml-utils-selftests.c,
6662 utils.c, utils.h, valarith.c, valops.c, valprint.c, value.c,
6663 value.h, varobj.c, varobj.h, windows-nat.c, x86-linux-nat.c,
6664 xml-support.c, xml-support.h, xml-tdesc.h, xstormy16-tdep.c,
6665 xtensa-linux-nat.c, dwarf2read.h: Change common to gdbsupport.
6666
6667 2019-07-09 Andrew Burgess <andrew.burgess@embecosm.com>
6668
6669 * linespec.c (decode_digits_list_mode): Set explicit_line to a
6670 bool value.
6671 (decode_digits_ordinary): Set explicit_line field in sal.
6672 * symtab.c (skip_prologue_sal): Don't skip prologue for a
6673 symtab_and_line that was set on an explicit line number in
6674 assembler code. Do always update the recorded symtab and line if
6675 we do skip the prologue.
6676
6677 2019-07-09 Andrew Burgess <andrew.burgess@embecosm.com>
6678
6679 * breakpoint.c (set_breakpoint_location_function): Remove
6680 explicit_loc parameter.
6681 (momentary_breakpoint_from_master): Update call to
6682 set_breakpoint_location_function.
6683 (add_location_to_breakpoint): Likewise.
6684
6685 2019-07-09 Andrew Burgess <andrew.burgess@embecosm.com>
6686
6687 * riscv-tdep.c (riscv_features_from_gdbarch_info): Don't modify
6688 required features based on default bfd type when no specific bfd
6689 is present.
6690
6691 2019-07-08 Philippe Waroquiers <philippe.waroquiers@skynet.be>
6692
6693 * NEWS: Mention that GDB printf and eval commands can now print
6694 C-style and Ada-style convenience var strings without
6695 calling the inferior.
6696 * printcmd.c (printf_c_string): Locally print GDB internal var
6697 instead of transiting via the inferior.
6698 (printf_wide_c_string): Likewise.
6699
6700 2019-07-04 Alan Hayward <alan.hayward@arm.com>
6701
6702 PR breakpoints/25011
6703 * symfile.c (symbol_file_command): Call solib_create_inferior_hook.
6704
6705 2019-07-04 Tom Tromey <tom@tromey.com>
6706
6707 PR tui/24724:
6708 * tui/tui-winsource.c (tui_clear_source_content): Update.
6709 (tui_source_window_base::set_is_exec_point_at): Fix comment.
6710 (tui_update_breakpoint_info): Update.
6711 (tui_set_exec_info_content): Update.
6712 * tui/tui-source.c (tui_set_source_content_nil): Update.
6713 * tui/tui-disasm.c (tui_set_disassem_content): Don't set
6714 has_break.
6715 * tui/tui-data.h (enum tui_bp_flag): New.
6716 (tui_bp_flags): New enum flags type.
6717 (struct tui_source_element) <break_mode>: Change type. Rename
6718 from has_break.
6719 (TUI_BP_ENABLED, TUI_BP_DISABLED, TUI_BP_HIT)
6720 (TUI_BP_CONDITIONAL, TUI_BP_HARDWARE): Don't define. Now enum
6721 constants.
6722 * tui/tui-winsource.h: Fix comment.
6723
6724 2019-07-04 Alan Hayward <alan.hayward@arm.com>
6725
6726 * aarch32-linux-nat.h (VFP_REGS_SIZE): Remove define.
6727 * aarch64-linux-nat.c (fetch_fpregs_from_thread)
6728 (store_fpregs_to_thread)
6729 (aarch64_linux_nat_target::read_description): Use ARM_VFP3_REGS_SIZE.
6730 * arch/arm.h (IWMMXT_VEC_REGISTER_SIZE, ARM_CORE_REGS_SIZE)
6731 (ARM_FP_REGS_SIZE, ARM_VFP2_REGS_SIZE, ARM_VFP3_REGS_SIZE)
6732 (IWMMXT_REGS_SIZE): Add define.
6733 * arm-linux-nat.c (IWMMXT_REGS_SIZE): Remove define.
6734 (fetch_vfp_regs, store_vfp_regs)
6735 (arm_linux_nat_target::read_description): Use ARM_VFP3_REGS_SIZE.
6736 * arm-tdep.c (arm_register_g_packet_guesses): Use new defines.
6737
6738 2019-07-04 Alan Hayward <alan.hayward@arm.com>
6739
6740 * arch/arm-get-next-pcs.c (thumb_get_next_pcs_raw): Use ARM_
6741 defines.
6742 * arch/arm-linux.c (arm_linux_sigreturn_next_pc_offset): Likewise.
6743 * arch/arm.h (INT_REGISTER_SIZE) Rename from...
6744 (ARM_INT_REGISTER_SIZE): ...to this.
6745 (ARM_FP_REGISTER_SIZE) (ARM_VFP_REGISTER_SIZE): Add define.
6746 * arm-linux-tdep.c (ARM_LINUX_JB_ELEMENT_SIZE)
6747 (ARM_LINUX_SIZEOF_GREGSET, arm_linux_supply_gregset)
6748 (arm_linux_collect_gregset, supply_nwfpe_register)
6749 (collect_nwfpe_register, arm_linux_collect_nwfpe): Use ARM_
6750 defines.
6751 * arm-linux-tdep.h (ARM_LINUX_SIZEOF_NWFPE, NWFPE_FPSR_OFFSET)
6752 (NWFPE_FPCR_OFFSET, NWFPE_TAGS_OFFSET): Likewise
6753 * arm-nbsd-tdep.c (ARM_NBSD_JB_ELEMENT_SIZE): Likewise.
6754 * arm-tdep.c (arm_push_dummy_call, arm_extract_return_value)
6755 (arm_return_in_memory, arm_store_return_value)
6756 (arm_get_longjmp_target, arm_register_g_packet_guesses)
6757 (arm_record_ld_st_multiple): Likewise.
6758 * arm-tdep.h (FP_REGISTER_SIZE, VFP_REGISTER_SIZE): Remove.
6759 * arm-wince-tdep.c (ARM_WINCE_JB_ELEMENT_SIZE): Use ARM_ defines.
6760
6761 2019-07-04 Alan Hayward <alan.hayward@arm.com>
6762
6763 * aarch64-linux-tdep.c (aarch64_linux_init_abi): Use
6764 AARCH64_DISPLACED_MODIFIED_INSNS.
6765 * aarch64-tdep.c (struct aarch64_displaced_step_data)
6766 (aarch64_displaced_step_copy_insn): Likewise.
6767 * aarch64-tdep.h (DISPLACED_MODIFIED_INSNS): Rename from..
6768 (AARCH64_DISPLACED_MODIFIED_INSNS): ...to this.
6769 * arm-linux-tdep.c (arm_linux_cleanup_svc): Use
6770 ARM_DISPLACED_MODIFIED_INSNS.
6771 * arm-tdep.c (arm_gdbarch_init): Likewise.
6772 * arm-tdep.h (DISPLACED_MODIFIED_INSNS): Rename from..
6773 (ARM_DISPLACED_MODIFIED_INSNS): ...to this.
6774 (struct arm_displaced_step_closure): Use
6775 ARM_DISPLACED_MODIFIED_INSNS.
6776
6777 2019-07-04 Alan Hayward <alan.hayward@arm.com>
6778
6779 * features/Makefile: Remove unused xml files.
6780 * features/aarch64.xml: Remove.
6781 * features/i386/amd64-avx-avx512-linux.xml: Remove.
6782 * features/i386/amd64-avx-avx512.xml: Remove.
6783 * features/i386/amd64-avx-linux.xml: Remove.
6784 * features/i386/amd64-avx-mpx-avx512-pku-linux.xml: Remove.
6785 * features/i386/amd64-avx-mpx-avx512-pku.xml: Remove.
6786 * features/i386/amd64-avx-mpx-linux.xml: Remove.
6787 * features/i386/amd64-avx-mpx.xml: Remove.
6788 * features/i386/amd64-avx.xml: Remove.
6789 * features/i386/amd64-linux.xml: Remove.
6790 * features/i386/amd64-mpx-linux.xml: Remove.
6791 * features/i386/amd64-mpx.xml: Remove.
6792 * features/i386/amd64.xml: Remove.
6793 * features/i386/i386-avx-avx512-linux.xml: Remove.
6794 * features/i386/i386-avx-avx512.xml: Remove.
6795 * features/i386/i386-avx-linux.xml: Remove.
6796 * features/i386/i386-avx-mpx-avx512-pku-linux.xml: Remove.
6797 * features/i386/i386-avx-mpx-avx512-pku.xml: Remove.
6798 * features/i386/i386-avx-mpx-linux.xml: Remove.
6799 * features/i386/i386-avx-mpx.xml: Remove.
6800 * features/i386/i386-avx.xml: Remove.
6801 * features/i386/i386-linux.xml: Remove.
6802 * features/i386/i386-mmx-linux.xml: Remove.
6803 * features/i386/i386-mmx.xml: Remove.
6804 * features/i386/i386-mpx-linux.xml: Remove.
6805 * features/i386/i386-mpx.xml: Remove.
6806 * features/i386/i386.xml: Remove.
6807 * features/i386/x32-avx-avx512-linux.xml: Remove.
6808 * features/i386/x32-avx-linux.xml: Remove.
6809 * features/i386/x32-linux.xml: Remove.
6810
6811 2019-07-04 Alan Hayward <alan.hayward@arm.com>
6812
6813 * regformats/aarch64.dat: Remove.
6814 * regformats/i386/amd64-avx-avx512-linux.dat: Remove.
6815 * regformats/i386/amd64-avx-linux.dat: Remove.
6816 * regformats/i386/amd64-avx-mpx-avx512-pku-linux.dat: Remove.
6817 * regformats/i386/amd64-avx-mpx-linux.dat: Remove.
6818 * regformats/i386/amd64-linux.dat: Remove.
6819 * regformats/i386/amd64-mpx-linux.dat: Remove.
6820 * regformats/i386/amd64.dat: Remove.
6821 * regformats/i386/i386-avx-avx512-linux.dat: Remove.
6822 * regformats/i386/i386-avx-linux.dat: Remove.
6823 * regformats/i386/i386-avx-mpx-avx512-pku-linux.dat: Remove.
6824 * regformats/i386/i386-avx-mpx-linux.dat: Remove.
6825 * regformats/i386/i386-linux.dat: Remove.
6826 * regformats/i386/i386-mmx-linux.dat: Remove.
6827 * regformats/i386/i386-mpx-linux.dat: Remove.
6828 * regformats/i386/i386.dat: Remove.
6829 * regformats/i386/x32-avx-avx512-linux.dat: Remove.
6830 * regformats/i386/x32-avx-linux.dat: Remove.
6831 * regformats/i386/x32-linux.dat: Remove.
6832
6833 2019-07-04 Alan Hayward <alan.hayward@arm.com>
6834
6835 * aarch64-tdep.c: Remove xml self tests.
6836 * amd64-linux-tdep.c: Likewise.
6837 * amd64-tdep.c: Likewise.
6838 * i386-linux-tdep.c: Likewise.
6839 * i386-tdep.c: Likewise.
6840
6841 2019-07-03 Pedro Alves <palves@redhat.com>
6842
6843 PR cli/24732
6844 * cli/cli-cmds.c (struct pipe_cmd_opts): New.
6845 (pipe_cmd_option_defs): New.
6846 (make_pipe_cmd_options_def_group): New.
6847 (pipe_command): Use gdb::option::process_options.
6848 (pipe_command_completer): New function.
6849 (_initialize_cli_cmds): Install completer for "pipe" command.
6850
6851 2019-07-03 Pedro Alves <palves@redhat.com>
6852
6853 * cli/cli-option.c (union option_value) <string>: New field.
6854 (struct option_def_and_value): Add ctor, move ctor, dtor and
6855 use DISABLE_COPY_AND_ASSIGN.
6856 (option_def_and_value::clear_value): New.
6857 (parse_option, save_option_value_in_ctx, get_val_type_str)
6858 (add_setshow_cmds_for_options): Handle var_string.
6859 * cli-option.h (union option_def::var_address) <string>: New
6860 field.
6861 (struct string_option_def): New.
6862 * maint-test-options.c (struct test_options_opts): Add default
6863 ctor and use DISABLE_COPY_AND_ASSIGN.
6864 <string_opt>: New field.
6865 (test_options_opts::~test_options_opts): New.
6866 (test_options_opts::dump): Also dump "-string".
6867 (test_options_option_defs): Install "string.
6868
6869 2019-07-03 Pedro Alves <palves@redhat.com>
6870
6871 * cli/cli-option.c (parse_option) <var_enum>: Don't return an
6872 option_value with a null enumeration.
6873 (complete_options): Save the option values in the context.
6874 (save_option_value_in_ctx): New, factored out from ...
6875 (process_options): ... here.
6876 * cli/cli-utils.c (get_ulongest): Don't advance PP until the end
6877 of the function.
6878 * maint-test-options.c (test_options_opts::dump): New, factored
6879 out from ...
6880 (maintenance_test_options_command_mode): ... here.
6881 (maintenance_test_options_command_completion_result): Delete.
6882 (maintenance_test_options_command_completion_text): Update
6883 comment.
6884 (maintenance_show_test_options_completion_result): Change
6885 prototype. Just print
6886 maintenance_test_options_command_completion_text.
6887 (save_completion_result): New.
6888 (maintenance_test_options_completer_mode): Pass options context to
6889 complete_options, and then save a dump.
6890 (_initialize_maint_test_options): Use add_cmd to install "maint
6891 show test-options-completion-result".
6892
6893 2019-07-03 Pedro Alves <palves@redhat.com>
6894
6895 * NEWS (New commands): Mention "with" and "maint with".
6896 * cli/cli-cmds.c (with_command_1, with_command_completer_1)
6897 (with_command, with_command_completer): New.
6898 (pipe_command): Adjust to new repeat_previous
6899 interface.
6900 (_initialize_cli_cmds): Install the "with" command and its "w"
6901 alias.
6902 * cli/cli-cmds.h (with_command_1, with_command_completer_1): New
6903 declarations.
6904 * cli/cli-setshow.c (parse_cli_var_uinteger)
6905 (parse_cli_var_zuinteger_unlimited, do_set_command): Handle empty
6906 argument strings for all var_types.
6907 (get_setshow_command_value_string): New, factored out from ...
6908 (do_show_command): ... this.
6909 * cli/cli-setshow.h: Include <string>.
6910 (get_setshow_command_value_string): Declare.
6911 * command.h (repeat_previous): Now returns const char *. Adjust
6912 comment.
6913 * maint.c: Include "cli/cli-cmds.h".
6914 (maintenance_with_cmd, maintenance_with_cmd_completer): New.
6915 (_initialize_maint_cmds): Register the "maintenance with" command.
6916 * top.c (repeat_previous): Move bits from pipe_command here:
6917 Return the saved command line, if any; error out if there's no
6918 command to relaunch.
6919
6920 2019-07-03 Pedro Alves <palves@redhat.com>
6921
6922 * NEWS (New commands): Mention "maint set/show test-settings"
6923 instead of "maint test-settings".
6924 * maint-test-settings.c (maintenance_test_settings_list): Delete.
6925 (maintenance_test_settings_set_list): Rename to ...
6926 (maintenance_set_test_settings_list): ... this.
6927 (maintenance_test_settings_show_list): Rename to ...
6928 (maintenance_show_test_settings_list): ... this.
6929 (maintenance_test_settings_cmd): Delete.
6930 (maintenance_test_settings_set_cmd): ...
6931 (maintenance_set_test_settings_cmd): ... this.
6932 (maintenance_test_settings_show_cmd): ...
6933 (maintenance_show_test_settings_cmd): ... this.
6934 (maintenance_test_settings_show_value_cmd):
6935 (maintenance_show_test_settings_value_cmd): ... this.
6936 (_initialize_maint_test_settings): No longer install the "maint
6937 test-settings" prefix command. Rename "maint test-settings set"
6938 to "maint set test-settings", and "maint test-settings show" to
6939 "maint show test-settings". Adjust all subcommands.
6940
6941 2019-07-03 Pedro Alves <palves@redhat.com>
6942
6943 * maint-test-settings.c: Fix file's intro comment. Replace all
6944 references to "test-options" with references to "test-settings",
6945 in comments.
6946
6947 2019-07-03 Pedro Alves <palves@redhat.com>
6948
6949 * maint-test-settings.c (maintenance_test_settings_xxx)
6950 (maintenance_test_settings_yyy, maintenance_test_settings_zzz):
6951 New.
6952 (maintenance_test_settings_enums): Use them.
6953 (maintenance_test_settings_enum): Default to
6954 maintenance_test_settings_xxx.
6955 (_initialize_maint_test_settings): Initialize
6956 MAINTENANCE_TEST_SETTINGS_FILENAME.
6957
6958 2019-07-02 Simon Marchi <simon.marchi@polymtl.ca>
6959
6960 * breakpoint.h (remove_breakpoints_inf): Change return type to
6961 void, move function documentation here.
6962 * breakpoint.c (remove_breakpoints_inf): Change return type to
6963 void, move function documentation to header.
6964
6965 2019-07-02 Pedro Alves <palves@redhat.com>
6966
6967 * NEWS (Completion improvements): Mention "info threads".
6968 * thread.c (struct info_threads_opts, info_threads_option_defs)
6969 (make_info_threads_options_def_group): New.
6970 (info_threads_command): Use gdb::option::process_options.
6971 (info_threads_command_completer): New.
6972 (_initialize_thread): Use gdb::option::build_help to build the
6973 help text for "info threads".
6974
6975 2019-07-02 Simon Marchi <simon.marchi@polymtl.ca>
6976
6977 * defs.h (generic_load): Move from here...
6978 * symfile.h (generic_load): ... to here. Rename name parameter
6979 to args.
6980 * symfile.c (generic_load): Add comment.
6981
6982 2019-07-01 Tom Tromey <tromey@adacore.com>
6983
6984 * dwarf2read.c
6985 (dw2_debug_names_iterator::find_vec_in_debug_names): Hoist
6986 declaration of without_params. Fix formatting.
6987
6988 2019-07-01 Tom Tromey <tromey@adacore.com>
6989
6990 * ada-exp.y (find_primitive_type): Update.
6991 * ada-lang.h (ada_lookup_symbol): Update.
6992 * ada-lang.c (ada_lookup_symbol): Remove "is_a_field_of_this"
6993 parameter.
6994 (ada_lookup_encoded_symbol, ada_lookup_symbol_nonlocal): Update.
6995
6996 2019-06-28 Sergio Durigan Junior <sergiodj@redhat.com>
6997
6998 PR breakpoints/24541
6999 * gdbarch.c: Regenerate.
7000 * gdbarch.h: Regenerate.
7001 * gdbarch.sh: Add 'stap_adjust_register'.
7002 * i386-tdep.c: Include '<unordered_set>'.
7003 (i386_stap_adjust_register): New function.
7004 (i386_elf_init_abi): Register 'i386_stap_adjust_register'.
7005 * stap-probe.c (stap_parse_register_operand): Call
7006 'gdbarch_stap_adjust_register'.
7007
7008 2019-06-28 Sergio Durigan Junior <sergiodj@redhat.com>
7009
7010 PR python/24742
7011 https://bugzilla.redhat.com/show_bug.cgi?id=1723564
7012 * python/python.c (do_start_initialization): Use 'xmalloc'
7013 instead of 'PyMem_Malloc'.
7014
7015 2019-06-28 Tom Tromey <tromey@adacore.com>
7016
7017 * dwarf2read.c (partial_die_info::read): Prefer the linkage name
7018 for Ada.
7019
7020 2019-06-27 Tom Tromey <tromey@adacore.com>
7021
7022 * arm-tdep.c (arm_objfile_data_key): Move lower. Change type to
7023 objfile_key.
7024 (arm_find_mapping_symbol, arm_record_special_symbol)
7025 (_initialize_arm_tdep): Update.
7026 (arm_objfile_data_free): Remove.
7027
7028 2019-06-27 Tom Tromey <tromey@adacore.com>
7029
7030 * cp-valprint.c (cp_print_value_fields): Pass opts, not options,
7031 to cp_print_static_field.
7032
7033 2019-06-26 Tom Tromey <tromey@adacore.com>
7034
7035 * minsyms.c (lookup_minimal_symbol_solib_trampoline): Remove.
7036 * minsyms.h (lookup_minimal_symbol_solib_trampoline): Don't
7037 declare.
7038
7039 2019-06-26 Alan Hayward <alan.hayward@arm.com>
7040
7041 * features/aarch64-core.c (create_feature_aarch64_core):
7042 Regenerate.
7043 * features/aarch64-core.xml: Add cpsr flags.
7044
7045 2019-06-26 Alan Hayward <alan.hayward@arm.com>
7046
7047 * arm-tdep.c (arm_gnu_triplet_regexp): New function.
7048 (arm_gdbarch_init): Add arm_gnu_triplet_regexp.
7049
7050 2019-06-25 Simon Marchi <simon.marchi@polymtl.ca>
7051
7052 * arm-tdep.c (struct arm_per_objfile) <section_maps_sorted>: New
7053 field.
7054 (arm_find_mapping_symbol): Sort mapping symbol vectors on first
7055 use.
7056 (arm_record_special_symbol): Don't insert new symbol in sorted
7057 position, push it at the end.
7058
7059 2019-06-25 Simon Marchi <simon.marchi@polymtl.ca>
7060
7061 * arm-tdep.c (struct arm_mapping_symbol) (operator <): New.
7062 (arm_mapping_symbol_s): Remove.
7063 (DEF_VEC_O(arm_mapping_symbol_s)): Remove.
7064 (arm_mapping_symbol_vec): New typedef.
7065 (struct arm_per_objfile): Add constructor.
7066 <section_maps>: Change type to
7067 std::unique_ptr<arm_mapping_symbol_vec[]>.
7068 (arm_compare_mapping_symbols): Remove.
7069 (arm_find_mapping_symbol): Adjust to section_maps type change.
7070 (arm_objfile_data_free): Call delete on arm_per_objfile.
7071 (arm_record_special_symbol): Adjust to section_maps type change.
7072 Allocate arm_per_objfile with new.
7073
7074 2019-06-25 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7075
7076 * cli/cli-cmds.c (alias_command): Compare the alias prefix
7077 with the command prefix.
7078
7079 2019-06-25 Tom Tromey <tom@tromey.com>
7080
7081 * tui/tui-wingeneral.c (tui_delete_win): Remove "return".
7082 * tui/tui-data.c (~tui_gen_win_info): Remove "if".
7083
7084 2019-06-25 Tom Tromey <tom@tromey.com>
7085
7086 * tui/tui-layout.c (init_and_make_win): Assert on unrecognized
7087 type.
7088 * tui/tui-data.h (struct tui_gen_win_info): Make constructor
7089 protected.
7090
7091 2019-06-25 Tom Tromey <tom@tromey.com>
7092
7093 * tui/tui-winsource.c
7094 (tui_source_window_base::set_is_exec_point_at): Add check against
7095 LOA_ADDRESS.
7096
7097 2019-06-25 Tom Tromey <tom@tromey.com>
7098
7099 * tui/tui-source.c (tui_set_source_content): Don't check before
7100 xfree.
7101 * tui/tui-disasm.c (tui_disassemble): Don't check before xfree.
7102
7103 2019-06-25 Tom Tromey <tom@tromey.com>
7104
7105 * tui/tui-winsource.h (tui_update_source_window_as_is)
7106 (tui_alloc_source_buffer, tui_line_is_displayed)
7107 (tui_addr_is_displayed): Change type of win_info.
7108 * tui/tui-winsource.c (tui_update_source_window_as_is)
7109 (tui_clear_source_content, tui_show_source_line)
7110 (tui_show_source_content, tui_source_window_base::refill)
7111 (tui_source_window_base::set_is_exec_point_at)
7112 (tui_source_window_base::set_is_exec_point_at)
7113 (tui_update_breakpoint_info, tui_set_exec_info_content): Update.
7114 (tui_alloc_source_buffer, tui_line_is_displayed)
7115 (tui_addr_is_displayed): Change type of win_info. Update.
7116 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights)
7117 (tui_source_window_base::do_make_visible_with_new_height):
7118 Update.
7119 * tui/tui-source.c (tui_set_source_content)
7120 (tui_set_source_content_nil)
7121 (tui_source_window::do_scroll_vertical): Update.
7122 * tui/tui-layout.c (show_layout): Update.
7123 * tui/tui-disasm.c (tui_set_disassem_content)
7124 (tui_disasm_window::do_scroll_vertical): Update.
7125 * tui/tui-data.h (tui_win_content): Remove.
7126 (struct tui_gen_win_info) <content, content_size>: Remove.
7127 (struct tui_source_element): Add initializers and destructor.
7128 (union tui_which_element, struct tui_win_element): Remove.
7129 (struct tui_source_window_base) <content>: New field.
7130 (struct tui_data_window): Remove destructor.
7131 (tui_alloc_content, tui_free_win_content)
7132 (tui_free_all_source_wins_content): Don't declare.
7133 * tui/tui-data.c (tui_initialize_static_data): Update.
7134 (init_content_element, tui_alloc_content): Remove.
7135 (~tui_gen_win_info): Update.
7136 (~tui_data_window, tui_free_all_source_wins_content)
7137 (tui_free_win_content, free_content, free_content_elements):
7138 Remove.
7139
7140 2019-06-25 Tom Tromey <tom@tromey.com>
7141
7142 * tui/tui-winsource.h (tui_clear_source_content)
7143 (tui_erase_source_content, tui_show_source_content): Change type
7144 of win_info.
7145 * tui/tui-winsource.c (tui_clear_source_content)
7146 (tui_erase_source_content, tui_show_source_content): Change type
7147 of win_info.
7148 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights): Update.
7149 * tui/tui-source.h (tui_set_source_content_nil): Change type of
7150 win_info.
7151 * tui/tui-source.c (tui_set_source_content_nil): Change type of
7152 win_info.
7153 * tui/tui-layout.c (show_source_or_disasm_and_command): Update.
7154
7155 2019-06-25 Tom Tromey <tom@tromey.com>
7156
7157 * tui/tui-winsource.c (tui_clear_source_content)
7158 (tui_source_window_base::set_is_exec_point_at): Update.
7159 * tui/tui-source.c (tui_set_source_content_nil): Update.
7160 * tui/tui-data.h (struct tui_source_element) <is_exec_point>: Now
7161 a bool.
7162 * tui/tui-data.c (init_content_element): Update.
7163
7164 2019-06-25 Tom Tromey <tom@tromey.com>
7165
7166 * tui/tui-wingeneral.c (tui_gen_win_info::make_visible): Update.
7167 * tui/tui-win.c (make_invisible_and_set_new_height): Update.
7168 * tui/tui-layout.c (init_and_make_win): Update.
7169 * tui/tui.h (enum tui_win_type): Update.
7170 * tui/tui-data.h (tui_win_is_auxiliary): Rename from
7171 tui_win_is_auxillary.
7172 * tui/tui-data.c (tui_win_is_auxiliary): Rename from
7173 tui_win_is_auxillary.
7174
7175 2019-06-25 Tom Tromey <tom@tromey.com>
7176
7177 * tui/tui-wingeneral.c (tui_data_window::refresh_window): Update.
7178 * tui/tui-windata.c (tui_data_window::first_data_item_displayed)
7179 (tui_delete_data_content_windows, tui_display_all_data)
7180 (tui_data_window::do_scroll_vertical, tui_display_data_from):
7181 Update.
7182 * tui/tui-win.c (tui_data_window::set_new_height): Simplify.
7183 * tui/tui-regs.c (tui_last_regs_line_no)
7184 (tui_line_from_reg_element_no, tui_first_reg_element_no_inline)
7185 (tui_show_registers): Update.
7186 (tui_show_register_group): Return void. Update.
7187 (tui_display_registers_from, tui_display_reg_element_at_line)
7188 (tui_display_registers_from_line, tui_check_register_values):
7189 Update.
7190 * tui/tui-data.h (union tui_which_element) <data_window>: Remove
7191 member.
7192 (struct tui_data_window) <regs_content>: Now a std::vector.
7193 <regs_content_count>: Remove.
7194 (tui_add_content_elements, tui_free_data_content): Don't declare.
7195 * tui/tui-data.c (tui_data_window::clear_detail): Update.
7196 (init_content_element): Remove DATA_WIN case. Add assert.
7197 (tui_add_content_elements): Remove.
7198 (tui_data_window): Update.
7199 (tui_free_data_content): Remove.
7200 (free_content_elements): Remove DATA_WIN case.
7201
7202 2019-06-25 Tom Tromey <tom@tromey.com>
7203
7204 * tui/tui-data.c (tui_data_item_window): Update.
7205 * tui/tui-windata.h (tui_check_data_values): Don't declare.
7206 * tui/tui-windata.c (tui_display_all_data)
7207 (tui_display_data_from_line): Update.
7208 (tui_check_data_values): Remove.
7209 * tui/tui-regs.c (tui_show_register_group)
7210 (tui_display_reg_element_at_line): Update.
7211 * tui/tui-hooks.c (tui_register_changed)
7212 (tui_refresh_frame_and_register_information): Call
7213 tui_check_register_values.
7214 * tui/tui-data.h (struct tui_data_window) <data_content,
7215 data_content_count, data_type>: Remove.
7216 (enum tui_data_type): Remove.
7217
7218 * tui/tui-data.c (tui_data_window::clear_detail)
7219 (~tui_data_window): Update.
7220
7221 2019-06-25 Tom Tromey <tom@tromey.com>
7222
7223 * tui/tui-windata.h (tui_first_data_item_displayed): Don't
7224 declare.
7225 * tui/tui-windata.c (tui_data_window::first_data_item_displayed):
7226 Rename from tui_first_data_item_displayed. Update.
7227 (tui_data_window::refresh_all)
7228 (tui_data_window::do_scroll_vertical): Update.
7229 * tui/tui-data.h (struct tui_data_window)
7230 <first_data_item_displayed>: Declare new method.
7231
7232 2019-06-25 Tom Tromey <tom@tromey.com>
7233
7234 * tui/tui-data.h (tui_init_generic_part): Don't declare.
7235 * tui/tui-data.c (tui_init_generic_part): Remove, moving
7236 contents...
7237 (tui_initialize_static_data): ...here.
7238
7239 2019-06-25 Tom Tromey <tom@tromey.com>
7240
7241 * tui/tui-regs.c (tui_show_registers, tui_show_register_group)
7242 (tui_display_registers_from, tui_check_register_values): Update.
7243 (tui_display_register): Remove win_info parameter; update.
7244 (tui_get_register): Change type of parameters.
7245 * tui/tui-data.h (struct tui_data_element): Remove.
7246 (union tui_which_element) <data>: Remove.
7247 <data_window>: Change type.
7248 (struct tui_data_item_window): New.
7249 * tui/tui-data.c (init_content_element): Remove DATA_ITEM_WIN
7250 case. Add assert.
7251 (~tui_data_item_window): New destructor.
7252 (free_content_elements): Remove DATA_ITEM_WIN case.
7253
7254 2019-06-25 Tom Tromey <tom@tromey.com>
7255
7256 * tui/tui.h (enum tui_win_type) <MAX_WINDOWS, UNDEFINED_WIN>:
7257 Remove.
7258
7259 2019-06-25 Tom Tromey <tom@tromey.com>
7260
7261 * tui/tui-data.h (struct tui_command_element): Remove.
7262 (union tui_which_element) <command>: Remove.
7263 * tui/tui-data.c (init_content_element): Remove CMD_WIN case. Add
7264 assert.
7265 (free_content_elements): Remove CMD_WIN case.
7266
7267 2019-06-25 Tom Tromey <tom@tromey.com>
7268
7269 * tui/tui-layout.c (tui_set_layout): Update.
7270 * tui/tui-data.h (struct tui_layout_def) <split>: Remove.
7271 * tui/tui-data.c (layout_def): Update.
7272
7273 2019-06-25 Tom Tromey <tom@tromey.com>
7274
7275 * tui/tui-wingeneral.c (tui_refresh_all): Update.
7276 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights)
7277 (tui_source_window_base::set_new_height): Update.
7278 * tui/tui-stack.c (tui_make_status_line): Change parameter type.
7279 Update.
7280 (tui_set_locator_fullname, tui_set_locator_info)
7281 (tui_show_frame_info): Update.
7282 * tui/tui-source.c (tui_set_source_content)
7283 (tui_source_is_displayed): Update.
7284 * tui/tui-layout.c (show_source_disasm_command, show_data)
7285 (show_source_or_disasm_and_command): Update.
7286 * tui/tui-disasm.c (tui_set_disassem_content)
7287 (tui_get_begin_asm_address): Update.
7288 * tui/tui-data.h (struct tui_locator_element): Remove.
7289 (union tui_which_element) <locator>: Remove.
7290 (struct tui_locator_window): New.
7291 (tui_locator_win_info_ptr): Change return type.
7292 * tui/tui-data.c (_locator): Change type.
7293 (tui_locator_win_info_ptr): Change return type.
7294 (init_content_element): Remove LOCATOR_WIN case. Add assert.
7295 (tui_alloc_content): Add assert.
7296
7297 2019-06-25 Tom Tromey <tom@tromey.com>
7298
7299 * tui/tui-winsource.c
7300 (tui_exec_info_window::maybe_allocate_content): New method.
7301 (tui_set_exec_info_content, tui_show_exec_info_content): Update.
7302 * tui/tui-layout.c (init_and_make_win): Add EXEC_INFO_WIN case.
7303 (make_source_or_disasm_window): Add cast.
7304 * tui/tui-data.h (union tui_which_element) <simple_string>:
7305 Remove.
7306 (struct tui_source_info): New.
7307 (struct tui_source_window_base) <execution_info>: Change type.
7308 * tui/tui-data.c (init_content_element): Remove EXEC_INFO_WIN
7309 case, and add assert.
7310 (tui_alloc_content): Add assert.
7311
7312 2019-06-25 Tom Tromey <tom@tromey.com>
7313
7314 * tui/tui-data.h (tui_alloc_win_info): Don't declare.
7315 * tui/tui-layout.c (init_and_make_win): Use "new" directly.
7316 * tui/tui-data.c (tui_alloc_win_info): Remove.
7317
7318 2019-06-25 Tom Tromey <tom@tromey.com>
7319
7320 * tui/tui-win.c (tui_set_win_focus_to): Don't check window type.
7321 * tui/tui-wingeneral.c (tui_unhighlight_win): Check
7322 can_highlight.
7323
7324 2019-06-25 Tom Tromey <tom@tromey.com>
7325
7326 * tui/tui-win.c (tui_source_window_base::update_tab_width): Call
7327 make_visible_with_new_height method.
7328 (tui_win_info::make_visible_with_new_height): New method.
7329 (tui_source_window_base::do_make_visible_with_new_height)
7330 (tui_data_window::do_make_visible_with_new_height)
7331 (tui_cmd_window::do_make_visible_with_new_height): New methods.
7332 (make_visible_with_new_height): Remove.
7333 (tui_resize_all, tui_adjust_win_heights): Use
7334 make_visible_with_new_height method.
7335 * tui/tui-data.h (struct tui_win_info)
7336 <do_make_visible_with_new_height, make_visible_with_new_height>:
7337 New methods.
7338 (struct tui_source_window_base, struct tui_data_window)
7339 (struct tui_cmd_window) <do_make_visible_with_new_height>: New
7340 methods.
7341
7342 2019-06-25 Tom Tromey <tom@tromey.com>
7343
7344 * tui/tui-win.c (tui_source_window_base::update_tab_width): New
7345 method.
7346 (update_tab_width): Call update_tab_width method.
7347 * tui/tui-data.h (struct tui_win_info)
7348 (struct tui_source_window_base) <update_tab_width>: New methods.
7349
7350 2019-06-25 Tom Tromey <tom@tromey.com>
7351
7352 * tui/tui-wingeneral.h (tui_make_window): Change type of "box_it"
7353 parameter.
7354 * tui/tui-wingeneral.c (tui_make_window): Change type of "box_it"
7355 parameter.
7356 (tui_gen_win_info::make_visible): Update.
7357 * tui/tui-layout.c (init_and_make_win): Change type of "box_it"
7358 parameter.
7359 * tui/tui-data.h (enum tui_box): New enum.
7360 (BOX_WINDOW, DONT_BOX_WINDOW): Remove defines.
7361
7362 2019-06-25 Tom Tromey <tom@tromey.com>
7363
7364 * tui/tui-layout.c (make_source_or_disasm_window): Always use
7365 init_and_make_win for EXEC_INFO_WIN.
7366 * tui/tui-data.h (struct tui_gen_win_info) <~tui_gen_win_info>: No
7367 longer inline.
7368 (struct tui_win_info) <~tui_win_info>: Inline.
7369 (tui_source_exec_info_win_ptr, tui_disassem_exec_info_win_ptr):
7370 Don't declare.
7371 * tui/tui-data.c (source_win, disasm_win): Remove globals.
7372 (tui_source_exec_info_win_ptr, tui_disassem_exec_info_win_ptr):
7373 Remove.
7374 (tui_initialize_static_data): Update.
7375 (~tui_gen_win_info): Handle more cleanup here.
7376 (~tui_source_window_base): Delete "execution_info".
7377 (~tui_win_info): Move code to ~tui_gen_win_info; remove.
7378
7379 2019-06-25 Tom Tromey <tom@tromey.com>
7380
7381 * tui/tui-layout.c (make_command_window): Don't set
7382 can_highlight.
7383 (show_source_disasm_command): Call the reset method.
7384 (show_data): Don't set can_highlight. Call the reset method.
7385 (tui_gen_win_info::reset): Rename from init_gen_win_info
7386 (init_and_make_win): Simplify. Return tui_gen_win_info.
7387 (show_source_or_disasm_and_command): Call the reset method.
7388 * tui/tui-data.h (struct tui_gen_win_info) <reset>: New method.
7389 (struct tui_cmd_window): Set can_highlight.
7390
7391 2019-06-25 Tom Tromey <tom@tromey.com>
7392
7393 * tui/tui-wingeneral.c (tui_gen_win_info::make_visible): Rename
7394 from make_visible.
7395 (tui_make_visible, tui_make_invisible): Rewrite.
7396 (tui_win_info::make_visible): Remove.
7397 (tui_source_window_base::make_visible): Update.
7398 * tui/tui-data.h (struct tui_gen_win_info) <make_visible>: New
7399 method. Moved from...
7400 (struct tui_win_info) <make_visible>: ...here.
7401
7402 2019-06-25 Tom Tromey <tom@tromey.com>
7403
7404 * tui/tui-winsource.c
7405 (tui_source_window_base::do_scroll_horizontal): Remove direction
7406 parameter.
7407 * tui/tui-windata.c (tui_data_window::do_scroll_vertical): Remove
7408 direction parameter.
7409 * tui/tui-win.c (tui_win_info::forward_scroll)
7410 (tui_win_info::backward_scroll, tui_win_info::left_scroll)
7411 (tui_win_info::right_scroll): Update.
7412 * tui/tui-source.c (tui_source_window::do_scroll_vertical): Remove
7413 direction parameter.
7414 * tui/tui-disasm.c (tui_disasm_window::do_scroll_vertical): Remove
7415 direction parameter.
7416 * tui/tui-data.h (enum tui_scroll_direction): Remove.
7417 (struct tui_win_info) <do_scroll_vertical, do_scroll_horizontal>:
7418 Remove direction parameter.
7419 (struct tui_source_window_base, struct tui_source_window)
7420 (struct tui_disasm_window, struct tui_data_window)
7421 (struct tui_cmd_window): Update.
7422
7423 2019-06-25 Tom Tromey <tom@tromey.com>
7424
7425 * tui/tui-winsource.h (tui_set_exec_info_content)
7426 (tui_show_exec_info_content, tui_erase_exec_info_content)
7427 (tui_clear_exec_info_content, tui_update_exec_info): Change
7428 argument to tui_source_window_base.
7429 * tui/tui-winsource.c (tui_set_exec_info_content)
7430 (tui_show_exec_info_content, tui_erase_exec_info_content)
7431 (tui_clear_exec_info_content, tui_update_exec_info): Change
7432 argument to tui_source_window_base.
7433
7434 2019-06-25 Tom Tromey <tom@tromey.com>
7435
7436 * tui/tui-winsource.h (tui_set_exec_info_content): Return void.
7437 * tui/tui-winsource.c (tui_set_exec_info_content): Return void.
7438
7439 2019-06-25 Tom Tromey <tom@tromey.com>
7440
7441 * tui/tui-winsource.c (tui_set_exec_info_content): Remove NULL
7442 check.
7443
7444 2019-06-25 Tom Tromey <tom@tromey.com>
7445
7446 * tui/tui-winsource.h (tui_alloc_source_buffer): Change return
7447 type to void.
7448 * tui/tui-winsource.c (tui_alloc_source_buffer): Change return
7449 type to void.
7450 * tui/tui-source.c (tui_set_source_content): Update.
7451 * tui/tui-disasm.c (tui_set_disassem_content): Update.
7452
7453 2019-06-25 Tom Tromey <tom@tromey.com>
7454
7455 * tui/tui-win.c (window_name_completer, tui_set_focus)
7456 (tui_all_windows_info): Use name method.
7457 * tui/tui-data.h (struct tui_gen_win_info)
7458 (struct tui_source_window, struct tui_disasm_window)
7459 (struct tui_data_window, struct tui_cmd_window) <name>: New
7460 method.
7461 (tui_win_name): Don't declare.
7462 * tui/tui-data.c (tui_partial_win_by_name): Use name method.
7463 (tui_win_name): Remove.
7464
7465 2019-06-25 Tom Tromey <tom@tromey.com>
7466
7467 * tui/tui-winsource.h (tui_update_source_window)
7468 (tui_update_source_window_as_is): Change parameter type.
7469 * tui/tui-winsource.c (tui_update_source_window): Change win_info
7470 to be a tui_source_window_base.
7471 (tui_update_source_window_as_is): Likewise.
7472 * tui/tui-win.c (make_visible_with_new_height): Update.
7473
7474 2019-06-25 Tom Tromey <tom@tromey.com>
7475
7476 * tui/tui-winsource.c (tui_erase_source_content)
7477 (tui_show_source_content, tui_show_exec_info_content)
7478 (tui_erase_exec_info_content): Use refresh_window method.
7479 * tui/tui-wingeneral.h (tui_refresh_win): Don't declare.
7480 * tui/tui-wingeneral.c (tui_gen_win_info::refresh_window): Rename
7481 from tui_refresh_win.
7482 (tui_data_window::refresh_window): New method.
7483 (tui_win_info::refresh, tui_source_window_base::refresh)
7484 (tui_refresh_all): Use refresh_window method.
7485 * tui/tui-stack.c (tui_show_locator_content): Call refresh_window
7486 method.
7487 * tui/tui-regs.c (tui_display_register): Call refresh_window
7488 method.
7489 * tui/tui-layout.c (show_source_disasm_command)
7490 (show_source_or_disasm_and_command): Call refresh_window method.
7491 * tui/tui-data.h (struct tui_gen_win_info)
7492 (struct tui_data_window, struct tui_cmd_window) <refresh_window>:
7493 New method.
7494
7495 2019-06-25 Tom Tromey <tom@tromey.com>
7496
7497 * tui/tui.c (tui_rl_other_window, tui_enable)
7498 (tui_is_window_visible, tui_get_command_dimension): Update.
7499 * tui/tui-winsource.c (tui_update_source_window_as_is)
7500 (tui_clear_source_content, tui_erase_source_content)
7501 (tui_show_source_line, tui_source_window_base::refill)
7502 (tui_source_window_base::do_scroll_horizontal)
7503 (tui_source_window_base::set_is_exec_point_at)
7504 (tui_update_breakpoint_info, tui_set_exec_info_content)
7505 (tui_alloc_source_buffer, tui_line_is_displayed)
7506 (tui_addr_is_displayed): Update.
7507 * tui/tui-wingeneral.c (tui_unhighlight_win, tui_highlight_win)
7508 (tui_check_and_display_highlight_if_needed)
7509 (tui_win_info::make_visible, tui_win_info::refresh)
7510 (tui_refresh_all): Update.
7511 * tui/tui-windata.c (tui_first_data_item_displayed)
7512 (tui_delete_data_content_windows, tui_erase_data_content)
7513 (tui_display_all_data, tui_data_window::refresh_all)
7514 (tui_check_data_values): Update.
7515 * tui/tui-win.c (window_name_completer, tui_update_gdb_sizes)
7516 (tui_set_win_focus_to, tui_win_info::forward_scroll)
7517 (tui_win_info::backward_scroll, tui_refresh_all_win)
7518 (tui_resize_all, tui_set_focus, tui_all_windows_info)
7519 (update_tab_width, tui_set_win_height, tui_adjust_win_heights)
7520 (tui_source_window_base::set_new_height)
7521 (tui_data_window::set_new_height)
7522 (make_invisible_and_set_new_height)
7523 (make_visible_with_new_height, new_height_ok)
7524 (parse_scrolling_args): Update.
7525 * tui/tui-stack.c (tui_show_frame_info): Update.
7526 * tui/tui-source.c (tui_set_source_content)
7527 (tui_set_source_content_nil, tui_source_is_displayed)
7528 (tui_source_window::do_scroll_vertical): Update.
7529 * tui/tui-regs.c (tui_show_registers, tui_show_register_group)
7530 (tui_display_registers_from, tui_display_reg_element_at_line)
7531 (tui_check_register_values, tui_reg_command): Update.
7532 * tui/tui-layout.c (tui_default_win_height)
7533 (show_source_disasm_command, show_data, init_and_make_win)
7534 (show_source_or_disasm_and_command): Update.
7535 * tui/tui-io.c (update_cmdwin_start_line, tui_putc, tui_puts)
7536 (tui_redisplay_readline, tui_mld_flush)
7537 (tui_mld_erase_entire_line, tui_mld_getc, tui_cont_sig)
7538 (tui_getc): Update.
7539 * tui/tui-disasm.c (tui_set_disassem_content)
7540 (tui_disasm_window::do_scroll_vertical): Update.
7541 * tui/tui-data.h (struct tui_gen_win_info) <~tui_gen_win_info>:
7542 Now virtual.
7543 (struct tui_win_info): Derive from tui_gen_win_info.
7544 <~tui_win_info>: Mark as override.
7545 <generic>: Remove member.
7546 * tui/tui-data.c (tui_cmd_window::clear_detail, tui_next_win)
7547 (tui_prev_win, tui_partial_win_by_name, tui_win_info)
7548 (~tui_data_window, ~tui_win_info)
7549 (tui_free_all_source_wins_content): Update.
7550 * tui/tui-command.c (tui_refresh_cmd_win): Update.
7551
7552 2019-06-25 Tom Tromey <tom@tromey.com>
7553
7554 * tui/tui-layout.c (init_and_make_win): Use new.
7555 * tui/tui-data.h (struct tui_gen_win_info): Add constructor,
7556 destructor, initializers.
7557 (tui_alloc_generic_win_info): Don't declare.
7558 * tui/tui-data.c (_locator): Add argument to constructor.
7559 (source_win, disasm_win): New globals.
7560 (exec_info): Remove.
7561 (tui_source_exec_info_win_ptr, tui_disassem_exec_info_win_ptr):
7562 Update.
7563 (tui_alloc_generic_win_info): Remove.
7564 (init_content_element): Use new.
7565 (tui_win_info::tui_win_info): Update.
7566 (free_content_elements) <case DATA_WIN>: Use delete.
7567
7568 2019-06-25 Tom Tromey <tom@tromey.com>
7569
7570 * tui/tui-wingeneral.c (tui_refresh_win): Update.
7571 * tui/tui-windata.c (tui_first_data_item_displayed)
7572 (tui_delete_data_content_windows): Update.
7573 * tui/tui-win.c (tui_data_window::set_new_height): Update.
7574 * tui/tui-regs.c (tui_show_registers, tui_show_register_group)
7575 (tui_display_registers_from, tui_check_register_values): Update.
7576 * tui/tui-data.h (union tui_which_element) <data_window>: Now a
7577 pointer.
7578 * tui/tui-data.c (init_content_element): Update. Allocate the new
7579 window.
7580 (tui_free_data_content): Update.
7581 (free_content_elements) <case DATA_WIN>: Free the window.
7582
7583 2019-06-25 Tom Tromey <tom@tromey.com>
7584
7585 * tui/tui-wingeneral.c (tui_unhighlight_win, tui_highlight_win):
7586 Update.
7587 * tui/tui-layout.c (make_command_window)
7588 (show_source_disasm_command, show_data, init_and_make_win)
7589 (show_source_or_disasm_and_command): Update.
7590 * tui/tui-data.h (struct tui_win_info) <set_highlight>: New
7591 method.
7592 <can_highight, is_highlighted>: Now bool.
7593 (tui_set_win_highlight): Don't declare.
7594 * tui/tui-data.c (tui_set_win_highlight): Remove.
7595
7596 2019-06-25 Tom Tromey <tom@tromey.com>
7597
7598 * tui/tui-wingeneral.c (make_visible): Remove check of window
7599 type.
7600
7601 2019-06-25 Tom Tromey <tom@tromey.com>
7602
7603 * tui/tui-win.c (tui_win_info::max_height)
7604 (tui_cmd_window::max_height): New methods.
7605 (new_height_ok): Call max_height.
7606 * tui/tui-data.h (struct tui_win_info, struct tui_cmd_window)
7607 <max_height>: New method.
7608
7609 2019-06-25 Tom Tromey <tom@tromey.com>
7610
7611 * tui/tui-win.c (tui_source_window_base::set_new_height)
7612 (tui_data_window::set_new_height): New methods.
7613 (make_invisible_and_set_new_height): Call set_new_height method.
7614 * tui/tui-data.h (struct tui_win_info)
7615 (struct tui_source_window_base, struct tui_data_window)
7616 <set_new_height>: New method.
7617
7618 2019-06-25 Tom Tromey <tom@tromey.com>
7619
7620 * tui/tui.c (tui_rl_other_window): Call the refresh_all method.
7621 * tui/tui-windata.c (tui_data_window::refresh_all): Rename from
7622 tui_refresh_data_win.
7623 * tui/tui-win.c (tui_source_window_base::refresh_all): New
7624 method.
7625 (tui_refresh_all_win): Call the refresh_all method.
7626 (tui_set_focus): Likewise.
7627 * tui/tui-data.h (struct tui_win_info) <refresh_all>: New method.
7628 (struct tui_source_window_base, struct tui_data_window) <refresh>:
7629 Likewise.
7630
7631 2019-06-25 Tom Tromey <tom@tromey.com>
7632
7633 * tui/tui-winsource.h (tui_refill_source_window)
7634 (tui_set_is_exec_point_at): Don't declare.
7635 * tui/tui-winsource.c (tui_update_source_windows_with_addr)
7636 (tui_source_window_base::refill): Rename from
7637 tui_refill_source_window.
7638 (tui_source_window_base::do_scroll_horizontal): Update.
7639 (tui_source_window_base::set_is_exec_point_at): Rename from
7640 tui_set_is_exec_point_at.
7641 (tui_update_all_breakpoint_info): Update.
7642 * tui/tui-stack.c (tui_show_frame_info): Update.
7643 * tui/tui-layout.c (show_data): Add cast.
7644 * tui/tui-hooks.c (tui_redisplay_source): Call refill method.
7645 * tui/tui-data.h (struct tui_source_window_base) <refill,
7646 set_is_exec_point_at>: New methods.
7647 (tui_source_windows, tui_add_to_source_windows): Update types.
7648 (tui_add_to_source_windows): Remove redundant declaration.
7649 * tui/tui-data.c (source_windows): Store tui_source_window_base.
7650 (tui_source_windows): Change return type.
7651 (tui_clear_source_windows_detail): Update.
7652 (tui_add_to_source_windows): Change type of parameter.
7653 (tui_free_all_source_wins_content): Update.
7654
7655 2019-06-25 Tom Tromey <tom@tromey.com>
7656
7657 * tui/tui-wingeneral.c (tui_win_info::refresh)
7658 (tui_source_window_base::refresh): New methods.
7659 (tui_refresh_all): Call the refresh method.
7660 * tui/tui-data.h (struct tui_win_info)
7661 (struct tui_source_window_base) <refresh>: New method.
7662
7663 2019-06-25 Tom Tromey <tom@tromey.com>
7664
7665 * tui/tui.h (tui_is_window_visible): Return bool.
7666 * tui/tui.c (tui_is_window_visible): Return bool.
7667 * tui/tui-wingeneral.c (tui_make_window, make_visible)
7668 (tui_make_visible, tui_make_invisible)
7669 (tui_win_info::make_visible)
7670 (tui_source_window_base::make_visible, make_all_visible)
7671 (tui_make_all_visible, tui_make_all_invisible): Update.
7672 * tui/tui-windata.c (tui_delete_data_content_windows): Update.
7673 * tui/tui-data.h (struct tui_gen_win_info) <is_visible>: Now
7674 bool.
7675 (struct tui_win_info, struct tui_source_window_base)
7676 (struct tui_cmd_window) <make_visible>: Change parameter to bool.
7677 * tui/tui-data.c (tui_init_generic_part): Update.
7678
7679 2019-06-25 Tom Tromey <tom@tromey.com>
7680
7681 * tui/tui-wingeneral.c (tui_win_info::make_visible)
7682 (tui_source_window_base::make_visible): New methods.
7683 (make_all_visible): Make method call.
7684 * tui/tui-data.h (struct tui_win_info) <make_visible>: New method.
7685 (struct tui_source_window_base, struct tui_cmd_window): Override
7686 make_visible.
7687 (tui_win_is_source_type): Don't declare.
7688 * tui/tui-data.c (tui_win_is_source_type): Remove.
7689
7690 2019-06-25 Tom Tromey <tom@tromey.com>
7691
7692 * tui/tui-layout.c (show_source_or_disasm_and_command): Remove
7693 NULL check.
7694
7695 2019-06-25 Tom Tromey <tom@tromey.com>
7696
7697 * tui/tui-data.h (struct tui_data_window, struct tui_cmd_window):
7698 Inline constructor. Add initializers for members.
7699 * tui/tui-data.c (tui_data_window, tui_cmd_window): Remove
7700 constructors; now inline in class.
7701
7702 2019-06-25 Tom Tromey <tom@tromey.com>
7703
7704 * tui/tui-regs.c (tui_show_registers): Update.
7705 * tui/tui-data.h (struct tui_data_window) <display_regs>: Now
7706 bool.
7707 * tui/tui-data.c (tui_data_window::clear_detail)
7708 (tui_data_window): Update.
7709
7710 2019-06-25 Tom Tromey <tom@tromey.com>
7711
7712 * tui/tui-windata.c (tui_display_all_data)
7713 (tui_display_data_from_line, tui_display_data_from)
7714 (tui_check_data_values, tui_data_window::do_scroll_vertical):
7715 Update.
7716 * tui/tui-regs.c (tui_last_regs_line_no)
7717 (tui_line_from_reg_element_no, tui_first_reg_element_no_inline)
7718 (tui_show_registers, tui_show_register_group)
7719 (tui_display_registers_from, tui_display_reg_element_at_line)
7720 (tui_display_registers_from_line, tui_check_register_values)
7721 (tui_reg_next, tui_reg_prev): Update.
7722 * tui/tui-layout.c (tui_set_layout, show_data): Update.
7723 * tui/tui-data.h (struct tui_data_info): Remove. Move contents to
7724 tui_data_window.
7725 (struct tui_win_info) <detail>: Remove. Add new fields from
7726 tui_data_info.
7727 (TUI_DATA_WIN): Add cast.
7728 * tui/tui-data.c (tui_data_window::clear_detail, tui_data_window)
7729 (~tui_data_window): Simplify.
7730
7731 2019-06-25 Tom Tromey <tom@tromey.com>
7732
7733 * tui/tui-layout.c (show_source_disasm_command)
7734 (show_source_or_disasm_and_command): Update.
7735 * tui/tui-io.c (update_cmdwin_start_line)
7736 (tui_redisplay_readline): Update.
7737 * tui/tui-data.h (struct tui_command_info): Remove.
7738 (struct tui_win_info) <detail>: Remove command_info member.
7739 (struct tui_data_window) <start_line>: New member, from
7740 tui_command_info.
7741 (TUI_CMD_WIN): Add casts.
7742
7743 2019-06-25 Tom Tromey <tom@tromey.com>
7744
7745 * tui/tui-winsource.c (tui_update_source_window)
7746 (tui_refill_source_window)
7747 (tui_source_window_base::do_scroll_horizontal)
7748 (tui_update_breakpoint_info, tui_set_exec_info_content)
7749 (tui_show_exec_info_content, tui_erase_exec_info_content)
7750 (tui_clear_exec_info_content): Update.
7751 * tui/tui-wingeneral.c (make_all_visible, tui_refresh_all):
7752 Update.
7753 * tui/tui-win.c (make_invisible_and_set_new_height)
7754 (make_visible_with_new_height): Update.
7755 * tui/tui-source.c (tui_set_source_content)
7756 (tui_show_symtab_source): Update.
7757 * tui/tui-layout.c (extract_display_start_addr)
7758 (show_source_disasm_command, show_data)
7759 (make_source_or_disasm_window)
7760 (show_source_or_disasm_and_command): Update.
7761 * tui/tui-disasm.c (tui_set_disassem_content): Simplify.
7762 (tui_disasm_window::do_scroll_vertical): Remove shadowing
7763 "gdbarch".
7764 * tui/tui-data.h (struct tui_source_info): Remove. Move contents
7765 to tui_source_window_base.
7766 (struct tui_win_info) <detail>: Remove source_info member.
7767 (struct tui_source_window_base) <has_locator>: Inline.
7768 Move contents from tui_source_info; rename has_locator member to
7769 m_has_locator.
7770 (TUI_SRC_WIN, TUI_DISASM_WIN): Add casts.
7771 * tui/tui-data.c (tui_source_window_base::has_locator): Move to
7772 header file.
7773 (tui_source_window_base::clear_detail, ~tui_source_window_base):
7774 Simplify.
7775 (tui_free_all_source_wins_content): Cast to
7776 tui_source_window_base.
7777
7778 2019-06-25 Tom Tromey <tom@tromey.com>
7779
7780 * tui/tui-win.c (make_invisible_and_set_new_height)
7781 (make_visible_with_new_height): Call has_locator method.
7782 * tui/tui-layout.c (show_source_disasm_command, show_data)
7783 (show_source_or_disasm_and_command): Update for bool change.
7784 * tui/tui-data.h (struct tui_source_info) <has_locator>: Now bool.
7785 (tui_win_info) <has_locator>: New method.
7786 (struct tui_source_window_base) <has_locator>: New method.
7787 (tui_win_has_locator): Don't declare.
7788 * tui/tui-data.c (tui_source_window_base::has_locator): Rename
7789 from tui_win_has_locator.
7790 (tui_source_window_base): Use false, not FALSE.
7791
7792 2019-06-25 Tom Tromey <tom@tromey.com>
7793
7794 * tui/tui-data.h (tui_clear_win_detail): Don't declare.
7795 * tui/tui-data.c (tui_clear_source_windows_detail): Call the
7796 clear_detail method directly.
7797 (tui_clear_win_detail): Remove.
7798
7799 2019-06-25 Tom Tromey <tom@tromey.com>
7800
7801 * tui/tui-disasm.c (tui_disasm_window::do_scroll_vertical): Use
7802 "this", not TUI_DISASM_WIN.
7803
7804 2019-06-25 Tom Tromey <tom@tromey.com>
7805
7806 * tui/tui-winsource.h (tui_horizontal_source_scroll): Don't
7807 declare.
7808 * tui/tui-winsource.c
7809 (tui_source_window_base::do_scroll_horizontal): Rename from
7810 tui_horizontal_source_scroll.
7811 * tui/tui-windata.h (tui_vertical_data_scroll): Don't declare.
7812 * tui/tui-windata.c (tui_data_window::do_scroll_vertical): Rename
7813 from tui_vertical_data_scroll.
7814 * tui/tui-win.h (tui_scroll): Don't declare.
7815 * tui/tui-win.c (tui_win_info::forward_scroll)
7816 (tui_win_info::backward_scroll, tui_win_info::left_scroll)
7817 (tui_win_info::right_scroll): Rename and update.
7818 (tui_scroll_forward_command, tui_scroll_backward_command)
7819 (tui_scroll_left_command, tui_scroll_right_command): Update.
7820 (tui_scroll): Remove.
7821 * tui/tui-source.h: Don't declare tui_vertical_source_scroll.
7822 * tui/tui-source.c (tui_source_window::do_scroll_vertical): Rename
7823 from tui_vertical_source_scroll.
7824 * tui/tui-disasm.h (tui_vertical_disassem_scroll): Don't declare.
7825 * tui/tui-disasm.c (tui_disasm_window::do_scroll_vertical): Rename
7826 from tui_vertical_disassem_scroll.
7827 * tui/tui-data.h (struct tui_win_info) <do_scroll_vertical,
7828 do_scroll_horizontal>: New methods.
7829 <forward_scroll, backward_scroll, left_scroll, right_scroll>:
7830 Likewise.
7831 (struct tui_source_window_base): Add do_scroll_horizontal.
7832 (struct tui_source_window, struct tui_disasm_window): Add
7833 do_scroll_vertical.
7834 (struct tui_data_window, struct tui_cmd_window): Add
7835 do_scroll_horizontal and do_scroll_vertical.
7836 * tui/tui-command.c (tui_dispatch_ctrl_char): Use method calls.
7837
7838 2019-06-25 Tom Tromey <tom@tromey.com>
7839
7840 * tui/tui-data.h (struct tui_source_window_base): New struct.
7841 (struct tui_source_window): Derive from tui_source_window_base.
7842 (struct tui_disasm_window): New struct.
7843 * tui/tui-data.c (tui_source_window_base::clear_detail): Rename
7844 from tui_source_window::clear_detail.
7845 (tui_source_window_base): Rename from tui_source_window.
7846 (~tui_source_window_base): Rename from ~tui_source_window.
7847 (tui_alloc_win_info): Create a tui_disasm_window.
7848
7849 2019-06-25 Tom Tromey <tom@tromey.com>
7850
7851 * tui/tui-data.h (struct tui_source_window)
7852 (struct tui_data_window): Declare destructors.
7853 * tui/tui-data.c (~tui_source_window, ~tui_data_window): New
7854 destructors.
7855 (tui_win_info): Simplify.
7856
7857 2019-06-25 Tom Tromey <tom@tromey.com>
7858
7859 * tui/tui-winsource.c (tui_display_main)
7860 (tui_update_source_windows_with_addr)
7861 (tui_update_all_breakpoint_info): Update.
7862 * tui/tui-win.c (tui_resize_all, tui_adjust_win_heights)
7863 (new_height_ok, parse_scrolling_args): Update.
7864 * tui/tui-stack.c (tui_show_frame_info): Update.
7865 * tui/tui-data.h (struct tui_list): Remove.
7866 (tui_source_windows): Return a reference to a std::vector.
7867 * tui/tui-data.c (source_windows): Now a std::vector.
7868 (tui_source_windows): Change return type.
7869 (tui_clear_source_windows): Rewrite.
7870 (tui_clear_source_windows_detail, tui_add_to_source_windows)
7871 (tui_free_all_source_wins_content): Rewrite.
7872
7873 2019-06-25 Tom Tromey <tom@tromey.com>
7874
7875 * tui/tui-data.h (struct tui_win_info, struct tui_source_window)
7876 (struct tui_data_window, struct tui_cmd_window): Declare
7877 clear_detail method.
7878 * tui/tui-data.c (tui_source_window::clear_detail)
7879 (tui_cmd_window::clear_detail, tui_data_window::clear_detail): New
7880 methods.
7881 (tui_clear_win_detail): Simplify.
7882
7883 2019-06-25 Tom Tromey <tom@tromey.com>
7884
7885 * tui/tui-layout.c (make_source_window, make_disasm_window)
7886 (make_source_or_disasm_window): Remove win_info_ptr parameter.
7887 Return the new window.
7888 (show_source_disasm_command, show_data)
7889 (show_source_or_disasm_and_command): Update.
7890
7891 2019-06-25 Tom Tromey <tom@tromey.com>
7892
7893 * tui/tui-layout.c (make_command_window): Remove win_info_ptr
7894 parameter. Return the new window.
7895 (show_source_disasm_command): Update and remove NULL check.
7896 (show_source_or_disasm_and_command): Update.
7897
7898 2019-06-25 Tom Tromey <tom@tromey.com>
7899
7900 * tui/tui-layout.c (init_and_make_win): Remove NULL check.
7901
7902 2019-06-25 Tom Tromey <tom@tromey.com>
7903
7904 * tui/tui-data.h (struct tui_win_info): Make constructor
7905 protected. Make destructor virtual. Add initializers.
7906 (tui_source_window, tui_data_window, tui_cmd_window): New
7907 classes.
7908 * tui/tui-data.c (tui_win_info): Rename from init_win_info. Now a
7909 constructor. Add "type" parameter.
7910 (tui_source_window, tui_data_window, tui_cmd_window): New
7911 constructors.
7912 (tui_alloc_win_info): Instantiate the appropriate subclass.
7913
7914 2019-06-25 Tom Tromey <tom@tromey.com>
7915
7916 * tui/tui-win.c (tui_resize_all): Use delete.
7917 * tui/tui-data.h (struct tui_win_info) <~tui_win_info>: Declare
7918 destructor.
7919 (tui_free_window): Don't declare.
7920 * tui/tui-data.c (~tui_win_info): Rename from tui_free_window.
7921 Update.
7922
7923 2019-06-25 Tom Tromey <tom@tromey.com>
7924
7925 * tui/tui-data.h (struct tui_win_info): Add constructor.
7926 * tui/tui-data.c (tui_alloc_win_info): Use new.
7927 (tui_free_window): Use delete.
7928
7929 2019-06-22 Tom Tromey <tom@tromey.com>
7930
7931 * tui/tui-windata.h (tui_first_data_element_no_in_line): Don't
7932 declare.
7933 * tui/tui-windata.c (tui_first_data_element_no_in_line): Remove.
7934
7935 2019-06-22 Tom Tromey <tom@tromey.com>
7936
7937 * tui/tui-data.h (tui_del_window, tui_del_data_windows): Don't
7938 declare.
7939 * tui/tui-data.c (tui_del_window, tui_del_data_windows): Remove.
7940
7941 2019-06-22 Tom de Vries <tdevries@suse.de>
7942
7943 * dwarf2read.c (create_addrmap_from_aranges)
7944 (read_debug_names_from_section): Print ptrdiff_t using '%s' and plongest
7945 instead of '%zu'.
7946
7947 2019-06-21 Simon Marchi <simon.marchi@efficios.com>
7948
7949 * dwarf2read.h (dwarf2_section_info_def): Remove.
7950 (DEF_VEC_O (dwarf2_section_info_def)): Remove.
7951 * dwarf2read.c (struct dwo_sections) <types>: Change type to
7952 std::vector<dwarf2_section_info>.
7953 (struct dwo_file) <~dwo_file>: Remove.
7954 (dwarf2_per_objfile::~dwarf2_per_objfile): Don't manually free
7955 types field.
7956 (dwarf2_per_objfile::locate_sections): Adjust to std::vector.
7957 (dwarf2_read_debug_names): Likewise.
7958 (create_debug_types_hash_table): Change parameter type to
7959 array_view, adjust code accordingly.
7960 (dwarf2_locate_dwo_sections): Adjust to std::vector.
7961 (partial_die_info::fixup): Likewise.
7962 (determine_prefix): Likewise.
7963 * dwarf-index-write.c (write_psymtabs_to_index): Adjust.
7964
7965 2019-06-21 Simon Marchi <simon.marchi@polymtl.ca>
7966
7967 * dwarf2read.c (struct dwo_file) <dbfd>: Change type to
7968 gdb_bfd_ref_ptr.
7969 <~dwo_file>: Remove call to gdb_bfd_unref.
7970 (open_and_init_dwo_file): Move gdb_bfd_ref_ptr into dbfd field. Call
7971 gdb_bfd_ref_ptr::get.
7972
7973 2019-06-21 Simon Marchi <simon.marchi@polymtl.ca>
7974
7975 * dwarf2read.h (struct dwarf2_per_objfile) <dwo_files>: Change
7976 type to htab_up.
7977 * dwarf2read.c (struct dwo_file): Initialize fields.
7978 <~dwo_file>: New.
7979 (free_dwo_file): Remove, move content to ~dwo_file.
7980 (struct dwo_file_deleter): Remove.
7981 (dwo_file_up>: Remove custom deleter.
7982 (free_dwo_files): Remove.
7983 (dwarf2_per_objfile::~dwarf2_per_objfile): Don't explicitly free
7984 dwo_files.
7985 (process_skeletonless_type_units): Call unique_ptr::get.
7986 (allocate_dwo_file_hash_table): Add deleter to created hash
7987 table. Change return type to htab_up.
7988 (lookup_dwo_file_slot): Don't memset dwo_file, call
7989 unique_ptr::get.
7990 (create_dwo_unit_in_dwp_v1): Allocate dwo_file with new.
7991 (create_dwo_unit_in_dwp_v2): Likewise.
7992 (open_and_init_dwo_file): Likewise.
7993 (free_dwo_file_from_slot): Remove.
7994
7995 2019-06-21 Simon Marchi <simon.marchi@polymtl.ca>
7996
7997 * dwarf2read.h (struct dwarf2_section_info) <readin,
7998 is_virtual>: Change type to bool.
7999 * dwarf2read.c (dwarf2_read_section, create_dwp_v2_section): Use
8000 true instead of 1.
8001
8002 2019-06-19 Tom Tromey <tom@tromey.com>
8003
8004 * tui/tui-data.h (tui_init_content_element): Don't declare.
8005
8006 2019-06-19 Tom Tromey <tom@tromey.com>
8007
8008 * tui/tui-data.h (tui_init_win_info): Don't declare.
8009
8010 2019-06-19 Tom de Vries <tdevries@suse.de>
8011
8012 * dwarf2read.h (abstract_to_concrete): Change type to
8013 std::unordered_map<sect_offset, std::vector<sect_offset>,
8014 gdb::hash_enum<sect_offset>>.
8015
8016 2019-06-19 Tom Tromey <tromey@adacore.com>
8017
8018 * ada-lang.c (ada_evaluate_subexp) <case OP_ATR_FIRST>: Handle
8019 EVAL_AVOID_SIDE_EFFECTS specially.
8020
8021 2019-06-19 Tom Tromey <tromey@adacore.com>
8022
8023 * source-cache.c (highlighter): New global.
8024 (source_cache::get_source_lines): Create a highlighter on demand.
8025
8026 2019-06-18 Andrew Burgess <andrew.burgess@embecosm.com>
8027
8028 * defs.h (deprecated_interactive_hook): Delete declaration.
8029 * interps.c (clear_interpreter_hooks): Remove use of
8030 deprecated_interactive_hook.
8031 * top.c (deprecated_interactive_hook): Delete definition.
8032 * utils.c (maybe_quit): Remove use of deprecated_interactive_hook.
8033
8034 2019-06-18 Tom de Vries <tdevries@suse.de>
8035
8036 PR gdb/24515
8037 * dwarf2read.h (abstract_to_concrete): Change type from
8038 std::unordered_map<die_info_ptr, std::vector<die_info_ptr>> to
8039 std::unordered_map<sect_offset, std::vector<sect_offset>>.
8040 * dwarf2read.c (read_variable): Update.
8041 (dwarf2_fetch_die_loc_sect_off): Update.
8042
8043 2019-06-17 Tom de Vries <tdevries@suse.de>
8044
8045 PR gdb/24617
8046 * common/pathstuff.c (child_path): Make sure parent_len > 0 before
8047 accessing parent[parent_len - 1].
8048
8049 2019-06-17 Paul Pluzhnikov <ppluzhnikov@google.com>
8050
8051 PR gdb/24364
8052 * gdb/dtrace-probe.c (dtrace_static_probe_ops::get_probe): Don't
8053 call dtrace_process_dof with NULL dof.
8054
8055 2019-06-16 Tom de Vries <tdevries@suse.de>
8056
8057 PR gdb/24445
8058 * contrib/gdb-add-index.sh: Update to handle dwz-m-ed executable.
8059
8060 2019-06-16 Tom Tromey <tom@tromey.com>
8061
8062 * tui/tui-wingeneral.c (tui_unhighlight_win, tui_highlight_win)
8063 (make_all_visible): Use address of member.
8064
8065 2019-06-16 Tom Tromey <tom@tromey.com>
8066
8067 * tui/tui-data.c (tui_clear_win_detail, init_win_info)
8068 (tui_free_window, free_content, free_content_elements): Remove
8069 unnecessary cast.
8070 * tui/tui-windata.c (tui_display_all_data): Remove unnecessary
8071 cast.
8072 * tui/tui-regs.c (tui_show_register_group)
8073 (tui_display_registers_from, tui_display_reg_element_at_line):
8074 Remove unnecessary cast.
8075
8076 2019-06-16 Andrew Burgess <andrew.burgess@embecosm.com>
8077
8078 * linux-nat.c (normal_mask): Delete.
8079 (_initialize_linux_nat): Don't initialise normal_mask.
8080
8081 2019-06-16 Simon Marchi <simon.marchi@polymtl.ca>
8082
8083 PR gdb/24445
8084 * dwarf-index-write.h (write_psymtabs_to_index): Add
8085 dwz_basename parameter.
8086 * dwarf-index-write.c (write_gdbindex): Move file writing to
8087 write_gdbindex_1. Change return type void.
8088 (assert_file_size): Move up, remove filename parameter.
8089 (write_gdbindex_1): New function.
8090 (write_debug_names): Change return type to void, call
8091 assert_file_size.
8092 (struct index_wip_file): New struct.
8093 (write_psymtabs_to_index): Add dwz_basename parameter. Move
8094 file logic to index_wip_file. Write index for dwz file if
8095 needed.
8096 (save_gdb_index_command): Pass basename of dwz file, if present.
8097 * dwarf-index-cache.c (index_cache::store): Obtain and pass
8098 build-id of dwz file, if present.
8099 * dwarf2read.c (struct dwz_file): Move to dwarf2read.h.
8100 (dwarf2_get_dwz_file): Likewise.
8101 * dwarf2read.h (struct dwz_file): Move from dwarf2read.c.
8102 (dwarf2_get_dwz_file): Likewise.
8103
8104 2019-06-16 Tom Tromey <tom@tromey.com>
8105
8106 * coffread.c (process_coff_symbol): Use xstrdup.
8107 * value.c (create_internalvar): Use xstrdup.
8108
8109 2019-06-16 Tom Tromey <tom@tromey.com>
8110
8111 * valops.c (value_cast, value_slice): Remove unnecessary cast.
8112 * breakpoint.c (stopin_command, stopat_command)
8113 (until_break_command, decode_location_default): Remove unnecessary
8114 cast.
8115 * utils.c (subset_compare): Remove unnecessary cast.
8116 * ada-lang.c (ada_update_initial_language): Remove unnecessary
8117 cast.
8118 * linespec.c (decode_line_with_last_displayed): Remove unnecessary
8119 cast.
8120 * infcmd.c (path_command): Remove unnecessary cast.
8121 * coffread.c (decode_type): Remove unnecessary cast.
8122 * xcoffread.c (read_xcoff_symtab): Remove unnecessary cast.
8123 * mipsread.c (mipscoff_symfile_read): Remove unnecessary cast.
8124 * tui/tui-stack.c (tui_show_locator_content)
8125 (tui_show_frame_info): Remove unnecessary cast.
8126 * tui/tui-win.c (tui_scroll_forward_command)
8127 (tui_scroll_backward_command, tui_set_focus, tui_set_win_height)
8128 (parse_scrolling_args): Remove unnecessary cast.
8129 * tui/tui-data.c (init_win_info, tui_del_window)
8130 (tui_free_window, tui_del_data_windows, tui_free_data_content)
8131 (free_content_elements): Remove unnecessary cast.
8132 * tui/tui-windata.c (tui_first_data_item_displayed): Remove
8133 unnecessary cast.
8134 * tui/tui-source.c (tui_set_source_content)
8135 (tui_vertical_source_scroll): Remove unnecessary cast.
8136 * tui/tui-layout.c (tui_default_win_height): Remove unnecessary
8137 cast.
8138 * tui/tui-io.c (tui_initialize_io): Remove unnecessary cast.
8139 * tui/tui-regs.c (tui_display_registers_from)
8140 (tui_display_register): Remove unnecessary cast.
8141 * tui/tui-wingeneral.c (tui_refresh_win, tui_delete_win)
8142 (tui_unhighlight_win, tui_highlight_win, tui_make_window)
8143 (make_visible): Remove unnecessary cast.
8144 * tui/tui-winsource.c (tui_erase_source_content)
8145 (tui_update_breakpoint_info, tui_set_exec_info_content): Remove
8146 unnecessary cast.
8147 * ax-gdb.c (agent_command_1): Remove unnecessary cast.
8148 * cli/cli-setshow.c (cmd_show_list): Remove unnecessary cast.
8149 * stabsread.c (read_type, read_array_type, read_range_type):
8150 Remove unnecessary cast.
8151 * mdebugread.c (mdebug_build_psymtabs): Remove unnecessary cast.
8152 (parse_symbol, parse_type, upgrade_type, parse_external)
8153 (parse_partial_symbols, psymtab_to_symtab_1, cross_ref): Remove
8154 unnecessary cast.
8155 * gdb_bfd.c (gdb_bfd_map_section): Remove unnecessary cast.
8156
8157 2019-06-16 Tom Tromey <tom@tromey.com>
8158
8159 * tui/tui-data.c (tui_alloc_generic_win_info)
8160 (tui_alloc_win_info, tui_add_content_elements): Remove NULL
8161 checks.
8162
8163 2019-06-16 Bernhard Heckel <bernhard.heckel@intel.com>
8164 Andrew Burgess <andrew.burgess@embecosm.com>
8165
8166 * f-typeprint.c (f_print_type): Don't return early for not
8167 associated or not allocated types.
8168 (f_type_print_varspec_suffix): Add print_rank parameter and print
8169 ranks of array types in case they dangling.
8170 (f_type_print_base): Add print_rank parameter.
8171
8172 2019-06-15 Andrew Burgess <andrew.burgess@embecosm.com>
8173
8174 * NEWS: Mention new MI commands.
8175 * break-catch-throw.c (enum exception_event_kind): Move to
8176 breakpoint.h.
8177 (print_mention_exception_catchpoint): Output text as a single
8178 message.
8179 (catch_exception_command_1): Rename to...
8180 (catch_exception_event): ...this, make non-static, update header
8181 command, and change some parameter types.
8182 (catch_catch_command): Update for changes to
8183 catch_exception_command_1.
8184 (catch_throw_command): Likewise.
8185 (catch_rethrow_command): Likewise.
8186 * breakpoint.c (enum exception_event_kind): Delete.
8187 * breakpoint.h (enum exception_event_kind): Moved here from
8188 break-catch-throw.c.
8189 (catch_exception_event): Declare.
8190 * mi/mi-cmd-catch.c (mi_cmd_catch_exception_event): New function.
8191 (mi_cmd_catch_throw): New function.
8192 (mi_cmd_catch_rethrow): New function.
8193 (mi_cmd_catch_catch): New function.
8194 * mi/mi-cmds.c (mi_cmds): Add 'catch-throw', 'catch-rethrow', and
8195 'catch-catch' entries.
8196 * mi/mi-cmds.h (mi_cmd_catch_throw): Declare.
8197 (mi_cmd_catch_rethrow): Declare.
8198 (mi_cmd_catch_catch): Declare.
8199
8200 2019-06-15 Andrew Burgess <andrew.burgess@embecosm.com>
8201
8202 * annotate.c (annotate_source_line): Change return type to void,
8203 update implementation to match.
8204 * annotate.h (annotate_source_line): Change return type to void,
8205 update header comment.
8206 * stack.c (print_frame_info): Don't change what frame information
8207 is printed based on whether annotations are on or not.
8208
8209 2019-06-15 Andrew Burgess <andrew.burgess@embecosm.com>
8210
8211 * annotate.c: Add 'source.h' and 'objfiles.h' includes.
8212 (annotate_source): Make static.
8213 (annotate_source_line): Moved from source.c and renamed from
8214 identify_source_line. Update the return type.
8215 * annotate.h (annotate_source): Delete declaration.
8216 (annotate_source_line): Declaration moved from source.h, and
8217 renamed from identify_source_line. Return type updated.
8218 * source.c (identify_source_line): Moved to annotate.c and renamed
8219 to annotate_source_line.
8220 (info_line_command): Remove check of annotation_level.
8221 * source.h (identify_source_line): Move declaration to annotate.h
8222 and rename to annotate_source_line.
8223 * stack.c: Add 'annotate.h' include.
8224 (print_frame_info): Remove check of annotation_level before
8225 calling annotate_source_line.
8226
8227 2019-06-15 Andrew Burgess <andrew.burgess@embecosm.com>
8228
8229 * source-cache.c (source_cache::get_plain_source_lines): Use
8230 open_source_file_with_line_charpos instead of just
8231 open_source_file, remove call to find_source_lines.
8232 (source_cache::get_source_lines): Likewise.
8233 * source.c (find_source_lines): Make static.
8234 (get_filename_and_charpos): Renamed into...
8235 (open_source_file_with_line_charpos): ..this along with changes to
8236 return a scoped_fd, and some other minor clean ups.
8237 (identify_source_line): Use open_source_file_with_line_charpos.
8238 (search_command_helper): Use open_source_file_with_line_charpos
8239 instead of just open_source_file, remove call to
8240 find_source_lines.
8241 * source.h (open_source_file_with_line_charpos): Declare new
8242 function.
8243 (find_source_lines): Delete declaration.
8244
8245 2019-06-15 Andrew Burgess <andrew.burgess@embecosm.com>
8246
8247 * source.c (get_filename_and_charpos): Remove fullname
8248 parameter.
8249 (identify_source_line): Update call to get_filename_and_charpos.
8250
8251 2019-06-14 Tom Tromey <tromey@adacore.com>
8252
8253 PR gdb/24502:
8254 * ui-style.h (skip_ansi_escape): Update comment.
8255 * ui-file.h (class no_terminal_escape_file): New class.
8256 * ui-file.c (no_terminal_escape_file::write)
8257 (no_terminal_escape_file::puts): New methods.
8258 * cli/cli-logging.c (handle_redirections): Use
8259 no_terminal_escape_file.
8260
8261 2019-06-14 Tom Tromey <tromey@adacore.com>
8262
8263 * NEWS: Move convenience variable news above Python news.
8264
8265 2019-06-14 Tom Tromey <tom@tromey.com>
8266
8267 * gnulib: Move directory to top-level.
8268 * configure.ac: Don't configure gnulib.
8269 * configure: Rebuild.
8270 * common/common-defs.h: Use new path to gnulib.
8271 * Makefile.in (GNULIB_BUILDDIR): Now ../gnulib.
8272 (GNULIB_H): Remove.
8273 (INCGNU): Look in new gnulib location.
8274 (HFILES_NO_SRCDIR): Remove gnulib files.
8275 (SUBDIR, REQUIRED_SUBDIRS): Remove gnulib.
8276 (generated_files): Remove GNULIB_H.
8277 ($(LIBGNU), all-lib): Remove targets.
8278 (distclean): Don't mention GNULIB_BUILDDIR.
8279 ($(GNULIB_BUILDDIR)/Makefile): Remove target.
8280
8281 2019-06-14 Tom Tromey <tromey@adacore.com>
8282
8283 * symfile.c (add_symbol_file_command): Remove obsolete comment.
8284 Warn if symbol file does not provide any symbols.
8285
8286 2019-06-14 Tom Tromey <tromey@adacore.com>
8287
8288 * source.c (find_and_open_source): Respect basenames_may_differ.
8289
8290 2019-06-14 Andrew Burgess <andrew.burgess@embecosm.com>
8291
8292 * annotate.c (annotate_breakpoints_invalid): Make use of
8293 scoped_restore_terminal_state.
8294 (annotate_frames_invalid): Likewise.
8295
8296 2019-06-14 Tom Tromey <tromey@adacore.com>
8297
8298 * ada-lang.c (ada_evaluate_subexp) <case BINOP_ASSIGN>: Always
8299 allow assignment to an internalvar.
8300
8301 2019-06-14 Tom Tromey <tromey@adacore.com>
8302
8303 * ada-lex.l: Allow "_" in attribute names.
8304
8305 2019-06-14 Tom Tromey <tromey@adacore.com>
8306
8307 PR gdb/24653:
8308 * regcache.c (registers_changed): Don't call alloca.
8309 * top.c (execute_command): Don't call alloca.
8310
8311 2019-06-13 Pedro Alves <palves@redhat.com>
8312
8313 * cli/cli-setshow.c (cli/cli-setshow.c): New parameter
8314 'expression'. When parsing an expression, error out if there's
8315 junk after "unlimited".
8316 (parse_cli_var_uinteger, parse_cli_var_zuinteger_unlimited)
8317 (do_set_command): Adjust calls to is_unlimited_literal.
8318
8319 2019-06-13 Pedro Alves <palves@redhat.com>
8320
8321 * compile/compile.c (make_compile_options_def_group): Add braces
8322 around array_view initializer.
8323 * thread.c (make_thread_apply_all_options_def_group)
8324 (make_thread_apply_all_options_def_group): Likewise.
8325
8326 2019-06-13 Pedro Alves <palves@redhat.com>
8327
8328 * NEWS (New commands): Mention "maint test-options
8329 require-delimiter", "maint test-options unknown-is-error", "maint
8330 test-options unknown-is-operand" and "maint show
8331 test-options-completion-result".
8332 (New command options, command completion): New section.
8333 (Completion improvements): New section.
8334 Mention that you can abbreviate "unlimited".
8335
8336 2019-06-13 Pedro Alves <palves@redhat.com>
8337
8338 * cli/cli-utils.c (parse_flags, parse_flags_qcs): Delete.
8339 * cli/cli-utils.h (parse_flags, parse_flags_qcs): Delete.
8340 * unittests/cli-utils-selftests.c (test_parse_flags)
8341 (test_parse_flags_qcs): Delete.
8342 (test_cli_utils): Don't call deleted functions.
8343
8344 2019-06-13 Pedro Alves <palves@redhat.com>
8345
8346 * thread.c: Include "cli/cli-option.h".
8347 (tp_array_compar_ascending): Global.
8348 (tp_array_compar): Delete function.
8349 (tp_array_compar_ascending, tp_array_compar_descending): New
8350 functions.
8351 (ascending_option_def, qcs_flag_option_def)
8352 (thr_qcs_flags_option_defs)
8353 (make_thread_apply_all_options_def_group)
8354 (make_thread_apply_options_def_group): New.
8355 (thread_apply_all_command): Use gdb::option::process_options.
8356 (thread_apply_command_completer)
8357 (thread_apply_all_command_completer): New.
8358 (thread_apply_command): Use gdb::option::process_options.
8359 (_initialize_thread): Delete THREAD_APPLY_FLAGS_HELP, replace it
8360 with a new THREAD_APPLY_OPTION_HELP. Use gdb::option::build_help
8361 to generate help text of "thread apply". Adjust "taas"'s help.
8362 * tid-parse.c (tid_range_parser::in_thread_range): New method.
8363 * tid-parse.h (tid_range_parser::in_thread_range): New method.
8364
8365 2019-06-13 Pedro Alves <palves@redhat.com>
8366
8367 * thread.c (thread_apply_command): Check for invalid TID with
8368 isdigit instead of !isalpha.
8369
8370 2019-06-13 Pedro Alves <palves@redhat.com>
8371
8372 * cli/cli-utils.c (parse_flags_qcs): Use validate_flags_qcs.
8373 (validate_flags_qcs): New.
8374 * cli/cli-utils.h (struct qcs_flags): Change field types to int.
8375 (validate_flags_qcs): Declare.
8376 * stack.c (qcs_flag_option_def, fr_qcs_flags_option_defs): New.
8377 (make_frame_apply_options_def_group): New.
8378 (frame_apply_command_count): Process options with
8379 gdb::option::process_options.
8380 (frame_apply_completer): New.
8381 (frame_apply_level_completer, frame_apply_all_completer)
8382 (frame_apply_completer): New.
8383 (_initialize_stack): Update help of "frame apply", "frame apply
8384 level", "frame apply all" and "faas" to mention supported options
8385 and install command completers.
8386 * stack.h (frame_apply_all_completer): Declare.
8387 * thread.c: Include "stack.h".
8388 (tfaas_command): Add "--".
8389 (_initialize_thread): Update help "tfaas" to mention supported
8390 options and install command completer.
8391
8392 2019-06-13 Pedro Alves <palves@redhat.com>
8393
8394 * completer.c (complete_nested_command_line): New.
8395 (gdb_completion_word_break_characters_throw): Add assertion.
8396 * completer.h (complete_nested_command_line): Declare.
8397
8398 2019-06-13 Pedro Alves <palves@redhat.com>
8399
8400 * stack.c (parse_backtrace_qualifiers): New.
8401 (backtrace_command): Use it.
8402 (backtrace_command_completer): Complete on qualifiers.
8403
8404 2019-06-13 Pedro Alves <palves@redhat.com>
8405
8406 * frame.c: Include "cli/cli-option.h.
8407 (user_set_backtrace_options): New.
8408 (backtrace_past_main, backtrace_past_entry, backtrace_limit):
8409 Delete.
8410 (get_prev_frame): Adjust.
8411 (boolean_option_def, uinteger_option_def)
8412 (set_backtrace_option_defs): New.
8413 (_initialize_frame): Adjust and use
8414 gdb::option::add_setshow_cmds_for_options to install "set
8415 backtrace past-main" and "set backtrace past-entry".
8416 * frame.h: Include "cli/cli-option.h".
8417 (struct frame_print_options): Forward declare.
8418 (print_frame_arguments_all, print_frame_arguments_scalars)
8419 (print_frame_arguments_none): Declare.
8420 (print_entry_values): Delete declaration.
8421 (struct frame_print_options, user_frame_print_options): New.
8422 (struct set_backtrace_options): New.
8423 (set_backtrace_option_defs, user_set_backtrace_options): Declare.
8424 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames)
8425 (mi_cmd_stack_list_locals, mi_cmd_stack_list_args)
8426 (mi_cmd_stack_list_variables): Pass down USER_FRAME_PRINT_OPTIONS.
8427 (list_args_or_locals): Add frame_print_options parameter.
8428 (mi_cmd_stack_info_frame): Pass down USER_FRAME_PRINT_OPTIONS.
8429 * python/py-framefilter.c (enumerate_args): Pass down
8430 USER_FRAME_PRINT_OPTIONS.
8431 * stack.c: Include "cli/cli-option.h".
8432 (print_frame_arguments_all, print_frame_arguments_scalars)
8433 (print_frame_arguments_none): Declare.
8434 (print_raw_frame_arguments, print_entry_values): Delete.
8435 (user_frame_print_options): New.
8436 (boolean_option_def, enum_option_def, frame_print_option_defs):
8437 New.
8438 (struct backtrace_cmd_options): New.
8439 (bt_flag_option_def): New.
8440 (backtrace_command_option_defs): New.
8441 (print_stack_frame): Pass down USER_FRAME_PRINT_OPTIONS.
8442 (print_frame_arg, read_frame_arg, print_frame_args)
8443 (print_frame_info, print_frame): Add frame_print_options parameter
8444 and use it.
8445 (info_frame_command_core): Pass down USER_FRAME_PRINT_OPTIONS.
8446 (backtrace_command_1): Add frame_print_options and
8447 backtrace_cmd_options parameters and use them.
8448 (make_backtrace_options_def_group): New.
8449 (backtrace_command): Process command options with
8450 gdb::option::process_options.
8451 (backtrace_command_completer): New.
8452 (_initialize_stack): Extend "backtrace"'s help to mention
8453 supported options. Install completer for "backtrace".
8454 Install some settings commands with add_setshow_cmds_for_options.
8455
8456 2019-06-13 Pedro Alves <palves@redhat.com>
8457
8458 * NEWS (Changed commands): Mention set/show print raw-frame-arguments,
8459 and that "set/show print raw frame-arguments" are now deprecated.
8460
8461 * cli/cli-decode.c (add_setshow_boolean_cmd): Now returns the
8462 command.
8463 * command.h (add_setshow_boolean_cmd): Return cmd_list_element *.
8464 * stack.c (_initialize_stack): Install "set/show print
8465 raw-frame-arguments", and deprecate "set/show print raw
8466 frame-arguments".
8467 * valprint.c (_initialize_valprint): Deprecate "set/show print
8468 raw".
8469
8470 2019-06-13 Pedro Alves <palves@redhat.com>
8471
8472 * compile/compile.c (struct compile_options): New.
8473 (compile_flag_option_def, compile_command_option_defs)
8474 (make_compile_options_def_group): New.
8475 (compile_file_command): Handle options with
8476 gdb::option::process_options.
8477 (compile_file_command_completer): New function.
8478 (compile_code_command): Handle options with
8479 gdb::option::process_options.
8480 (compile_code_command_completer): New function.
8481 (_initialize_compiler): Install completers for "compile code" and
8482 "compile file". Mention available options in "compile code" and
8483 "compile code"'s help.
8484 * completer.c (advance_to_completion_word): New, factored out from
8485 ...
8486 (advance_to_expression_complete_word_point): ... this.
8487 (advance_to_filename_complete_word_point): New.
8488 * completer.h (advance_to_filename_complete_word_point): New
8489 declaration.
8490
8491 2019-06-13 Pedro Alves <palves@redhat.com>
8492
8493 * compile/compile.c: Include "cli/cli-option.h".
8494 (compile_print_value): Scope data pointer is now a
8495 value_print_options pointer; adjust.
8496 (compile_print_command): Process options. Scope data pointer is
8497 now a value_print_options pointer; adjust.
8498 (_initialize_compile): Update "compile print"'s help to include
8499 supported options. Install a completer for "compile print".
8500 * cp-valprint.c (show_vtblprint, show_objectprint)
8501 (show_static_field_print): Delete.
8502 (_initialize_cp_valprint): Don't install "set print
8503 static-members", "set print vtbl", "set print object" here.
8504 * printcmd.c: Include "cli/cli-option.h" and
8505 "common/gdb_optional.h".
8506 (print_command_parse_format): Rework to fill in a
8507 value_print_options instead of a format_data.
8508 (print_value): Change parameter type from format_data pointer to
8509 value_print_options reference. Adjust.
8510 (print_command_1): Process options. Adjust to pass down a
8511 value_print_options.
8512 (print_command_completer): New.
8513 (_initialize_printcmd): Install print_command_completer as
8514 handle_brkchars completer for the "print" command. Update
8515 "print"'s help to include supported options.
8516 * valprint.c: Include "cli/cli-option.h".
8517 (show_vtblprint, show_objectprint, show_static_field_print): Moved
8518 here from cp-valprint.c.
8519 (boolean_option_def, uinteger_option_def)
8520 (value_print_option_defs, make_value_print_options_def_group):
8521 New. Use gdb::option::add_setshow_cmds_for_options to install
8522 "set print elements", "set print null-stop", "set print repeats",
8523 "set print pretty", "set print union", "set print array", "set
8524 print address", "set print symbol", "set print array-indexes".
8525 * valprint.h: Include <string> and "cli/cli-option.h".
8526 (make_value_print_options_def_group): Declare.
8527 (print_value): Change parameter type from format_data pointer to
8528 value_print_options reference.
8529 (print_command_completer): Declare.
8530
8531 2019-06-13 Pedro Alves <palves@redhat.com>
8532
8533 * Makefile.in (SUBDIR_CLI_SRCS): Add cli/cli-option.c.
8534 (COMMON_SFILES): Add maint-test-settings.c.
8535 * cli/cli-decode.c (boolean_enums): New global, factored out from
8536 ...
8537 (add_setshow_boolean_cmd): ... here.
8538 * cli/cli-decode.h (boolean_enums): Declare.
8539 * cli/cli-option.c: New file.
8540 * cli/cli-option.h: New file.
8541 * cli/cli-setshow.c (parse_cli_boolean_value(const char **)): New,
8542 factored out from ...
8543 (parse_cli_boolean_value(const char *)): ... this.
8544 (is_unlimited_literal): Change parameter type to pointer to
8545 pointer. Adjust and advance ARG pointer.
8546 (parse_cli_var_uinteger, parse_cli_var_zuinteger_unlimited)
8547 (parse_cli_var_enum): New, factored out from ...
8548 (do_set_command): ... this. Adjust.
8549 * cli/cli-setshow.h (parse_cli_boolean_value)
8550 (parse_cli_var_uinteger, parse_cli_var_zuinteger_unlimited)
8551 (parse_cli_var_enum): Declare.
8552 * cli/cli-utils.c: Include "cli/cli-option.h".
8553 (get_ulongest): New.
8554 * cli/cli-utils.h (get_ulongest): Declare.
8555 (check_for_argument): New overloads.
8556 * maint-test-options.c: New file.
8557
8558 2019-06-13 Pedro Alves <palves@redhat.com>
8559
8560 * cli/cli-utils.c (number_or_range_parser::get_number): Do not
8561 parse a range if "-" is at the end of the string.
8562
8563 2019-06-13 Pedro Alves <palves@redhat.com>
8564
8565 * cli/cli-setshow.c (parse_auto_binary_operation)
8566 (parse_cli_boolean_value): Don't allow "o".
8567
8568 2019-06-13 Pedro Alves <palves@redhat.com>
8569
8570 * Makefile.in (COMMON_SFILES): Add maint-test-settings.c.
8571 * NEWS: Mention maint test-settings KIND.
8572 * maint-test-settings.c: New file.
8573
8574 2019-06-13 Pedro Alves <palves@redhat.com>
8575
8576 * cli/cli-decode.c (add_setshow_cmd_full): Remove "show"
8577 completer.
8578 (add_setshow_string_cmd, add_setshow_string_noescape_cmd): Remove
8579 "set" completers.
8580
8581 2019-06-13 Pedro Alves <palves@redhat.com>
8582
8583 * cli/cli-setshow.c (do_set_command) <var_enum>: Detect junk
8584 after item.
8585
8586 2019-06-13 Pedro Alves <palves@redhat.com>
8587
8588 * cli/cli-setshow.c (is_unlimited_literal): Allow abbreviations.
8589
8590 2019-06-13 Pedro Alves <palves@redhat.com>
8591
8592 * ax-gdb.c (agent_command_1): Remove skip_spaces call.
8593 * breakpoint.c (watch_maybe_just_location): Remove skip_spaces
8594 call.
8595 * cli/cli-cmds.c (apropos_command): Remove skip_spaces call.
8596 * cli/cli-utils.c (extract_info_print_args): Remove skip_spaces
8597 calls.
8598 (check_for_argument): Skip spaces after argument.
8599
8600 2019-06-13 Pedro Alves <palves@redhat.com>
8601
8602 * thread.c (thread_apply_command): Adjust TID parsing.
8603 * tid-parse.c (tid_range_parser::finished): Ensure parsing end is
8604 detected before end of string.
8605 (tid_is_in_list): Error out if LIST is invalid.
8606
8607 2019-06-13 Pedro Alves <palves@redhat.com>
8608
8609 * completer.c (complete_line_internal_1): Rewind completion word
8610 point.
8611 (completion_tracker::advance_custom_word_point_by): Change
8612 parameter type to int.
8613 * completer.h (completion_tracker::advance_custom_word_point_by):
8614 Likewise.
8615
8616 2019-06-13 Pedro Alves <palves@redhat.com>
8617
8618 * completer.c (advance_to_completion_word): Handle delimiters.
8619
8620 2019-06-11 Bernhard Heckel <bernhard.heckel@intel.com>
8621
8622 * dwarf2read.c (add_partial_symbol): Skip nameless modules.
8623
8624 2019-06-11 Tom Tromey <tom@tromey.com>
8625
8626 * common/common-utils.c (xmalloc, xrealloc, xcalloc)
8627 (xmalloc_failed): Move to alloc.c.
8628 * alloc.c: New file.
8629 * Makefile.in (COMMON_SFILES): Add alloc.c.
8630
8631 2019-06-11 Tom Tromey <tom@tromey.com>
8632
8633 * nat/linux-waitpid.c: Don't include server.h.
8634 (linux_debug): Remove.
8635 (my_waitpid): Update.
8636
8637 2019-06-11 Tom Tromey <tromey@adacore.com>
8638
8639 * infcall.c (_initialize_infcall): Remove trailing newline from
8640 help.
8641 * user-regs.c (_initialize_user_regs): Remove trailing newline
8642 from help.
8643 * typeprint.c (_initialize_typeprint): Remove trailing newline
8644 from help.
8645 * reverse.c (_initialize_reverse): Remove trailing newlines from
8646 help.
8647 * tracepoint.c (_initialize_tracepoint): Remove trailing newlines
8648 from help.
8649 * language.c (add_set_language_command): Remove trailing newline
8650 from help.
8651 * infcmd.c (_initialize_infcmd): Remove trailing newlines from
8652 help.
8653 * disasm.c (_initialize_disasm): Remove trailing newline from
8654 help.
8655 * top.c (init_main): Remove trailing newline from help.
8656 * interps.c (_initialize_interpreter): Remove trailing newline
8657 from help.
8658 * btrace.c (_initialize_btrace): Remove trailing newlines from
8659 help.
8660 * breakpoint.c (_initialize_breakpoint): Remove trailing newline
8661 from help.
8662 * python/python.c (_initialize_python): Remove trailing newline
8663 from help.
8664 * spu-tdep.c (_initialize_spu_tdep): Remove trailing newlines from
8665 help.
8666 * tui/tui-win.c (_initialize_tui_win): Remove trailing newlines
8667 from help. Reformat some text.
8668 * tui/tui-stack.c (_initialize_tui_stack): Remove trailing newline
8669 from help.
8670 * tui/tui-layout.c (_initialize_tui_layout): Remove trailing
8671 newline from help.
8672
8673 2019-06-11 Tom Tromey <tromey@adacore.com>
8674
8675 * darwin-nat.c (darwin_decode_exception_message)
8676 (darwin_decode_message, darwin_nat_target::kill): Fix shadowing.
8677
8678 2019-06-10 Andrew Burgess <andrew.burgess@embecosm.com>
8679
8680 * valops.c (value_slice): Check for not allocated or not
8681 associated values.
8682
8683 2019-06-10 Tom de Vries <tdevries@suse.de>
8684
8685 PR gdb/24618
8686 * dwarf2read.c (struct mapped_index::symbol_name_slot_invalid): Make
8687 sure an empty slot (defined by a 32-bit zero pair) is recognized as
8688 invalid.
8689
8690 2019-06-10 Tom de Vries <tdevries@suse.de>
8691
8692 PR gdb/24611
8693 * linespec.c (linespec_lexer_lex_string): Remove incorrect
8694 "++(PARSER_STREAM (parser))" for "[abi"-prefixed colon. Add assert.
8695
8696 2019-06-10 Tom de Vries <tdevries@suse.de>
8697
8698 PR symtab/24545
8699 * symtab.c (struct demangled_name_entry): Add language field.
8700 (symbol_set_names): Revert "[gdb/symtab] Fix language of duplicate
8701 static minimal symbol". Set and use language field.
8702
8703 2019-06-10 Tom Tromey <tromey@adacore.com>
8704
8705 * ada-lang.c (_initialize_ada_language): Update help text.
8706
8707 2019-06-10 Tom Tromey <tromey@adacore.com>
8708
8709 * m32c-tdep.c (m32c_m16c_address_to_pointer): Don't end warning
8710 with a newline.
8711 * guile/guile.c (handle_boot_error): Don't end warning with a
8712 newline.
8713 * cli/cli-cmds.c (exit_status_set_internal_vars): Don't end
8714 warning with a newline.
8715 * s12z-tdep.c (s12z_skip_prologue): Don't end warning with a
8716 newline.
8717 (s12z_frame_cache): Likewise.
8718 * dwarf-index-cache.c (index_cache::store): Don't end warning with
8719 a newline.
8720 * solib-svr4.c (disable_probes_interface): Don't end warning with
8721 a newline.
8722 * nat/fork-inferior.c (fork_inferior): Don't end warning with a
8723 newline.
8724 * python/python.c (do_finish_initialization): Don't end warning
8725 with a newline.
8726
8727 2019-06-10 Tom Tromey <tom@tromey.com>
8728
8729 * python/py-breakpoint.c (gdbpy_breakpoint_created)
8730 (gdbpy_breakpoint_deleted, gdbpy_breakpoint_modified): Use
8731 gdbpy_enter.
8732
8733 2019-06-10 Tom Tromey <tromey@adacore.com>
8734
8735 * elfread.c (elf_read_minimal_symbols): Don't set the dbx objfile
8736 data.
8737 (elf_new_init): Don't call stabsread_new_init.
8738 * dbxread.c (coffstab_build_psymtabs): Set dbx objfile data.
8739 (elfstab_build_psymtabs): Likewise. Call stabsread_new_init.
8740 * coffread.c (coff_symfile_init): Don't set the dbx objfile data.
8741
8742 2019-06-10 Tom de Vries <tdevries@suse.de>
8743
8744 PR symtab/16264
8745 PR symtab/24517
8746 * dwarf2read.c (read_func_scope): Handle DW_AT_main_subprogram.
8747
8748 2019-06-06 Руслан Ижбулатов <lrn1986@gmail.com>
8749
8750 * source.c (find_and_open_source): Also rewrite relative file
8751 names.
8752
8753 2019-04-26 Amos Bird <amosbird@gmail.com>
8754
8755 * annotate.c (annotate_thread_exited): Add "thread-exited"
8756 annotation.
8757
8758 2019-06-06 Tom Tromey <tromey@adacore.com>
8759
8760 * maint.h (class scoped_command_stats): Use
8761 DISABLE_COPY_AND_ASSIGN.
8762 <print_time>: New method.
8763 * maint.c (scoped_command_stats, ~scoped_command_stats): Call
8764 print_time.
8765 (scoped_command_stats::print_time): New method.
8766
8767 2019-06-05 Andrew Burgess <andrew.burgess@embecosm.com>
8768
8769 * riscv-tdep.c (riscv_insn::decode): Gracefully ignore
8770 instructions of lengths 6 or 8 bytes.
8771
8772 2019-06-04 Pedro Alves <palves@redhat.com>
8773
8774 * common/gdb_unique_ptr.h (make_unique_xstrdup): New.
8775
8776 * ada-lang.c (catch_ada_completer): Use make_unique_xstrdup.
8777 * breakpoint.c (condition_completer): Likewise.
8778 * cli/cli-dump.c (scan_expression): Likewise.
8779 * common/filestuff.c (mkdir_recursive): Likewise.
8780 * common/gdb_tilde_expand.c (gdb_tilde_expand_up)
8781 * common/pathstuff.c (gdb_realpath, gdb_realpath_keepfile)
8782 (gdb_abspath): Likewise.
8783 * compile/compile-cplus-types.c
8784 (compile_cplus_instance::decl_name): Likewise.
8785 * completer.c (complete_explicit_location):
8786 (signal_completer, reg_or_group_completer_1): Likewise.
8787 * cp-support.c (cp_remove_params_if_any): Likewise.
8788 * fbsd-tdep.c (fbsd_core_vnode_path): Likewise.
8789 * guile/scm-safe-call.c (gdbscm_safe_eval_string): Likewise.
8790 * infcmd.c (strip_bg_char): Likewise.
8791 * linespec.c (copy_token_string): Likewise.
8792 * mi/mi-main.c (output_cores): Likewise.
8793 * psymtab.c (psymtab_search_name):
8794 * symfile.c (test_set_ext_lang_command): Likewise.
8795 * target.c (target_fileio_read_stralloc): Likewise.
8796 * tui/tui-regs.c (tui_reggroup_completer): Likewise.
8797 * value.c (complete_internalvar): Likewise.
8798
8799 2019-06-04 Christian Biesinger <cbiesinger@google.com>
8800
8801 Add objfile property to gdb.Type.
8802 * NEWS: Mention Python API addition.
8803 * python/py-type.c (typy_get_objfile): New method.
8804
8805 2019-06-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
8806
8807 * NEWS: Mention the new set|show style [title|highlight].
8808 Mention changes to "show style", "help" and "apropos".
8809
8810 2019-06-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
8811
8812 * cli/cli-decode.h (apropos_cmd): Add verbose argument.
8813 * cli/cli-decode.c (apropos_cmd): Likewise. Use print_doc_of_command
8814 instead of print_help_for_command.
8815 (print_doc_of_command): New function.
8816 (help_list): Add 'apropos -v word' suggestion.
8817 (print_help_for_command): Style the command name using title style.
8818 * cli/cli-cmds.c (apropos_command): Parse optional -v flag.
8819 (_initialize_cli_cmds): Describe -v in apropos_command help.
8820
8821 2019-06-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
8822
8823 * cli/cli-style.h (cli_style_option): Add name in constructor,
8824 add m_name class member, add constructor with intensity,
8825 add name class function.
8826 (cli_style_option::add_setshow_commands): Remove name argument.
8827 (highlight_style, title_style): New styles.
8828 * cli/cli-style.c (do_show): New function that shows a style
8829 characteristic styling the style name with itself.
8830 (set_style_name): New function.
8831 (STYLE_ADD_SETSHOW_COMMANDS): Remove NAME arguments.
8832 Update all callers according to the changes in cli/cli-style.h.
8833 * utils.h (fputs_highlighted): New function.
8834 * utils.c (fputs_highlighted): Likewise.
8835
8836 2019-05-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
8837
8838 * NEWS: Mention new pipe command and new convenience variables.
8839
8840 2019-05-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
8841
8842 * cli/cli-cmds.c (pipe_command): New function.
8843 (_initialize_cli_cmds): Call add_com for pipe_command.
8844 Define | as an alias for pipe.
8845 (exit_status_set_internal_vars): New function.
8846 (shell_escape): Call exit_status_set_internal_vars.
8847 cli/cli-decode.c (find_command_name_length): Recognize | as
8848 a single character command.
8849
8850 2019-05-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
8851
8852 * gdbcmd.h (execute_command_to_ui_file): New declaration.
8853 top.c (execute_command_to_ui_file): New function, mostly a copy
8854 of execute_command_to_string.
8855 (execute_command_to_string): Implement by calling
8856 execute_command_to_ui_file.
8857
8858 2019-05-31 Philippe Waroquiers <philippe.waroquiers@skynet.be>
8859
8860 * top.h (saved_command_line): Remove declaration.
8861 * top.c (previous_saved_command_line, previous_repeat_arguments):
8862 New variables.
8863 (saved_command_line): Make static, define together with other
8864 'repeat variables'.
8865 (dont_repeat): Clear repeat_arguments.
8866 (repeat_previous, get_saved_command_line, save_command_line):
8867 New functions.
8868 (gdb_init): Initialize saved_command_line
8869 and previous_saved_command_line.
8870 * main.c (captured_main_1): Remove saved_command_line initialization.
8871 * event-top.c (handle_line_of_input): Update to use
8872 the new 'repeat' related functions instead of direct access to
8873 saved_command_line.
8874 * command.h (repeat_previous, get_saved_command_line,
8875 save_command_line): New declarations.
8876 (dont_repeat): Add comment.
8877
8878 2019-05-30 Tom Tromey <tromey@adacore.com>
8879
8880 * gdbtypes.h (struct range_bounds) <flag_upper_bound_is_count>:
8881 Fix comment.
8882 (TYPE_ARRAY_UPPER_BOUND_IS_UNDEFINED): Rewrite comment.
8883
8884 2019-05-30 Jan Vrany <jan.vrany@fit.cvut.cz>
8885
8886 PR cli/24587
8887 * completer.c (complete): Initialize variable word.
8888
8889 2019-05-29 Sergio Durigan Junior <sergiodj@redhat.com>
8890
8891 Ref.: https://bugzilla.redhat.com/show_bug.cgi?id=1708192
8892 Ref.: https://bugzilla.redhat.com/show_bug.cgi?id=1715008
8893 * dwarf2read.c (dwarf_decode_macro_bytes): Move check to see if
8894 'body' is NULL to the outter 'if', protecting the '!is_define'
8895 situation as well.
8896
8897 2019-05-29 Tom Tromey <tromey@adacore.com>
8898
8899 * dwarf2read.c (partial_die_parent_scope): Call dwarf_tag_name.
8900 (dwarf_unknown): New function.
8901 (dwarf_tag_name, dwarf_attr_name, dwarf_form_name)
8902 (dwarf_type_encoding_name): Use dwarf_unknown.
8903
8904 2019-05-29 Tom Tromey <tromey@adacore.com>
8905
8906 PR c++/20020:
8907 * cp-valprint.c (cp_print_value_fields): Call
8908 cp_print_static_field inside "try".
8909
8910 2019-05-29 Tom Tromey <tromey@adacore.com>
8911
8912 * inflow.c (struct terminal_info): Add default operator=.
8913 * configure: Rebuild.
8914 * warning.m4 (AM_GDB_WARNINGS): Add -Wdeprecated-copy,
8915 -Wdeprecated-copy-dtor, -Wredundant-move.
8916
8917 2019-05-29 Tom Tromey <tromey@adacore.com>
8918
8919 * NEWS: Add entry.
8920 * infcmd.c (print_return_value_1): Handle finish_print
8921 option.
8922 (show_print_finish): New function.
8923 (_initialize_infcmd): Add "set/show print finish" commands.
8924 * valprint.c (user_print_options): Initialize new member.
8925 * valprint.h (struct value_print_options) <finish_print>: New
8926 member.
8927
8928 2019-05-28 Tom Tromey <tromey@adacore.com>
8929
8930 * ada-lang.c (ada_remove_Xbn_suffix)
8931 (find_old_style_renaming_symbol)
8932 (parse_old_style_renaming): Remove.
8933 (ada_find_renaming_symbol): Don't call
8934 find_old_style_renaming_symbol.
8935 (ada_is_renaming_symbol): Rename from
8936 ada_find_renaming_symbol. Remove "block" parameter. Return
8937 bool. Now static.
8938 (ada_read_var_value): Update and simplify.
8939 * ada-exp.y (write_var_or_type): Remove old code.
8940
8941 2019-05-28 Alan Hayward <alan.hayward@arm.com>
8942
8943 PR gdb/25010
8944 * event-top.c: Remove include comment.
8945 * inflow.c (class scoped_ignore_sigttou): Move from here...
8946 * inflow.h (class scoped_ignore_sigttou): ...to here.
8947 * ser-unix.c (hardwire_drain_output): Block SIGTTOU during drain.
8948 * top.c: Remove include comment.
8949
8950 2019-05-27 Tom Tromey <tom@tromey.com>
8951
8952 * NEWS: Fix typo.
8953
8954 2019-05-22 Tom Tromey <tromey@adacore.com>
8955
8956 * target.c (target_follow_exec): Constify parameter.
8957 * target-delegates.c: Rebuild.
8958 * remote.c (remote_target::follow_exec): Constify parameter.
8959 * infrun.c (follow_exec): Constify parameter.
8960 * target.h (struct target_ops) <follow_exec>: Constify parameter.
8961 (target_follow_exec): Likewise.
8962
8963 2019-05-22 Alan Hayward <alan.hayward@arm.com>
8964
8965 * aarch64-tdep.c (aarch64_execute_dwarf_cfa_vendor_op): Treat
8966 DW_CFA_AARCH64_negate_ra_state as nop on non pauth targets.
8967
8968 2019-05-22 Alan Hayward <alan.hayward@arm.com>
8969
8970 * NEWS: Add debugredirect and testsuite sections.
8971
8972 2019-05-22 Simon Cook <simon.cook@embecosm.com>
8973
8974 * riscv-tdep.c (riscv_gdbarch_init): Support determining flen from
8975 target descriptions using exclusively floating point register name
8976 aliases.
8977
8978 2019-05-21 Andrew Burgess <andrew.burgess@embecosm.com>
8979
8980 PR gdb/18644:
8981 * f-lang.c (build_fortran_types): Handle the case where
8982 gdbarch_floatformat_for_type returns a nullptr.
8983
8984 2019-05-21 Tom de Vries <tdevries@suse.de>
8985
8986 PR cli/24587
8987 * cli/cli-cmds.c (complete_command): Fix use of unitialized variable.
8988
8989 2019-05-18 Andrew Burgess <andrew.burgess@embecosm.com>
8990
8991 PR gdb/18644:
8992 * f-lang.c (build_fortran_types): Use floatformats_ia64_quad for
8993 16-byte floats.
8994 * i386-tdep.c (i386_floatformat_for_type): Use
8995 floatformats_ia64_quad for the 16-byte floating point component
8996 within a fortran 32-byte complex number.
8997
8998 2019-05-18 Andrew Burgess <andrew.burgess@embecosm.com>
8999
9000 * dwarf2read.c (struct cu_partial_die_info): Add constructor,
9001 delete default constructor.
9002 (find_partial_die): Update to return const struct.
9003 (partial_die_parent_scope): Move variable declaration into scope
9004 of its use and change its type to auto.
9005 (guess_partial_die_structure_name): Likewise.
9006 (partial_die_info::fixup): Likewise.
9007
9008 2019-05-17 Tom Tromey <tromey@adacore.com>
9009
9010 * source.c (find_and_open_source): Remove cast.
9011
9012 2019-05-17 Tom Tromey <tromey@adacore.com>
9013
9014 * annotate.c (annotate_source): Make "filename" const.
9015 * annotate.h (annotate_source): Use const.
9016
9017 2019-05-17 Alan Hayward <alan.hayward@arm.com>
9018
9019 * disasm.c (set_disassembler_options): Send errors to stderr.
9020
9021 2019-05-17 Alan Hayward <alan.hayward@arm.com>
9022
9023 * cli/cli-interp.c (struct saved_output_files): Add saved entry.
9024 (cli_interp_base::set_logging): Check debug_redirect.
9025 * cli/cli-interp.h (set_logging): Add debug_redirect parameter.
9026 * cli/cli-logging.c (debug_redirect): Add static variable.
9027 (pop_output_files): Add default param.
9028 (handle_redirections): Print debug setting.
9029 (show_logging_command): Likewise.
9030 (_initialize_cli_logging): Add debugredirect command.
9031 * interps.c (current_interp_set_logging): Add debug_redirect
9032 parameter.
9033 * interps.h (set_logging): Add debug_redirect parameter.
9034 (current_interp_set_logging): Likewise.
9035 * mi/mi-common.h: Likewise.
9036 * mi/mi-interp.c (mi_interp::set_logging): Likewise.
9037
9038 2019-05-17 Alan Hayward <alan.hayward@arm.com>
9039 Tom Tromey <tromey@adacore.com>
9040
9041 * cli/cli-interp.c (cli_interp_base::set_logging): Create tee_file
9042 directly.
9043 * cli/cli-interp.h (make_logging_output): Remove declaration.
9044 * cli/cli-logging.c (make_logging_output): Remove function.
9045 * mi/mi-interp.c (mi_interp::set_logging): Create tee_file
9046 directly.
9047 * ui-file.c (tee_file::tee_file): Remove bools.
9048 (tee_file::~tee_file): Remove deletes.
9049 * ui-file.h (tee_file): Remove bools.
9050
9051 2019-01-28 Jan Vrany <jan.vrany@fit.cvut.cz>
9052
9053 * mi/mi-cmds.h (mi_cmd_complete): New function.
9054 * mi/mi-main.c (mi_cmd_complete): Likewise.
9055 * mi/mi-cmds.c: Define new MI command -complete.
9056 * NEWS: Mention new -complete command.
9057
9058 2019-01-24 Jan Vrany <jan.vrany@fit.cvut.cz>
9059
9060 * completer.h (complete): New function.
9061 * completer.c (complete): Likewise.
9062 * cli/cli-cmds.c: (complete_command): Update to use new complete()
9063 function defined in completer.h.
9064
9065 2019-05-17 Jan Vrany <jan.vrany@fit.cvut.cz>
9066
9067 * MAINTAINERS (Write After Approval): Add myself.
9068
9069 2019-05-17 Tom de Vries <tdevries@suse.de>
9070
9071 PR gdb/24094
9072 * dwarf2read.c (struct cu_partial_die_info): New struct.
9073 (find_partial_die): Return cu_partial_die_info.
9074 (partial_die_parent_scope, guess_partial_die_structure_name)
9075 (partial_die_info::fixup): Handle new return type of find_partial_die.
9076
9077 2019-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
9078
9079 PR breakpoints/24541
9080 * stap-probe.c (stap_parse_register_operand): Make "regname" an
9081 "std::string", simplifying the algorithm.
9082
9083 2019-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
9084
9085 * stap-probe.c (handle_stap_probe): Fix complaint formatting.
9086 (stap_static_probe_ops::get_probes): Likewise.
9087
9088 2019-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
9089
9090 * stap-probe.c (stap_parse_register_operand): Make "if (*p->arg ==
9091 '-')" and "else if".
9092 (stap_parse_single_operand): Join checks for
9093 "gdbarch_stap_parse_special_token_p" and
9094 "gdbarch_stap_parse_special_token" in the same "if" statement.
9095 Invert check when verifying for operation on register
9096 displacement.
9097
9098 2019-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
9099
9100 * stap-probe.c (stap_get_opcode): Update comment.
9101 (stap_get_expected_argument_type): Likewise.
9102 (handle_stap_probe): Likewise.
9103
9104 2019-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
9105
9106 * i386-tdep.c (i386_stap_parse_special_token_triplet): Change
9107 return type to 'bool'. Adjust comment. Use 'bool' when
9108 appropriate.
9109 (i386_stap_parse_special_token_three_arg_disp): Likewise.
9110 * stap-probe.c (stap_parse_argument_1): Likewise.
9111 (stap_is_operator): Likewise.
9112 (stap_is_generic_prefix): Likewise.
9113 (stap_is_register_prefix): Likewise.
9114 (stap_is_register_indirection_prefix): Likewise.
9115 (stap_is_integer_prefix): Likewise.
9116 (stap_generic_check_suffix): Likewise.
9117 (stap_check_integer_suffix): Likewise.
9118 (stap_check_register_suffix): Likewise.
9119 (stap_check_register_indirection_suffix): Likewise.
9120 (stap_parse_register_operand): Likewise.
9121 (stap_parse_single_operand): Likewise.
9122 (stap_parse_argument_1): Likewise.
9123 (stap_probe::get_argument_count): Likewise.
9124 (stap_is_operator): Likewise.
9125
9126 2019-05-16 Tom Tromey <tromey@adacore.com>
9127
9128 * darwin-nat.c (thread_info_from_private_thread_info): Add struct
9129 keyword to foreach.
9130
9131 2019-05-15 Simon Marchi <simon.marchi@efficios.com>
9132
9133 * linux-thread-db.c (try_thread_db_load_1): Change return type
9134 to bool.
9135 (try_thread_db_load): Likewise.
9136 (try_thread_db_load_from_pdir_1): Likewise.
9137 (try_thread_db_load_from_pdir): Likewise.
9138 (try_thread_db_load_from_sdir): Likewise.
9139 (try_thread_db_load_from_dir): Likewise.
9140 (thread_db_load_search): Likewise.
9141 (has_libpthread): Likewise.
9142 (thread_db_load): Likewise.
9143
9144 2019-05-15 Sergio Durigan Junior <sergiodj@redhat.com>
9145
9146 Ref.: https://bugzilla.redhat.com/show_bug.cgi?id=1708192
9147 * dwarf2read.c (parse_macro_definition): Check whether 'body' is
9148 NULL, and complain/return if that's the case.
9149
9150 2019-05-15 John Darrington <john@darrington.wattle.id.au>
9151
9152 * s12z-tdep.c (push_pull_get_stack_adjustment): New function.
9153 (advance, posn, abstract_read_memory): New functions.
9154 [struct mem_read_abstraction]: New struct.
9155 (s12z_frame_cache): Use opcodes API to interpret stack frame code.
9156
9157 2019-05-14 Tom Tromey <tromey@adacore.com>
9158
9159 * ada-lang.c (coerce_unspec_val_to_type): Only set address when
9160 value is not lval_memory.
9161
9162 2019-05-14 Tom Tromey <tromey@adacore.com>
9163
9164 * solib.c (info_sharedlibrary_command): Style the file name.
9165
9166 2019-05-14 Alan Hayward <alan.hayward@arm.com>
9167
9168 * aarch64-tdep.c (aarch64_vnh_type): Add half view.
9169 (aarch64_vnv_type): Likewise.
9170 * target-descriptions.c (make_gdb_type): Add TDESC_TYPE_IEEE_HALF.
9171 * common/tdesc.c: Likewise.
9172 * common/tdesc.h (enum tdesc_type_kind): Likewise.
9173 * features/aarch64-fpu.c (create_feature_aarch64_fpu): Regenerate.
9174 * features/aarch64-fpu.xml: Add ieee half view.
9175 * features/aarch64-sve.c (create_feature_aarch64_fpu): Likewise.
9176 * gdbtypes.c (gdbtypes_post_init): Add builtin_half
9177 * gdbtypes.h (struct builtin_type): Likewise.
9178 (struct objfile_type): Likewise.
9179
9180 2019-05-12 Paul Naert <paul.naert@polymtl.ca>
9181
9182 * language.c (language_sniff_from_mangled_name): Fix "langauge"
9183 typo.
9184 * location.h (string_to_event_location): Likewise.
9185
9186 2019-05-11 Joel Brobecker <brobecker@adacore.com>
9187
9188 GDB 8.3 released.
9189
9190 2019-05-10 Simon Marchi <simon.marchi@efficios.com>
9191
9192 * breakpoint.h (fix_multi_location_breakpoint_output_globally):
9193 New variable declaration.
9194 * breakpoint.c (fix_multi_location_breakpoint_output_globally):
9195 New variable.
9196 (print_one_breakpoint): Use ui_out::test_flags and new global
9197 variable to compute use_fixed_output.
9198 * mi/mi-main.h (mi_multi_location_breakpoint_output_fixed):
9199 Remove.
9200 * mi/mi-main.c (fix_multi_location_breakpoint_output): Remove.
9201 (mi_multi_location_breakpoint_output_fixed): Remove.
9202 (mi_cmd_fix_multi_location_breakpoint_output): Adjust to set the
9203 new variable.
9204 * mi/mi-out.c (mi_ui_out::mi_ui_out): Set
9205 fix_multi_location_breakpoint_output flag if version >= 3.
9206 * ui-out.h (enum ui_out_flag)
9207 <fix_multi_location_breakpoint_output>: New enumerator.
9208
9209 2019-05-10 Simon Marchi <simon.marchi@efficios.com>
9210
9211 * contrib/cc-with-tweaks.sh: Validate dwz's work.
9212
9213 2019-05-10 Tom Tromey <tromey@adacore.com>
9214
9215 * ada-lang.c (catch_ada_completer): New function.
9216 (_initialize_ada_language): Use it.
9217
9218 2019-05-10 Tom Tromey <tromey@adacore.com>
9219
9220 * thread.c (print_thread_info): Make "requested_threads" const.
9221 * gdbthread.h (print_thread_info): Make "requested_threads"
9222 const.
9223 * ada-tasks.c (print_ada_task_info): Make "taskno_str" const.
9224 * ada-lang.h (print_ada_task_info): Make "taskno_str" const.
9225
9226 2019-05-08 Tom Tromey <tom@tromey.com>
9227
9228 * gdbtypes.c (objfile_type_data): Change type.
9229 (objfile_type, _initialize_gdbtypes): Update.
9230
9231 2019-05-08 Tom Tromey <tom@tromey.com>
9232
9233 * dwarf2-frame.c (dwarf2_frame_objfile_data): Change type.
9234 (dwarf2_frame_find_fde, dwarf2_build_frame_info)
9235 (_initialize_dwarf2_frame): Update.
9236
9237 2019-05-08 Tom Tromey <tom@tromey.com>
9238
9239 * objc-lang.c (objc_objfile_data): Change type.
9240 (find_methods): Update.
9241 (_initialize_objc_lang): Remove.
9242
9243 2019-05-08 Tom Tromey <tom@tromey.com>
9244
9245 * stabsread.c (rs6000_builtin_type_data): Change type.
9246 (rs6000_builtin_type, _initialize_stabsread): Update.
9247
9248 2019-05-08 Tom Tromey <tom@tromey.com>
9249
9250 * mips-tdep.c (mips_pdr_data): Remove.
9251 (_initialize_mips_tdep): Update.
9252
9253 2019-05-08 Tom Tromey <tom@tromey.com>
9254
9255 * hppa-tdep.c (hppa_objfile_priv_data): Change type.
9256 (hppa_init_objfile_priv_data, read_unwind_info)
9257 (find_unwind_entry, _initialize_hppa_tdep): Update.
9258
9259 2019-05-08 Tom Tromey <tom@tromey.com>
9260
9261 * elfread.c (elf_objfile_gnu_ifunc_cache_data): Change type.
9262 (elf_gnu_ifunc_record_cache): Update. Don't allocate hash table
9263 on obstack.
9264 (elf_gnu_ifunc_resolve_by_cache, _initialize_elfread): Update.
9265
9266 2019-05-08 Tom Tromey <tom@tromey.com>
9267
9268 * mdebugread.c (basic_type_data): Change type.
9269 (basic_type, _initialize_mdebugread): Update.
9270
9271 2019-05-08 Tom Tromey <tom@tromey.com>
9272
9273 * common/gdb_unique_ptr.h (struct noop_deleter): New.
9274
9275 2019-05-08 Tom Tromey <tom@tromey.com>
9276
9277 * nto-tdep.c (nto_inferior_data_reg): Change type.
9278 (nto_inferior_data): Update.
9279 (nto_inferior_data_cleanup, nto_new_inferior_data)
9280 (_initialize_nto_tdep): Remove.
9281 * nto-tdep.h (struct nto_inferior_data): Add initializers.
9282
9283 2019-05-08 Tom Tromey <tom@tromey.com>
9284
9285 * ada-lang.c (struct ada_inferior_data): Add initializers.
9286 (ada_inferior_data): Change type.
9287 (ada_inferior_data_cleanup): Remove.
9288 (get_ada_inferior_data, ada_inferior_exit)
9289 (struct ada_pspace_data): Add initializers, destructor.
9290 (ada_pspace_data_handle): Change type.
9291 (get_ada_pspace_data): Update.
9292 (ada_pspace_data_cleanup): Remove.
9293
9294 2019-05-08 Tom Tromey <tom@tromey.com>
9295
9296 * coffread.c (struct coff_symfile_info): Add initializers.
9297 (coff_objfile_data_key): Move lower. Change type.
9298 (coff_symfile_init, coff_symfile_read, _initialize_coffread):
9299 Update.
9300 (coff_free_info): Remove.
9301
9302 2019-05-08 Tom Tromey <tom@tromey.com>
9303
9304 * fbsd-tdep.c (struct fbsd_pspace_data): Add initializers.
9305 (fbsd_pspace_data_handle): Move lower. Change type.
9306 (get_fbsd_pspace_data): Update.
9307 (fbsd_pspace_data_cleanup): Remove.
9308 (_initialize_fbsd_tdep): Update.
9309
9310 2019-05-08 Tom Tromey <tom@tromey.com>
9311
9312 * ada-tasks.c (ada_tasks_pspace_data_handle): Change type.
9313 (get_ada_tasks_pspace_data): Update.
9314 (ada_tasks_pspace_data_cleanup): Remove.
9315 (_initialize_tasks): Update.
9316 (ada_tasks_inferior_data_handle): Change type.
9317 (get_ada_tasks_inferior_data): Update.
9318 (ada_tasks_inferior_data_cleanup): Remove.
9319 (struct ada_tasks_pspace_data): Add initializers.
9320
9321 2019-05-08 Tom Tromey <tom@tromey.com>
9322
9323 * symfile.h (struct sym_probe_fns) <sym_get_probes>: Change type.
9324 * symfile-debug.c (debug_sym_get_probes): Change type.
9325 * stap-probe.c (handle_stap_probe):
9326 (stap_static_probe_ops::get_probes): Change type.
9327 * probe.h (class static_probe_ops) <get_probes>: Change type.
9328 * probe.c (class any_static_probe_ops) <get_probes>: Change type.
9329 (parse_probes_in_pspace): Update.
9330 (find_probes_in_objfile, find_probe_by_pc, collect_probes):
9331 Update.
9332 (any_static_probe_ops::get_probes): Change type.
9333 * elfread.c (elfread_data): New typedef.
9334 (probe_key): Change type.
9335 (elf_get_probes): Likewise. Update.
9336 (probe_key_free): Remove.
9337 (_initialize_elfread): Update.
9338 * dtrace-probe.c (class dtrace_static_probe_ops) <get_probes>:
9339 Change type.
9340 (dtrace_process_dof_probe, dtrace_process_dof)
9341 (dtrace_static_probe_ops::get_probe): Change type.
9342
9343 2019-05-08 Tom Tromey <tom@tromey.com>
9344
9345 * xcoffread.c (struct xcoff_symfile_info): Rename from
9346 coff_symfile_info. Add initializers.
9347 (xcoff_objfile_data_key): Move lower. Change type.
9348 (XCOFF_DATA): Rewrite.
9349 (xcoff_free_info): Remove.
9350 (xcoff_symfile_init, _initialize_xcoffread, read_xcoff_symtab)
9351 (read_symbol, read_symbol_lineno, find_linenos, init_stringtab)
9352 (xcoff_initial_scan): Update.
9353
9354 2019-05-08 Tom Tromey <tom@tromey.com>
9355
9356 * solib-svr4.c (struct svr4_info): Add initializers and
9357 destructor.
9358 <probes_table>: Now an htab_up.
9359 (solib_svr4_pspace_data): Change type.
9360 (free_probes_table): Simplify.
9361 (~svr4_info): Rename from svr4_pspace_data_cleanup.
9362 (get_svr4_info, probes_table_htab_remove_objfile_probes)
9363 (probes_table_remove_objfile_probes, register_solib_event_probe)
9364 (solib_event_probe_at, svr4_update_solib_event_breakpoint)
9365 (_initialize_svr4_solib): Update.
9366
9367 2019-05-08 Tom Tromey <tom@tromey.com>
9368
9369 * remote.c (remote_pspace_data): Change type.
9370 (remote_pspace_data_cleanup): Remove.
9371 (get_remote_exec_file, set_pspace_remote_exec_file)
9372 (_initialize_remote): Update.
9373
9374 2019-05-08 Tom Tromey <tom@tromey.com>
9375
9376 * breakpoint.c (breakpoint_objfile_key): Change type.
9377 (get_breakpoint_objfile_data): Update.
9378 (free_breakpoint_objfile_data): Remove.
9379 (_initialize_breakpoint): Update.
9380
9381 2019-05-08 Tom Tromey <tom@tromey.com>
9382
9383 * linux-tdep.c (struct linux_info): Add initializers.
9384 (linux_inferior_data): Move. Change type.
9385 (invalidate_linux_cache_inf): Update.
9386 (linux_inferior_data_cleanup): Remove.
9387 (get_linux_inferior_data, _initialize_linux_tdep): Update.
9388
9389 2019-05-08 Tom Tromey <tom@tromey.com>
9390
9391 * auxv.c (auxv_inferior_data): Move. Change type.
9392 (auxv_inferior_data_cleanup): Remove.
9393 (invalidate_auxv_cache_inf): Rewrite.
9394 (get_auxv_inferior_data, _initialize_auxv): Update.
9395
9396 2019-05-08 Tom Tromey <tom@tromey.com>
9397
9398 * symfile-debug.c (struct debug_sym_fns_data): Add initializers.
9399 (symfile_debug_objfile_data_key): Change type.
9400 (symfile_debug_installed, debug_qf_has_symbols)
9401 (debug_qf_find_last_source_symtab)
9402 (debug_qf_forget_cached_source_info)
9403 (debug_qf_map_symtabs_matching_filename, debug_qf_lookup_symbol)
9404 (debug_qf_print_stats, debug_qf_dump)
9405 (debug_qf_expand_symtabs_for_function)
9406 (debug_qf_expand_all_symtabs)
9407 (debug_qf_expand_symtabs_with_fullname)
9408 (debug_qf_map_matching_symbols)
9409 (debug_qf_expand_symtabs_matching)
9410 (debug_qf_find_pc_sect_compunit_symtab)
9411 (debug_qf_map_symbol_filenames)
9412 (debug_qf_find_compunit_symtab_by_address, debug_sym_get_probes)
9413 (debug_sym_new_init, debug_sym_init, debug_sym_read)
9414 (debug_sym_read_psymbols, debug_sym_finish, debug_sym_offsets)
9415 (debug_sym_read_linetable, debug_sym_relocate): Update.
9416 (symfile_debug_free_objfile): Remove.
9417 (install_symfile_debug_logging, _initialize_symfile_debug):
9418 Update.
9419
9420 2019-05-08 Tom Tromey <tom@tromey.com>
9421
9422 * dwarf2read.h (struct dwarf2_per_objfile): Don't inherit from
9423 allocate_on_obstack.
9424 * dwarf2read.c (dwarf2_objfile_data_key): Change type.
9425 (get_dwarf2_per_objfile): Update.
9426 (set_dwarf2_per_objfile): Remove.
9427 (dwarf2_has_info, dwarf2_get_section_info): Update.
9428 (dwarf2_free_objfile): Remove.
9429 (_initialize_dwarf2_read): Update.
9430
9431 2019-05-08 Tom Tromey <tom@tromey.com>
9432
9433 * auto-load.c (struct auto_load_pspace_info): Add destructor and
9434 initializers.
9435 <unsupported_script_warning_printed,
9436 script_not_found_warning_printed>: Now bool.
9437 (auto_load_pspace_data): Change type.
9438 (~auto_load_pspace_info): Rename from
9439 auto_load_pspace_data_cleanup.
9440 (get_auto_load_pspace_data, init_loaded_scripts_info)
9441 (clear_section_scripts, maybe_print_unsupported_script_warning)
9442 (maybe_print_script_not_found_warning, _initialize_auto_load):
9443 Update.
9444
9445 2019-05-08 Tom Tromey <tom@tromey.com>
9446
9447 * objfiles.c (objfile_pspace_info): Add destructor and
9448 initializers.
9449 (objfiles_pspace_data): Change type.
9450 (~objfile_pspace_info): Rename from objfiles_pspace_data_cleanup.
9451 (get_objfile_pspace_data): Update.
9452 (objfiles_bfd_data): Change type.
9453 (get_objfile_bfd_data): Update.
9454 (objfile_bfd_data_free, _initialize_objfiles): Remove.
9455
9456 2019-05-08 Tom Tromey <tom@tromey.com>
9457
9458 * break-catch-syscall.c (catch_syscall_inferior_data): Move.
9459 Change type.
9460 (get_catch_syscall_inferior_data): Update.
9461 (catch_syscall_inferior_data_cleanup): Remove.
9462 (_initialize_break_catch_syscall): Update.
9463
9464 2019-05-08 Tom Tromey <tom@tromey.com>
9465
9466 * inflow.c (struct terminal_info): Add destructor and
9467 initializers.
9468 (inflow_inferior_data): Change type.
9469 (~terminal_info): Rename from inflow_inferior_data_cleanup.
9470 (get_inflow_inferior_data, inflow_inferior_exit)
9471 (swap_terminal_info, _initialize_inflow): Update.
9472
9473 2019-05-08 Tom Tromey <tom@tromey.com>
9474
9475 * target-dcache.c (target_dcache_cleanup): Remove.
9476 (target_dcache_aspace_key): Change type.
9477 (target_dcache_init_p, target_dcache_invalidate)
9478 (target_dcache_get, target_dcache_get_or_init)
9479 (_initialize_target_dcache): Update.
9480 * dcache.h (struct dcache_deleter): New.
9481
9482 2019-05-08 Tom Tromey <tom@tromey.com>
9483
9484 * symtab.c (struct symbol_cache): Add destructor and
9485 initializers.
9486 (symbol_cache_key): Move. Change type.
9487 (make_symbol_cache, free_symbol_cache): Remove.
9488 (get_symbol_cache): Update.
9489 (symbol_cache_cleanup): Remove.
9490 (ALL_PSPACES, symbol_cache_flush)
9491 (maintenance_print_symbol_cache)
9492 (maintenance_print_symbol_cache_statistics, _initialize_symtab):
9493 Update.
9494
9495 2019-05-08 Tom Tromey <tom@tromey.com>
9496
9497 * symtab.c (struct main_info): Add destructor and initializers.
9498 (main_progspace_key): Move. Change type.
9499 (get_main_info): Update.
9500 (main_info_cleanup): Remove.
9501 (_initialize_symtab): Update.
9502
9503 2019-05-08 Tom Tromey <tom@tromey.com>
9504
9505 * registry.h (DECLARE_REGISTRY): Define the _key class.
9506
9507 2019-05-08 Andrew Burgess <andrew.burgess@embecosm.com>
9508
9509 * NEWS: Merge two 'New commands' sections.
9510
9511 2019-05-08 Joel Brobecker <brobecker@adacore.com>
9512
9513 * ada-valprint.c (ada_val_print_gnat_array): Remove language
9514 parameter and use Ada language definition instead.
9515 (ada_val_print_ptr): Remove unused language parameter.
9516 (ada_val_print_num): Remove language parameter and use Ada language
9517 definition instead.
9518 (ada_val_print_enum, ada_val_print_flt): Remove unused language
9519 parameter.
9520 (ada_val_print_struct_union, ada_val_print_ref): Remove language
9521 parameter and use Ada language definition instead.
9522 (ada_val_print_1): Update all ada_val_print_xxx calls.
9523 Remove language parameter.
9524 (ada_val_print): Update ada_val_print_1 call.
9525
9526 2019-05-08 Tom Tromey <tromey@adacore.com>
9527
9528 * remote.c (remote_hw_watchpoint_limit)
9529 (remote_hw_watchpoint_length_limit, remote_hw_breakpoint_limit):
9530 Now static.
9531
9532 2019-05-08 Tom Tromey <tromey@adacore.com>
9533
9534 * maint.c (_initialize_maint_cmds): Move initialization code to
9535 remote.c.
9536 (watchdog, show_watchdog): Move to remote.c.
9537 * remote.c (watchdog, show_watchdog): Move from maint.c. Make
9538 "watchdog" static.
9539 (_initialize_remote): Move initialization code from maint.c.
9540 * defs.h (watchdog): Don't declare.
9541
9542 2019-05-08 Tom Tromey <tromey@adacore.com>
9543
9544 * tui/tui-interp.c: Include main.h.
9545 * interps.c: Include main.h.
9546 * main.h (interpreter_p): Declare.
9547 * defs.h (interpreter_p): Don't declare.
9548
9549 2019-05-08 Tom Tromey <tromey@adacore.com>
9550
9551 * dwarf2loc.c: Include dwarf2read.h.
9552 * defs.h (read_unsigned_leb128): Don't declare.
9553 * dwarf2read.h (read_unsigned_leb128): Declare.
9554
9555 2019-05-08 Tom Tromey <tromey@adacore.com>
9556
9557 * utils.c (fputs_maybe_filtered): Call can_emit_style_escape as a
9558 method.
9559
9560 2019-05-08 Tom Tromey <tromey@adacore.com>
9561
9562 * utils.c (fputs_maybe_filtered): Reset style after paging, even
9563 when no wrap column is set.
9564
9565 2019-05-08 Tom Tromey <tromey@adacore.com>
9566
9567 * c-lang.c (c_get_string): Handle non-C-style arrays.
9568
9569 2019-05-08 Tom Tromey <tromey@adacore.com>
9570
9571 * typeprint.c (print_offset_data::update): Print the bit offset,
9572 not the number of bits remaining.
9573
9574 2019-05-08 Tom Tromey <tromey@adacore.com>
9575
9576 * typeprint.c (print_offset_data::maybe_print_hole): Add extra
9577 padding at end of comment.
9578
9579 2019-05-08 Tom Tromey <tromey@adacore.com>
9580
9581 * dwarf2loc.c (dwarf2_evaluate_property) <PROP_ADDR_OFFSET>:
9582 Compare main types.
9583
9584 2019-05-06 Tom Tromey <tom@tromey.com>
9585
9586 * common/scoped_mmap.c: Include common-defs.h.
9587 * common/scoped_mmap.h: Don't include config.h.
9588
9589 2019-05-04 Tom Tromey <tom@tromey.com>
9590
9591 * aarch64-tdep.c (stack_item_t): Remove typedef and DEF_VEC.
9592 (struct aarch64_call_info): Add initializers.
9593 <si>: Now a std::vector.
9594 (pass_on_stack, aarch64_push_dummy_call): Update.
9595
9596 2019-05-04 Simon Marchi <simon.marchi@efficios.com>
9597 Tom Tromey <tom@tromey.com>
9598
9599 * ppc-linux-nat.c (thread_points_p): Remove typedef and DEF_VEC.
9600 (ppc_threads): Now a std::vector. Now static.
9601 (hwdebug_find_thread_points_by_tid)
9602 (ppc_linux_nat_target::low_new_thread, ppc_linux_thread_exit):
9603 Update.
9604
9605 2019-05-04 Tom Tromey <tom@tromey.com>
9606
9607 * arc-tdep.c (arc_tdesc_init): Return bool.
9608
9609 2019-05-04 Tom Tromey <tom@tromey.com>
9610
9611 * arm-linux-nat.c (arm_linux_nat_target::can_use_hw_breakpoint):
9612 Use gdb_assert_not_reached.
9613
9614 2019-05-04 Tom Tromey <tom@tromey.com>
9615
9616 * compile/compile-cplus-types.c (compile_cplus_convert_enum): Use
9617 "false".
9618
9619 2019-05-04 Tom Tromey <tom@tromey.com>
9620
9621 * arc-tdep.c (arc_tdesc_init): Use bool.
9622
9623 2019-05-04 Tom Tromey <tom@tromey.com>
9624
9625 * stack.c (select_frame_for_mi): Use "false", not "FALSE".
9626
9627 2019-05-04 Tom Tromey <tom@tromey.com>
9628
9629 * cli/cli-cmds.c (valid_command_p): Return bool.
9630
9631 2019-05-04 Tom Tromey <tom@tromey.com>
9632
9633 * cli/cli-decode.c (valid_user_defined_cmd_name_p): Return bool.
9634 * command.h (valid_user_defined_cmd_name_p): Channge return type.
9635
9636 2019-05-04 Raul Tambre <raul@tambre.ee>
9637
9638 * python/lib/gdb/prompt.py (_ExtendedPrompt)
9639 <before_prompt_hook, get_show_string>: Fix incorrect use of 'is'
9640 operator for comparison.
9641
9642 2019-05-04 Tom Tromey <tom@tromey.com>
9643
9644 * psymtab.c (psymbol_name_matches, match_partial_symbol)
9645 (lookup_partial_symbol, print_partial_symbols)
9646 (recursively_search_psymtabs, sort_pst_symbols, psymbol_hash)
9647 (psymbol_compare): Update.
9648 (add_psymbol_to_bcache): Clear the entire psymbol.
9649 (maintenance_check_psymtabs): Update.
9650 * psympriv.h (struct partial_symbol): Don't derive from
9651 general_symbol_info.
9652 <obj_section, unrelocated_address, address,
9653 set_unrelocated_address>: Update.
9654 <ginfo>: New member.
9655 * dwarf-index-write.c (write_psymbols, debug_names::insert)
9656 (debug_names::write_psymbols): Update.
9657
9658 2019-05-04 Tom de Vries <tdevries@suse.de>
9659
9660 * contrib/cc-with-tweaks.sh: Support -n arg.
9661
9662 2019-05-04 Philippe Waroquiers <philippe.waroquiers@skynet.be>
9663
9664 * corelow.c (core_target::detach): Ensure frame cache and
9665 register caches are cleared.
9666 inferior.c (exit_inferior_1): Likewise.
9667
9668 2019-05-03 Sandra Loosemore <sandra@codesourcery.com>
9669 Tom Tromey <tom@tromey.com>
9670
9671 * dictionary.c (collate_pending_symbols_by_language): Remove
9672 "struct" from foreach.
9673 * symtab.c (lookup_global_symbol_from_objfile)
9674 (lookup_symbol_in_objfile_from_linkage_name): Remove "struct" from
9675 foreach.
9676 * ser-tcp.c (net_open): Remove "struct" from foreach.
9677 * objfiles.c (objfile_relocate, objfile_rebase)
9678 (objfile_has_symbols): Remove "struct" from foreach.
9679 * minsyms.c (lookup_minimal_symbol_by_pc_section): Remove "struct"
9680 from foreach.
9681 * dwarf2read.c (handle_struct_member_die): Remove "struct" from
9682 foreach.
9683 * darwin-nat.c (thread_info_from_private_thread_info): Remove
9684 "struct" from foreach.
9685 * ada-lang.c (create_excep_cond_exprs)
9686 (ada_exception_catchpoint_cond_string): Remove "struct" from
9687 foreach.
9688
9689 2019-05-03 Tom Tromey <tromey@adacore.com>
9690
9691 * ada-exp.y (convert_char_literal): Check suffix of each
9692 enumerator.
9693
9694 2019-05-03 Dilyan Palauzov <dilyan.palauzov@aegee.org>
9695
9696 PR ada/21406:
9697 * ada-exp.y (yywrap): Don't define.
9698 * ada-lex.l (%option): Add noyywrap
9699 (yywrap): Remove.
9700
9701 2019-05-03 Eli Zaretskii <eliz@gnu.org>
9702
9703 * common/common-defs.h [__MINGW32__ || __CYGWIN__]: Define
9704 _WIN32_WINNT to the XP level, unless already defined to a higher
9705 level.
9706
9707 * unittests/parse-connection-spec-selftests.c:
9708 * ser-tcp.c:
9709 * common/netstuff.c [USE_WIN32API]: Remove the _WIN32_WINNT
9710 override.
9711
9712 * symfile.c (find_separate_debug_file): Remove colon from the
9713 drive spec of DOS/Windows file names of the target, so that the
9714 file name produced from DEBUGDIR and the target's directory will
9715 be valid on DOS/Windows systems.
9716
9717 2019-05-02 Andrew Burgess <andrew.burgess@embecosm.com>
9718
9719 * rust-lang.c (val_print_struct): Handle printing structures
9720 containing strings.
9721
9722 2019-05-02 Tom Tromey <tromey@adacore.com>
9723
9724 * valarith.c (_initialize_valarith): Remove.
9725
9726 2019-05-01 Tom Tromey <tromey@adacore.com>
9727
9728 * ada-lang.c (ada_value_primitive_field): Treat more fields as
9729 bitfields.
9730
9731 2019-05-01 Tom Tromey <tromey@adacore.com>
9732
9733 * ada-lang.c (ada_value_assign): Correctly compute starting offset
9734 for big-endian copies.
9735
9736 2019-04-30 Ali Tamur <tamur@google.com>
9737 * gdb/dwarf2read.c (read_3_bytes): New declaration.
9738 (read_attribute_value): Added DW_FORM_strx1-4 cases.
9739 (read_3_bytes): New function.
9740
9741 2019-04-30 Joel Brobecker <brobecker@adacore.com>
9742
9743 * windows-nat.c (main_thread_id): Delete.
9744 (handle_output_debug_string): Replace main_thread_id by
9745 current_event.dwThreadId.
9746 (fake_create_process): Likewise.
9747 (get_windows_debug_event) <CREATE_PROCESS_DEBUG_EVENT>:
9748 Do not set main_thread_id.
9749 <LOAD_DLL_DEBUG_EVENT>: Replace main_thread_id by
9750 current_event.dwThreadId.
9751 <UNLOAD_DLL_DEBUG_EVENT>: Likewise.
9752
9753 2019-04-30 Joel Brobecker <brobecker@adacore.com>
9754
9755 * windows-nat.c (get_windows_debug_event) <EXIT_PROCESS_DEBUG_EVENT>:
9756 Use current_event.dwThreadId instead of main_thread_id.
9757
9758 2019-04-30 Tom Tromey <tromey@adacore.com>
9759
9760 * ada-lang.c (ada_lookup_simple_minsyms): New function.
9761 (create_excep_cond_exprs): Iterate over program spaces.
9762 (ada_exception_catchpoint_cond_string): Examine all minimal
9763 symbols for exception types.
9764
9765 2019-04-30 Tom Tromey <tromey@adacore.com>
9766
9767 PR c++/24470:
9768 * dwarf2read.c (process_structure_scope): Handle case where type
9769 has template parameters but no symbol was created.
9770
9771 2019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
9772 Chris January <chris.january@arm.com>
9773
9774 * f-typeprint.c (f_type_print_base): Print 'allocatable' type
9775 qualifier.
9776 * gdbtypes.h (TYPE_IS_ALLOCATABLE): Define.
9777
9778 2019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
9779
9780 * f-typeprint.c (f_print_type): Update rules for printing
9781 whitespace.
9782 (f_type_print_varspec_suffix): Likewise.
9783
9784 2019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
9785 Chris January <chris.january@arm.com>
9786
9787 * f-typeprint.c (f_type_print_varspec_suffix): Handle printing
9788 function arguments.
9789
9790 2019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
9791
9792 * f-lang.c (build_fortran_types): Change name of void type to
9793 lower case.
9794 * f-typeprint.c (f_type_print_base): Print the name of the void
9795 type, rather than a fixed string.
9796 * f-valprint.c (f_decorations): Use lower case void string.
9797
9798 2019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
9799 Chris January <chris.january@arm.com>
9800
9801 * dwarf2read.c (dwarf2_init_complex_target_type): Use different
9802 types for Fortran.
9803
9804 2019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
9805 Chris January <chris.january@arm.com>
9806 David Lecomber <david.lecomber@arm.com>
9807
9808 * f-exp.y (BINOP_INTRINSIC): New token.
9809 (exp): New parser rule handling BINOP_INTRINSIC.
9810 (f77_keywords): Add new builtin procedures.
9811 * f-lang.c (evaluate_subexp_f): Handle BINOP_MOD, UNOP_FORTRAN_CEILING,
9812 UNOP_FORTRAN_FLOOR, BINOP_FORTRAN_MODULO, BINOP_FORTRAN_CMPLX.
9813 (operator_length_f): Handle UNOP_FORTRAN_CEILING,
9814 UNOP_FORTRAN_FLOOR, BINOP_FORTRAN_MODULO, BINOP_FORTRAN_CMPLX.
9815 (print_unop_subexp_f): New function.
9816 (print_binop_subexp_f): New function.
9817 (print_subexp_f): Handle UNOP_FORTRAN_CEILING, UNOP_FORTRAN_FLOOR,
9818 BINOP_FORTRAN_MODULO, BINOP_FORTRAN_CMPLX.
9819 (dump_subexp_body_f): Likewise.
9820 (operator_check_f): Likewise.
9821 * fortran-operator.def: Add UNOP_FORTRAN_CEILING, UNOP_FORTRAN_FLOOR,
9822 BINOP_FORTRAN_MODULO, BINOP_FORTRAN_CMPLX
9823
9824 2019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
9825
9826 * gdb/expprint.c (dump_subexp_body_standard): Remove use of
9827 UNOP_KIND.
9828 * gdb/expression.h (exp_opcode): Include 'fortran-operator.def'.
9829 * gdb/f-exp.y (exp): Rename UNOP_KIND to UNOP_FORTRAN_KIND.
9830 * gdb/f-lang.c (evaluate_subexp_f): Likewise.
9831 (operator_length_f): New fuction.
9832 (print_subexp_f): New function.
9833 (op_name_f): New function.
9834 (dump_subexp_body_f): New function.
9835 (operator_check_f): New function.
9836 (exp_descriptor_f): Replace standard expression handling functions
9837 with new functions.
9838 * gdb/fortran-operator.def: New file.
9839 * gdb/parse.c (operator_length_standard): Remove use of UNOP_KIND.
9840 * gdb/std-operator.def: Remove UNOP_KIND.
9841
9842 2019-04-30 Andrew Burgess <andrew.burgess@embecosm.com>
9843
9844 * std-operator.def: Remove unbalanced, stray double quote
9845 character.
9846
9847 2019-04-29 Andrew Burgess <andrew.burgess@embecosm.com>
9848 Chris January <chris.january@arm.com>
9849 Daniel Everett <daniel.everett@arm.com>
9850 Nick Forrington <nick.forrington@arm.com>
9851 Richard Bunt <richard.bunt@arm.com>
9852
9853 * cp-valprint.c (cp_print_value_fields): Allow an additional level
9854 of depth when printing anonymous structs or unions.
9855 * guile/scm-pretty-print.c (gdbscm_apply_val_pretty_printer):
9856 Don't print either the top-level value, or the children if the
9857 max-depth is exceeded.
9858 (ppscm_print_children): When printing the key of a map, allow one
9859 extra level of depth.
9860 * python/py-prettyprint.c (gdbpy_apply_val_pretty_printer): Don't
9861 print either the top-level value, or the children if the max-depth
9862 is exceeded.
9863 (print_children): When printing the key of a map, allow one extra
9864 level of depth.
9865 * python/py-value.c (valpy_format_string): Add max_depth keyword.
9866 * valprint.c: (PRINT_MAX_DEPTH_DEFAULT): Define.
9867 (user_print_options): Initialise max_depth field.
9868 (val_print_scalar_or_string_type_p): New function.
9869 (val_print): Check to see if the max depth has been reached.
9870 (val_print_check_max_depth): Define new function.
9871 (show_print_max_depth): New function.
9872 (_initialize_valprint): Add 'print max-depth' option.
9873 * valprint.h (struct value_print_options) <max_depth>: New field.
9874 (val_print_check_max_depth): Declare new function.
9875 * NEWS: Document new feature.
9876
9877 2019-04-29 Andrew Burgess <andrew.burgess@embecosm.com>
9878
9879 * ada-lang.c (ada_language_defn): Initialise new field.
9880 * c-lang.c (c_is_string_type_p): New function.
9881 (c_language_defn): Initialise new field.
9882 (cplus_language_defn): Initialise new field.
9883 (asm_language_defn): Initialise new field.
9884 (minimal_language_defn): Initialise new field.
9885 * c-lang.h (c_is_string_type_p): Declare new function.
9886 * d-lang.c (d_language_defn): Initialise new field.
9887 * f-lang.c (f_is_string_type_p): New function.
9888 (f_language_defn): Initialise new field.
9889 * go-lang.c (go_is_string_type_p): New function.
9890 (go_language_defn): Initialise new field.
9891 * language.c (default_is_string_type_p): New function.
9892 (unknown_language_defn): Initialise new field.
9893 (auto_language_defn): Initialise new field.
9894 * language.h (struct language_defn) <la_is_string_type_p>: New
9895 member variable.
9896 (default_is_string_type_p): Declare new function.
9897 * m2-lang.c (m2_language_defn): Initialise new field.
9898 * objc-lang.c (objc_language_defn): Initialise new field.
9899 * opencl-lang.c (opencl_language_defn): Initialise new field.
9900 * p-lang.c (pascal_is_string_type_p): New function.
9901 (pascal_language_defn): Initialise new field.
9902 * rust-lang.c (rust_is_string_type_p): New function.
9903 (rust_language_defn): Initialise new field.
9904
9905 2019-04-29 Andrew Burgess <andrew.burgess@embecosm.com>
9906
9907 * language.h (struct language_defn) <la_struct_too_deep_ellipsis>:
9908 New field.
9909 * ada-lang.c (ada_language_defn): Initialise new field.
9910 * c-lang.c (c_language_defn): Likewise.
9911 (cplus_language_defn): Likewise.
9912 (asm_language_defn): Likewise.
9913 (minimal_language_defn): Likewise.
9914 * d-lang.c (d_language_defn): Likewise.
9915 * f-lang.c (f_language_defn): Likewise.
9916 * go-lang.c (go_language_defn): Likewise.
9917 * language.c (unknown_language_defn): Likewise.
9918 (auto_language_defn): Likewise.
9919 * m2-lang.c (m2_language_defn): Likewise.
9920 * objc-lang.c (objc_language_defn): Likewise.
9921 * opencl-lang.c (opencl_language_defn): Likewise.
9922 * p-lang.c (pascal_language_defn): Likewise.
9923 * rust-lang.c (rust_language_defn): Likewise.
9924
9925 2019-04-29 Andrew Burgess <andrew.burgess@embecosm.com>
9926
9927 * ada-lang.c (ada_is_character_type): Change return type to bool.
9928 (ada_is_string_type): Likewise.
9929 * ada-lang.h (ada_is_character_type): Update declaration
9930 (ada_is_string_type): Likewise.
9931
9932 2019-04-27 Philippe Waroquiers <philippe.waroquiers@skynet.be>
9933
9934 Support style in 'frame|thread apply'
9935
9936 * gdbcmd.h (execute_command_to_string): New term_out parameter.
9937 * record.c (record_start, record_stop): Update callers of
9938 execute_command_to_string with false.
9939 * guile/guile.c (gdbscm_execute_gdb_command): Likewise.
9940 * ui-file.h (class ui_file): New term_out and can_emit_style_escape
9941 methods.
9942 (class string_file): New constructor with term_out parameter.
9943 Override methods term_out and can_emit_style_escape. New member
9944 term_out.
9945 (class stdio_file): Override can_emit_style_escape.
9946 (class tee_file): Override term_out and can_emit_style_escape.
9947 * utils.h (can_emit_style_escape): Remove.
9948 * utils.c (can_emit_style_escape): Likewise.
9949 Update all callers of can_emit_style_escape (SOMESTREAM) to
9950 SOMESTREAM->can_emit_style_escape.
9951 * source-cache.c (source_cache::get_source_lines): Likewise.
9952 * stack.c (frame_apply_command_count): Call execute_command_to_string
9953 passing the term_out characteristic of the current gdb_stdout.
9954 * thread.c (thr_try_catch_cmd): Likewise.
9955 * top.c (execute_command_to_string): pass term_out parameter
9956 to construct the string_file for the command output.
9957 * ui-file.c (term_cli_styling): New function (most code moved
9958 from utils.c can_emit_style_escape).
9959 (string_file::string_file, string_file::can_emit_style_escape,
9960 stdio_file::can_emit_style_escape, tee_file::term_out,
9961 tee_file::can_emit_style_escape): New functions.
9962
9963 2019-04-27 Philippe Waroquiers <philippe.waroquiers@skynet.be>
9964
9965 * NEWS: Mention the new set|show may-call-functions.
9966 * infcall.c (may_call_functions_p): New variable.
9967 (show_may_call_functions_p): New function.
9968 (call_function_by_hand_dummy): Throws an error if not
9969 may-call-functions.
9970 (_initialize_infcall): Call add_setshow_boolean_cmd for
9971 may-call-functions.
9972
9973 2019-04-25 Keith Seitz <keiths@redhat.com>
9974
9975 PR c++/24367
9976 * cp-support.c (inspect_type): Don't attempt substitutions
9977 of symbol with the same name.
9978
9979 2019-04-25 Tom Tromey <tromey@adacore.com>
9980
9981 PR gdb/24475:
9982 * event-top.c (gdb_rl_callback_handler): Make "gdb_rl_expt"
9983 static.
9984
9985 2019-04-25 Tom Tromey <tromey@adacore.com>
9986
9987 * xml-support.c (struct gdb_xml_parser) <set_error>: Take an
9988 rvalue reference.
9989 (gdb_xml_start_element_wrapper, gdb_xml_end_element_wrapper)
9990 (gdb_xml_parser::parse): Use std::move.
9991 * python/python-internal.h (gdbpy_convert_exception): Take a const
9992 reference.
9993 * python/py-value.c (valpy_getitem, valpy_nonzero): Use
9994 std::move.
9995 * python/py-utils.c (gdbpy_convert_exception): Take a const
9996 reference.
9997 * python/py-inferior.c (infpy_write_memory, infpy_search_memory):
9998 Use std::move.
9999 * python/py-breakpoint.c (bppy_set_condition, bppy_set_commands):
10000 Use std::move.
10001 * mi/mi-main.c (mi_print_exception): Take a const reference.
10002 * main.c (handle_command_errors): Take a const reference.
10003 * linespec.c (parse_linespec): Use std::move.
10004 * infcall.c (run_inferior_call): Use std::move.
10005 (call_function_by_hand_dummy): Use std::move.
10006 * exec.c (try_open_exec_file): Use std::move.
10007 * exceptions.h (exception_print, exception_fprintf)
10008 (exception_print_same): Update.
10009 * exceptions.c (print_exception, exception_print)
10010 (exception_fprintf, exception_print_same): Change parameters to
10011 const reference.
10012 * event-top.c (gdb_rl_callback_read_char_wrapper): Update.
10013 * common/new-op.c: Use std::move.
10014 * common/common-exceptions.h (struct gdb_exception): Add move
10015 constructor.
10016 (struct gdb_exception_error, struct gdb_exception_quit, struct
10017 gdb_quit_bad_alloc): Change constructor to move constructor.
10018 (throw_exception): Change parameter to rvalue reference.
10019 * common/common-exceptions.c (throw_exception): Take rvalue
10020 reference.
10021 * cli/cli-interp.c (safe_execute_command): Use std::move.
10022 * breakpoint.c (insert_bp_location, location_to_sals): Use
10023 std::move.
10024
10025 2019-04-25 Tom Tromey <tromey@adacore.com>
10026
10027 * guile/scm-exception.c (gdbscm_scm_from_gdb_exception)
10028 (gdbscm_throw_gdb_exception): Take a gdbscm_gdb_exception.
10029 * guile/scm-block.c, guile/scm-breakpoint.c, guile/scm-cmd.c,
10030 guile/scm-disasm.c, guile/scm-frame.c, guile/scm-lazy-string.c,
10031 guile/scm-math.c, guile/scm-param.c, guile/scm-ports.c,
10032 guile/scm-symbol.c, guile/scm-symtab.c, guile/scm-type.c,
10033 guile/scm-value.c: Use unpack.
10034 * guile/guile-internal.h (gdbscm_scm_from_gdb_exception): Take a
10035 gdbscm_gdb_exception.
10036 (gdbscm_throw_gdb_exception): Likewise.
10037 (struct gdbscm_gdb_exception): New.
10038 (unpack): New function.
10039 (gdbscm_wrap): Use unpack.
10040
10041 2019-04-25 Tom Tromey <tromey@adacore.com>
10042
10043 * event-top.c (gdb_rl_callback_read_char_wrapper_noexcept)
10044 (gdb_rl_callback_handler): Use std::move.
10045 * common/common-exceptions.h (struct gdb_exception): Add move
10046 assignment operator.
10047 (throw_exception_sjlj): Change "exception" to const reference.
10048 * common/common-exceptions.c (exceptions_state_mc_catch): Update.
10049 (throw_exception_sjlj): Change "exception" to const reference.
10050
10051 2019-04-25 Tom Tromey <tromey@adacore.com>
10052
10053 * xml-support.c (gdb_xml_parser::gdb_xml_parser): Update.
10054 * python/py-value.c (valpy_getitem, valpy_nonzero): Update.
10055 * python/py-inferior.c (infpy_write_memory, infpy_search_memory):
10056 Update.
10057 * python/py-breakpoint.c (bppy_set_condition, bppy_set_commands):
10058 Update.
10059 * mi/mi-interp.c (mi_interp::exec): Update.
10060 * linespec.c (parse_linespec): Update.
10061 * infcall.c (run_inferior_call): Update.
10062 * guile/scm-value.c (gdbscm_value_to_lazy_string): Update.
10063 * guile/scm-symbol.c (gdbscm_lookup_symbol)
10064 (gdbscm_lookup_global_symbol): Update.
10065 * guile/scm-param.c (gdbscm_parameter_value): Update.
10066 * guile/scm-frame.c (gdbscm_frame_read_register)
10067 (gdbscm_frame_read_var): Update.
10068 * guile/scm-breakpoint.c (gdbscm_register_breakpoint_x): Update.
10069 * exec.c (try_open_exec_file): Update.
10070 * event-top.c (gdb_rl_callback_read_char_wrapper_noexcept)
10071 (gdb_rl_callback_handler): Update.
10072 * common/common-exceptions.h (exception_none): Don't declare.
10073 * common/common-exceptions.c (exception_none): Don't define.
10074 (struct catcher) <exception>: Update.
10075 * cli/cli-interp.c (safe_execute_command): Update.
10076 * breakpoint.c (insert_bp_location, location_to_sals): Update.
10077
10078 2019-04-25 Ali Tamur <tamur@google.com>
10079
10080 * dwarf2read.c (skip_one_die): Add DW_FORM_strx.
10081 (read_attribute_value): Likewise.
10082 (dwarf2_read_addr_index): Update comment.
10083 (read_str_index): Add DW_FORM_strx.
10084 (dwarf2_string_attr): Likewise.
10085 (dwarf2_const_value_attr): Likewise.
10086 (dump_die_shallow): Likewise.
10087 (dwarf2_fetch_constant_bytes): Likewise.
10088 (skip_form_bytes): Likewise.
10089 * testsuite/lib/dwarf.exp (_handle_DW_FORM): Add DW_FORM_strx.
10090
10091 2019-04-25 Sergio Durigan Junior <sergiodj@redhat.com>
10092
10093 PR corefiles/11608
10094 PR corefiles/18187
10095 * linux-tdep.c (dump_mapping_p): Add new parameters ADDR and
10096 OFFSET. Verify if current mapping contains an ELF header.
10097 (linux_find_memory_regions_full): Adjust call to
10098 dump_mapping_p.
10099
10100 2019-04-25 Sandra Loosemore <sandra@codesourcery.com>
10101 Kang Li <kanglictf@gmail.com>
10102
10103 PR gdb/21600
10104
10105 * dwarf2-frame.c (read_initial_length): Be consistent about using
10106 unsigned representation of length.
10107 (decode_frame_entry_1): Likewise. Check for wraparound of
10108 end pointer as well as buffer overflow.
10109
10110 2019-04-24 Sergio Durigan Junior <sergiodj@redhat.com>
10111
10112 * aarch64-tdep.c (aarch64_gdbarch_init): Use "pulongest" to print
10113 "vq".
10114
10115 2019-04-24 Tom Tromey <tromey@adacore.com>
10116
10117 * amd64-tdep.c (amd64_has_unaligned_fields): Ignore bitfields.
10118
10119 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10120
10121 * s12z-tdep.c (s12z_unwind_pc): Delete.
10122 (s12z_unwind_sp): Delete.
10123 (s12z_gdbarch_init): Don't register deleted functions with
10124 gdbarch.
10125
10126 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10127
10128 * rl78-tdep.c (rl78_unwind_sp): Delete.
10129 (rl78_gdbarch_init): Don't register deleted function with gdbarch.
10130
10131 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10132
10133 * xstormy16-tdep.c (xstormy16_unwind_sp): Delete.
10134 (xstormy16_unwind_pc): Delete.
10135 (xstormy16_dummy_id): Delete.
10136 (xstormy16_gdbarch_init): Don't register deleted functions with
10137 gdbarch.
10138
10139 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10140
10141 * vax-tdep.c (vax_unwind_pc): Delete.
10142 (vax_gdbarch_init): Don't register deleted function with gdbarch.
10143
10144 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10145
10146 * v850-tdep.c (v850_unwind_sp): Delete.
10147 (v850_unwind_pc): Delete.
10148 (v850_dummy_id): Delete.
10149 (v850_gdbarch_init): Don't register deleted functions with
10150 gdbarch.
10151
10152 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10153
10154 * tilegx-tdep.c (tilegx_unwind_sp): Delete.
10155 (tilegx_unwind_pc): Delete.
10156 (tilegx_unwind_dummy_id): Delete.
10157 (tilegx_gdbarch_init): Don't register deleted functions with
10158 gdbarch.
10159
10160 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10161
10162 * tic6x-tdep.c (tic6x_unwind_sp): Delete.
10163 (tic6x_dummy_id): Delete.
10164 (tic6x_gdbarch_init): Don't register deleted functions with
10165 gdbarch.
10166
10167 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10168
10169 * sparc-tdep.c (sparc_unwind_pc): Delete.
10170 (sparc32_gdbarch_init): Don't register deleted function with
10171 gdbarch.
10172
10173 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10174
10175 * sh-tdep.c (sh_unwind_sp): Delete.
10176 (sh_unwind_pc): Delete.
10177 (sh_dummy_id): Delete.
10178 (sh_gdbarch_init): Don't register deleted functions with
10179 gdbarch.
10180
10181 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10182
10183 * score-tdep.c (score_unwind_sp): Delete.
10184 (score_unwind_pc): Delete.
10185 (score_dummy_id): Delete.
10186 (score_gdbarch_init): Don't register deleted functions with
10187 gdbarch.
10188
10189 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10190
10191 * rx-tdep.c (rx_unwind_pc): Delete.
10192 (rx_unwind_sp): Delete.
10193 (rx_dummy_id): Delete.
10194 (rx_gdbarch_init): Don't register deleted functions with
10195 gdbarch. Update comment.
10196
10197 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10198
10199 * rs6000-tdep.c (rs6000_unwind_pc): Delete.
10200 (rs6000_dummy_id): Delete.
10201 (rs6000_gdbarch_init): Don't register deleted functions with
10202 gdbarch.
10203
10204 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10205
10206 * or1k-tdep.c (or1k_dummy_id): Delete.
10207 (or1k_gdbarch_init): Don't register deleted function with gdbarch.
10208
10209 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10210
10211 * nios2-tdep.c (nios2_dummy_id): Delete.
10212 (nios2_unwind_sp): Delete.
10213 (nios2_gdbarch_init): Don't register deleted functions with
10214 gdbarch.
10215
10216 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10217
10218 * nds32-tdep.c (nds32_dummy_id): Delete.
10219 (nds32_unwind_pc): Delete.
10220 (nds32_unwind_sp): Delete.
10221 (nds32_gdbarch_init): Don't register deleted functions with
10222 gdbarch.
10223
10224 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10225
10226 * msp430-tdep.c (msp430_unwind_pc): Delete.
10227 (msp430_unwind_sp): Delete.
10228 (msp430_dummy_id): Delete.
10229 (msp430_gdbarch_init): Don't register deleted functions with
10230 gdbarch.
10231
10232 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10233
10234 * moxie-tdep.c (moxie_unwind_sp): Delete.
10235 (moxie_unwind_pc): Delete.
10236 (moxie_dummy_id): Delete.
10237 (moxie_gdbarch_init): Don't register deleted functions with
10238 gdbarch.
10239
10240 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10241
10242 * mn10300-tdep.c (mn10300_dummy_id): Delete.
10243 (mn10300_unwind_pc): Delete.
10244 (mn10300_unwind_sp): Delete.
10245 (mn10300_push_dummy_call): Use gdbarch_unwind_sp not
10246 mn10300_unwind_sp.
10247 (mn10300_frame_unwind_init): Don't register deleted functions with
10248 gdbarch.
10249
10250 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10251
10252 * mep-tdep.c (mep_unwind_pc): Delete.
10253 (mep_unwind_sp): Delete.
10254 (mep_dummy_id): Delete.
10255 (mep_gdbarch_init): Don't register deleted functions with
10256 gdbarch.
10257
10258 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10259
10260 * m68hc11-tdep.c (m68hc11_unwind_pc): Delete.
10261 (m68hc11_unwind_sp): Delete.
10262 (m68hc11_gdbarch_init): Don't register deleted functions with
10263 gdbarch.
10264
10265 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10266
10267 * m32r-tdep.c (m32r_unwind_sp): Delete.
10268 (m32r_unwind_pc): Delete.
10269 (m32r_dummy_id): Delete.
10270 (m32r_gdbarch_init): Don't register deleted functions with
10271 gdbarch.
10272
10273 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10274
10275 * m32c-tdep.c (m32c_unwind_pc): Delete.
10276 (m32c_unwind_sp): Delete.
10277 (m32c_dummy_id): Delete.
10278 (m32c_gdbarch_init): Don't register deleted functions with
10279 gdbarch.
10280
10281 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10282
10283 * gdb/lm32-tdep.c (lm32_unwind_sp): Delete.
10284 (lm32_unwind_pc): Delete.
10285 (lm32_dummy_id): Delete.
10286 (lm32_gdbarch_init): Don't register deleted functions with
10287 gdbarch.
10288
10289 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10290
10291 * gdb/iq2000-tdep.c (iq2000_unwind_sp): Delete.
10292 (iq2000_unwind_pc): Delete.
10293 (iq2000_dummy_id): Delete.
10294 (iq2000_gdbarch_init): Don't register deleted functions with
10295 gdbarch.
10296
10297 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10298
10299 * nds32-tdep.c (nds32_type_align): Delete.
10300 (nds32_push_dummy_call): Use type_align instead.
10301
10302 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10303
10304 * arm-tdep.c (arm_type_align): Only handle vector override case.
10305 (arm_push_dummy_call): Use type_align.
10306 (arm_gdbarch_init): Register arm_type_align gdbarch function.
10307
10308 2019-04-23 Andrew Burgess <andrew.burgess@embecosm.com>
10309
10310 * aarch64-tdep.c (aarch64_type_align): Only handle vector override
10311 case.
10312 (pass_on_stack): Use type_align.
10313 (aarch64_gdbarch_init): Register aarch64_type_align gdbarch
10314 function.
10315
10316 2019-04-23 Tom Tromey <tromey@adacore.com>
10317
10318 * dwarf2read.c (line_header::file_name_at): Remove unused
10319 overload.
10320
10321 2019-04-23 Tom de Vries <tdevries@suse.de>
10322
10323 PR gdb/24438
10324 * contrib/cc-with-tweaks.sh: Remove superfluous .alt file after dwz
10325 invocation.
10326
10327
10328 2019-03-27 Ali Tamur <tamur@google.com>
10329
10330 * dwarf2-frame.c(dwarf_expr_executor::get_addr_index): Update comment
10331 * dwarf2expr.c(dwarf_expr_context::execute_stack_op): Add DW_OP_addrx
10332 * dwarf2expr.h(dwarf_expr_context::offset): Update comment
10333 (dwarf_expr_context::get_addr_index): Likewise
10334 * dwarf2loc.c(dwarf_evaluate_loc_desc::get_addr_index): Likewise
10335 (symbol_needs_eval_context::get_addr_index): Likewise
10336 (disassemble_dwarf_expression): Add DW_OP_addrx
10337 * dwarf2read.c(attr_value_as_address): Add DW_FORM_addrx
10338 (read_cutu_die_from_dwo): Update comment
10339 (skip_one_die): Add DW_FORM_addrx
10340 (read_attribute_value): Likewise
10341 (var_decode_location): Add DW_OP_addrx
10342 (dwarf2_const_value_attr): Add DW_FORM_addrx
10343 (dump_die_shallow): Likewise
10344 (dwarf2_fetch_constant_bytes): Likewise
10345 (decode_locdesc): Add DW_OP_addrx
10346 (skip_form_bytes): Add DW_FORM_addrx
10347
10348 2019-04-22 Ali Tamur <tamur@google.com>
10349
10350 * MAINTAINERS (Write After Approval): Add self.
10351
10352 2019-04-22 Simon Marchi <simon.marchi@efficios.com>
10353
10354 * solib-svr4.c (get_svr4_info): Add pspace parameter.
10355 (svr4_keep_data_in_core): Pass current_program_space to get_svr4_info.
10356 (open_symbol_file_object): Likewise.
10357 (svr4_default_sos): Add info parameter.
10358 (svr4_read_so_list): Likewise.
10359 (svr4_current_sos_direct): Adjust functions calls to pass down
10360 info.
10361 (svr4_current_sos_1): Add info parameter.
10362 (svr4_current_sos): Call get_svr4_info, pass info down to
10363 svr4_current_sos_1.
10364 (svr4_fetch_objfile_link_map): Pass objfile->pspace to
10365 get_svr4_info.
10366 (svr4_in_dynsym_resolve_code): Pass current_program_space to
10367 get_svr4_info.
10368 (probes_table_htab_remove_objfile_probes): Pass objfile->pspace
10369 to get_svr4_info.
10370 (probes_table_remove_objfile_probes): Likewise.
10371 (register_solib_event_probe): Add info parameter.
10372 (solist_update_incremental): Pass info parameter down to
10373 svr4_read_so_list.
10374 (disable_probes_interface): Add info parameter.
10375 (svr4_handle_solib_event): Pass current_program_space to
10376 get_svr4_info. Adjust disable_probes_interface cleanup.
10377 (svr4_create_probe_breakpoints): Add info parameter, pass it
10378 down to register_solib_event_probe.
10379 (svr4_create_solib_event_breakpoints): Add info parameter,
10380 pass it down to svr4_create_probe_breakpoints.
10381 (enable_break): Pass info down to
10382 svr4_create_solib_event_breakpoints.
10383 (svr4_solib_create_inferior_hook): Pass current_program_space to
10384 get_svr4_info.
10385 (svr4_clear_solib): Likewise.
10386
10387 2019-04-22 Pedro Alves <palves@redhat.com>
10388
10389 * solib-svr4.c (svr4_free_objfile_observer): New.
10390 (probe_and_action::objfile): New field.
10391 (probes_table_htab_remove_objfile_probes)
10392 (probes_table_remove_objfile_probes): New functions.
10393 (register_solib_event_probe): Add 'objfile' parameter. Store it
10394 in the new probe_and_action. Don't store the probe in 'lookup'.
10395 (svr4_create_probe_breakpoints): Pass objfile to
10396 register_solib_event_probe.
10397 (_initialize_svr4_solib): Register a free_objfile observer.
10398
10399 2019-04-19 Tom Tromey <tom@tromey.com>
10400
10401 * common/queue.h: Remove.
10402
10403 2019-04-19 Tom Tromey <tom@tromey.com>
10404
10405 * event-loop.c: Don't include "common/queue.h".
10406
10407 2019-04-19 Tom Tromey <tom@tromey.com>
10408
10409 * remote.c (remote_target): Use delete.
10410 * remote-notif.h: Include <list>, not "common/queue.h".
10411 (notif_client_p): Remove typedef.
10412 (remote_notif_state): Add constructor, destructor, initializer.
10413 <notif_queue>: Now a std::list.
10414 (remote_notif_state_xfree): Don't declare.
10415 * remote-notif.c (remote_notif_process, handle_notification)
10416 (remote_notif_state_allocate): Update.
10417 (~remote_notif_state): Rename from remote_notif_state_xfree.
10418
10419 2019-04-19 Tom Tromey <tom@tromey.com>
10420
10421 * symfile.c (reread_symbols): Update.
10422 * objfiles.c (objfile_register_static_link)
10423 (objfile_lookup_static_link): Update
10424 (~objfile) Don't delete static_links.
10425 * objfiles.h (struct objfile) <static_links>: Now an htab_up.
10426
10427 2019-04-19 Tom Tromey <tom@tromey.com>
10428
10429 * type-stack.h (struct type_stack) <insert>: Constify string.
10430 * type-stack.c (type_stack::insert): Constify string.
10431 * gdbtypes.h (lookup_template_type): Update.
10432 (address_space_name_to_int): Update.
10433 * gdbtypes.c (address_space_name_to_int): Make space_identifier
10434 const.
10435 (lookup_template_type): Make name const.
10436 * c-exp.y: Update rules.
10437 (lex_one_token, classify_name, classify_inner_name)
10438 (c_print_token): Update.
10439 * p-exp.y: Update rules.
10440 (yylex): Update.
10441 * f-exp.y: Update rules.
10442 (yylex): Update.
10443 * d-exp.y: Update rules.
10444 (lex_one_token, classify_name, classify_inner_name): Update.
10445 * parse.c (write_dollar_variable, copy_name): Return std::string.
10446 * parser-defs.h (copy_name): Change return type.
10447 * m2-exp.y: Update rules.
10448 (yylex): Update.
10449 * go-exp.y (lex_one_token): Update.
10450 Update rules.
10451 (classify_unsafe_function, classify_packaged_name)
10452 (classify_name, yylex): Update.
10453
10454 2019-04-19 Sergei Trofimovich <siarheit@google.com>
10455
10456 * configure.ac: add --enable-source-highlight switch.
10457 * configure: Regenerate.
10458 * top.c (print_gdb_version): plumb --enable-source-highlight
10459 status to "show configuration".
10460
10461 2019-04-19 Tom Tromey <tromey@adacore.com>
10462
10463 * ada-lang.c (ada_is_variant_part, ada_to_fixed_type_1):
10464 Check ADA_TYPE_P.
10465 (empty_record, ada_template_to_fixed_record_type_1)
10466 (template_to_static_fixed_type)
10467 (to_record_with_fixed_variant_part): Use INIT_NONE_SPECIFIC.
10468 * cp-abi.c (value_rtti_type): Check HAVE_CPLUS_STRUCT.
10469 * gdbtypes.h (INIT_NONE_SPECIFIC, ADA_TYPE_P): New
10470 macros.
10471
10472 2019-04-19 Ilya Yu. Malakhov <malakhov@mcst.ru>
10473
10474 PR symtab/24423:
10475 * source.c (print_source_lines_base): Advance "iter" when a
10476 control character is seen.
10477
10478 2019-04-19 Philippe Waroquiers <philippe.waroquiers@skynet.be>
10479
10480 * inferior.h (struct infcall_suspend_state_deleter):
10481 Catch exception in destructor to avoid crash.
10482
10483 2019-04-19 Philippe Waroquiers <philippe.waroquiers@skynet.be>
10484
10485 * cli/cli-cmds.c (_initialize_cli_cmds): Move "shell" "!" alias
10486 close to the add_com "shell".
10487
10488 2019-04-18 Tom Tromey <tromey@adacore.com>
10489
10490 * process-stratum-target.h (class process_stratum_target)
10491 <stratum>: Add "final".
10492
10493 2019-04-17 Tom Tromey <tromey@adacore.com>
10494
10495 * dwarf2read.c (dwarf2_init_complex_target_type): Check "tt"
10496 against nullptr before use.
10497
10498 2019-04-17 Alan Hayward <alan.hayward@arm.com>
10499
10500 * nat/linux-waitpid.c (linux_debug): Call debug_vprintf.
10501
10502 2019-04-17 Jim Wilson <jimw@sifive.com>
10503 Andrew Burgess <andrew.burgess@embecosm.com>
10504
10505 * riscv-tdep.c (riscv_breakpoint_kind_from_pc): Hanndle case where
10506 code read might fail, assume 4-byte breakpoint in that case.
10507
10508 2019-04-15 Leszek Swirski <leszeks@google.com>
10509
10510 * amd64-tdep.c (amd64_classify_aggregate): Use cp_pass_by_reference
10511 rather than a hand-rolled POD check when checking for forced MEMORY
10512 classification.
10513
10514 2019-04-15 Alan Hayward <alan.hayward@arm.com>
10515
10516 * aarch64-linux-nat.c (store_sveregs_to_thread): Set vector length.
10517 * nat/aarch64-sve-linux-ptrace.c (aarch64_sve_set_vq): New
10518 function.
10519 (aarch64_sve_regs_copy_to_reg_buf): Remove VG checks.
10520 (aarch64_sve_regs_copy_from_reg_buf): Likewise.
10521 * nat/aarch64-sve-linux-ptrace.h (aarch64_sve_set_vq): New
10522 declaration.
10523
10524 2019-04-15 Alan Hayward <alan.hayward@arm.com>
10525
10526 * aarch64-linux-nat.c
10527 (aarch64_linux_nat_target::thread_architecture): Add override.
10528 * aarch64-tdep.c (aarch64_gdbarch_init): Ensure different tdesc for
10529 each VQ.
10530
10531 2019-04-15 Alan Hayward <alan.hayward@arm.com>
10532
10533 * aarch64-tdep.c (aarch64_gdbarch_init): Move gdbarch lookup.
10534
10535 2019-04-13 Andrew Burgess <andrew.burgess@embecosm.com>
10536
10537 * dwarf2read.c (dwarf2_init_complex_target_type): Handle complex
10538 target types of size 96-bits, add some additional comments, and
10539 check that the builtin type we found was the correct size.
10540
10541 2019-04-12 Eli Zaretskii <eliz@gnu.org>
10542
10543 * utils.c (prompt_for_continue): Don't restore the styling at the
10544 end, as applied_style has the wrong value. This fixes styling in
10545 long lists of file names that are interrupted by the "Continue?"
10546 prompt.
10547
10548 2019-04-12 Andrew Burgess <andrew.burgess@embecosm.com>
10549
10550 * ada-lang.c (ada_language_defn): Remove use of LANG_MAGIC.
10551 * c-lang.c (c_language_defn): Likewise.
10552 (cplus_language_defn): Likewise.
10553 (asm_language_defn): Likewise.
10554 (minimal_language_defn): Likewise.
10555 * d-lang.c (d_language_defn): Likewise.
10556 * f-lang.c (f_language_defn): Likewise.
10557 * go-lang.c (go_language_defn): Likewise.
10558 * language.c (unknown_language_defn): Likewise.
10559 (auto_language_defn): Likewise.
10560 * language.h (struct language_defn): Remove la_magic field.
10561 (LANG_MAGIC): Delete.
10562 * m2-lang.c (m2_language_defn): Remove use of LANG_MAGIC.
10563 * objc-lang.c (objc_language_defn): Likewise.
10564 * opencl-lang.c (opencl_language_defn): Likewise.
10565 * p-lang.c (pascal_language_defn): Likewise.
10566 * rust-lang.c (rust_language_defn): Likewise.
10567
10568 2019-04-11 Andrew Burgess <andrew.burgess@embecosm.com>
10569
10570 * riscv-tdep.c (riscv_type_align): New function.
10571 (riscv_type_alignment): Delete.
10572 (riscv_arg_location): Use 'type_align'.
10573 (riscv_gdbarch_init): Register riscv_type_align gdbarch function.
10574
10575 2019-04-11 Andrew Burgess <andrew.burgess@embecosm.com>
10576
10577 * gdbtypes.c (type_align): A struct with no non-static fields also
10578 has alignment of 1.
10579
10580 2019-04-11 Andrew Burgess <andrew.burgess@embecosm.com>
10581
10582 * riscv-tdep.c (riscv_call_arg_complex_float): Fix offset of first
10583 component to 0.
10584 (riscv_struct_info::riscv_struct_info): Initialise m_offsets
10585 member.
10586 (riscv_struct_info::analyse): New implementation using new
10587 analyse_inner member function.
10588 (riscv_struct_info::field_offset): New member function.
10589 (riscv_struct_info::m_offsets): New member variable.
10590 (riscv_struct_info::analyse_inner): New private member function,
10591 takes the old implementation of riscv_struct_info::analyse but
10592 extended to track field offsets.
10593 (riscv_call_arg_struct): Update the struct folding special cases
10594 to handle cases where empty C++ structs, which are non-zero
10595 length, are found.
10596 (riscv_arg_location): Initialise the length of each location, a
10597 non-zero length now indicates the location is in use.
10598 (riscv_push_dummy_call): Allow for the first location having a
10599 non-zero offset when setting up arguments.
10600 (riscv_return_value): Likewise, but for return values.
10601
10602 2019-04-11 Tom Tromey <tromey@adacore.com>
10603
10604 * utils.c (internal_vproblem): Make "msg" const.
10605
10606 2019-04-11 Alan Hayward <alan.hayward@arm.com>
10607
10608 * aarch64-tdep.c (aarch64_analyze_prologue_test): Reset saved regs.
10609 * trad-frame.c (trad_frame_reset_saved_regs): New function.
10610 (trad_frame_alloc_saved_regs): Call trad_frame_reset_saved_regs.
10611 * trad-frame.h (trad_frame_reset_saved_regs): New declaration.
10612
10613 2019-04-10 Kevin Buettner <kevinb@redhat.com>
10614
10615 * amd64-linux-nat.c (amd64_linux_collect_native_gregset): New
10616 function.
10617 (fill_gregset): Call amd64_linux_collect_native_gregset instead
10618 of amd64_collect_native_gregset.
10619 (amd64_linux_nat_target::store_registers): Likewise.
10620
10621 2019-04-10 Tom Tromey <tom@tromey.com>
10622
10623 * symtab.c (lookup_global_symbol_from_objfile)
10624 (lookup_symbol_in_objfile_from_linkage_name): Use the iterator.
10625 * objfiles.h (class separate_debug_iterator): New.
10626 (class separate_debug_range): New.
10627 (struct objfile) <separate_debug_objfiles>: New method.
10628 (objfile_separate_debug_iterate): Don't declare.
10629 * objfiles.c (separate_debug_iterator::operator++): Rename from
10630 objfile_separate_debug_iterate.
10631 (objfile_relocate, objfile_rebase, objfile_has_symbols): Use the
10632 iterator.
10633 * minsyms.c (lookup_minimal_symbol_by_pc_section): Use the
10634 iterator.
10635
10636 2019-04-10 Tom Tromey <tom@tromey.com>
10637
10638 * symfile.c (reread_symbols): Remove old comment.
10639 * objfiles.c (free_all_objfiles): Fix a typo.
10640
10641 2019-04-10 Tom Tromey <tom@tromey.com>
10642
10643 * ia64-tdep.c (ia64_get_dyn_info_list): Use foreach.
10644 * minsyms.c (lookup_minimal_symbol): Use foreach.
10645 (lookup_minimal_symbol_text, lookup_minimal_symbol_by_pc_name)
10646 (lookup_minimal_symbol_solib_trampoline): Likewise.
10647 * symfile.c (reread_symbols): Use foreach.
10648
10649 2019-04-09 Ivan Begert <ivanbegert@gmail.com>
10650 Tom Tromey <tromey@adacore.com>
10651
10652 PR rust/24414:
10653 * rust-exp.y (rust_parser::lex_number): Use strtoulst.
10654 (rust_lex_int_test): Change "value" to be LONGEST.
10655 (rust_lex_tests): Add test for long integer literal.
10656
10657 2019-04-09 Tom Tromey <tromey@adacore.com>
10658
10659 * remote.c (remote_target::remote_add_inferior): Change fake_pid_p
10660 to bool.
10661 (extended_remote_target::attach): Update.
10662 (remote_target::remote_notice_new_inferior): Update.
10663 (remote_target::add_current_inferior_and_thread): Update.
10664 * inferior.c (exit_inferior_1): Use "false".
10665 * corelow.c (add_to_thread_list): Make fake_pid_p bool.
10666
10667 2019-04-09 Simon Marchi <simon.marchi@efficios.com>
10668
10669 * infcmd.c (run_command_1): Pass -qualified to tbreak when using
10670 the "start" command.
10671
10672 2019-04-08 Kevin Buettner <kevinb@redhat.com>
10673
10674 * python/py-inferior.c (infpy_thread_from_thread_handle):
10675 Adjust comments to reflect renaming of thread_from_thread_handle
10676 to thread_from_handle. Adjust keywords. Fix type error message.
10677 (inferior_object_methods): Add thread_from_handle. Retain
10678 thread_from_thread_handle, but mark it as deprecated.
10679
10680 2019-04-08 Kevin Buettner <kevinb@redhat.com>
10681
10682 * gdbthread.h (find_thread_by_handle): Revise declaration.
10683 * thread.c (find_thread_by_handle): Likewise. Adjust
10684 implementation too.
10685 * python/py-inferior.c (infpy_thread_from_thread_handle): Add
10686 support for buffer objects as handles.
10687
10688 2019-04-08 Kevin Buettner <kevinb@redhat.com>
10689
10690 * python/py-infthread.c (thpy_thread_handle): New function.
10691 (thread_object_methods): Register thpy_thread_handle.
10692
10693 2019-04-08 Kevin Buettner <kevinb@redhat.com>
10694
10695 * gdbthread.h (thread_to_thread_handle): Declare.
10696 * thread.c (gdbtypes.h): Include.
10697 (thread_to_thread_handle): New function.
10698
10699 * target.h (struct target_ops): Add thread_info_to_thread_handle.
10700 (target_thread_info_to_thread_handle): Declare.
10701 * target.c (target_thread_info_to_thread_handle): New function.
10702 * target-debug.h (target_debug_print_gdb_byte_vector): Define.
10703 * target-delegates.c: Regenerate.
10704
10705 * linux-thread-db.c (class thread_db_target): Add method
10706 thread_info_to_thread_handle.
10707 (thread_db_target::thread_info_to_thread_handle): Define.
10708 * remote.c (class remote_target): Add new method
10709 thread_info_to_thread_handle.
10710 (remote_target::thread_info_to_thread_handle): Define.
10711
10712 2019-04-08 Pedro Alves <palves@redhat.com>
10713
10714 * common/common-exceptions.c (throw_exception): Don't create
10715 named object to throw; throw directly.
10716 (throw_it): Likewise. Don't initialize gdb_exception::message
10717 here, with new; pass FMT and AP to the ctor instead.
10718 * common/common-exceptions.h: Include <string>.
10719 (gdb_exception::gdb_exception(enum return_reason, enum errors,
10720 const char *, va_list)): New ctor. Use std::make_shared.
10721 (gdb_exception_error::gdb_exception_error(enum return_reason, enum
10722 errors)): Delete.
10723 (gdb_exception_error::gdb_exception_error(enum errors, const char
10724 *, va_list)): New.
10725 (gdb_exception_error::gdb_exception_error(const gdb_exception &)):
10726 Add assertion.
10727 (gdb_exception_quit::gdb_exception_quit(enum return_reason, enum
10728 errors)): Delete.
10729 (gdb_exception_quit::gdb_exception_quit(const char *, va_list)): New.
10730 (gdb_exception_quit::gdb_exception_quit(const gdb_exception &)):
10731 Add assertion.
10732
10733 2019-04-08 Tom Tromey <tom@tromey.com>
10734
10735 * valops.c (value_rtti_indirect_type): Replace throw_exception
10736 with throw.
10737 * tracefile-tfile.c (tfile_target_open): Replace throw_exception
10738 with throw.
10739 * thread.c (thr_try_catch_cmd): Replace throw_exception with
10740 throw.
10741 * target.c (target_translate_tls_address): Replace throw_exception
10742 with throw.
10743 * stack.c (frame_apply_command_count): Replace throw_exception
10744 with throw.
10745 * solib-spu.c (append_ocl_sos): Replace throw_exception with
10746 throw.
10747 * s390-tdep.c (s390_frame_unwind_cache): Replace throw_exception
10748 with throw.
10749 * rs6000-tdep.c (rs6000_frame_cache)
10750 (rs6000_epilogue_frame_cache): Replace throw_exception with throw.
10751 * remote.c: Replace throw_exception with throw.
10752 * record-full.c (record_full_message, record_full_wait_1)
10753 (record_full_restore): Replace throw_exception with throw.
10754 * record-btrace.c:
10755 (get_thread_current_frame_id, record_btrace_start_replaying)
10756 (cmd_record_btrace_bts_start, cmd_record_btrace_pt_start)
10757 (cmd_record_btrace_start): Replace throw_exception with throw.
10758 * parse.c (parse_exp_in_context_1): Replace throw_exception with
10759 throw.
10760 * linux-nat.c (detach_one_lwp, linux_resume_one_lwp)
10761 (resume_stopped_resumed_lwps): Replace throw_exception with throw.
10762 * linespec.c:
10763 (find_linespec_symbols): Replace throw_exception with throw.
10764 * infrun.c (displaced_step_prepare, resume): Replace
10765 throw_exception with throw.
10766 * infcmd.c (post_create_inferior): Replace throw_exception with
10767 throw.
10768 * inf-loop.c (inferior_event_handler): Replace throw_exception
10769 with throw.
10770 * i386-tdep.c (i386_frame_cache, i386_epilogue_frame_cache)
10771 (i386_sigtramp_frame_cache): Replace throw_exception with throw.
10772 * frame.c (frame_unwind_pc, get_prev_frame_if_no_cycle)
10773 (get_prev_frame_always, get_frame_pc_if_available)
10774 (get_frame_address_in_block_if_available, get_frame_language):
10775 Replace throw_exception with throw.
10776 * frame-unwind.c (frame_unwind_try_unwinder): Replace
10777 throw_exception with throw.
10778 * eval.c (fetch_subexp_value, evaluate_var_value)
10779 (evaluate_funcall, evaluate_subexp_standard): Replace
10780 throw_exception with throw.
10781 * dwarf2loc.c (call_site_find_chain)
10782 (dwarf2_evaluate_loc_desc_full, dwarf2_locexpr_baton_eval):
10783 Replace throw_exception with throw.
10784 * dwarf2-frame.c (dwarf2_frame_cache): Replace throw_exception
10785 with throw.
10786 * darwin-nat.c (darwin_attach_pid): Replace throw_exception with
10787 throw.
10788 * cp-abi.c (baseclass_offset): Replace throw_exception with throw.
10789 * completer.c (complete_line_internal): Replace throw_exception
10790 with throw.
10791 * compile/compile-object-run.c (compile_object_run): Replace
10792 throw_exception with throw.
10793 * cli/cli-script.c (process_next_line): Replace throw_exception
10794 with throw.
10795 * btrace.c (btrace_compute_ftrace_pt, btrace_compute_ftrace)
10796 (btrace_enable, btrace_maint_update_pt_packets): Replace
10797 throw_exception with throw.
10798 * breakpoint.c (create_breakpoint, save_breakpoints): Replace
10799 throw_exception with throw.
10800 * break-catch-throw.c (re_set_exception_catchpoint): Replace
10801 throw_exception with throw.
10802 * amd64-tdep.c (amd64_frame_cache, amd64_sigtramp_frame_cache)
10803 (amd64_epilogue_frame_cache): Replace throw_exception with throw.
10804 * aarch64-tdep.c (aarch64_make_prologue_cache)
10805 (aarch64_make_stub_cache): Replace throw_exception with throw.
10806
10807 2019-04-08 Tom Tromey <tom@tromey.com>
10808
10809 * common/common-exceptions.c (throw_exception): Rename from
10810 throw_exception_cxx. Remove old copy. Make argument const.
10811 (throw_it): Create and throw exception objects directly.
10812 * common/common-exceptions.h (throw_exception): Make argument
10813 const.
10814 (struct gdb_exception_error): Add constructor.
10815 (struct gdb_exception_quit): Add constructor.
10816
10817 2019-04-08 Tom Tromey <tom@tromey.com>
10818
10819 * common/common-exceptions.h (exception_rethrow): Don't declare.
10820 (TRY_SJLJ): Update comment.
10821 (TRY, CATCH, END_CATCH): Remove.
10822 * common/common-exceptions.c (exception_rethrow): Remove.
10823
10824 2019-04-08 Tom Tromey <tom@tromey.com>
10825
10826 * common/common-exceptions.h (gdb_exception_RETURN_MASK_ALL):
10827 Remove.
10828 (gdb_exception_error): Rename from
10829 gdb_exception_RETURN_MASK_ERROR.
10830 (gdb_exception_quit): Rename from gdb_exception_RETURN_MASK_QUIT.
10831 (gdb_quit_bad_alloc): Update.
10832 * aarch64-tdep.c: Update.
10833 * ada-lang.c: Update.
10834 * ada-typeprint.c: Update.
10835 * ada-valprint.c: Update.
10836 * amd64-tdep.c: Update.
10837 * arch-utils.c: Update.
10838 * break-catch-throw.c: Update.
10839 * breakpoint.c: Update.
10840 * btrace.c: Update.
10841 * c-varobj.c: Update.
10842 * cli/cli-cmds.c: Update.
10843 * cli/cli-interp.c: Update.
10844 * cli/cli-script.c: Update.
10845 * common/common-exceptions.c: Update.
10846 * common/new-op.c: Update.
10847 * common/selftest.c: Update.
10848 * compile/compile-c-symbols.c: Update.
10849 * compile/compile-cplus-symbols.c: Update.
10850 * compile/compile-object-load.c: Update.
10851 * compile/compile-object-run.c: Update.
10852 * completer.c: Update.
10853 * corelow.c: Update.
10854 * cp-abi.c: Update.
10855 * cp-support.c: Update.
10856 * cp-valprint.c: Update.
10857 * darwin-nat.c: Update.
10858 * disasm-selftests.c: Update.
10859 * dtrace-probe.c: Update.
10860 * dwarf-index-cache.c: Update.
10861 * dwarf-index-write.c: Update.
10862 * dwarf2-frame-tailcall.c: Update.
10863 * dwarf2-frame.c: Update.
10864 * dwarf2loc.c: Update.
10865 * dwarf2read.c: Update.
10866 * eval.c: Update.
10867 * event-loop.c: Update.
10868 * event-top.c: Update.
10869 * exec.c: Update.
10870 * f-valprint.c: Update.
10871 * fbsd-tdep.c: Update.
10872 * frame-unwind.c: Update.
10873 * frame.c: Update.
10874 * gdbtypes.c: Update.
10875 * gnu-v3-abi.c: Update.
10876 * guile/guile-internal.h: Update.
10877 * guile/scm-block.c: Update.
10878 * guile/scm-breakpoint.c: Update.
10879 * guile/scm-cmd.c: Update.
10880 * guile/scm-disasm.c: Update.
10881 * guile/scm-frame.c: Update.
10882 * guile/scm-lazy-string.c: Update.
10883 * guile/scm-math.c: Update.
10884 * guile/scm-param.c: Update.
10885 * guile/scm-ports.c: Update.
10886 * guile/scm-pretty-print.c: Update.
10887 * guile/scm-symbol.c: Update.
10888 * guile/scm-symtab.c: Update.
10889 * guile/scm-type.c: Update.
10890 * guile/scm-value.c: Update.
10891 * i386-linux-tdep.c: Update.
10892 * i386-tdep.c: Update.
10893 * inf-loop.c: Update.
10894 * infcall.c: Update.
10895 * infcmd.c: Update.
10896 * infrun.c: Update.
10897 * jit.c: Update.
10898 * language.c: Update.
10899 * linespec.c: Update.
10900 * linux-fork.c: Update.
10901 * linux-nat.c: Update.
10902 * linux-tdep.c: Update.
10903 * linux-thread-db.c: Update.
10904 * main.c: Update.
10905 * mi/mi-cmd-break.c: Update.
10906 * mi/mi-cmd-stack.c: Update.
10907 * mi/mi-interp.c: Update.
10908 * mi/mi-main.c: Update.
10909 * objc-lang.c: Update.
10910 * p-valprint.c: Update.
10911 * parse.c: Update.
10912 * ppc-linux-tdep.c: Update.
10913 * printcmd.c: Update.
10914 * python/py-arch.c: Update.
10915 * python/py-breakpoint.c: Update.
10916 * python/py-cmd.c: Update.
10917 * python/py-finishbreakpoint.c: Update.
10918 * python/py-frame.c: Update.
10919 * python/py-framefilter.c: Update.
10920 * python/py-gdb-readline.c: Update.
10921 * python/py-inferior.c: Update.
10922 * python/py-infthread.c: Update.
10923 * python/py-lazy-string.c: Update.
10924 * python/py-linetable.c: Update.
10925 * python/py-objfile.c: Update.
10926 * python/py-param.c: Update.
10927 * python/py-prettyprint.c: Update.
10928 * python/py-progspace.c: Update.
10929 * python/py-record-btrace.c: Update.
10930 * python/py-record.c: Update.
10931 * python/py-symbol.c: Update.
10932 * python/py-type.c: Update.
10933 * python/py-unwind.c: Update.
10934 * python/py-utils.c: Update.
10935 * python/py-value.c: Update.
10936 * python/python.c: Update.
10937 * record-btrace.c: Update.
10938 * record-full.c: Update.
10939 * remote-fileio.c: Update.
10940 * remote.c: Update.
10941 * riscv-tdep.c: Update.
10942 * rs6000-aix-tdep.c: Update.
10943 * rs6000-tdep.c: Update.
10944 * rust-exp.y: Update.
10945 * rust-lang.c: Update.
10946 * s390-tdep.c: Update.
10947 * selftest-arch.c: Update.
10948 * solib-dsbt.c: Update.
10949 * solib-frv.c: Update.
10950 * solib-spu.c: Update.
10951 * solib-svr4.c: Update.
10952 * solib.c: Update.
10953 * sparc64-linux-tdep.c: Update.
10954 * stack.c: Update.
10955 * symfile-mem.c: Update.
10956 * symmisc.c: Update.
10957 * target.c: Update.
10958 * thread.c: Update.
10959 * top.c: Update.
10960 * tracefile-tfile.c: Update.
10961 * tui/tui.c: Update.
10962 * typeprint.c: Update.
10963 * unittests/cli-utils-selftests.c: Update.
10964 * unittests/parse-connection-spec-selftests.c: Update.
10965 * valops.c: Update.
10966 * valprint.c: Update.
10967 * value.c: Update.
10968 * varobj.c: Update.
10969 * windows-nat.c: Update.
10970 * x86-linux-nat.c: Update.
10971 * xml-support.c: Update.
10972
10973 2019-04-08 Tom Tromey <tom@tromey.com>
10974
10975 * xml-support.c: Use C++ exception handling.
10976 * x86-linux-nat.c: Use C++ exception handling.
10977 * windows-nat.c: Use C++ exception handling.
10978 * varobj.c: Use C++ exception handling.
10979 * value.c: Use C++ exception handling.
10980 * valprint.c: Use C++ exception handling.
10981 * valops.c: Use C++ exception handling.
10982 * unittests/parse-connection-spec-selftests.c: Use C++ exception
10983 handling.
10984 * unittests/cli-utils-selftests.c: Use C++ exception handling.
10985 * typeprint.c: Use C++ exception handling.
10986 * tui/tui.c: Use C++ exception handling.
10987 * tracefile-tfile.c: Use C++ exception handling.
10988 * top.c: Use C++ exception handling.
10989 * thread.c: Use C++ exception handling.
10990 * target.c: Use C++ exception handling.
10991 * symmisc.c: Use C++ exception handling.
10992 * symfile-mem.c: Use C++ exception handling.
10993 * stack.c: Use C++ exception handling.
10994 * sparc64-linux-tdep.c: Use C++ exception handling.
10995 * solib.c: Use C++ exception handling.
10996 * solib-svr4.c: Use C++ exception handling.
10997 * solib-spu.c: Use C++ exception handling.
10998 * solib-frv.c: Use C++ exception handling.
10999 * solib-dsbt.c: Use C++ exception handling.
11000 * selftest-arch.c: Use C++ exception handling.
11001 * s390-tdep.c: Use C++ exception handling.
11002 * rust-lang.c: Use C++ exception handling.
11003 * rust-exp.y: Use C++ exception handling.
11004 * rs6000-tdep.c: Use C++ exception handling.
11005 * rs6000-aix-tdep.c: Use C++ exception handling.
11006 * riscv-tdep.c: Use C++ exception handling.
11007 * remote.c: Use C++ exception handling.
11008 * remote-fileio.c: Use C++ exception handling.
11009 * record-full.c: Use C++ exception handling.
11010 * record-btrace.c: Use C++ exception handling.
11011 * python/python.c: Use C++ exception handling.
11012 * python/py-value.c: Use C++ exception handling.
11013 * python/py-utils.c: Use C++ exception handling.
11014 * python/py-unwind.c: Use C++ exception handling.
11015 * python/py-type.c: Use C++ exception handling.
11016 * python/py-symbol.c: Use C++ exception handling.
11017 * python/py-record.c: Use C++ exception handling.
11018 * python/py-record-btrace.c: Use C++ exception handling.
11019 * python/py-progspace.c: Use C++ exception handling.
11020 * python/py-prettyprint.c: Use C++ exception handling.
11021 * python/py-param.c: Use C++ exception handling.
11022 * python/py-objfile.c: Use C++ exception handling.
11023 * python/py-linetable.c: Use C++ exception handling.
11024 * python/py-lazy-string.c: Use C++ exception handling.
11025 * python/py-infthread.c: Use C++ exception handling.
11026 * python/py-inferior.c: Use C++ exception handling.
11027 * python/py-gdb-readline.c: Use C++ exception handling.
11028 * python/py-framefilter.c: Use C++ exception handling.
11029 * python/py-frame.c: Use C++ exception handling.
11030 * python/py-finishbreakpoint.c: Use C++ exception handling.
11031 * python/py-cmd.c: Use C++ exception handling.
11032 * python/py-breakpoint.c: Use C++ exception handling.
11033 * python/py-arch.c: Use C++ exception handling.
11034 * printcmd.c: Use C++ exception handling.
11035 * ppc-linux-tdep.c: Use C++ exception handling.
11036 * parse.c: Use C++ exception handling.
11037 * p-valprint.c: Use C++ exception handling.
11038 * objc-lang.c: Use C++ exception handling.
11039 * mi/mi-main.c: Use C++ exception handling.
11040 * mi/mi-interp.c: Use C++ exception handling.
11041 * mi/mi-cmd-stack.c: Use C++ exception handling.
11042 * mi/mi-cmd-break.c: Use C++ exception handling.
11043 * main.c: Use C++ exception handling.
11044 * linux-thread-db.c: Use C++ exception handling.
11045 * linux-tdep.c: Use C++ exception handling.
11046 * linux-nat.c: Use C++ exception handling.
11047 * linux-fork.c: Use C++ exception handling.
11048 * linespec.c: Use C++ exception handling.
11049 * language.c: Use C++ exception handling.
11050 * jit.c: Use C++ exception handling.
11051 * infrun.c: Use C++ exception handling.
11052 * infcmd.c: Use C++ exception handling.
11053 * infcall.c: Use C++ exception handling.
11054 * inf-loop.c: Use C++ exception handling.
11055 * i386-tdep.c: Use C++ exception handling.
11056 * i386-linux-tdep.c: Use C++ exception handling.
11057 * guile/scm-value.c: Use C++ exception handling.
11058 * guile/scm-type.c: Use C++ exception handling.
11059 * guile/scm-symtab.c: Use C++ exception handling.
11060 * guile/scm-symbol.c: Use C++ exception handling.
11061 * guile/scm-pretty-print.c: Use C++ exception handling.
11062 * guile/scm-ports.c: Use C++ exception handling.
11063 * guile/scm-param.c: Use C++ exception handling.
11064 * guile/scm-math.c: Use C++ exception handling.
11065 * guile/scm-lazy-string.c: Use C++ exception handling.
11066 * guile/scm-frame.c: Use C++ exception handling.
11067 * guile/scm-disasm.c: Use C++ exception handling.
11068 * guile/scm-cmd.c: Use C++ exception handling.
11069 * guile/scm-breakpoint.c: Use C++ exception handling.
11070 * guile/scm-block.c: Use C++ exception handling.
11071 * guile/guile-internal.h: Use C++ exception handling.
11072 * gnu-v3-abi.c: Use C++ exception handling.
11073 * gdbtypes.c: Use C++ exception handling.
11074 * frame.c: Use C++ exception handling.
11075 * frame-unwind.c: Use C++ exception handling.
11076 * fbsd-tdep.c: Use C++ exception handling.
11077 * f-valprint.c: Use C++ exception handling.
11078 * exec.c: Use C++ exception handling.
11079 * event-top.c: Use C++ exception handling.
11080 * event-loop.c: Use C++ exception handling.
11081 * eval.c: Use C++ exception handling.
11082 * dwarf2read.c: Use C++ exception handling.
11083 * dwarf2loc.c: Use C++ exception handling.
11084 * dwarf2-frame.c: Use C++ exception handling.
11085 * dwarf2-frame-tailcall.c: Use C++ exception handling.
11086 * dwarf-index-write.c: Use C++ exception handling.
11087 * dwarf-index-cache.c: Use C++ exception handling.
11088 * dtrace-probe.c: Use C++ exception handling.
11089 * disasm-selftests.c: Use C++ exception handling.
11090 * darwin-nat.c: Use C++ exception handling.
11091 * cp-valprint.c: Use C++ exception handling.
11092 * cp-support.c: Use C++ exception handling.
11093 * cp-abi.c: Use C++ exception handling.
11094 * corelow.c: Use C++ exception handling.
11095 * completer.c: Use C++ exception handling.
11096 * compile/compile-object-run.c: Use C++ exception handling.
11097 * compile/compile-object-load.c: Use C++ exception handling.
11098 * compile/compile-cplus-symbols.c: Use C++ exception handling.
11099 * compile/compile-c-symbols.c: Use C++ exception handling.
11100 * common/selftest.c: Use C++ exception handling.
11101 * common/new-op.c: Use C++ exception handling.
11102 * cli/cli-script.c: Use C++ exception handling.
11103 * cli/cli-interp.c: Use C++ exception handling.
11104 * cli/cli-cmds.c: Use C++ exception handling.
11105 * c-varobj.c: Use C++ exception handling.
11106 * btrace.c: Use C++ exception handling.
11107 * breakpoint.c: Use C++ exception handling.
11108 * break-catch-throw.c: Use C++ exception handling.
11109 * arch-utils.c: Use C++ exception handling.
11110 * amd64-tdep.c: Use C++ exception handling.
11111 * ada-valprint.c: Use C++ exception handling.
11112 * ada-typeprint.c: Use C++ exception handling.
11113 * ada-lang.c: Use C++ exception handling.
11114 * aarch64-tdep.c: Use C++ exception handling.
11115
11116 2019-04-08 Tom Tromey <tom@tromey.com>
11117
11118 * xml-support.c (gdb_xml_parser::parse): Update.
11119 * x86-linux-nat.c (x86_linux_nat_target::enable_btrace): Update.
11120 * value.c (show_convenience): Update.
11121 * unittests/cli-utils-selftests.c (test_number_or_range_parser)
11122 (test_parse_flags_qcs): Update.
11123 * thread.c (thr_try_catch_cmd): Update.
11124 * target.c (target_translate_tls_address): Update.
11125 * stack.c (print_frame_arg, read_frame_local, read_frame_arg)
11126 (info_frame_command_core, frame_apply_command_count): Update.
11127 * rust-exp.y (rust_lex_exception_test): Update.
11128 * riscv-tdep.c (riscv_print_one_register_info): Update.
11129 * remote.c (remote_target::enable_btrace): Update.
11130 * record-btrace.c (record_btrace_enable_warn): Update.
11131 * python/py-utils.c (gdbpy_convert_exception): Update.
11132 * printcmd.c (do_one_display, print_variable_and_value): Update.
11133 * mi/mi-main.c (mi_print_exception): Update.
11134 * mi/mi-interp.c (mi_cmd_interpreter_exec): Use SCOPE_EXIT.
11135 * mi/mi-cmd-stack.c (list_arg_or_local): Update.
11136 * linux-nat.c (linux_nat_target::attach): Update.
11137 * linux-fork.c (class scoped_switch_fork_info): Update.
11138 * infrun.c (displaced_step_prepare): Update.
11139 * infcall.c (call_function_by_hand_dummy): Update.
11140 * guile/scm-exception.c (gdbscm_scm_from_gdb_exception): Update.
11141 * gnu-v3-abi.c (print_one_vtable): Update.
11142 * frame.c (get_prev_frame_always): Update.
11143 * f-valprint.c (info_common_command_for_block): Update.
11144 * exec.c (try_open_exec_file): Update.
11145 * exceptions.c (print_exception, exception_print)
11146 (exception_fprintf, exception_print_same): Update.
11147 * dwarf2-frame.c (dwarf2_build_frame_info): Update.
11148 * dwarf-index-cache.c (index_cache::store)
11149 (index_cache::lookup_gdb_index): Update.
11150 * darwin-nat.c (maybe_cache_shell): Update.
11151 * cp-valprint.c (cp_print_value_fields): Update.
11152 * compile/compile-cplus-symbols.c (gcc_cplus_convert_symbol)
11153 (gcc_cplus_symbol_address): Update.
11154 * compile/compile-c-symbols.c (gcc_convert_symbol)
11155 (gcc_symbol_address, generate_c_for_for_one_variable): Update.
11156 * common/selftest.c: Update.
11157 * common/common-exceptions.h (struct gdb_exception) <message>: Now
11158 a std::string.
11159 (exception_try_scope_entry, exception_try_scope_exit): Don't
11160 declare.
11161 (struct exception_try_scope): Remove.
11162 (TRY): Don't use exception_try_scope.
11163 (struct gdb_exception): Add constructor, operator=.
11164 <what>: New method.
11165 (struct gdb_exception_RETURN_MASK_ALL)
11166 (struct gdb_exception_RETURN_MASK_ERROR)
11167 (struct gdb_exception_RETURN_MASK_QUIT): Add constructor.
11168 (struct gdb_quit_bad_alloc): Update.
11169 * common/common-exceptions.c (exception_none): Change
11170 initializer.
11171 (struct catcher) <state, exception>: Initialize inline.
11172 <prev>: Remove member.
11173 (current_catcher): Remove.
11174 (catchers): New global.
11175 (exceptions_state_mc_init): Simplify.
11176 (catcher_pop): Remove.
11177 (exceptions_state_mc, exceptions_state_mc_catch): Update.
11178 (try_scope_depth, exception_try_scope_entry)
11179 (exception_try_scope_exit): Remove.
11180 (throw_exception_sjlj): Update.
11181 (exception_messages, exception_messages_size): Remove.
11182 (throw_it): Simplify.
11183 (gdb_exception_sliced_copy): Remove.
11184 (throw_exception_cxx): Update.
11185 * cli/cli-script.c (script_from_file): Update.
11186 * breakpoint.c (insert_bp_location, update_breakpoint_locations):
11187 Update.
11188 * ada-valprint.c (ada_val_print): Update.
11189 * ada-lang.c (ada_to_fixed_type_1, ada_exception_name_addr)
11190 (create_excep_cond_exprs): Update.
11191
11192 2019-04-08 Tom Tromey <tom@tromey.com>
11193
11194 * common/common-exceptions.h (GDB_XCPT_SJMP, GDB_XCPT_TRY)
11195 (GDB_XCPT_RAW_TRY, GDB_XCPT): Remove.
11196 (TRY, CATCH, END_CATCH): Remove some definitions.
11197 * common/common-exceptions.c: Don't use GDB_XCPT.
11198 (catcher_list_size): Remove.
11199 (throw_exception, throw_it): Simplify.
11200
11201 2019-04-05 Tom Tromey <tom@tromey.com>
11202
11203 Revert the header-sorting patch.
11204 * ft32-tdep.c: Revert.
11205 * frv-tdep.c: Revert.
11206 * frv-linux-tdep.c: Revert.
11207 * frame.c: Revert.
11208 * frame-unwind.c: Revert.
11209 * frame-base.c: Revert.
11210 * fork-child.c: Revert.
11211 * findvar.c: Revert.
11212 * findcmd.c: Revert.
11213 * filesystem.c: Revert.
11214 * filename-seen-cache.h: Revert.
11215 * filename-seen-cache.c: Revert.
11216 * fbsd-tdep.c: Revert.
11217 * fbsd-nat.h: Revert.
11218 * fbsd-nat.c: Revert.
11219 * f-valprint.c: Revert.
11220 * f-typeprint.c: Revert.
11221 * f-lang.c: Revert.
11222 * extension.h: Revert.
11223 * extension.c: Revert.
11224 * extension-priv.h: Revert.
11225 * expprint.c: Revert.
11226 * exec.h: Revert.
11227 * exec.c: Revert.
11228 * exceptions.c: Revert.
11229 * event-top.c: Revert.
11230 * event-loop.c: Revert.
11231 * eval.c: Revert.
11232 * elfread.c: Revert.
11233 * dwarf2read.h: Revert.
11234 * dwarf2read.c: Revert.
11235 * dwarf2loc.c: Revert.
11236 * dwarf2expr.h: Revert.
11237 * dwarf2expr.c: Revert.
11238 * dwarf2-frame.c: Revert.
11239 * dwarf2-frame-tailcall.c: Revert.
11240 * dwarf-index-write.h: Revert.
11241 * dwarf-index-write.c: Revert.
11242 * dwarf-index-common.c: Revert.
11243 * dwarf-index-cache.h: Revert.
11244 * dwarf-index-cache.c: Revert.
11245 * dummy-frame.c: Revert.
11246 * dtrace-probe.c: Revert.
11247 * disasm.h: Revert.
11248 * disasm.c: Revert.
11249 * disasm-selftests.c: Revert.
11250 * dictionary.c: Revert.
11251 * dicos-tdep.c: Revert.
11252 * demangle.c: Revert.
11253 * dcache.h: Revert.
11254 * dcache.c: Revert.
11255 * darwin-nat.h: Revert.
11256 * darwin-nat.c: Revert.
11257 * darwin-nat-info.c: Revert.
11258 * d-valprint.c: Revert.
11259 * d-namespace.c: Revert.
11260 * d-lang.c: Revert.
11261 * ctf.c: Revert.
11262 * csky-tdep.c: Revert.
11263 * csky-linux-tdep.c: Revert.
11264 * cris-tdep.c: Revert.
11265 * cris-linux-tdep.c: Revert.
11266 * cp-valprint.c: Revert.
11267 * cp-support.c: Revert.
11268 * cp-namespace.c: Revert.
11269 * cp-abi.c: Revert.
11270 * corelow.c: Revert.
11271 * corefile.c: Revert.
11272 * continuations.c: Revert.
11273 * completer.h: Revert.
11274 * completer.c: Revert.
11275 * complaints.c: Revert.
11276 * coffread.c: Revert.
11277 * coff-pe-read.c: Revert.
11278 * cli-out.h: Revert.
11279 * cli-out.c: Revert.
11280 * charset.c: Revert.
11281 * c-varobj.c: Revert.
11282 * c-valprint.c: Revert.
11283 * c-typeprint.c: Revert.
11284 * c-lang.c: Revert.
11285 * buildsym.c: Revert.
11286 * buildsym-legacy.c: Revert.
11287 * build-id.h: Revert.
11288 * build-id.c: Revert.
11289 * btrace.c: Revert.
11290 * bsd-uthread.c: Revert.
11291 * breakpoint.h: Revert.
11292 * breakpoint.c: Revert.
11293 * break-catch-throw.c: Revert.
11294 * break-catch-syscall.c: Revert.
11295 * break-catch-sig.c: Revert.
11296 * blockframe.c: Revert.
11297 * block.c: Revert.
11298 * bfin-tdep.c: Revert.
11299 * bfin-linux-tdep.c: Revert.
11300 * bfd-target.c: Revert.
11301 * bcache.c: Revert.
11302 * ax-general.c: Revert.
11303 * ax-gdb.h: Revert.
11304 * ax-gdb.c: Revert.
11305 * avr-tdep.c: Revert.
11306 * auxv.c: Revert.
11307 * auto-load.c: Revert.
11308 * arm-wince-tdep.c: Revert.
11309 * arm-tdep.c: Revert.
11310 * arm-symbian-tdep.c: Revert.
11311 * arm-pikeos-tdep.c: Revert.
11312 * arm-obsd-tdep.c: Revert.
11313 * arm-nbsd-tdep.c: Revert.
11314 * arm-nbsd-nat.c: Revert.
11315 * arm-linux-tdep.c: Revert.
11316 * arm-linux-nat.c: Revert.
11317 * arm-fbsd-tdep.c: Revert.
11318 * arm-fbsd-nat.c: Revert.
11319 * arm-bsd-tdep.c: Revert.
11320 * arch-utils.c: Revert.
11321 * arc-tdep.c: Revert.
11322 * arc-newlib-tdep.c: Revert.
11323 * annotate.h: Revert.
11324 * annotate.c: Revert.
11325 * amd64-windows-tdep.c: Revert.
11326 * amd64-windows-nat.c: Revert.
11327 * amd64-tdep.c: Revert.
11328 * amd64-sol2-tdep.c: Revert.
11329 * amd64-obsd-tdep.c: Revert.
11330 * amd64-obsd-nat.c: Revert.
11331 * amd64-nbsd-tdep.c: Revert.
11332 * amd64-nbsd-nat.c: Revert.
11333 * amd64-nat.c: Revert.
11334 * amd64-linux-tdep.c: Revert.
11335 * amd64-linux-nat.c: Revert.
11336 * amd64-fbsd-tdep.c: Revert.
11337 * amd64-fbsd-nat.c: Revert.
11338 * amd64-dicos-tdep.c: Revert.
11339 * amd64-darwin-tdep.c: Revert.
11340 * amd64-bsd-nat.c: Revert.
11341 * alpha-tdep.c: Revert.
11342 * alpha-obsd-tdep.c: Revert.
11343 * alpha-nbsd-tdep.c: Revert.
11344 * alpha-mdebug-tdep.c: Revert.
11345 * alpha-linux-tdep.c: Revert.
11346 * alpha-linux-nat.c: Revert.
11347 * alpha-bsd-tdep.c: Revert.
11348 * alpha-bsd-nat.c: Revert.
11349 * aix-thread.c: Revert.
11350 * agent.c: Revert.
11351 * addrmap.c: Revert.
11352 * ada-varobj.c: Revert.
11353 * ada-valprint.c: Revert.
11354 * ada-typeprint.c: Revert.
11355 * ada-tasks.c: Revert.
11356 * ada-lang.c: Revert.
11357 * aarch64-tdep.c: Revert.
11358 * aarch64-ravenscar-thread.c: Revert.
11359 * aarch64-newlib-tdep.c: Revert.
11360 * aarch64-linux-tdep.c: Revert.
11361 * aarch64-linux-nat.c: Revert.
11362 * aarch64-fbsd-tdep.c: Revert.
11363 * aarch64-fbsd-nat.c: Revert.
11364 * aarch32-linux-nat.c: Revert.
11365
11366 2019-04-05 Tom Tromey <tom@tromey.com>
11367
11368 * ft32-tdep.c: Sort headers.
11369 * frv-tdep.c: Sort headers.
11370 * frv-linux-tdep.c: Sort headers.
11371 * frame.c: Sort headers.
11372 * frame-unwind.c: Sort headers.
11373 * frame-base.c: Sort headers.
11374 * fork-child.c: Sort headers.
11375 * findvar.c: Sort headers.
11376 * findcmd.c: Sort headers.
11377 * filesystem.c: Sort headers.
11378 * filename-seen-cache.h: Sort headers.
11379 * filename-seen-cache.c: Sort headers.
11380 * fbsd-tdep.c: Sort headers.
11381 * fbsd-nat.h: Sort headers.
11382 * fbsd-nat.c: Sort headers.
11383 * f-valprint.c: Sort headers.
11384 * f-typeprint.c: Sort headers.
11385 * f-lang.c: Sort headers.
11386 * extension.h: Sort headers.
11387 * extension.c: Sort headers.
11388 * extension-priv.h: Sort headers.
11389 * expprint.c: Sort headers.
11390 * exec.h: Sort headers.
11391 * exec.c: Sort headers.
11392 * exceptions.c: Sort headers.
11393 * event-top.c: Sort headers.
11394 * event-loop.c: Sort headers.
11395 * eval.c: Sort headers.
11396 * elfread.c: Sort headers.
11397 * dwarf2read.h: Sort headers.
11398 * dwarf2read.c: Sort headers.
11399 * dwarf2loc.c: Sort headers.
11400 * dwarf2expr.h: Sort headers.
11401 * dwarf2expr.c: Sort headers.
11402 * dwarf2-frame.c: Sort headers.
11403 * dwarf2-frame-tailcall.c: Sort headers.
11404 * dwarf-index-write.h: Sort headers.
11405 * dwarf-index-write.c: Sort headers.
11406 * dwarf-index-common.c: Sort headers.
11407 * dwarf-index-cache.h: Sort headers.
11408 * dwarf-index-cache.c: Sort headers.
11409 * dummy-frame.c: Sort headers.
11410 * dtrace-probe.c: Sort headers.
11411 * disasm.h: Sort headers.
11412 * disasm.c: Sort headers.
11413 * disasm-selftests.c: Sort headers.
11414 * dictionary.c: Sort headers.
11415 * dicos-tdep.c: Sort headers.
11416 * demangle.c: Sort headers.
11417 * dcache.h: Sort headers.
11418 * dcache.c: Sort headers.
11419 * darwin-nat.h: Sort headers.
11420 * darwin-nat.c: Sort headers.
11421 * darwin-nat-info.c: Sort headers.
11422 * d-valprint.c: Sort headers.
11423 * d-namespace.c: Sort headers.
11424 * d-lang.c: Sort headers.
11425 * ctf.c: Sort headers.
11426 * csky-tdep.c: Sort headers.
11427 * csky-linux-tdep.c: Sort headers.
11428 * cris-tdep.c: Sort headers.
11429 * cris-linux-tdep.c: Sort headers.
11430 * cp-valprint.c: Sort headers.
11431 * cp-support.c: Sort headers.
11432 * cp-namespace.c: Sort headers.
11433 * cp-abi.c: Sort headers.
11434 * corelow.c: Sort headers.
11435 * corefile.c: Sort headers.
11436 * continuations.c: Sort headers.
11437 * completer.h: Sort headers.
11438 * completer.c: Sort headers.
11439 * complaints.c: Sort headers.
11440 * coffread.c: Sort headers.
11441 * coff-pe-read.c: Sort headers.
11442 * cli-out.h: Sort headers.
11443 * cli-out.c: Sort headers.
11444 * charset.c: Sort headers.
11445 * c-varobj.c: Sort headers.
11446 * c-valprint.c: Sort headers.
11447 * c-typeprint.c: Sort headers.
11448 * c-lang.c: Sort headers.
11449 * buildsym.c: Sort headers.
11450 * buildsym-legacy.c: Sort headers.
11451 * build-id.h: Sort headers.
11452 * build-id.c: Sort headers.
11453 * btrace.c: Sort headers.
11454 * bsd-uthread.c: Sort headers.
11455 * breakpoint.h: Sort headers.
11456 * breakpoint.c: Sort headers.
11457 * break-catch-throw.c: Sort headers.
11458 * break-catch-syscall.c: Sort headers.
11459 * break-catch-sig.c: Sort headers.
11460 * blockframe.c: Sort headers.
11461 * block.c: Sort headers.
11462 * bfin-tdep.c: Sort headers.
11463 * bfin-linux-tdep.c: Sort headers.
11464 * bfd-target.c: Sort headers.
11465 * bcache.c: Sort headers.
11466 * ax-general.c: Sort headers.
11467 * ax-gdb.h: Sort headers.
11468 * ax-gdb.c: Sort headers.
11469 * avr-tdep.c: Sort headers.
11470 * auxv.c: Sort headers.
11471 * auto-load.c: Sort headers.
11472 * arm-wince-tdep.c: Sort headers.
11473 * arm-tdep.c: Sort headers.
11474 * arm-symbian-tdep.c: Sort headers.
11475 * arm-pikeos-tdep.c: Sort headers.
11476 * arm-obsd-tdep.c: Sort headers.
11477 * arm-nbsd-tdep.c: Sort headers.
11478 * arm-nbsd-nat.c: Sort headers.
11479 * arm-linux-tdep.c: Sort headers.
11480 * arm-linux-nat.c: Sort headers.
11481 * arm-fbsd-tdep.c: Sort headers.
11482 * arm-fbsd-nat.c: Sort headers.
11483 * arm-bsd-tdep.c: Sort headers.
11484 * arch-utils.c: Sort headers.
11485 * arc-tdep.c: Sort headers.
11486 * arc-newlib-tdep.c: Sort headers.
11487 * annotate.h: Sort headers.
11488 * annotate.c: Sort headers.
11489 * amd64-windows-tdep.c: Sort headers.
11490 * amd64-windows-nat.c: Sort headers.
11491 * amd64-tdep.c: Sort headers.
11492 * amd64-sol2-tdep.c: Sort headers.
11493 * amd64-obsd-tdep.c: Sort headers.
11494 * amd64-obsd-nat.c: Sort headers.
11495 * amd64-nbsd-tdep.c: Sort headers.
11496 * amd64-nbsd-nat.c: Sort headers.
11497 * amd64-nat.c: Sort headers.
11498 * amd64-linux-tdep.c: Sort headers.
11499 * amd64-linux-nat.c: Sort headers.
11500 * amd64-fbsd-tdep.c: Sort headers.
11501 * amd64-fbsd-nat.c: Sort headers.
11502 * amd64-dicos-tdep.c: Sort headers.
11503 * amd64-darwin-tdep.c: Sort headers.
11504 * amd64-bsd-nat.c: Sort headers.
11505 * alpha-tdep.c: Sort headers.
11506 * alpha-obsd-tdep.c: Sort headers.
11507 * alpha-nbsd-tdep.c: Sort headers.
11508 * alpha-mdebug-tdep.c: Sort headers.
11509 * alpha-linux-tdep.c: Sort headers.
11510 * alpha-linux-nat.c: Sort headers.
11511 * alpha-bsd-tdep.c: Sort headers.
11512 * alpha-bsd-nat.c: Sort headers.
11513 * aix-thread.c: Sort headers.
11514 * agent.c: Sort headers.
11515 * addrmap.c: Sort headers.
11516 * ada-varobj.c: Sort headers.
11517 * ada-valprint.c: Sort headers.
11518 * ada-typeprint.c: Sort headers.
11519 * ada-tasks.c: Sort headers.
11520 * ada-lang.c: Sort headers.
11521 * aarch64-tdep.c: Sort headers.
11522 * aarch64-ravenscar-thread.c: Sort headers.
11523 * aarch64-newlib-tdep.c: Sort headers.
11524 * aarch64-linux-tdep.c: Sort headers.
11525 * aarch64-linux-nat.c: Sort headers.
11526 * aarch64-fbsd-tdep.c: Sort headers.
11527 * aarch64-fbsd-nat.c: Sort headers.
11528 * aarch32-linux-nat.c: Sort headers.
11529
11530 2019-04-04 Tom Tromey <tom@tromey.com>
11531
11532 * varobj.c (varobj_create): Update.
11533 * rust-exp.y (struct rust_parser) <update_innermost_block,
11534 lookup_symbol>: New methods.
11535 (rust_parser::update_innermost_block, rust_parser::lookup_symbol):
11536 Rename.
11537 (rust_parser::rust_lookup_type)
11538 (rust_parser::convert_ast_to_expression, rust_lex_tests): Update.
11539 * printcmd.c (display_command, do_one_display): Update.
11540 * parser-defs.h (struct parser_state) <parser_state>: Add
11541 "tracker" parameter.
11542 (block_tracker): New member.
11543 (class innermost_block_tracker) <innermost_block_tracker>: Add
11544 "types" parameter.
11545 <reset>: Remove method.
11546 (innermost_block): Don't declare.
11547 (null_post_parser): Update.
11548 * parse.c (innermost_block): Remove global.
11549 (write_dollar_variable): Update.
11550 (parse_exp_1, parse_exp_in_context): Add "tracker" parameter.
11551 Remove "tracker_types" parameter.
11552 (parse_expression): Add "tracker" parameter.
11553 (parse_expression_for_completion): Update.
11554 (null_post_parser): Add "tracker" parameter.
11555 * p-exp.y: Update rules.
11556 * m2-exp.y: Update rules.
11557 * language.h (struct language_defn) <la_post_parser>: Add
11558 "tracker" parameter.
11559 * go-exp.y: Update rules.
11560 * f-exp.y: Update rules.
11561 * expression.h (parse_expression, parse_exp_1): Add "tracker"
11562 parameter.
11563 * d-exp.y: Update rules.
11564 * c-exp.y: Update rules.
11565 * breakpoint.c (set_breakpoint_condition): Create an
11566 innermost_block_tracker.
11567 (watch_command_1): Likewise.
11568 * ada-lang.c (resolve): Add "tracker" parameter.
11569 (resolve_subexp): Likewise.
11570 * ada-exp.y (write_var_from_sym): Update.
11571
11572 2019-04-04 Tom Tromey <tom@tromey.com>
11573
11574 * type-stack.h: New file.
11575 * type-stack.c: New file.
11576 * parser-defs.h (enum type_pieces, union type_stack_elt): Move to
11577 type-stack.h.
11578 (insert_into_type_stack, insert_type, push_type, push_type_int)
11579 (insert_type_address_space, pop_type, pop_type_int)
11580 (pop_typelist, pop_type_stack, append_type_stack)
11581 (push_type_stack, get_type_stack, push_typelist)
11582 (follow_type_instance_flags, follow_types): Don't declare.
11583 * parse.c (type_stack): Remove global.
11584 (parse_exp_in_context): Update.
11585 (insert_into_type_stack, insert_type, push_type, push_type_int)
11586 (insert_type_address_space, pop_type, pop_type_int)
11587 (pop_typelist, pop_type_stack, append_type_stack)
11588 (push_type_stack, get_type_stack, push_typelist)
11589 (follow_type_instance_flags, follow_types): Remove (moved to
11590 type-stack.c).
11591 * f-exp.y (type_stack): New global.
11592 Update rules.
11593 (push_kind_type, f_parse): Update.
11594 * d-exp.y (type_stack): New global.
11595 Update rules.
11596 (d_parse): Update.
11597 * c-exp.y (struct c_parse_state) <type_stack>: New member.
11598 Update rules.
11599 * Makefile.in (COMMON_SFILES): Add type-stack.c.
11600 (HFILES_NO_SRCDIR): Add type-stack.h.
11601
11602 2019-04-04 Tom Tromey <tom@tromey.com>
11603
11604 * rust-exp.y (rust_parser::lex_identifier, rustyylex)
11605 (rust_parser::convert_ast_to_expression, rust_parse)
11606 (rust_lex_test_completion, rust_lex_tests): Update.
11607 * parser-defs.h (struct expr_completion_state): New.
11608 (struct parser_state) <parser_state>: Add completion parameter.
11609 <mark_struct_expression, mark_completion_tag>: New methods.
11610 <parse_completion, m_completion_state>: New members.
11611 (prefixify_expression, null_post_parser): Update.
11612 (mark_struct_expression, mark_completion_tag): Don't declare.
11613 * parse.c (parse_completion, expout_last_struct)
11614 (expout_tag_completion_type, expout_completion_name): Remove
11615 globals.
11616 (parser_state::mark_struct_expression)
11617 (parser_state::mark_completion_tag): Now methods.
11618 (prefixify_expression): Add last_struct parameter.
11619 (prefixify_subexp): Likewise.
11620 (parse_exp_1): Update.
11621 (parse_exp_in_context): Add cstate parameter. Update.
11622 (parse_expression_for_completion): Create an
11623 expr_completion_state.
11624 (null_post_parser): Add "completion" parameter.
11625 * p-exp.y: Update rules.
11626 (yylex): Update.
11627 * language.h (struct language_defn) <la_post_parser>: Add
11628 "completing" parameter.
11629 * go-exp.y: Update rules.
11630 (lex_one_token): Update.
11631 * expression.h (parse_completion): Don't declare.
11632 * d-exp.y: Update rules.
11633 (lex_one_token): Update rules.
11634 * c-exp.y: Update rules.
11635 (lex_one_token): Update.
11636 * ada-lang.c (resolve): Add "parse_completion" parameter.
11637 (resolve_subexp): Likewise.
11638 (ada_resolve_function): Likewise.
11639
11640 2019-04-04 Tom Tromey <tom@tromey.com>
11641
11642 * parser-defs.h (struct parser_state) <start_arglist,
11643 end_arglist>: New methods.
11644 <arglist_len, m_funcall_chain>: New members.
11645 (arglist_len, start_arglist, end_arglist): Don't declare.
11646 * parse.c (arglist_len, funcall_chain): Remove global.
11647 (start_arglist, end_arglist): Remove functions.
11648 (parse_exp_in_context): Update.
11649 * p-exp.y: Update rules.
11650 * m2-exp.y: Update rules.
11651 * go-exp.y: Update rules.
11652 * f-exp.y: Update rules.
11653 * d-exp.y: Update rules.
11654 * c-exp.y: Update rules.
11655
11656 2019-04-04 Tom Tromey <tom@tromey.com>
11657
11658 * rust-exp.y (struct rust_parser) <lex_hex, lex_escape,
11659 lex_operator, push_back>: New methods.
11660 Update all rules.
11661 (rust_parser::lex_hex, lex_escape): Rename and update.
11662 (rust_parser::lex_string, rust_parser::lex_identifier): Update.
11663 (rust_parser::lex_operator): Rename and update.
11664 (rust_parser::lex_number, rustyylex, rustyyerror)
11665 (rust_lex_test_init, rust_lex_test_sequence)
11666 (rust_lex_test_push_back, rust_lex_tests): Update.
11667 * parser-defs.h (struct parser_state) <parser_state>: Add "input"
11668 parameter.
11669 <lexptr, prev_lexptr>: New members.
11670 (lexptr, prev_lexptr): Don't declare.
11671 * parse.c (lexptr, prev_lexptr): Remove globals.
11672 (parse_exp_in_context): Update.
11673 * p-exp.y (yylex, yyerror): Update.
11674 * m2-exp.y (parse_number, yylex, yyerror): Update.
11675 * go-exp.y (lex_one_token, yyerror): Update.
11676 * f-exp.y (match_string_literal, yylex, yyerror): Update.
11677 * d-exp.y (lex_one_token, yyerror): Update.
11678 * c-exp.y (scan_macro_expansion, finished_macro_expansion)
11679 (lex_one_token, yyerror): Update.
11680 * ada-lex.l (YY_INPUT): Update.
11681 (rewind_to_char): Update.
11682 * ada-exp.y (yyerror): Update.
11683
11684 2019-04-04 Tom Tromey <tom@tromey.com>
11685
11686 * rust-exp.y (rustyylex, rust_lex_tests): Update.
11687 * parser-defs.h (struct parser_state) <parser_state>: Add new
11688 parameter.
11689 <comma_terminates>: New member.
11690 (comma_terminates): Don't declare global.
11691 * parse.c (comma_terminates): Remove global.
11692 (parse_exp_in_context): Update.
11693 * p-exp.y (yylex): Update.
11694 * m2-exp.y (yylex): Update.
11695 * go-exp.y (lex_one_token): Update.
11696 * f-exp.y (yylex): Update.
11697 * d-exp.y (lex_one_token): Update.
11698 * c-exp.y (lex_one_token): Update.
11699 * ada-lex.l: Update.
11700
11701 2019-04-04 Tom Tromey <tom@tromey.com>
11702
11703 * rust-exp.y (struct rust_parser) <paren_depth>: New member.
11704 (rustyylex, rust_lex_test_init, rust_lex_test_one)
11705 (rust_lex_test_sequence, rust_lex_test_push_back): Update.
11706 * parser-defs.h (paren_depth): Don't declare.
11707 * parse.c (paren_depth): Remove global.
11708 (parse_exp_in_context): Update.
11709 * p-exp.y (paren_depth): New global.
11710 (pascal_parse): Initialize it.
11711 * m2-exp.y (paren_depth): New global.
11712 (m2_parse): Initialize it.
11713 * go-exp.y (paren_depth): New global.
11714 (go_parse): Initialize it.
11715 * f-exp.y (paren_depth): New global.
11716 (f_parse): Initialize it.
11717 * d-exp.y (paren_depth): New global.
11718 (d_parse): Initialize it.
11719 * c-exp.y (paren_depth): New global.
11720 (c_parse): Initialize it.
11721 * ada-lex.l (paren_depth): New global.
11722 (lexer_init): Initialize it.
11723
11724 2019-04-04 Tom Tromey <tom@tromey.com>
11725
11726 * rust-exp.y (rust_parser::crate_name, rust_parser::super_name)
11727 (rust_parser::convert_ast_to_type)
11728 (rust_parser::convert_ast_to_expression, rust_lex_tests): Update.
11729 * parser-defs.h (struct parser_state) <parser_state>: Add
11730 parameters. Initialize new members.
11731 <expression_context_block, expression_context_pc>: New members.
11732 * parse.c (expression_context_block, expression_context_pc):
11733 Remove globals.
11734 (parse_exp_in_context): Update.
11735 * p-exp.y: Update all rules.
11736 (yylex): Update.
11737 * m2-exp.y: Update all rules.
11738 (yylex): Update.
11739 * go-exp.y (yylex): Update.
11740 * f-exp.y (yylex): Update.
11741 * d-exp.y: Update all rules.
11742 (yylex): Update.
11743 * c-exp.y: Update all rules.
11744 (lex_one_token, classify_name, yylex, c_parse): Update.
11745 * ada-exp.y (write_var_or_type, write_name_assoc): Update.
11746
11747 2019-04-04 Tom Tromey <tom@tromey.com>
11748
11749 * gdbarch.h, gdbarch.c: Rebuild.
11750 * gdbarch.sh (dtrace_parse_probe_argument): Change type.
11751 * stap-probe.h:
11752 (struct stap_parse_info): Replace "parser_state" with
11753 "expr_builder".
11754 * parser-defs.h (struct expr_builder): Rename from "parser_state".
11755 (parser_state): New class.
11756 * parse.c (expr_builder): Rename.
11757 (expr_builder::release): Rename.
11758 (write_exp_elt, write_exp_elt_opcode, write_exp_elt_sym)
11759 (write_exp_elt_msym, write_exp_elt_block, write_exp_elt_objfile)
11760 (write_exp_elt_longcst, write_exp_elt_floatcst)
11761 (write_exp_elt_type, write_exp_elt_intern, write_exp_string)
11762 (write_exp_string_vector, write_exp_bitstring)
11763 (write_exp_msymbol, mark_struct_expression)
11764 (write_dollar_variable)
11765 (insert_type_address_space, increase_expout_size): Replace
11766 "parser_state" with "expr_builder".
11767 * dtrace-probe.c: Replace "parser_state" with "expr_builder".
11768 * amd64-linux-tdep.c (amd64_dtrace_parse_probe_argument): Replace
11769 "parser_state" with "expr_builder".
11770
11771 2019-04-04 Tom Tromey <tom@tromey.com>
11772
11773 * rust-exp.y: Replace "parse_language" with method call.
11774 * p-exp.y:
11775 (yylex): Replace "parse_language" with method call.
11776 * m2-exp.y:
11777 (yylex): Replace "parse_language" with method call.
11778 * go-exp.y (classify_name): Replace "parse_language" with method
11779 call.
11780 * f-exp.y (yylex): Replace "parse_language" with method call.
11781 * d-exp.y (lex_one_token): Replace "parse_language" with method
11782 call.
11783 * c-exp.y:
11784 (lex_one_token, classify_name, yylex): Replace "parse_language"
11785 with method call.
11786 * ada-exp.y (find_primitive_type, type_char)
11787 (type_system_address): Replace "parse_language" with method call.
11788
11789 2019-04-04 Tom Tromey <tom@tromey.com>
11790
11791 * rust-exp.y: Replace "parse_gdbarch" with method call.
11792 * parse.c (write_dollar_variable, insert_type_address_space):
11793 Replace "parse_gdbarch" with method call.
11794 * p-exp.y (parse_type, yylex): Replace "parse_gdbarch" with method
11795 call.
11796 * objc-lang.c (end_msglist): Replace "parse_gdbarch" with method
11797 call.
11798 * m2-exp.y (parse_type, parse_m2_type, yylex): Replace
11799 "parse_gdbarch" with method call.
11800 * go-exp.y (parse_type, classify_name): Replace "parse_gdbarch"
11801 with method call.
11802 * f-exp.y (parse_type, parse_f_type, yylex): Replace
11803 "parse_gdbarch" with method call.
11804 * d-exp.y (parse_type, parse_d_type, lex_one_token): Replace
11805 "parse_gdbarch" with method call.
11806 * c-exp.y (parse_type, parse_number, classify_name): Replace
11807 "parse_gdbarch" with method call.
11808 * ada-lex.l: Replace "parse_gdbarch" with method call.
11809 * ada-exp.y (parse_type, find_primitive_type, type_char)
11810 (type_system_address): Replace "parse_gdbarch" with method call.
11811
11812 2019-04-04 Tom Tromey <tom@tromey.com>
11813
11814 * dtrace-probe.c (dtrace_probe::build_arg_exprs): Update.
11815 * stap-probe.c (stap_parse_argument): Update.
11816 * stap-probe.h (struct stap_parse_info) <stap_parse_info>: Remove
11817 initial_size parameter.
11818 * rust-exp.y (rust_lex_tests): Update.
11819 * parse.c (parser_state): Update.
11820 (parse_exp_in_context): Update.
11821 * parser-defs.h (struct parser_state) <parser_state>: Remove
11822 "initial_size" parameter.
11823
11824 2019-04-04 Tom Tromey <tom@tromey.com>
11825
11826 * parser-defs.h (increase_expout_size): Don't declare.
11827 * parse.c (increase_expout_size): Now static.
11828
11829 2019-04-04 Thomas Schwinge <thomas@codesourcery.com>
11830
11831 * gnu-nat.c (gnu_nat_target::wait): Fix
11832 target_waitstatus_to_string call.
11833
11834 2019-04-01 Andrew Burgess <andrew.burgess@embecosm.com>
11835
11836 * eval.c (evaluate_subexp_standard): Handle internal functions
11837 during Fortran function call handling.
11838
11839 2019-04-01 Andrew Burgess <andrew.burgess@embecosm.com>
11840
11841 * NEWS: Mention new internal functions.
11842 * dwarf2read.c (dwarf2_init_complex_target_type): New function.
11843 (read_base_type): Use dwarf2_init_complex_target_type.
11844 * value.c (creal_internal_fn): New function.
11845 (cimag_internal_fn): New function.
11846 (_initialize_values): Register new internal functions.
11847
11848 2019-04-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
11849
11850 * infrun.c (stop_all_threads): If debug_infrun, always
11851 trace the wait status after wait_one, using
11852 target_waitstatus_to_string and target_pid_to_str.
11853 (handle_inferior_event): Replace various trace of
11854 wait status kind by a single trace.
11855 * gdb/gnu-nat.c (gnu_nat_target::wait): Replace local
11856 wait status kind image by target_waitstatus_to_string.
11857 * target/waitstatus.c (target_waitstatus_to_string): Fix
11858 obsolete comment.
11859
11860 2019-04-01 Tom Tromey <tromey@adacore.com>
11861
11862 PR symtab/23331:
11863 * dwarf2read.c (partial_die_info::read): Handle DW_AT_ranges.
11864
11865 2019-04-01 Sergio Durigan Junior <sergiodj@redhat.com>
11866 Pedro Alves <palves@redhat.com>
11867
11868 * top.c (quit_force): Call 'finalize_values'.
11869 * value.c (finalize_values): New function.
11870 * value.h (finalize_values): Declare.
11871
11872 2019-03-30 Eli Zaretskii <eliz@gnu.org>
11873
11874 * NEWS: Announce $_gdb_major and $_gdb_minor.
11875
11876 * top.c (init_gdb_version_vars): New function.
11877 (gdb_init): Call init_gdb_version_vars.
11878
11879 2019-03-29 Tom Tromey <tromey@adacore.com>
11880
11881 * printcmd.c (_initialize_printcmd): Add usage lines. Update some
11882 help text. Remove dead code.
11883
11884 2019-03-29 Keith Seitz <keiths@redhat.com>
11885
11886 From Siddhesh Poyarekar:
11887 * f-lang.h (f77_get_upperbound): Return LONGEST.
11888 (f77_get_lowerbound): Likewise.
11889 * f-typeprint.c (f_type_print_varspec_suffix): Expand
11890 UPPER_BOUND and LOWER_BOUND to LONGEST. Use plongest to format
11891 print them.
11892 (f_type_print_base): Expand UPPER_BOUND to LONGEST. Use
11893 plongest to format print it.
11894 * f-valprint.c (f77_get_lowerbound): Return LONGEST.
11895 (f77_get_upperbound): Likewise.
11896 (f77_get_dynamic_length_of_aggregate): Expand UPPER_BOUND,
11897 LOWER_BOUND to LONGEST.
11898 (f77_create_arrayprint_offset_tbl): Likewise.
11899
11900 2019-03-29 Keith Seitz <keiths@redhat.com>
11901
11902 * ada-lang.c (ada_template_to_fixed_record_type_1): Use
11903 %s/pulongest for TYPE_LENGTH instead of %d in format
11904 strings.
11905 * ada-typerint.c (ada_print_type): Likewise.
11906 * amd64-windows-tdep.c (amd64_windows_store_arg_in_reg): Likewise.
11907 * compile/compile-c-support.c (generate_register_struct): Likewise.
11908 * gdbtypes.c (recursive_dump_type): Likewise.
11909 * gdbtypes.h (struct type) <length>: Change type to ULONGEST.
11910 * m2-typeprint.c (m2_array): Use %s/pulongest for TYPE_LENGTH
11911 instead of %d in format strings.
11912 * riscv-tdep.c (riscv_type_alignment): Cast second argument
11913 to std::min to ULONGEST.
11914 * symmisc.c (print_symbol): Use %s/pulongest for TYPE_LENGTH
11915 instead of %d in format strings.
11916 * tracepoint.c (info_scope_command): Likewise.
11917 * typeprint.c (print_offset_data::update)
11918 (print_offset_data::finish): Likewise.
11919 * xtensa-tdep.c (xtensa_store_return_value)
11920 (xtensa_push_dummy_call): Likewise.
11921
11922 2019-03-28 Jon Turney <jon.turney@dronecode.org.uk>
11923
11924 * windows-nat.c (display_selector): Fixed format specifications
11925 for 64-bit Cygwin.
11926
11927 2019-03-28 Philippe Waroquiers <philippe.waroquiers@skynet.be>
11928
11929 * infrun.c (follow_exec): Call target_terminal::ours_for_output.
11930
11931 2019-03-28 Sandra Loosemore <sandra@codesourcery.com>
11932
11933 * nios2-tdep.h (struct gdbarch_tdep): Add is_kernel_helper.
11934 * nios2-tdep.c (nios2_get_next_pc): Skip over kernel helpers.
11935 * nios2-linux-tdep.c (nios2_linux_is_kernel_helper): New.
11936 (nios2_linux_init_abi): Install it.
11937
11938 2019-03-28 Alan Hayward <alan.hayward@arm.com>
11939
11940 * aarch64-tdep.c (aarch64_vnv_type): Use vector types.
11941
11942 2019-03-28 Alan Hayward <alan.hayward@arm.com>
11943
11944 * features/aarch64-sve.c (create_feature_aarch64_sve): Add q view.
11945
11946 2019-03-24 Philippe Waroquiers <philippe.waroquiers@skynet.be>
11947 Tom Tromey <tromey@adacore.com>
11948
11949 * minsyms.c (minimal_symbol_upper_bound): Fix buffer overflow.
11950
11951 2019-03-26 Joel Brobecker <brobecker@adacore.com>
11952
11953 * gdb-gdb.py.in (StructMainTypePrettyPrinter.bound_img): New method.
11954 (StructMainTypePrettyPrinter.bounds_img): Use new "bound_img"
11955 method to compute the bounds of range types. Also print "[evaluated]"
11956 if the bounds' values come from a dynamic evaluation.
11957
11958 2019-03-26 Andrew Burgess <andrew.burgess@embecosm.com>
11959
11960 * cp-valprint.c (cp_print_value_fields): Don't print trailing
11961 whitespace when pretty printing is on.
11962
11963 2019-03-26 Alan Hayward <alan.hayward@arm.com>
11964
11965 * ppc-linux-nat.c: Add include.
11966
11967 2019-03-26 Alan Hayward <alan.hayward@arm.com>
11968
11969 * NEWS: Mention AArch64 Pointer Authentication.
11970
11971 2019-03-26 Alan Hayward <alan.hayward@arm.com>
11972
11973 * arm-linux-nat.c: Add include.
11974
11975 2019-03-25 Simon Marchi <simon.marchi@polymtl.ca>
11976
11977 * source-cache.c (source_cache::get_source_lines): Re-read
11978 fullname after calling open_source_file.
11979
11980 2019-03-25 John Baldwin <jhb@FreeBSD.org>
11981
11982 * NEWS: Mention TLS support for FreeBSD.
11983
11984 2019-03-25 Tom Tromey <tromey@adacore.com>
11985
11986 * minsyms.c (BUNCH_SIZE): Update comment.
11987 (~minimal_symbol_reader): Remove old comment.
11988 (compact_minimal_symbols): Update comment.
11989 (minimal_symbol_reader::install): Remove old comment. Update
11990 other comments.
11991
11992 2019-03-25 Alan Hayward <alan.hayward@arm.com>
11993
11994 * s390-linux-nat.c: Add include.
11995
11996 2019-03-25 Alan Hayward <alan.hayward@arm.com>
11997
11998 * aarch64-linux-nat.c (aarch64_linux_nat_target::read_description):
11999 Call linux_get_hwcap.
12000 * aarch64-linux-tdep.c (aarch64_linux_core_read_description):
12001 Likewise.
12002 (aarch64_linux_get_hwcap): Remove function.
12003 * aarch64-linux-tdep.h (aarch64_linux_get_hwcap): Remove
12004 declaration.
12005 * arm-linux-nat.c (arm_linux_nat_target::read_description):Call
12006 linux_get_hwcap.
12007 * arm-linux-tdep.c (arm_linux_core_read_description): Likewise.
12008 * linux-tdep.c (linux_get_hwcap): Add function.
12009 (linux_get_hwcap2): Likewise.
12010 * linux-tdep.h (linux_get_hwcap): Add declaration.
12011 (linux_get_hwcap2): Likewise.
12012 * ppc-linux-nat.c (ppc_linux_get_hwcap): Remove function.
12013 (ppc_linux_get_hwcap2): Likewise.
12014 (ppc_linux_nat_target::region_ok_for_hw_watchpoint): Call
12015 linux_get_hwcap.
12016 (ppc_linux_nat_target::insert_watchpoint): Likewise.
12017 (ppc_linux_nat_target::watchpoint_addr_within_range): Likewise.
12018 (ppc_linux_nat_target::read_description): Likewise.
12019 * ppc-linux-tdep.c (ppc_linux_core_read_description): Likewise.
12020 * s390-linux-nat.c: Likewise.
12021 * s390-linux-tdep.c (s390_core_read_description): Likewise.
12022
12023 2019-03-24 Tom Tromey <tom@tromey.com>
12024
12025 * ada-lang.c (standard_lookup): Simplify initialization.
12026 (ada_lookup_symbol_nonlocal): Simplify return.
12027 * solib-spu.c (spu_lookup_lib_symbol): Simplify return.
12028 * solib-darwin.c (darwin_lookup_lib_symbol): Simplify return.
12029 * solib-svr4.c (elf_lookup_lib_symbol): Simplify return.
12030 * rust-lang.c (rust_lookup_symbol_nonlocal): Simplify
12031 initialization.
12032 * solib.c (solib_global_lookup): Simplify.
12033 * symtab.c (null_block_symbol): Remove.
12034 (symbol_cache_lookup): Simplify returns.
12035 (lookup_language_this): Simplify returns.
12036 (lookup_symbol_aux): Simplify return.
12037 (lookup_local_symbol): Simplify returns.
12038 (lookup_global_symbol_from_objfile): Simplify return.
12039 (lookup_symbol_in_objfile_symtabs)
12040 (lookup_symbol_in_objfile_from_linkage_name): Simplify return.
12041 (lookup_symbol_via_quick_fns, lookup_symbol_in_static_block)
12042 (lookup_static_symbol, lookup_global_symbol): Simplify return.
12043 * cp-namespace.c (cp_lookup_bare_symbol)
12044 (cp_search_static_and_baseclasses, cp_lookup_symbol_via_imports)
12045 (cp_lookup_symbol_via_all_imports, cp_lookup_nested_symbol_1)
12046 (cp_lookup_nested_symbol): Don't use null_block_symbol.
12047 (cp_lookup_symbol_via_imports): Simplify initialization.
12048 (find_symbol_in_baseclass): Likewise.
12049 * symtab.h (null_block_symbol): Remove.
12050 * d-namespace.c (d_lookup_symbol): Don't use null_block_symbol.
12051 (d_lookup_nested_symbol, d_lookup_symbol_imports)
12052 (d_lookup_symbol_module): Likewise.
12053 (find_symbol_in_baseclass): Simplify initialization.
12054
12055 2019-03-24 Tom Tromey <tom@tromey.com>
12056
12057 * expression.h: Don't include symtab.h.
12058 (struct block): Forward declare.
12059
12060 2019-03-24 Tom Tromey <tom@tromey.com>
12061
12062 * c-exp.y (typebase): Remove casts.
12063 * gdbtypes.c (lookup_unsigned_typename, )
12064 (lookup_signed_typename): Remove cast.
12065 * eval.c (parse_to_comma_and_eval): Remove cast.
12066 * parse.c (write_dollar_variable): Remove cast.
12067 * block.h (struct block) <superblock>: Now const.
12068 * symfile-debug.c (debug_qf_map_matching_symbols): Update.
12069 * psymtab.c (psym_map_matching_symbols): Make "block" const.
12070 (map_block): Make "block" const.
12071 * symfile.h (struct quick_symbol_functions)
12072 <map_matching_symbols>: Constify block argument to "callback".
12073 * symtab.c (basic_lookup_transparent_type_quick): Make "block"
12074 const.
12075 (find_pc_sect_compunit_symtab): Make "b" const.
12076 (find_symbol_at_address): Likewise.
12077 (search_symbols): Likewise.
12078 * dwarf2read.c (dw2_lookup_symbol): Make "block" const.
12079 (dw2_debug_names_lookup_symbol): Likewise.
12080 (dw2_map_matching_symbols): Update.
12081 * p-valprint.c (pascal_val_print): Remove "block".
12082 * ada-lang.c (ada_add_global_exceptions): Make "b" const.
12083 (aux_add_nonlocal_symbols): Make "block" const.
12084 (resolve_subexp): Remove cast.
12085 * linespec.c (iterate_over_all_matching_symtabs): Make "block"
12086 const.
12087 (iterate_over_file_blocks): Likewise.
12088 * f-exp.y (%union) <bval>: Remove.
12089 * coffread.c (patch_opaque_types): Make "b" const.
12090 * spu-tdep.c (spu_catch_start): Make "block" const.
12091 * c-valprint.c (print_unpacked_pointer): Remove "block".
12092 * symmisc.c (dump_symtab_1): Make "b" const.
12093 (block_depth): Make "block" const.
12094 * d-exp.y (%union) <bval>: Remove.
12095 * cp-support.h (cp_lookup_rtti_type): Update.
12096 * cp-support.c (cp_lookup_rtti_type): Make "block" const.
12097 * psymtab.c (psym_lookup_symbol): Make "block" const.
12098 (maintenance_check_psymtabs): Make "b" const.
12099 * python/py-framefilter.c (extract_sym): Make "sym_block" const.
12100 (enumerate_locals, enumerate_args): Update.
12101 * python/py-symtab.c (stpy_global_block): Make "block" const.
12102 (stpy_static_block): Likewise.
12103 * inline-frame.c (block_starting_point_at): Make "new_block"
12104 const.
12105 * block.c (find_block_in_blockvector): Make return type const.
12106 (blockvector_for_pc_sect): Make "b" const.
12107 (find_block_in_blockvector): Make "b" const.
12108
12109 2019-03-23 Tom Tromey <tom@tromey.com>
12110
12111 * varobj.c (varobj_create): Update.
12112 * symfile.c (clear_symtab_users): Don't reset innermost_block.
12113 * printcmd.c (display_command, do_one_display): Don't reset
12114 innermost_block.
12115 * parser-defs.h (enum innermost_block_tracker_type): Move to
12116 expression.h.
12117 (innermost_block): Update comment.
12118 * parse.c (parse_exp_1): Add tracker_types parameter.
12119 (parse_exp_in_context): Rename from parse_exp_in_context_1. Add
12120 tracker_types parameter. Reset innermost_block.
12121 (parse_exp_in_context): Remove.
12122 (parse_expression_for_completion): Update.
12123 * objfiles.c (~objfile): Don't reset expression_context_block or
12124 innermost_block.
12125 * expression.h (enum innermost_block_tracker_type): Move from
12126 parser-defs.h.
12127 (parse_exp_1): Add tracker_types parameter.
12128 * breakpoint.c (set_breakpoint_condition, watch_command_1): Don't
12129 reset innermost_block.
12130
12131 2019-03-23 Tom Tromey <tom@tromey.com>
12132
12133 * objfiles.h: Include bcache.h.
12134
12135 2019-03-23 Tom Tromey <tom@tromey.com>
12136
12137 * linespec.c (get_current_search_block): Use
12138 scoped_restore_current_language.
12139 * symmisc.c (dump_symtab): Use scoped_restore_current_language.
12140
12141 2019-03-22 Alan Hayward <alan.hayward@arm.com>
12142 Jiong Wang <jiong.wang@arm.com>
12143
12144 * aarch64-linux-tdep.c
12145 (aarch64_linux_iterate_over_regset_sections): Check for pauth
12146 section.
12147 * aarch64-linux-tdep.h (AARCH64_LINUX_SIZEOF_PAUTH): New define.
12148
12149 2019-03-22 Alan Hayward <alan.hayward@arm.com>
12150 Jiong Wang <jiong.wang@arm.com>
12151
12152 * aarch64-tdep.c (aarch64_analyze_prologue): Check for pauth
12153 instructions.
12154 (aarch64_analyze_prologue_test): Add PACIASP test.
12155 (aarch64_prologue_prev_register): Unmask PC value.
12156
12157 2019-03-22 Alan Hayward <alan.hayward@arm.com>
12158 Jiong Wang <jiong.wang@arm.com>
12159
12160 * aarch64-tdep.c (aarch64_frame_unmask_address): New function.
12161 (aarch64_dwarf2_prev_register): Unmask PC value.
12162 (aarch64_dwarf2_frame_init_reg): Init pauth registers.
12163 (aarch64_execute_dwarf_cfa_vendor_op): Check for
12164 DW_CFA_AARCH64_negate_ra_state.
12165 (aarch64_gdbarch_init): Add aarch64_execute_dwarf_cfa_vendor_op.
12166
12167 2019-03-22 Alan Hayward <alan.hayward@arm.com>
12168 Jiong Wang <jiong.wang@arm.com>
12169
12170 * aarch64-tdep.c (aarch64_dwarf_reg_to_regnum): Check for pauth
12171 registers.
12172 (aarch64_pseudo_register_name): Likewise.
12173 (aarch64_pseudo_register_type): Likewise.
12174 (aarch64_pseudo_register_reggroup_p): Likewise.
12175 (aarch64_gdbarch_init): Add pauth registers.
12176 * aarch64-tdep.h (AARCH64_DWARF_PAUTH_RA_STATE): New define.
12177 (AARCH64_DWARF_PAUTH_DMASK): Likewise.
12178 (AARCH64_DWARF_PAUTH_CMASK): Likewise.
12179 (struct gdbarch_tdep): Add regnum for ra_state.
12180
12181 2019-03-22 Alan Hayward <alan.hayward@arm.com>
12182 Jiong Wang <jiong.wang@arm.com>
12183
12184 * arch/aarch64.h (AARCH64_PAUTH_REGS_SIZE): New define.
12185
12186 2019-03-22 Alan Hayward <alan.hayward@arm.com>
12187 Jiong Wang <jiong.wang@arm.com>
12188
12189 * aarch64-linux-nat.c (fetch_pauth_masks_from_thread): New
12190 function.
12191 (aarch64_linux_nat_target::fetch_registers): Read pauth registers.
12192 * aarch64-tdep.c (aarch64_cannot_store_register): New function.
12193 (aarch64_gdbarch_init): Add puth registers.
12194 * aarch64-tdep.h (struct gdbarch_tdep): Add pauth features.
12195 * arch/aarch64.h (AARCH64_PAUTH_DMASK_REGNUM): New define.
12196 (AARCH64_PAUTH_CMASK_REGNUM): Likewise.
12197
12198 2019-03-22 Alan Hayward <alan.hayward@arm.com>
12199 Jiong Wang <jiong.wang@arm.com>
12200
12201 * aarch64-linux-nat.c
12202 (aarch64_linux_nat_target::read_description): Read PACA hwcap.
12203 * aarch64-linux-tdep.c
12204 (aarch64_linux_core_read_description): Likewise.
12205 (aarch64_linux_get_hwcap): New function.
12206 * aarch64-linux-tdep.h (AARCH64_HWCAP_PACA): New define.
12207 (aarch64_linux_get_hwcap): New declaration.
12208
12209 2019-03-22 Alan Hayward <alan.hayward@arm.com>
12210 Jiong Wang <jiong.wang@arm.com>
12211
12212 * aarch64-linux-nat.c
12213 (aarch64_linux_nat_target::read_description): Add pauth param.
12214 * aarch64-linux-tdep.c
12215 (aarch64_linux_core_read_description): Likewise.
12216 * aarch64-tdep.c (struct target_desc): Add in pauth.
12217 (aarch64_read_description): Add pauth param.
12218 (aarch64_gdbarch_init): Likewise.
12219 * aarch64-tdep.h (aarch64_read_description): Likewise.
12220 * arch/aarch64.c (aarch64_create_target_description): Likewise.
12221 * arch/aarch64.h (aarch64_create_target_description): Likewise.
12222 * features/Makefile: Add new files.
12223 * features/aarch64-pauth.c: New file.
12224 * features/aarch64-pauth.xml: New file.
12225
12226 2019-03-20 Tom Tromey <tromey@adacore.com>
12227
12228 * infrun.c (handle_inferior_event): Rename from
12229 handle_inferior_event_1. Create a scoped_value_mark.
12230 (handle_inferior_event): Remove.
12231
12232 2019-03-19 Tom Tromey <tromey@adacore.com>
12233
12234 * mi/mi-interp.c (mi_on_normal_stop_1): Only show displays once.
12235 * infrun.h (print_stop_event): Add "displays" parameter.
12236 * infrun.c (print_stop_event): Add "displays" parameter.
12237
12238 2019-03-19 Pedro Alves <palves@redhat.com>
12239
12240 * tui/tui-out.c (tui_ui_out::do_field_string): Simplify.
12241 (tui_ui_out::do_text): Add comments. Reset M_LINE to 0 instead of
12242 to -1. Fix TABs vs spaces.
12243 (tui_ui_out::tui_ui_out): Don't initialize fields here.
12244 * tui/tui-out.h (tui_ui_out) Add intro comments.
12245 <m_line, m_start_of_line>: In-class initialize, and add describing
12246 comment.
12247
12248 2019-03-18 Alan Hayward <alan.hayward@arm.com>
12249
12250 * arm-linux-nat.c (arm_linux_insert_hw_breakpoint1): Fix
12251 variable names.
12252 (arm_linux_remove_hw_breakpoint1): Use a gdb::function_view.
12253
12254 2019-03-18 Pedro Alves <palves@redhat.com>
12255 Eli Zaretskii <eliz@gnu.org>
12256
12257 * tui/tui-out.c (tui_ui_out::tui_ui_out): Fix initialization of
12258 m_line and m_start_of_line.
12259
12260 2019-03-18 Eli Zaretskii <eliz@gnu.org>
12261
12262 * tui/tui-io.c (gdb_wgetch): Don't echo CR.
12263 (tui_getc): When gdb_wgetch returns a CR, behave the same as when
12264 it returns a newline. This fixes a regression in TU mode, whereby
12265 the next line is output on the same screen line as the user input.
12266
12267 2019-03-18 Tom Tromey <tromey@adacore.com>
12268
12269 * minsyms.c (minimal_symbol_reader::install): Remove call to
12270 obstack_blank.
12271
12272 2019-03-18 Pedro Alves <palves@redhat.com>
12273
12274 * tui/tui-io.c (reverse_mode_p, reverse_save_bg, reverse_save_fg):
12275 New globals.
12276 (apply_style): New, factored out from ...
12277 (apply_ansi_escape): ... this. Handle reverse video mode.
12278 (tui_set_reverse_mode): New function.
12279 * tui/tui-io.h (tui_set_reverse_mode): New declaration.
12280 * tui/tui-winsource.c (tui_show_source_line): Use
12281 tui_set_reverse_mode instead of setting A_STANDOUT.
12282 * ui-style.h (struct ui_file_style) <set_reverse, set_fg, set_bg>:
12283 New setter methods.
12284
12285 2019-03-18 Hannes Domani <ssbssa@yahoo.de>
12286
12287 * tui/tui-source.c (copy_source_line): Fix handling of 'column'.
12288 Handle tabs.
12289
12290 2019-03-18 Tom Tromey <tromey@adacore.com>
12291
12292 * ada-lang.c (empty_array): Add "high" parameter.
12293 (ada_evaluate_subexp): Update.
12294
12295 2019-03-17 Sergei Trofimovich <siarheit@google.com>
12296
12297 * unittests/string_view-selftests.c: Define
12298 _initialize_string_view_selftests unconditionally.
12299
12300 2019-03-17 Vladimir Martyanov <vilgeforce@gmail.com>
12301
12302 PR gdb/24350
12303 * windows-nat.c (windows_make_so): Remove unused text_vma variable.
12304
12305 2019-03-17 Vladimir Martyanov <vilgeforce@gmail.com>
12306
12307 PR gdb/24351
12308 * windows-nat.c (display_selector): Fix format specifiers.
12309
12310 2019-03-17 Eli Zaretskii <eliz@gnu.org>
12311
12312 * tui/tui-winsource.c (tui_set_is_exec_point_at): Call
12313 tui_refill_source_window instead of tui_refresh_win, to update the
12314 current execution line. This fixes redisplay of the current line
12315 when stepping through the code with "next" or "step".
12316
12317 2019-03-16 Eli Zaretskii <eliz@gnu.org>
12318
12319 * source-cache.c (source_cache::get_source_lines): Call
12320 find_source_lines to initialize s->nlines. This fixes vertical
12321 scrolling of TUI source window when the DOWN arrow is pressed.
12322
12323 2019-03-16 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12324
12325 * auto-load.c (_initialize_auto_load): Fix 'This options has'.
12326 linux-thread-db.c (_initialize_thread_db): Likewise.
12327
12328 2019-03-16 Eli Zaretskii <eliz@gnu.org>
12329
12330 * tui/tui-winsource.c (tui_show_source_line): Revert "Use
12331 wclrtoeol in tui_show_source_line". This reverts changes made in
12332 commit 4a3045920bbe4e50a0f4920b0fdc4e88ef23015c.
12333
12334 2019-03-15 Tom Tromey <tom@tromey.com>
12335
12336 * symtab.h (struct minimal_symbol): Derive from
12337 general_symbol_info.
12338 (MSYMBOL_VALUE, MSYMBOL_VALUE_RAW_ADDRESS)
12339 (MSYMBOL_VALUE_ADDRESS, MSYMBOL_VALUE_BYTES)
12340 (MSYMBOL_BLOCK_VALUE, MSYMBOL_VALUE_CHAIN, MSYMBOL_LANGUAGE)
12341 (MSYMBOL_SECTION, MSYMBOL_OBJ_SECTION, MSYMBOL_NATURAL_NAME)
12342 (MSYMBOL_LINKAGE_NAME, MSYMBOL_DEMANGLED_NAME)
12343 (MSYMBOL_SEARCH_NAME): Update.
12344 (MSYMBOL_SET_LANGUAGE, MSYMBOL_SET_NAMES): Remove.
12345 * solib.c (gdb_bfd_lookup_symbol_from_symtab): Don't use memset.
12346 * minsyms.c (minimal_symbol_reader::record_full): Update.
12347
12348 2019-03-15 Tom Tromey <tom@tromey.com>
12349
12350 * minsyms.c (minimal_symbol_reader::install): Use memcpy.
12351
12352 2019-03-15 Tom Tromey <tom@tromey.com>
12353
12354 * objfiles.h (struct objfile_per_bfd_storage) <msymbols>: Now a
12355 unique_xmalloc_ptr.
12356 (objfile::msymbols_range::begin, objfile::msymbols_range::end):
12357 Update.
12358 * minsyms.c (lookup_minimal_symbol_by_pc_section)
12359 (build_minimal_symbol_hash_tables)
12360 (minimal_symbol_reader::install): Update.
12361
12362 2019-03-15 Tom Tromey <tom@tromey.com>
12363
12364 * symtab.c (create_demangled_names_hash): Update.
12365 (symbol_set_names): Update.
12366 * objfiles.h (struct objfile_per_bfd_storage)
12367 <demangled_names_hash>: Now an htab_up.
12368 * objfiles.c (objfile_per_bfd_storage): Simplify.
12369
12370 2019-03-15 Tom Tromey <tom@tromey.com>
12371
12372 * objfiles.h (struct objfile_per_bfd_storage): Declare
12373 destructor.
12374 * objfiles.c (objfile_per_bfd_storage::~objfile_per_bfd_storage):
12375 New.
12376 (get_objfile_bfd_data): Use new. Don't initialize
12377 language_of_main.
12378 (free_objfile_per_bfd_storage): Remove.
12379 (objfile_bfd_data_free, objfile::~objfile): Use delete.
12380
12381 2019-03-15 Tom Tromey <tom@tromey.com>
12382
12383 * symfile.c (reread_symbols): Update.
12384 * objfiles.c (objfile::objfile): Update.
12385 * minsyms.h (terminate_minimal_symbol_table): Don't declare.
12386 * minsyms.c (lookup_minimal_symbol_by_pc_section): Update
12387 comment.
12388 (minimal_symbol_reader::install): Update.
12389 (terminate_minimal_symbol_table): Remove.
12390 * jit.c (jit_object_close_impl): Update.
12391
12392 2019-03-15 Tom Tromey <tom@tromey.com>
12393
12394 * minsyms.c (minimal_symbol_reader::record_full): Remove some
12395 initializations.
12396
12397 2019-03-15 Tom Tromey <tom@tromey.com>
12398
12399 * objfiles.h (struct objfile_per_bfd_storage)
12400 <demangled_hash_languages>: Now a bitset.
12401 * minsyms.c (add_minsym_to_demangled_hash_table): Update.
12402 (lookup_minimal_symbol): Update.
12403
12404 2019-03-15 Tom Tromey <tom@tromey.com>
12405
12406 * minsyms.h (class minimal_symbol_reader) <record_with_info>:
12407 Don't return the symbol.
12408 * coffread.c (record_minimal_symbol): Use record_full.
12409
12410 2019-03-14 Eli Zaretskii <eliz@gnu.org>
12411
12412 The MS-Windows port of ncurses fails to switch to a color pair if
12413 one or both of the colors are the implicit default colors. This
12414 change records the default colors when TUI is initialized, and
12415 then specifies them explicitly when a color pair uses the default
12416 colors. This allows color styling in TUI mode on MS-Windows.
12417
12418 * tui/tui-io.c [__MINGW32__]: Include windows.h. Declare
12419 ncurses_norm_attr.
12420 (tui_initialize_io) [__MINGW32__]: Record the default terminal
12421 colors in ncurses_norm_attr.
12422 (apply_ansi_escape) [__MINGW32__]: If a color in a color pair is
12423 "none", replace it with the default color recorded in
12424 ncurses_norm_attr.
12425
12426 2019-03-14 Tom Tromey <tromey@adacore.com>
12427
12428 * source-cache.h (class source_cache) <get_source_lines>: Return
12429 std::string.
12430 * source-cache.c (source_cache::extract_lines): Handle case where
12431 first_pos==npos. Return std::string.
12432 (source_cache::get_source_lines): Update.
12433
12434 2019-03-14 Tom Tromey <tromey@adacore.com>
12435
12436 * NEWS: Add item for "style sources" commands.
12437 * source-cache.c (source_cache::get_source_lines): Check
12438 source_styling.
12439 * cli/cli-style.c (source_styling): New global.
12440 (_initialize_cli_style): Add "style sources" commands.
12441 (show_style_sources): New function.
12442 * cli/cli-style.h (source_styling): Declare.
12443
12444 2019-03-14 Pedro Alves <palves@redhat.com>
12445 Tom Tromey <tromey@adacore.com>
12446
12447 * tui/tui-winsource.h (tui_refill_source_window): Declare.
12448 * tui/tui-winsource.c (tui_refill_source_window): New function,
12449 from...
12450 (tui_horizontal_source_scroll): ... here. Move some logic.
12451 * cli/cli-style.c (set_style_enabled): Notify new observable.
12452 * tui/tui-hooks.c (tui_redisplay_source): New function.
12453 (tui_attach_detach_observers): Attach or detach
12454 tui_redisplay_source.
12455 * observable.h (source_styling_changed): New observable.
12456 * observable.c: Define source_styling_changed observable.
12457
12458 2019-03-13 Tom Tromey <tromey@adacore.com>
12459
12460 * i386-gnu-nat.c (i386_gnu_nat_target::fetch_registers)
12461 (i386_gnu_nat_target::store_registers): Update.
12462 * target-debug.h (target_debug_print_std_string): New macro.
12463 * x86-linux-nat.c (x86_linux_nat_target::enable_btrace): Update.
12464 * windows-tdep.c (display_one_tib): Update.
12465 * tui/tui-stack.c (tui_make_status_line): Update.
12466 * top.c (print_inferior_quit_action): Update.
12467 * thread.c (thr_try_catch_cmd): Update.
12468 (add_thread_with_info): Update.
12469 (thread_target_id_str): Update.
12470 (thr_try_catch_cmd): Update.
12471 (thread_command): Update.
12472 (thread_find_command): Update.
12473 * record-btrace.c (record_btrace_target::info_record)
12474 (record_btrace_resume_thread, record_btrace_target::resume)
12475 (record_btrace_cancel_resume, record_btrace_step_thread)
12476 (record_btrace_target::wait, record_btrace_target::wait)
12477 (record_btrace_target::wait, record_btrace_target::stop): Update.
12478 * progspace.c (print_program_space): Update.
12479 * process-stratum-target.c
12480 (process_stratum_target::thread_address_space): Update.
12481 * linux-fork.c (linux_fork_mourn_inferior)
12482 (detach_checkpoint_command, info_checkpoints_command)
12483 (linux_fork_context): Update.
12484 (linux_fork_detach): Update.
12485 (class scoped_switch_fork_info): Update.
12486 (delete_checkpoint_command): Update.
12487 * infrun.c (follow_fork_inferior): Update.
12488 (follow_fork_inferior): Update.
12489 (proceed_after_vfork_done): Update.
12490 (handle_vfork_child_exec_or_exit): Update.
12491 (follow_exec): Update.
12492 (displaced_step_prepare_throw): Update.
12493 (displaced_step_restore): Update.
12494 (start_step_over): Update.
12495 (resume_1): Update.
12496 (clear_proceed_status_thread): Update.
12497 (proceed): Update.
12498 (print_target_wait_results): Update.
12499 (do_target_wait): Update.
12500 (context_switch): Update.
12501 (stop_all_threads): Update.
12502 (restart_threads): Update.
12503 (finish_step_over): Update.
12504 (handle_signal_stop): Update.
12505 (switch_back_to_stepped_thread): Update.
12506 (keep_going_pass_signal): Update.
12507 (print_exited_reason): Update.
12508 (normal_stop): Update.
12509 * inferior.c (inferior_pid_to_str): Change return type.
12510 (print_selected_inferior): Update.
12511 (add_inferior): Update.
12512 (detach_inferior): Update.
12513 * dummy-frame.c (fprint_dummy_frames): Update.
12514 * dcache.c (dcache_info_1): Update.
12515 * btrace.c (btrace_enable, btrace_disable, btrace_teardown)
12516 (btrace_fetch, btrace_clear): Update.
12517 * linux-tdep.c (linux_core_pid_to_str): Change return type.
12518 * i386-cygwin-tdep.c (i386_windows_core_pid_to_str): Change return
12519 type.
12520 * fbsd-tdep.c (fbsd_core_pid_to_str): Change return type.
12521 * sol2-tdep.h (sol2_core_pid_to_str): Change return type.
12522 * sol2-tdep.c (sol2_core_pid_to_str): Change return type.
12523 * gdbarch.c, gdbarch.h: Rebuild.
12524 * gdbarch.sh (core_pid_to_str): Change return type.
12525 * windows-nat.c (struct windows_nat_target) <pid_to_str>: Change
12526 return type.
12527 (windows_nat_target::pid_to_str): Change return type.
12528 (windows_delete_thread): Update.
12529 (windows_nat_target::attach): Update.
12530 (windows_nat_target::files_info): Update.
12531 * target-delegates.c: Rebuild.
12532 * sol-thread.c (class sol_thread_target) <pid_to_str>: Change
12533 return type.
12534 (sol_thread_target::pid_to_str): Change return type.
12535 * remote.c (class remote_target) <pid_to_str>: Change return
12536 type.
12537 (remote_target::pid_to_str): Change return type.
12538 (extended_remote_target::attach, remote_target::remote_stop_ns)
12539 (remote_target::remote_notif_remove_queued_reply)
12540 (remote_target::push_stop_reply, remote_target::disable_btrace):
12541 Update.
12542 (extended_remote_target::attach): Update.
12543 * remote-sim.c (struct gdbsim_target) <pid_to_str>: Change return
12544 type.
12545 (gdbsim_target::pid_to_str): Change return type.
12546 * ravenscar-thread.c (struct ravenscar_thread_target)
12547 <pid_to_str>: Change return type.
12548 (ravenscar_thread_target::pid_to_str): Change return type.
12549 * procfs.c (class procfs_target) <pid_to_str>: Change return
12550 type.
12551 (procfs_target::pid_to_str): Change return type.
12552 (procfs_target::attach): Update.
12553 (procfs_target::detach): Update.
12554 (procfs_target::fetch_registers): Update.
12555 (procfs_target::store_registers): Update.
12556 (procfs_target::wait): Update.
12557 (procfs_target::files_info): Update.
12558 * obsd-nat.c (obsd_nat_target::pid_to_str): Change return type.
12559 * nto-procfs.c (struct nto_procfs_target) <pid_to_str>: Change
12560 return type.
12561 (nto_procfs_target::pid_to_str): Change return type.
12562 (nto_procfs_target::files_info, nto_procfs_target::attach): Update.
12563 * linux-thread-db.c (class thread_db_target) <pid_to_str>: Change
12564 return type.
12565 * linux-nat.c (linux_nat_target::pid_to_str): Change return type.
12566 (exit_lwp): Update.
12567 (attach_proc_task_lwp_callback, get_detach_signal)
12568 (detach_one_lwp, resume_lwp, linux_nat_target::resume)
12569 (linux_nat_target::resume, wait_lwp, stop_callback)
12570 (maybe_clear_ignore_sigint, stop_wait_callback, status_callback)
12571 (save_stop_reason, select_event_lwp, linux_nat_filter_event)
12572 (linux_nat_wait_1, resume_stopped_resumed_lwps)
12573 (linux_nat_target::wait, linux_nat_stop_lwp): Update.
12574 * inf-ptrace.c (inf_ptrace_target::pid_to_str): Change return
12575 type.
12576 (inf_ptrace_target::attach): Update.
12577 (inf_ptrace_target::files_info): Update.
12578 * go32-nat.c (struct go32_nat_target) <pid_to_str>: Change return
12579 type.
12580 (go32_nat_target::pid_to_str): Change return type.
12581 * gnu-nat.c (gnu_nat_target::pid_to_str): Change return type.
12582 (gnu_nat_target::wait): Update.
12583 (gnu_nat_target::wait): Update.
12584 (gnu_nat_target::resume): Update.
12585 * fbsd-nat.c (fbsd_nat_target::pid_to_str): Change return type.
12586 (fbsd_nat_target::wait): Update.
12587 * darwin-nat.c (darwin_nat_target::pid_to_str): Change return
12588 type.
12589 (darwin_nat_target::attach): Update.
12590 * corelow.c (class core_target) <pid_to_str>: Change return type.
12591 (core_target::pid_to_str): Change return type.
12592 * target.c (normal_pid_to_str): Change return type.
12593 (default_pid_to_str): Likewise.
12594 (target_pid_to_str): Change return type.
12595 (target_translate_tls_address): Update.
12596 (target_announce_detach): Update.
12597 * bsd-uthread.c (struct bsd_uthread_target) <pid_to_str>: Change
12598 return type.
12599 (bsd_uthread_target::pid_to_str): Change return type.
12600 * bsd-kvm.c (class bsd_kvm_target) <pid_to_str>: Change return
12601 type.
12602 (bsd_kvm_target::pid_to_str): Change return type.
12603 * aix-thread.c (class aix_thread_target) <pid_to_str>: Change
12604 return type.
12605 (aix_thread_target::pid_to_str): Change return type.
12606 * target.h (struct target_ops) <pid_to_str>: Change return type.
12607 (target_pid_to_str, normal_pid_to_str): Likewise.
12608 * obsd-nat.h (class obsd_nat_target) <pid_to_str>: Change return
12609 type.
12610 * linux-nat.h (class linux_nat_target) <pid_to_str>: Change return
12611 type.
12612 * inf-ptrace.h (struct inf_ptrace_target) <pid_to_str>: Change
12613 return type.
12614 * gnu-nat.h (struct gnu_nat_target) <pid_to_str>: Change return
12615 type.
12616 * fbsd-nat.h (class fbsd_nat_target) <pid_to_str>: Change return
12617 type.
12618 * darwin-nat.h (class darwin_nat_target) <pid_to_str>: Change
12619 return type.
12620
12621 2019-03-13 Simon Marchi <simon.marchi@ericsson.com>
12622
12623 * NEWS: Mention that the new default MI version is 3. Mention
12624 changes to the output of commands and events that deal with
12625 multi-location breakpoints.
12626 * breakpoint.c: Include "mi/mi-out.h".
12627 (print_one_breakpoint): Change output syntax if using MI version
12628 >= 3.
12629 * mi/mi-main.h (mi_cmd_fix_multi_location_breakpoint_output):
12630 New.
12631 (mi_multi_location_breakpoint_output_fixed): New.
12632 * mi/mi-main.c (fix_multi_location_breakpoint_output): New.
12633 (mi_cmd_fix_multi_location_breakpoint_output): New.
12634 (mi_multi_location_breakpoint_output_fixed): New.
12635 * mi/mi-cmds.c (mi_cmds): Register command
12636 -fix-multi-location-breakpoint-output.
12637 * mi/mi-out.c (mi_out_new): Instantiate version 3 when using
12638 interpreter "mi".
12639
12640 2019-03-13 Simon Marchi <simon.marchi@polymtl.ca>
12641
12642 * mi/mi-out.h (mi_out_new): Change parameter to const char *.
12643 * mi/mi-out.c (mi_out_new): Change parameter to const char *,
12644 instantiate mi_ui_out based on interpreter name.
12645 * mi/mi-interp.c (mi_interp::init): Use the new mi_out_new.
12646 * mi/mi-main.c (mi_load_progress): Likewise.
12647
12648 2019-03-12 John Baldwin <jhb@FreeBSD.org>
12649
12650 * NEWS: Combine separate "New targets" sections for 8.3.
12651
12652 2019-03-12 John Baldwin <jhb@FreeBSD.org>
12653
12654 * ppc-fbsd-tdep.c (ppcfbsd_get_thread_local_address): New.
12655 (ppcfbsd_init_abi): Install gdbarch
12656 "fetch_tls_load_module_address" and "get_thread_local_address"
12657 methods.
12658
12659 2019-03-12 John Baldwin <jhb@FreeBSD.org>
12660
12661 * riscv-fbsd-tdep.c (riscv_fbsd_get_thread_local_address): New.
12662 (riscv_fbsd_init_abi): Install gdbarch
12663 "fetch_tls_load_module_address" and "get_thread_local_address"
12664 methods.
12665
12666 2019-03-12 John Baldwin <jhb@FreeBSD.org>
12667
12668 * i386-fbsd-tdep.c (i386fbsd_get_thread_local_address): New.
12669 (i386fbsd_init_abi): Install gdbarch
12670 "fetch_tls_load_module_address" and "get_thread_local_address"
12671 methods.
12672
12673 2019-03-12 John Baldwin <jhb@FreeBSD.org>
12674
12675 * amd64-fbsd-tdep.c (amd64fbsd_get_thread_local_address): New.
12676 (amd64fbsd_init_abi): Install gdbarch
12677 "fetch_tls_load_module_address" and "get_thread_local_address"
12678 methods.
12679
12680 2019-03-12 John Baldwin <jhb@FreeBSD.org>
12681
12682 * fbsd-tdep.c (fbsd_pspace_data_handle): New variable.
12683 (struct fbsd_pspace_data): New type.
12684 (get_fbsd_pspace_data, fbsd_pspace_data_cleanup)
12685 (fbsd_read_integer_by_name, fbsd_fetch_rtld_offsets)
12686 (fbsd_get_tls_index, fbsd_get_thread_local_address): New function.
12687 (_initialize_fbsd_tdep): Initialize 'fbsd_pspace_data_handle'.
12688 * fbsd-tdep.c (fbsd_get_thread_local_address): New prototype.
12689
12690 2019-03-12 John Baldwin <jhb@FreeBSD.org>
12691
12692 * gdbtypes.c (lookup_struct_elt): New function.
12693 (lookup_struct_elt_type): Reimplement via lookup_struct_elt.
12694 * gdbtypes.h (struct struct_elt): New type.
12695 (lookup_struct_elt): New prototype.
12696
12697 2019-03-12 John Baldwin <jhb@FreeBSD.org>
12698
12699 * gdbtypes.c (lookup_struct_elt_type): Update comment and
12700 remove disabled code block.
12701
12702 2019-03-12 John Baldwin <jhb@FreeBSD.org>
12703
12704 * gdbarch.sh (get_thread_local_address): New method.
12705 * gdbarch.h, gdbarch.c: Regenerate.
12706 * target.c (target_translate_tls_address): Use
12707 gdbarch_get_thread_local_address if present instead of
12708 target::get_thread_local_address.
12709
12710 2019-03-12 John Baldwin <jhb@FreeBSD.org>
12711
12712 * target.h (target::get_thread_local_address): Update comment.
12713
12714 2019-03-12 John Baldwin <jhb@FreeBSD.org>
12715
12716 * solib-svr4.c (svr4_fetch_objfile_link_map): Look for
12717 objfile->separate_debug_objfile_backlink if not NULL.
12718
12719 2019-03-12 John Baldwin <jhb@FreeBSD.org>
12720
12721 * amd64-bsd-nat.c (amd64bsd_fetch_inferior_registers): Use
12722 tdep->fsbase_regnum instead of constants for fs_base and gs_base.
12723 (amd64bsd_store_inferior_registers): Likewise.
12724 * amd64-fbsd-nat.c (amd64_fbsd_nat_target::read_description):
12725 Enable segment base registers.
12726 * i386-bsd-nat.c (i386bsd_fetch_inferior_registers): Use
12727 PT_GETFSBASE and PT_GETGSBASE.
12728 (i386bsd_store_inferior_registers): Use PT_SETFSBASE and
12729 PT_SETGSBASE.
12730 * i386-fbsd-nat.c (i386_fbsd_nat_target::read_description): Enable
12731 segment base registers.
12732 * i386-fbsd-tdep.c (i386fbsd_core_read_description): Likewise.
12733
12734 2019-03-12 John Baldwin <jhb@FreeBSD.org>
12735
12736 * amd64-fbsd-nat.c (amd64_fbsd_nat_target::read_description):
12737 Update calls to i386_target_description to add 'segments'
12738 parameter.
12739 * amd64-tdep.c (amd64_init_abi): Set tdep->fsbase_regnum. Don't
12740 add segment base registers.
12741 * arch/i386.c (i386_create_target_description): Add 'segments'
12742 parameter to enable segment base registers.
12743 * arch/i386.h (i386_create_target_description): Likewise.
12744 * features/i386/32bit-segments.xml: New file.
12745 * features/i386/32bit-segments.c: Generate.
12746 * i386-fbsd-nat.c (i386_fbsd_nat_target::read_description): Update
12747 call to i386_target_description to add 'segments' parameter.
12748 * i386-fbsd-tdep.c (i386fbsd_core_read_description): Likewise.
12749 * i386-go32-tdep.c (i386_go32_init_abi): Likewise.
12750 * i386-linux-tdep.c (i386_linux_read_description): Likewise.
12751 * i386-tdep.c (i386_validate_tdesc_p): Add segment base registers
12752 if feature is present.
12753 (i386_gdbarch_init): Pass I386_NUM_REGS to set_gdbarch_num_regs.
12754 Add 'segments' parameter to call to i386_target_description.
12755 (i386_target_description): Add 'segments' parameter to enable
12756 segment base registers.
12757 (_initialize_i386_tdep) [GDB_SELF_TEST]: Add 'segments' parameter
12758 to call to i386_target_description.
12759 * i386-tdep.h (struct gdbarch_tdep): Add 'fsbase_regnum'.
12760 (enum i386_regnum): Add I386_FSBASE_REGNUM and I386_GSBASE_REGNUM.
12761 Define I386_NUM_REGS.
12762 (i386_target_description): Add 'segments' parameter to enable
12763 segment base registers.
12764
12765 2019-03-12 Eli Zaretskii <eliz@gnu.org>
12766
12767 PR/24325
12768 * source-cache.c: #undef open and close, to avoid unresolved
12769 externals during linking.
12770
12771 2019-03-12 Tom Tromey <tromey@adacore.com>
12772
12773 * remote.c (magic_null_ptid, not_sent_ptid, any_thread_ptid): Now
12774 const. Add initializers.
12775 (_initialize_remote): Don't initialize ptid globals.
12776
12777 2019-03-12 Pedro Alves <palves@redhat.com>
12778
12779 * yy-remap.h [TEST_CPNAMES] (YYFPRINTF): Don't define.
12780
12781 2019-03-12 Pedro Alves <palves@redhat.com>
12782
12783 * cp-name-parser.y (main): Remove unused 'len' variable.
12784
12785 2019-03-12 Tom Tromey <tromey@adacore.com>
12786
12787 * common/ptid.c (null_ptid, minus_one_ptid): Now const.
12788 * common/ptid.h (null_ptid, minus_one_ptid): Now const.
12789
12790 2019-03-12 Tom Tromey <tromey@adacore.com>
12791
12792 * linux-nat.c (iterate_over_lwps): Update.
12793 (stop_callback): Remove parameter.
12794 (stop_wait_callback, detach_callback, resume_set_callback)
12795 (select_singlestep_lwp_callback, set_ignore_sigint)
12796 (status_callback, resumed_callback, resume_clear_callback)
12797 (kill_callback, kill_wait_callback, linux_nat_stop_lwp): Remove
12798 data parameter.
12799 (linux_nat_target::detach, linux_nat_target::resume)
12800 (linux_stop_and_wait_all_lwps, select_event_lwp)
12801 (linux_nat_filter_event, linux_nat_wait_1)
12802 (linux_nat_target::kill, linux_nat_target::stop)
12803 (linux_nat_target::stop): Update.
12804 (linux_nat_resume_callback): Change type.
12805 (resume_stopped_resumed_lwps, count_events_callback)
12806 (select_event_lwp_callback): Likewise.
12807 (linux_stop_lwp, linux_nat_stop_lwp): Update.
12808 * arm-linux-nat.c (struct update_registers_data): Remove.
12809 (update_registers_callback): Change type.
12810 (arm_linux_insert_hw_breakpoint1): Update.
12811 * nat/x86-linux-dregs.c (update_debug_registers_callback): Remove
12812 parameter.
12813 (x86_linux_dr_set_addr): Update.
12814 (x86_linux_dr_set_control): Update.
12815 * nat/linux-nat.h (iterate_over_lwps_ftype): Remove parameter.
12816 (iterate_over_lwps): Use gdb::function_view.
12817 * nat/aarch64-linux-hw-point.c (struct
12818 aarch64_dr_update_callback_param): Remove.
12819 (debug_reg_change_callback): Change type.
12820 (aarch64_notify_debug_reg_change): Update.
12821 * s390-linux-nat.c (s390_refresh_per_info): Update.
12822
12823 2019-03-11 Tom Tromey <tromey@adacore.com>
12824
12825 * dwarf2read.c (dwarf2_find_containing_comp_unit): Remove
12826 redundant assignment to "this_cu".
12827
12828 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
12829
12830 * gdbtypes.c (rank_one_type): Remove unnecessary cases from switch.
12831
12832 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
12833
12834 * gdbtypes.c (rank_one_type_parm_set): New function extracted
12835 from...
12836 (rank_one_type): ... this.
12837
12838 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
12839
12840 * gdbtypes.c (rank_one_type_parm_struct): New function extracted
12841 from...
12842 (rank_one_type): ... this.
12843
12844 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
12845
12846 * gdbtypes.c (rank_one_type_parm_complex): New function extracted
12847 from...
12848 (rank_one_type): ... this.
12849
12850 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
12851
12852 * gdbtypes.c (rank_one_type_parm_float): New function extracted
12853 from...
12854 (rank_one_type): ... this.
12855
12856 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
12857
12858 * gdbtypes.c (rank_one_type_parm_bool): New function extracted
12859 from...
12860 (rank_one_type): ... this.
12861
12862 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
12863
12864 * gdbtypes.c (rank_one_type_parm_range): New function extracted
12865 from...
12866 (rank_one_type): ... this.
12867
12868 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
12869
12870 * gdbtypes.c (rank_one_type_parm_char): New function extracted
12871 from...
12872 (rank_one_type): ... this.
12873
12874 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
12875
12876 * gdbtypes.c (rank_one_type_parm_enum): New function extracted
12877 from...
12878 (rank_one_type): ... this.
12879
12880 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
12881
12882 * gdbtypes.c (rank_one_type_parm_int): New function extracted
12883 from...
12884 (rank_one_type): ... this.
12885
12886 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
12887
12888 * gdbtypes.c (rank_one_type_parm_func): New function extracted
12889 from...
12890 (rank_one_type): ... this.
12891
12892 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
12893
12894 * gdbtypes.c (rank_one_type_parm_array): New function extracted
12895 from...
12896 (rank_one_type): ... this.
12897
12898 2019-03-08 Simon Marchi <simon.marchi@efficios.com>
12899
12900 * gdbtypes.c (rank_one_type_parm_ptr): New function extracted
12901 from...
12902 (rank_one_type): ... this.
12903
12904 2019-02-27 Philippe Waroquiers <philippe.waroquiers@skynet.be>
12905
12906 * inferior.c (initialize_inferiors): Ensure 'help set/show print
12907 inferior-events' shows the example events.
12908
12909 2019-03-08 Eli Zaretskii <eliz@gnu.org>
12910
12911 Support styling on native MS-Windows console
12912
12913 PR/24315
12914 * utils.c (can_emit_style_escape) [_WIN32]: Don't disable styling
12915 on MS-Windows if $TERM is not defined.
12916
12917 * cli/cli-style.c: Set cli_styling to 1 in the MinGW build.
12918
12919 * posix-hdep.c (gdb_console_fputs):
12920 * mingw-hdep.c (rgb_to_16colors, gdb_console_fputs): New
12921 functions.
12922 * ui-file.h (gdb_console_fputs): Add prototype.
12923
12924 * ui-file.c (stdio_file::puts): Call gdb_console_fputs, and fall
12925 back to fputs only if the former returns zero.
12926
12927 2019-03-07 Tom Tromey <tom@tromey.com>
12928
12929 * symmisc.c (print_symbol_bcache_statistics): Update.
12930 (print_objfile_statistics): Update.
12931 * symfile.c (allocate_symtab): Update.
12932 * stabsread.c: Don't include bcache.h.
12933 * psymtab.h (struct psymbol_bcache): Don't declare.
12934 (class psymtab_storage) <psymbol_cache>: Now a bcache.
12935 (psymbol_bcache_init, psymbol_bcache_free)
12936 (psymbol_bcache_get_bcache): Don't declare.
12937 * psymtab.c (struct psymbol_bcache): Remove.
12938 (psymtab_storage::psymtab_storage): Update.
12939 (psymtab_storage::~psymtab_storage): Update.
12940 (psymbol_bcache_init, psymbol_bcache_free)
12941 (psymbol_bcache_get_bcache, psymbol_bcache_full): Remove.
12942 (add_psymbol_to_bcache): Update.
12943 (allocate_psymtab): Update.
12944 * objfiles.h (struct objfile_per_bfd_storage) <filename_cache,
12945 macro_cache>: No longer pointers.
12946 * objfiles.c (get_objfile_bfd_data): Don't call bcache_xmalloc.
12947 (free_objfile_per_bfd_storage): Don't call bcache_xfree.
12948 * macrotab.c (macro_bcache): Update.
12949 * macroexp.c: Don't include bcache.h.
12950 * gdbtypes.c (check_types_worklist): Update.
12951 (types_deeply_equal): Remove TRY/CATCH. Update.
12952 * elfread.c (elf_symtab_read): Update.
12953 * dwarf2read.c: Don't include bcache.h.
12954 * buildsym.c (buildsym_compunit::get_macro_table): Update.
12955 * bcache.h (bcache, bcache_full, bcache_xffree, bcache_xmalloc)
12956 (print_bcache_statistics, bcache_memory_used): Don't declare.
12957 (struct bcache): Move from bcache.c. Add constructor, destructor,
12958 methods. Rename all data members.
12959 * bcache.c (struct bcache): Move to bcache.h.
12960 (bcache::expand_hash_table): Rename from expand_hash_table.
12961 (bcache): Remove.
12962 (bcache::insert): Rename from bcache_full.
12963 (bcache::compare): Rename from bcache_compare.
12964 (bcache_xmalloc): Remove.
12965 (bcache::~bcache): Rename from bcache_xfree.
12966 (bcache::print_statistics): Rename from print_bcache_statistics.
12967 (bcache::memory_used): Rename from bcache_memory_used.
12968
12969 2019-03-07 Pedro Alves <palves@redhat.com>
12970
12971 * infrun.c (normal_stop): Also check for
12972 TARGET_WAITKIND_NO_RESUMED before referring to inferior_thread().
12973
12974 2019-03-07 Andrew Burgess <andrew.burgess@embecosm.com>
12975
12976 * f-lang.c (value_from_host_double): Moved to...
12977 * value.c (value_from_host_double): ...here.
12978 * value.h (value_from_host_double): Declare.
12979 * guile/scm-math.c (vlscm_convert_typed_number): Use
12980 value_from_host_double.
12981 (vlscm_convert_number): Likewise.
12982 * guile/scm-value.c (gdbscm_value_to_real): Likewise.
12983 * python/py-value.c (convert_value_from_python): Likewise.
12984
12985 2019-03-06 Tom Tromey <tom@tromey.com>
12986
12987 * gcore.c (write_gcore_file): Use SCOPE_EXIT.
12988
12989 2019-03-06 Tom Tromey <tom@tromey.com>
12990
12991 * utils.h (free_current_contents): Don't declare.
12992 * utils.c (free_current_contents): Remove.
12993
12994 2019-03-06 Tom Tromey <tom@tromey.com>
12995
12996 * top.c (quit_force): Update.
12997 * main.c (captured_command_loop): Update.
12998 * common/new-op.c (operator new): Update.
12999 * common/common-exceptions.c (struct catcher)
13000 <save_cleanup_chain>: Remove member.
13001 (exceptions_state_mc_init): Update.
13002 (exception_try_scope_entry): Return nullptr.
13003 (exception_try_scope_exit, exception_rethrow)
13004 (throw_exception_sjlj, throw_exception_cxx): Update.
13005 * common/cleanups.h (make_cleanup, make_cleanup_dtor)
13006 (all_cleanups, do_cleanups, discard_cleanups)
13007 (discard_final_cleanups, save_cleanups, save_final_cleanups)
13008 (restore_cleanups, restore_final_cleanups): Don't declare.
13009 (do_final_cleanups): Remove parameter.
13010 * common/cleanups.c (cleanup_chain, make_cleanup)
13011 (make_cleanup_dtor, all_cleanups, do_cleanups)
13012 (discard_my_cleanups, discard_cleanups)
13013 (discard_final_cleanups, save_my_cleanups, save_cleanups)
13014 (save_final_cleanups, restore_my_cleanups, restore_cleanups)
13015 (null_cleanup): Remove.
13016 (do_final_cleanups): Remove parameter.
13017
13018 2019-03-06 Tom Tromey <tom@tromey.com>
13019
13020 * remote.c (remote_target::remote_parse_stop_reply): Use
13021 unique_xmalloc_ptr.
13022
13023 2019-03-06 Tom Tromey <tom@tromey.com>
13024
13025 * stabsread.c (struct stabs_field_info): Rename from field_info.
13026 <list, fnlist>: Add initializers.
13027 <obstack>: New member.
13028 (read_member_functions, read_struct_fields, read_baseclasses):
13029 Allocate on obstack. Don't use cleanups.
13030 (read_one_struct_field, read_member_functions, read_struct_fields)
13031 (read_baseclasses, read_tilde_fields, attach_fn_fields_to_type)
13032 (attach_fields_to_type, read_cpp_abbrev, read_member_functions)
13033 (read_struct_type): Update.
13034
13035 2019-03-06 Tom Tromey <tom@tromey.com>
13036
13037 * nat/linux-namespaces.c (linux_mntns_access_fs): Use SCOPE_EXIT.
13038 * common/filestuff.h (make_cleanup_close): Don't declare.
13039 * common/filestuff.c (do_close_cleanup, make_cleanup_close):
13040 Remove.
13041
13042 2019-03-06 Tom Tromey <tom@tromey.com>
13043
13044 * solib-aix.c: Use make_scope_exit.
13045
13046 2019-03-06 Tom Tromey <tom@tromey.com>
13047
13048 * solib-svr4.c (svr4_parse_libraries, svr4_current_sos_direct):
13049 Use make_scope_exit.
13050
13051 2019-03-06 Tom Tromey <tom@tromey.com>
13052
13053 * solib-svr4.c (disable_probes_interface): Remove parameter.
13054 (svr4_handle_solib_event): Use make_scope_exit.
13055
13056 2019-03-06 Tom Tromey <tom@tromey.com>
13057
13058 * remote.c (struct stop_reply_deleter): Remove.
13059 (stop_reply_up): Update.
13060 (struct stop_reply): Derive from notif_event. Don't typedef.
13061 <regcache>: Now a std::vector.
13062 (stop_reply_xfree): Remove.
13063 (stop_reply::~stop_reply): Rename from stop_reply_dtr.
13064 (remote_notif_stop_alloc_reply): Return a unique_ptr. Use new.
13065 (remote_target::discard_pending_stop_replies): Use delete.
13066 (remote_target::remote_parse_stop_reply): Update.
13067 (remote_target::process_stop_reply): Update.
13068 * remote-notif.h (struct notif_event): Add virtual destructor.
13069 Remove "dtr" member.
13070 (struct notif_client) <alloc_event>: Return a unique_ptr.
13071 (notif_event_xfree): Don't declare.
13072 (notif_event_up): New typedef.
13073 * remote-notif.c (remote_notif_ack, remote_notif_parse): Update.
13074 (notif_event_xfree, do_notif_event_xfree): Remove.
13075 (remote_notif_state_xfree): Update.
13076
13077 2019-03-06 Tom Tromey <tom@tromey.com>
13078
13079 * infrun.c (displaced_step_clear_cleanup): Now a
13080 forward_scope_exit type.
13081 (displaced_step_prepare_throw): Update.
13082 (displaced_step_fixup): Update.
13083
13084 2019-03-06 Tom Tromey <tom@tromey.com>
13085
13086 * inferior.h (class inferior): Update comment.
13087 * gdbthread.h (class thread_info): Update comment.
13088
13089 2019-03-06 Joel Brobecker <brobecker@adacore.com>
13090 Tom Tromey <tom@tromey.com>
13091
13092 * stabsread.h (struct stab_section_list): Remove.
13093 (coffstab_build_psymtabs): Update.
13094 * dbxread.c (symbuf_sections): Now a std::vector.
13095 (sect_idx): New global.
13096 (fill_symbuf): Update.
13097 (coffstab_build_psymtabs): Change type of stabsects parameter.
13098 Update.
13099 * coffread.c (struct coff_symfile_info) <stabsects>: Now a
13100 std::vector.
13101 (linetab, linetab_offset, linetab_size, stringtab): Move earlier.
13102 (coff_locate_sections): Update.
13103 (coff_symfile_read): Remove cleanups. Update.
13104 (init_stringtab): Add storage parameter.
13105 (free_stringtab, free_stringtab_cleanup): Remove.
13106 (init_lineno): Add storage parameter.
13107 (free_linetab, free_linetab_cleanup): Remove.
13108
13109 2019-03-06 Pedro Alves <palves@redhat.com>
13110
13111 * linux-fork.c (fork_info::clobber_regs): Delete.
13112 (fork_load_infrun_state): Remove reference to 'clobber_regs'.
13113 (fork_save_infrun_state): Remove 'clobber_regs' parameter. Update
13114 comment. Adjust.
13115 (scoped_switch_fork_info::scoped_switch_fork_info)
13116 (checkpoint_command, linux_fork_context): Adjust
13117 fork_save_infrun_state calls.
13118
13119 2019-03-06 Pedro Alves <palves@redhat.com>
13120
13121 * linux-fork.c (inf_has_multiple_thread_cb): Delete.
13122 (inf_has_multiple_threads): Return 'bool' and rewrite using
13123 inferior_info::threads().
13124
13125 2019-03-06 Pedro Alves <palves@redhat.com>
13126
13127 * linux-fork.c: Include <list>.
13128 (fork_list): Now a std::list instance.
13129 (fork_info): Add ctor, dtor, and in-class initialize all fields.
13130 (forks_exist_p, find_last_fork): Adjust.
13131 (new_fork): Delete.
13132 (one_fork_p): New.
13133 (add_fork): Adjust.
13134 (free_fork): Delete, folded into fork_info::~fork_info().
13135 (delete_fork, find_fork_ptid, find_fork_id, find_fork_pid):
13136 Adjust.
13137 (init_fork_list): Delete.
13138 (linux_fork_killall, linux_fork_mourn_inferior)
13139 (linux_fork_detach, info_checkpoints_command): Adjust.
13140 (_initialize_linux_fork): No longer call init_fork_list.
13141
13142 2019-03-06 Pedro Alves <palves@redhat.com>
13143
13144 * linux-fork.c (new_fork): New, split out of ...
13145 (add_fork): ... this. Return void. Move "first fork" special
13146 case from here, to ...
13147 (checkpoint_command): ... here.
13148 * linux-linux.h (add_fork): Return void.
13149
13150 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
13151
13152 * f-exp.y (direct_abs_decl): Handle TYPE*SIZE type names.
13153
13154 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
13155 Chris January <chris.january@arm.com>
13156 David Lecomber <david.lecomber@arm.com>
13157
13158 * f-exp.y: New token, UNOP_INTRINSIC.
13159 (exp): New pattern using UNOP_INTRINSIC token.
13160 (f77_keywords): Add 'abs' keyword.
13161 * f-lang.c: Add 'target-float.h' and 'math.h' includes.
13162 (value_from_host_double): New function.
13163 (evaluate_subexp_f): Support UNOP_ABS.
13164
13165 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
13166
13167 * f-lang.c (build_fortran_types): Use TYPE_CODE_CHAR for character
13168 types.
13169
13170 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
13171
13172 * f-exp.y (convert_to_kind_type): Handle integer (kind=8).
13173 * f-lang.c (build_fortran_types): Setup builtin_integer_s8.
13174 * f-lang.h (struct builtin_f_type): Add builtin_integer_s8 field.
13175
13176 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
13177
13178 * f-exp.y (convert_to_kind_type): Handle more type kinds.
13179
13180 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
13181 Chris January <chris.january@arm.com>
13182
13183 * expprint.c (dump_subexp_body_standard): Support UNOP_KIND.
13184 * f-exp.y: Define 'KIND' token.
13185 (exp): New pattern for KIND expressions.
13186 (ptype): Handle types with a kind extension.
13187 (direct_abs_decl): Extend to spot kind extensions.
13188 (f77_keywords): Add 'kind' to the list.
13189 (push_kind_type): New function.
13190 (convert_to_kind_type): New function.
13191 * f-lang.c (evaluate_subexp_f): Support UNOP_KIND.
13192 * parse.c (operator_length_standard): Likewise.
13193 * parser-defs.h (enum type_pieces): Add tp_kind.
13194 * std-operator.def: Add UNOP_KIND.
13195
13196 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
13197
13198 * f-exp.y (f_parse): Set yydebug.
13199
13200 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
13201
13202 * f-lang.c (evaluate_subexp_f): New function.
13203 (exp_descriptor_f): New global.
13204 (f_language_defn): Use exp_descriptor_f instead of
13205 exp_descriptor_standard.
13206
13207 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
13208
13209 * f-exp.y (struct token): Add comments.
13210 (dot_ops): Remove uppercase versions and the end marker.
13211 (f77_keywords): Likewise.
13212 (yylex): Use ARRAY_SIZE to iterate over dot_ops, assert all
13213 entries in the dot_ops array are case insensitive, and use
13214 strncasecmp to compare strings. Also some whitespace cleanup in
13215 this area. Similar for the f77_keywords array, except entries in
13216 this list might be case sensitive.
13217
13218 2019-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
13219
13220 * f-exp.y (struct f77_boolean_val): Add comments.
13221 (boolean_values): Remove uppercase versions, and end marker.
13222 (yylex): Use ARRAY_SIZE for iterating over boolean_values array,
13223 and use strncasecmp to achieve case insensitivity. Additionally,
13224 perform whitespace cleanup around this code.
13225
13226 2019-03-06 Tom Tromey <tromey@adacore.com>
13227
13228 * remote-sim.c (gdbsim_target_open): Use result of
13229 gdb_argv::release.
13230
13231 2019-03-06 Richard Bunt <richard.bunt@arm.com>
13232 Dirk Schubert <dirk.schubert@arm.com>
13233 Chris January <chris.january@arm.com>
13234
13235 * eval.c (evaluate_subexp_standard): Call Fortran argument
13236 wrapping logic.
13237 * f-lang.c (struct value): A value which can be passed into a
13238 Fortran function call.
13239 (fortran_argument_convert): Wrap Fortran arguments in a pointer
13240 where appropriate.
13241 (struct type): Value ready for a Fortran function call.
13242 (fortran_preserve_arg_pointer): Undo check_typedef, the pointer
13243 is needed.
13244 * f-lang.h (fortran_argument_convert): Declaration.
13245 (fortran_preserve_arg_pointer): Declaration.
13246 * infcall.c (value_arg_coerce): Call Fortran argument logic.
13247
13248 2019-03-05 Tom Tromey <tromey@adacore.com>
13249
13250 * python/py-prettyprint.c (print_string_repr): Remove #if.
13251 * python/py-utils.c (unicode_to_encoded_string): Remove #if.
13252
13253 2019-03-05 Tom Tromey <tromey@adacore.com>
13254
13255 * target.c (the_dummy_target): Move later. Change type to
13256 "dummy_target".
13257 (initialize_targets): Don't initialize the_dummy_target.
13258
13259 2019-03-05 Tom Tromey <tromey@adacore.com>
13260
13261 * gdb_bfd.c (gdb_bfd_fdopenr): Remove.
13262 * gdb_bfd.h (gdb_bfd_fdopenr): Don't declare.
13263
13264 2019-03-05 Tom Tromey <tromey@adacore.com>
13265
13266 * windows-nat.c (windows_nat_target::attach)
13267 (windows_nat_target::detach): Don't call gdb_flush.
13268 * valprint.c (generic_val_print, val_print, val_print_string):
13269 Don't call gdb_flush.
13270 * utils.c (defaulted_query): Don't call gdb_flush.
13271 * typeprint.c (print_type_scalar): Don't call gdb_flush.
13272 * target.c (target_announce_detach): Don't call gdb_flush.
13273 * sparc64-tdep.c (adi_print_versions): Don't call gdb_flush.
13274 * remote.c (extended_remote_target::attach): Don't call
13275 gdb_flush.
13276 * procfs.c (procfs_target::detach): Don't call gdb_flush.
13277 * printcmd.c (do_examine): Don't call gdb_flush.
13278 (info_display_command): Don't call gdb_flush.
13279 * p-valprint.c (pascal_val_print): Don't call gdb_flush.
13280 * nto-procfs.c (nto_procfs_target::attach): Don't call gdb_flush.
13281 * memattr.c (info_mem_command): Don't call gdb_flush.
13282 * mdebugread.c (mdebug_build_psymtabs): Don't call gdb_flush.
13283 * m2-valprint.c (m2_val_print): Don't call gdb_flush.
13284 * infrun.c (follow_exec, handle_command): Don't call gdb_flush.
13285 * inf-ptrace.c (inf_ptrace_target::attach): Don't call gdb_flush.
13286 * hppa-tdep.c (unwind_command): Don't call gdb_flush.
13287 * gnu-nat.c (gnu_nat_target::attach): Don't call gdb_flush.
13288 (gnu_nat_target::detach): Don't call gdb_flush.
13289 * f-valprint.c (f_val_print): Don't call gdb_flush.
13290 * darwin-nat.c (darwin_nat_target::attach): Don't call gdb_flush.
13291 * cli/cli-script.c (read_command_lines): Don't call gdb_flush.
13292 * cli/cli-cmds.c (shell_escape, print_disassembly): Don't call
13293 gdb_flush.
13294 * c-valprint.c (c_val_print): Don't call gdb_flush.
13295 * ada-valprint.c (ada_print_scalar): Don't call gdb_flush.
13296
13297 2019-03-05 Tom Tromey <tromey@adacore.com>
13298
13299 * varobj.c (update_dynamic_varobj_children): Update.
13300 (install_default_visualizer): Use reset, not release.
13301 * value.c (set_internalvar): Update.
13302 * dwarf2loc.c (value_of_dwarf_reg_entry): Update.
13303 * common/gdb_ref_ptr.h (class ref_ptr) <release>: Add
13304 ATTRIBUTE_UNUSED_RESULT.
13305
13306 2019-03-05 Tom Tromey <tromey@adacore.com>
13307
13308 * remote.c (class scoped_remote_fd) <release>: Add
13309 ATTRIBUTE_UNUSED_RESULT.
13310
13311 2019-03-05 Tom Tromey <tromey@adacore.com>
13312
13313 * macroexp.c (struct macro_buffer) <release>: Add
13314 ATTRIBUTE_UNUSED_RESULT.
13315
13316 2019-03-05 Tom Tromey <tromey@adacore.com>
13317
13318 * nat/linux-btrace.c (linux_enable_bts, linux_enable_pt): Update.
13319 * common/scoped_mmap.h (class scoped_mmap) <release>: Add
13320 ATTRIBUTE_UNUSED_RESULT.
13321
13322 2019-03-05 Tom Tromey <tromey@adacore.com>
13323
13324 * common/scoped_fd.h (class scoped_fd) <release>: Add
13325 ATTRIBUTE_UNUSED_RESULT.
13326
13327 2019-03-05 Tom Tromey <tromey@adacore.com>
13328
13329 * parser-defs.h (struct parser_state) <release>: Add
13330 ATTRIBUTE_UNUSED_RESULT.
13331
13332 2019-03-05 Tom Tromey <tromey@adacore.com>
13333
13334 * utils.h (class gdb_argv) <release>: Add
13335 ATTRIBUTE_UNUSED_RESULT.
13336 * common/common-defs.h (ATTRIBUTE_UNUSED_RESULT): Define.
13337
13338 2019-03-02 Eli Zaretskii <eliz@gnu.org>
13339
13340 * xml-syscall.c (xml_list_syscalls_by_group): Drop 'struct' from
13341 for-loop range, to avoid compiler warnings.
13342
13343 * tui/tui.c (tui_enable) [__MINGW32__]: Don't declare 'cap', to
13344 avoid compiler warnings about unused variables.
13345
13346 * NEWS: Mention end of support for native debugging on MS-Windows
13347 before XP.
13348
13349 PR gdb/24292
13350 * common/netstuff.c:
13351 * gdbserver/gdbreplay.c
13352 * gdbserver/remote-utils.c:
13353 * ser-tcp.c:
13354 * unittests/parse-connection-spec-selftests.c [USE_WIN32API]:
13355 Include ws2tcpip.h instead of wsiapi.h and winsock2.h. Redefine
13356 _WIN32_WINNT to 0x0501 if defined to a smaller value, as
13357 'getaddrinfo' and 'freeaddrinfo' were not available before
13358 Windows XP, and mingw.org's MinGW headers by default define
13359 _WIN32_WINNT to 0x500.
13360
13361 2019-03-01 Gary Benson <gbenson@redhat.com>
13362
13363 * coffread.c (coff_start_symtab): Remove unnecessary xstrdup.
13364
13365 2019-02-28 Brian Vandenberg <phantall@gmail.com>
13366 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
13367
13368 PR gdb/8527
13369 * procfs.c (proc_wait_for_stop): Wrap write of PCWSTOP in
13370 set_sigint_trap, clear_sigint_trap.
13371
13372 2019-02-27 Philippe Waroquiers <philippe.waroquiers@skynet.be>
13373
13374 * target.c (target_detach): Clear the regcache and the
13375 frame cache.
13376
13377 2019-02-27 Pedro Alves <palves@redhat.com>
13378
13379 * utils.c (set_screen_size): When we cap the height/width sizes,
13380 tweak the corresponding command variable to show "unlimited":
13381
13382 2019-02-27 Saagar Jha <saagar@saagarjha.com>
13383 Pedro Alves <palves@redhat.com>
13384
13385 * utils.c (set_screen_size): Reduce "infinite" rows and columns
13386 before calling rl_set_screen_size.
13387
13388 2019-02-27 Tom Tromey <tromey@adacore.com>
13389
13390 * configure.ac (HAVE_LIBPYTHON2_4, HAVE_LIBPYTHON2_5): Never
13391 define.
13392 * python/py-value.c: Remove Python 2.4 workaround.
13393 * python/py-utils.c (gdb_pymodule_addobject): Remove Python 2.4
13394 workaround.
13395 * python/py-type.c (convert_field, gdbpy_initialize_types): Remove
13396 Python 2.4 workaround.
13397 * python/python-internal.h: Remove Python 2.4 comment.
13398 (Py_ssize_t): Don't define.
13399 (PyVarObject_HEAD_INIT, Py_TYPE): Don't define.
13400 (gdb_Py_DECREF): Remove Python 2.4 workaround.
13401 (gdb_PyObject_GetAttrString, PyObject_GetAttrString): Remove.
13402 (gdb_PyObject_HasAttrString, PyObject_HasAttrString): Remove.
13403 * python/python.c (do_start_initialization): Remove Python 2.4
13404 workaround.
13405 * python/py-prettyprint.c (class dummy_python_frame): Remove.
13406 (print_children): Remove Python 2.4 workaround.
13407 * python/py-inferior.c (buffer_procs): Remove Python 2.4
13408 workaround.
13409 (CHARBUFFERPROC_NAME): Remove.
13410 * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Remove
13411 Python 2.4 workaround.
13412
13413 2019-02-27 Kevin Buettner <kevinb@redhat.com>
13414
13415 * NEWS: Note minimum Python version.
13416
13417 2019-02-27 Kevin Buettner <kevinb@redhat.com>
13418
13419 * python/py-inferior.c (infpy_write_memory): Remove non-IS_PY3K
13420 code from these functions. Remove corresponding ifdefs. Use
13421 Py_buffer_up instead of explicit calls to PyBuffer_Release.
13422 Remove gotos and target of gotos.
13423 (infpy_search_memory): Likewise.
13424
13425 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
13426
13427 * gdb/hppa-tdep.c (hppa_dummy_id): Delete.
13428 (hppa_gdbarch_init): Don't register deleted functions with
13429 gdbarch.
13430
13431 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
13432
13433 * gdb/h8300-tdep.c (h8300_unwind_pc): Delete.
13434 (h8300_unwind_sp): Delete.
13435 (h8300_dummy_id): Delete.
13436 (h8300_gdbarch_init): Don't register deleted functions with
13437 gdbarch.
13438
13439 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
13440
13441 * gdb/ft32-tdep.c (ft32_dummy_id): Delete.
13442 (ft32_unwind_pc): Delete.
13443 (ft32_unwind_sp): Delete.
13444 (ft32_gdbarch_init): Don't register deleted functions with
13445 gdbarch.
13446
13447 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
13448
13449 * gdb/frv-tdep.c (frv_dummy_id): Delete.
13450 (frv_unwind_pc): Delete.
13451 (frv_unwind_sp): Delete.
13452 (frv_gdbarch_init): Don't register deleted functions with
13453 gdbarch.
13454
13455 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
13456
13457 * gdb/riscv-tdep.c (riscv_dummy_id): Delete.
13458 (riscv_unwind_pc): Delete.
13459 (riscv_unwind_sp): Delete.
13460 (riscv_gdbarch_init): Don't register deleted functions with
13461 gdbarch.
13462
13463 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
13464
13465 * gdb/csky-tdep.c (csky_dummy_id): Delete.
13466 (csky_unwind_pc): Delete.
13467 (csky_unwind_sp): Delete.
13468 (csky_gdbarch_init): Don't register deleted functions with
13469 gdbarch.
13470
13471 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
13472
13473 * gdb/cris-tdep.c (cris_dummy_id): Delete.
13474 (cris_unwind_pc): Delete.
13475 (cris_unwind_sp): Delete.
13476 (cris_gdbarch_init): Don't register deleted functions with
13477 gdbarch.
13478
13479 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
13480
13481 * gdb/bfin-tdep.c (bfin_dummy_id): Delete.
13482 (bfin_unwind_pc): Delete.
13483 (bfin_gdbarch_init): Don't register deleted functions with gdbarch.
13484
13485 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
13486
13487 * gdb/arm-tdep.c (arm_dummy_id): Delete.
13488 (arm_unwind_pc): Delete.
13489 (arm_unwind_sp): Delete.
13490 (arm_gdbarch_init): Don't register deleted functions with gdbarch.
13491
13492 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
13493
13494 * gdb/arc-tdep.c (arc_dummy_id): Delete.
13495 (arc_unwind_pc): Delete.
13496 (arc_unwind_sp): Delete.
13497 (arc_gdbarch_init): Don't register deleted functions with gdbarch.
13498
13499 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
13500
13501 * gdb/alpha-tdep.c (alpha_dummy_id): Delete.
13502 (alpha_unwind_pc): Delete.
13503 (alpha_gdbarch_init): Don't register deleted functions with
13504 gdbarch.
13505
13506 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
13507
13508 * gdb/aarch64-tdep.c (aarch64_dummy_id): Delete.
13509 (aarch64_unwind_pc): Delete.
13510 (aarch64_unwind_sp): Delete.
13511 (aarch64_gdbarch_init): Don't register deleted functions with
13512 gdbarch.
13513
13514 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
13515
13516 * gdbtypes.c (type_align): Don't consider static members when
13517 computing structure alignment.
13518
13519 2019-02-27 Andrew Burgess <andrew.burgess@embecosm.com>
13520
13521 * arc-tdep.c (arc_type_align): Provide alignment for basic types,
13522 return 0 for other types.
13523 * arch-utils.c (default_type_align): Always return 0.
13524 * gdbarch.h: Regenerate.
13525 * gdbarch.sh (type_align): Extend comment.
13526 * gdbtypes.c (type_align): Add additional comments, always call
13527 gdbarch_type_align before applying the default rules.
13528 * i386-tdep.c (i386_type_align): Return 0 as the default rule,
13529 generic code will then apply a suitable default.
13530 * nios2-tdep.c (nios2_type_align): Provide alignment for basic
13531 types, return 0 for other types.
13532
13533 2019-02-27 Joel Brobecker <brobecker@adacore.com>
13534
13535 * NEWS: Create a new section for the next release branch.
13536 Rename the section of the current branch, now that it has
13537 been cut.
13538
13539 2019-02-27 Joel Brobecker <brobecker@adacore.com>
13540
13541 GDB 8.3 branch created (143420fb0d5ae54323ba9953f0818c194635228d):
13542 * version.in: Bump version to 8.3.50.DATE-git.
13543
13544 2019-02-26 Simon Marchi <simon.marchi@efficios.com>
13545
13546 * aix-thread.c (ptid_cmp): Remove unused variable.
13547 (get_signaled_thread): Likewise.
13548 (store_regs_user_thread): Likewise.
13549 (store_regs_kernel_thread): Likewise.
13550 (fetch_regs_kernel_thread): Remove shadowed variable.
13551
13552 2019-02-26 Andrew Burgess <andrew.burgess@embecosm.com>
13553
13554 * features/riscv/32bit-cpu.xml: Add register numbers.
13555 * features/riscv/32bit-fpu.c: Regenerate.
13556 * features/riscv/32bit-fpu.xml: Add register numbers.
13557 * features/riscv/64bit-cpu.xml: Add register numbers.
13558 * features/riscv/64bit-fpu.c: Regenerate.
13559 * features/riscv/64bit-fpu.xml: Add register numbers.
13560
13561 2019-02-26 Kevin Buettner <kevinb@redhat.com>
13562
13563 * NEWS: Mention two argument form of gdb.Value constructor.
13564 * python/py-value.c (convert_buffer_and_type_to_value): New
13565 function.
13566 (valpy_new): Parse arguments via gdb_PyArg_ParseTupleAndKeywords.
13567 Add support for handling an optional second argument. Call
13568 convert_buffer_and_type_to_value as appropriate.
13569 * python/python-internal.h (Py_buffer_deleter): New struct.
13570 (Py_buffer_up): New typedef.
13571
13572 2019-02-25 John Baldwin <jhb@FreeBSD.org>
13573
13574 * dwarf2read.c (dwarf2_get_dwz_file): Reset dwz_bfd to nullptr
13575 instead of releasing ownership.
13576
13577 2019-02-25 Jordan Rupprecht <rupprecht@google.com>
13578
13579 * dwarf2read.c (open_and_init_dwp_file): Call
13580 elf_numsections instead of bfd_count_sections to initialize
13581 dwp_file->num_sections.
13582
13583 2019-02-25 Tom Tromey <tromey@adacore.com>
13584
13585 * solib-darwin.c (darwin_get_dyld_bfd): Don't release dyld_bfd.
13586
13587 2019-02-23 Sergio Durigan Junior <sergiodj@redhat.com>
13588
13589 * gcore.in: Add '--readnever' option when invoking GDB.
13590
13591 2019-02-22 Simon Marchi <simon.marchi@polymtl.ca>
13592
13593 * MAINTAINERS: Update my email address.
13594
13595 2019-02-22 Simon Marchi <simon.marchi@polymtl.ca>
13596
13597 * build-id.c (build_id_to_debug_bfd_1): New function.
13598 (build_id_to_debug_bfd): Look for separate debug file in
13599 sysroot.
13600
13601 2019-02-22 Andrew Burgess <andrew.burgess@embecosm.com>
13602
13603 * gdbarch.sh: Update the copyright year range that is placed into
13604 generated files.
13605
13606 2019-02-22 Keith Seitz <keiths@redhat.com>
13607
13608 PR symtab/23853
13609 * linespec.c (create_sals_line_offset): Search for the default
13610 symtab's filename instead of its fullname.
13611
13612 2019-02-21 Alan Hayward <alan.hayward@arm.com>
13613
13614 * NEWS: Update style defaults.
13615
13616 2019-02-21 Alan Hayward <alan.hayward@arm.com>
13617
13618 * main.c (captured_main_1): Disable styling in batch mode.
13619
13620 2019-02-20 Tom Tromey <tom@tromey.com>
13621
13622 * symtab.c (symtab_symbol_info): Fix typos.
13623
13624 2019-02-20 Tom Tromey <tromey@adacore.com>
13625
13626 * findcmd.c (_initialize_mem_search): Use upper case for
13627 metasyntactic variables.
13628
13629 2019-02-20 Alan Hayward <alan.hayward@arm.com>
13630
13631 * aarch64-tdep.c (aarch64_add_reggroups): New function.
13632 (aarch64_gdbarch_init): Call aarch64_add_reggroups.
13633
13634 2019-02-19 Simon Marchi <simon.marchi@polymtl.ca>
13635
13636 * top.h (source_file_name): Change to std::string.
13637 * top.c (source_file_name): Likewise.
13638 (command_line_input): Adjust.
13639 * cli/cli-script.c (script_from_file): Adjust.
13640
13641 2019-02-19 Tom Tromey <tromey@adacore.com>
13642
13643 * ravenscar-thread.c
13644 (ravenscar_thread_target::update_thread_list): Don't call
13645 ada_build_task_list.
13646 * ada-lang.h (ada_build_task_list): Don't declare.
13647 * ada-tasks.c (struct ada_tasks_inferior_data)
13648 <task_list_valid_p>: Now bool.
13649 (read_known_tasks, ada_task_list_changed)
13650 (ada_tasks_invalidate_inferior_data): Update.
13651 (read_known_tasks_array): Return bool.
13652 (read_known_tasks_list): Likewise.
13653 (read_known_tasks): Return void.
13654 (ada_build_task_list): Now static.
13655
13656 2019-02-18 Andrew Burgess <andrew.burgess@embecosm.com>
13657
13658 * gdbtypes.c (type_align): Allow alignment of TYPE_CODE_METHODPTR
13659 and TYPE_CODE_MEMBERPTR to be overridden by the gdbarch.
13660
13661 2019-02-18 Philippe Waroquiers <philippe.waroquiers@skynet.be>
13662
13663 * ada-task.c (_initialize_tasks): Use 'with_cleanup' register
13664 variant for ada_tasks_pspace_data_handle and
13665 ada_tasks_inferior_data_handle.
13666 (ada_tasks_pspace_data_cleanup): New function.
13667 (ada_tasks_inferior_data_cleanup): New function.
13668
13669 2019-02-17 Tom Tromey <tom@tromey.com>
13670
13671 * macrotab.h (macro_source_fullname): Return a std::string.
13672 * macrotab.c (macro_include, check_for_redefinition)
13673 (macro_undef, macro_lookup_definition, foreach_macro)
13674 (foreach_macro_in_scope): Update.
13675 (macro_source_fullname): Return a std::string.
13676 * macrocmd.c (show_pp_source_pos): Update.
13677
13678 2019-02-17 Tom Tromey <tom@tromey.com>
13679
13680 * macrocmd.c (show_pp_source_pos): Style the file names.
13681
13682 2019-02-17 Tom Tromey <tom@tromey.com>
13683
13684 PR tui/24197:
13685 * tui/tui-source.c (tui_set_source_content_nil): Rewrite.
13686
13687 2019-02-17 Tom Tromey <tom@tromey.com>
13688
13689 * ada-lang.c (user_select_syms): Use filtered printing.
13690 * utils.c (wrap_style): New global.
13691 (desired_style): Remove.
13692 (emit_style_escape): Add stream parameter.
13693 (set_output_style, reset_terminal_style, prompt_for_continue):
13694 Update.
13695 (flush_wrap_buffer): Only flush gdb_stdout.
13696 (wrap_here): Set wrap_style.
13697 (fputs_maybe_filtered): Clear the wrap buffer on exception. Don't
13698 treat escape sequences as a character. Change when wrap buffer is
13699 flushed.
13700 (fputs_styled): Do not set the output style when the default is
13701 requested.
13702 * ui-style.h (struct ui_file_style) <is_default>: New method.
13703 * source.c (print_source_lines_base): Emit escape sequences in one
13704 piece.
13705
13706 2019-02-17 Joel Brobecker <brobecker@adacore.com>
13707
13708 * gdbtypes.c (type_align): Handle TYPE_CODE_RANGE the same as
13709 integers and enumeration types.
13710
13711 2019-02-17 Joel Brobecker <brobecker@adacore.com>
13712
13713 * ada-lang.c (standard_lookup): Use ada_lookup_encoded_symbol
13714 instead of lookup_symbol_in_language
13715 (do_exact_match): New function.
13716 (ada_get_symbol_name_matcher): Return do_exact_match when
13717 doing a verbatim match.
13718
13719 2019-02-15 Tom Tromey <tromey@adacore.com>
13720
13721 * ravenscar-thread.c (ravenscar_thread_target::resume)
13722 (ravenscar_thread_target::wait): Special case wildcard requests.
13723
13724 2019-02-15 Tom Tromey <tromey@adacore.com>
13725
13726 * ravenscar-thread.c (base_ptid): Remove.
13727 (struct ravenscar_thread_target) <close>: New method.
13728 <m_base_ptid>: New member.
13729 <update_inferior_ptid, active_task, task_is_currently_active,
13730 runtime_initialized>: Declare methods.
13731 <ravenscar_thread_target>: Add constructor.
13732 (ravenscar_thread_target::task_is_currently_active)
13733 (ravenscar_thread_target::update_inferior_ptid)
13734 (ravenscar_runtime_initialized): Rename. Now methods.
13735 (ravenscar_thread_target::resume, ravenscar_thread_target::wait)
13736 (ravenscar_thread_target::update_thread_list): Update.
13737 (ravenscar_thread_target::active_task): Now method.
13738 (ravenscar_thread_target::store_registers)
13739 (ravenscar_thread_target::prepare_to_store)
13740 (ravenscar_thread_target::prepare_to_store)
13741 (ravenscar_thread_target::mourn_inferior): Update.
13742 (ravenscar_inferior_created): Use "new" to create target.
13743 (ravenscar_thread_target::get_ada_task_ptid): Update.
13744 (_initialize_ravenscar): Don't initialize base_ptid.
13745 (ravenscar_ops): Remove global.
13746
13747 2019-02-15 Tom Tromey <tromey@adacore.com>
13748
13749 * target.h (push_target): Declare new overload.
13750 * target.c (push_target): New overload, taking an rvalue reference.
13751 * remote.c (remote_target::open_1): Use push_target overload.
13752 * corelow.c (core_target_open): Use push_target overload.
13753
13754 2019-02-15 Tom Tromey <tromey@adacore.com>
13755
13756 * ravenscar-thread.c (is_ravenscar_task)
13757 (ravenscar_task_is_currently_active): Return bool.
13758 (ravenscar_update_inferior_ptid, get_running_thread_msymbol)
13759 (_initialize_ravenscar): Remove "(void)".
13760 (has_ravenscar_runtime, ravenscar_runtime_initialized): Likewise.
13761 Return bool.
13762
13763 2019-02-15 Tom Tromey <tromey@adacore.com>
13764
13765 * ravenscar-thread.c (ravenscar_runtime_initializer)
13766 (has_ravenscar_runtime, get_running_thread_id)
13767 (ravenscar_thread_target::resume): Fix indentation.
13768
13769 2019-02-15 Tom Tromey <tromey@adacore.com>
13770
13771 * sparc-ravenscar-thread.c (struct sparc_ravenscar_ops): Derive
13772 from ravenscar_arch_ops.
13773 (sparc_ravenscar_ops::fetch_registers)
13774 (sparc_ravenscar_ops::store_registers): Now methods.
13775 (sparc_ravenscar_prepare_to_store): Remove.
13776 (sparc_ravenscar_ops): Redefine.
13777 * ravenscar-thread.h (struct ravenscar_arch_ops): Add virtual
13778 methods and destructor. Remove members.
13779 * ravenscar-thread.c (ravenscar_thread_target::fetch_registers)
13780 (ravenscar_thread_target::store_registers)
13781 (ravenscar_thread_target::prepare_to_store): Update.
13782 * ppc-ravenscar-thread.c (ppc_ravenscar_generic_prepare_to_store):
13783 Remove.
13784 (struct ppc_ravenscar_powerpc_ops): Derive from
13785 ravenscar_arch_ops.
13786 (ppc_ravenscar_powerpc_ops::fetch_registers)
13787 (ppc_ravenscar_powerpc_ops::store_registers): Now methods.
13788 (ppc_ravenscar_powerpc_ops): Redefine.
13789 (struct ppc_ravenscar_e500_ops): Derive from ravenscar_arch_ops.
13790 (ppc_ravenscar_e500_ops::fetch_registers)
13791 (ppc_ravenscar_e500_ops::store_registers): Now methods.
13792 (ppc_ravenscar_e500_ops): Redefine.
13793 * aarch64-ravenscar-thread.c
13794 (aarch64_ravenscar_generic_prepare_to_store): Remove.
13795 (struct aarch64_ravenscar_ops): Derive from ravenscar_arch_ops.
13796 (aarch64_ravenscar_fetch_registers)
13797 (aarch64_ravenscar_store_registers): Now methods.
13798 (aarch64_ravenscar_ops): Redefine.
13799
13800 2019-02-15 Tom Tromey <tromey@adacore.com>
13801
13802 * ravenscar-thread.c (ravenscar_thread_target::stopped_by_sw_breakpoint)
13803 (ravenscar_thread_target::stopped_by_hw_breakpoint)
13804 (ravenscar_thread_target::stopped_by_watchpoint)
13805 (ravenscar_thread_target::stopped_data_address)
13806 (ravenscar_thread_target::core_of_thread): Use scoped_restore.
13807
13808 2019-02-15 Tom Tromey <tromey@adacore.com>
13809
13810 * ravenscar-thread.c: Fix some typos.
13811
13812 2019-02-15 Philippe Waroquiers <philippe.waroquiers@skynet.be>
13813 Tom Tromey <tromey@adacore.com>
13814
13815 * ada-lang.c (ada_exception_sal): Change addr_string to a
13816 std::string.
13817 (create_ada_exception_catchpoint): Update.
13818
13819 2019-02-15 Philippe Waroquiers <philippe.waroquiers@skynet.be>
13820 Tom Tromey <tromey@adacore.com>
13821
13822 * breakpoint.c (~bp_location): Rename from bp_location_dtor.
13823 (bp_location_ops): Remove.
13824 (base_breakpoint_allocate_location): Update.
13825 (free_bp_location): Update.
13826 * ada-lang.c (class ada_catchpoint_location)
13827 <ada_catchpoint_location>: Remove ops parameter.
13828 (ada_catchpoint_location_dtor): Remove.
13829 (ada_catchpoint_location_ops): Remove.
13830 (allocate_location_exception): Update.
13831 * breakpoint.h (struct bp_location_ops): Remove.
13832 (class bp_location) <bp_location>: Remove bp_location_ops
13833 parameter.
13834 <~bp_location>: Add destructor.
13835 <ops>: Remove.
13836
13837 2019-02-14 Thomas Schwinge <thomas@codesourcery.com>
13838 Pedro Alves <palves@redhat.com>
13839
13840 * remote.c (remote_target::remote_parse_stop_reply): Avoid using
13841 'PATH_MAX'.
13842
13843 2019-02-14 David Michael <fedora.dm0@gmail.com>
13844 Samuel Thibault <samuel.thibault@gnu.org>
13845 Thomas Schwinge <thomas@codesourcery.com>
13846
13847 * gnu-nat.c (S_proc_getmsgport_reply, S_proc_task2proc_reply)
13848 (S_proc_pid2proc_reply): Adjust to Hurd "proc" interface changes.
13849
13850 2019-02-14 Thomas Schwinge <thomas@codesourcery.com>
13851
13852 * gnu-nat.c (gnu_write_inferior, parse_int_arg, _parse_bool_arg)
13853 (check_empty): Use "const char *".
13854
13855 * gnu-nat.c (gnu_nat_target::detach): Instead of
13856 'detach_inferior (pid)' call
13857 'detach_inferior (find_inferior_pid (pid))'.
13858
13859 * configure.nat [gdb_host == i386gnu] (NATDEPFILES): Add
13860 'nat/fork-inferior.o'.
13861 * gnu-nat.c: #include "nat/fork-inferior.h".
13862
13863 * gnu-nat.c (gnu_nat_target::detach): Instead of
13864 'inf_child_maybe_unpush_target (ops)' call 'maybe_unpush_target'.
13865 * gnu-nat.h: #include "inf-child.h".
13866 * i386-gnu-nat.c (gnu_fetch_registers): Rename/move to
13867 'i386_gnu_nat_target::fetch_registers'.
13868 (gnu_store_registers): Rename/move to
13869 'i386_gnu_nat_target::store_registers'.
13870
13871 * config/i386/nm-i386gnu.h: Don't "#include" any files.
13872 * gnu-nat.h (mach_thread_info): New function.
13873 * gnu-nat.c (thread_takeover_sc_cmd): Use it.
13874
13875 * config/i386/nm-i386gnu.h (gnu_target_pid_to_str): Remove.
13876
13877 2019-02-14 Frederic Konrad <konrad@adacore.com>
13878
13879 * riscv-rdep.c (riscv_type_alignment): Handle TYPE_CODE_RANGE.
13880
13881 2019-02-14 Joel Brobecker <brobecker@adacore.com>
13882
13883 * windows-nat.c (windows_add_thread): Add new parameter
13884 "main_thread_p" with default value set to false. Update
13885 function documentation as well as all callers.
13886 (windows_delete_thread): Likewise.
13887 (fake_create_process): Update call to windows_add_thread.
13888 (get_windows_debug_event) <CREATE_THREAD_DEBUG_EVENT>
13889 <CREATE_PROCESS_DEBUG_EVENT>: Likewise.
13890 <EXIT_THREAD_DEBUG_EVENT, EXIT_PROCESS_DEBUG_EVENT>: Update
13891 call to windows_delete_thread.
13892
13893 2019-02-13 Simon Marchi <simon.marchi@ericsson.com>
13894
13895 * MAINTAINERS: Add Andrew Burgess as global maintainer.
13896
13897 2019-02-12 John Baldwin <jhb@FreeBSD.org>
13898
13899 * symfile.c (find_separate_debug_file): Use canonical path of
13900 sysroot with child_path instead of gdb_sysroot if it is valid.
13901
13902 2019-02-12 John Baldwin <jhb@FreeBSD.org>
13903
13904 * symfile.c (find_separate_debug_file): Use child_path to
13905 determine if an object file is under a sysroot.
13906
13907 2019-02-12 John Baldwin <jhb@FreeBSD.org>
13908
13909 * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
13910 unittests/child-path-selftests.c.
13911 * common/pathstuff.c (child_path): New function.
13912 * common/pathstuff.h (child_path): New prototype.
13913 * unittests/child-path-selftests.c: New file.
13914
13915 2019-02-12 John Baldwin <jhb@FreeBSD.org>
13916
13917 * symfile.c (find_separate_debug_file): Look for separate debug
13918 files in debug directories under the sysroot.
13919
13920 2019-02-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
13921
13922 * symtab.h (struct minimal_symbol data_p): New const method.
13923 (struct minimal_symbol text_p): Likewise.
13924 * symtab.c (output_source_filename): Use file name style
13925 to print file name.
13926 (print_symbol_info): Likewise.
13927 (print_msymbol_info): Use address style to print addresses.
13928 Use function name style to print executable text symbols.
13929 (expand_symtab_containing_pc): Use data_p.
13930 (find_pc_sect_compunit_symtab): Likewise.
13931
13932 2019-02-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
13933
13934 * breakpoint.c (describe_other_breakpoints): Use address style
13935 to print addresses.
13936 (say_where): Likewise.
13937
13938 2019-02-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
13939
13940 * ada-typeprint.c (print_func_type): Print function name
13941 style to print function name.
13942 * c-typeprint.c (c_print_type_1): Likewise.
13943
13944 2019-02-11 Alan Hayward <alan.hayward@arm.com>
13945
13946 * aarch64-linux-tdep.c (aarch64_linux_get_syscall_number): Check
13947 for execve.
13948
13949 2019-02-10 Philippe Waroquiers <philippe.waroquiers@skynet.be>
13950
13951 * c-exp.y (direct_abs_decl): Use emplace_back to record the
13952 type_stack.
13953
13954 2019-02-10 Joel Brobecker <brobecker@adacore.com>
13955
13956 * ada-varobj.c (ada_value_is_changeable_p): Add handling of
13957 TYPE_CODE_REF types.
13958
13959 2019-02-08 Jim Wilson <jimw@sifive.com>
13960
13961 * riscv-linux-tdep.c (riscv_linux_fregmap): New.
13962 (riscv_linux_fregset): New.
13963 (riscv_linux_iterate_over_regset_sections): Call cb for .reg2 section.
13964
13965 2019-02-07 Tom Tromey <tom@tromey.com>
13966
13967 * thread.c (thread_cancel_execution_command): Update.
13968 * thread-fsm.h (struct thread_fsm): Add constructor, destructor,
13969 methods.
13970 (struct thread_fsm_ops): Remove.
13971 (thread_fsm_ctor, thread_fsm_delete, thread_fsm_clean_up)
13972 (thread_fsm_should_stop, thread_fsm_return_value)
13973 (thread_fsm_set_finished, thread_fsm_finished_p)
13974 (thread_fsm_async_reply_reason, thread_fsm_should_notify_stop):
13975 Don't declare.
13976 * mi/mi-interp.c (mi_on_normal_stop_1): Update.
13977 * infrun.c (clear_proceed_status_thread)
13978 (clean_up_just_stopped_threads_fsms, fetch_inferior_event)
13979 (print_stop_event): Update.
13980 * infcmd.c (struct step_command_fsm): Inherit from thread_fsm.
13981 Add constructor.
13982 (step_command_fsm_ops): Remove.
13983 (new_step_command_fsm): Remove.
13984 (step_1): Update.
13985 (step_command_fsm::should_stop): Rename from
13986 step_command_fsm_should_stop.
13987 (step_command_fsm::clean_up): Rename from
13988 step_command_fsm_clean_up.
13989 (step_command_fsm::do_async_reply_reason): Rename from
13990 step_command_fsm_async_reply_reason.
13991 (struct until_next_fsm): Inherit from thread_fsm. Add
13992 constructor.
13993 (until_next_fsm_ops): Remove.
13994 (new_until_next_fsm): Remove.
13995 (until_next_fsm::should_stop): Rename from
13996 until_next_fsm_should_stop.
13997 (until_next_fsm::clean_up): Rename from until_next_fsm_clean_up.
13998 (until_next_fsm::do_async_reply_reason): Rename from
13999 until_next_fsm_async_reply_reason.
14000 (struct finish_command_fsm): Inherit from thread_fsm. Add
14001 constructor. Change type of breakpoint.
14002 (finish_command_fsm_ops): Remove.
14003 (new_finish_command_fsm): Remove.
14004 (finish_command_fsm::should_stop): Rename from
14005 finish_command_fsm_should_stop.
14006 (finish_command_fsm::clean_up): Rename from
14007 finish_command_fsm_clean_up.
14008 (finish_command_fsm::return_value): Rename from
14009 finish_command_fsm_return_value.
14010 (finish_command_fsm::do_async_reply_reason): Rename from
14011 finish_command_fsm_async_reply_reason.
14012 (finish_command): Update.
14013 * infcall.c (struct call_thread_fsm): Inherit from thread_fsm.
14014 Add constructor.
14015 (call_thread_fsm_ops): Remove.
14016 (call_thread_fsm::call_thread_fsm): Rename from
14017 new_call_thread_fsm.
14018 (call_thread_fsm::should_stop): Rename from
14019 call_thread_fsm_should_stop.
14020 (call_thread_fsm::should_notify_stop): Rename from
14021 call_thread_fsm_should_notify_stop.
14022 (run_inferior_call, call_function_by_hand_dummy): Update.
14023 * cli/cli-interp.c (should_print_stop_to_console): Update.
14024 * breakpoint.c (struct until_break_fsm): Inherit from thread_fsm.
14025 Add constructor. Change type of location_breakpoint,
14026 caller_breakpoint.
14027 (until_break_fsm_ops): Remove.
14028 (new_until_break_fsm): Remove.
14029 (until_break_fsm::should_stop): Rename from
14030 until_break_fsm_should_stop.
14031 (until_break_fsm::clean_up): Rename from
14032 until_break_fsm_clean_up.
14033 (until_break_fsm::do_async_reply_reason): Rename from
14034 until_break_fsm_async_reply_reason.
14035 (until_break_command): Update.
14036 * thread-fsm.c: Remove.
14037 * Makefile.in (COMMON_SFILES): Remove thread-fsm.c.
14038
14039 2019-02-07 Tom Tromey <tom@tromey.com>
14040
14041 * yy-remap.h: Add include guard.
14042 * xtensa-tdep.h: Add include guard.
14043 * xcoffread.h: Rename include guard.
14044 * varobj-iter.h: Add include guard.
14045 * tui/tui.h: Rename include guard.
14046 * tui/tui-winsource.h: Rename include guard.
14047 * tui/tui-wingeneral.h: Rename include guard.
14048 * tui/tui-windata.h: Rename include guard.
14049 * tui/tui-win.h: Rename include guard.
14050 * tui/tui-stack.h: Rename include guard.
14051 * tui/tui-source.h: Rename include guard.
14052 * tui/tui-regs.h: Rename include guard.
14053 * tui/tui-out.h: Rename include guard.
14054 * tui/tui-layout.h: Rename include guard.
14055 * tui/tui-io.h: Rename include guard.
14056 * tui/tui-hooks.h: Rename include guard.
14057 * tui/tui-file.h: Rename include guard.
14058 * tui/tui-disasm.h: Rename include guard.
14059 * tui/tui-data.h: Rename include guard.
14060 * tui/tui-command.h: Rename include guard.
14061 * tic6x-tdep.h: Add include guard.
14062 * target/waitstatus.h: Rename include guard.
14063 * target/wait.h: Rename include guard.
14064 * target/target.h: Rename include guard.
14065 * target/resume.h: Rename include guard.
14066 * target-float.h: Rename include guard.
14067 * stabsread.h: Add include guard.
14068 * rs6000-tdep.h: Add include guard.
14069 * riscv-fbsd-tdep.h: Add include guard.
14070 * regformats/regdef.h: Rename include guard.
14071 * record.h: Rename include guard.
14072 * python/python.h: Rename include guard.
14073 * python/python-internal.h: Rename include guard.
14074 * python/py-stopevent.h: Rename include guard.
14075 * python/py-ref.h: Rename include guard.
14076 * python/py-record.h: Rename include guard.
14077 * python/py-record-full.h: Rename include guard.
14078 * python/py-record-btrace.h: Rename include guard.
14079 * python/py-instruction.h: Rename include guard.
14080 * python/py-events.h: Rename include guard.
14081 * python/py-event.h: Rename include guard.
14082 * procfs.h: Add include guard.
14083 * proc-utils.h: Add include guard.
14084 * p-lang.h: Add include guard.
14085 * or1k-tdep.h: Rename include guard.
14086 * observable.h: Rename include guard.
14087 * nto-tdep.h: Rename include guard.
14088 * nat/x86-linux.h: Rename include guard.
14089 * nat/x86-linux-dregs.h: Rename include guard.
14090 * nat/x86-gcc-cpuid.h: Add include guard.
14091 * nat/x86-dregs.h: Rename include guard.
14092 * nat/x86-cpuid.h: Rename include guard.
14093 * nat/ppc-linux.h: Rename include guard.
14094 * nat/mips-linux-watch.h: Rename include guard.
14095 * nat/linux-waitpid.h: Rename include guard.
14096 * nat/linux-ptrace.h: Rename include guard.
14097 * nat/linux-procfs.h: Rename include guard.
14098 * nat/linux-osdata.h: Rename include guard.
14099 * nat/linux-nat.h: Rename include guard.
14100 * nat/linux-namespaces.h: Rename include guard.
14101 * nat/linux-btrace.h: Rename include guard.
14102 * nat/glibc_thread_db.h: Rename include guard.
14103 * nat/gdb_thread_db.h: Rename include guard.
14104 * nat/gdb_ptrace.h: Rename include guard.
14105 * nat/fork-inferior.h: Rename include guard.
14106 * nat/amd64-linux-siginfo.h: Rename include guard.
14107 * nat/aarch64-sve-linux-sigcontext.h: Rename include guard.
14108 * nat/aarch64-sve-linux-ptrace.h: Rename include guard.
14109 * nat/aarch64-linux.h: Rename include guard.
14110 * nat/aarch64-linux-hw-point.h: Rename include guard.
14111 * mn10300-tdep.h: Add include guard.
14112 * mips-linux-tdep.h: Add include guard.
14113 * mi/mi-parse.h: Rename include guard.
14114 * mi/mi-out.h: Rename include guard.
14115 * mi/mi-main.h: Rename include guard.
14116 * mi/mi-interp.h: Rename include guard.
14117 * mi/mi-getopt.h: Rename include guard.
14118 * mi/mi-console.h: Rename include guard.
14119 * mi/mi-common.h: Rename include guard.
14120 * mi/mi-cmds.h: Rename include guard.
14121 * mi/mi-cmd-break.h: Rename include guard.
14122 * m2-lang.h: Add include guard.
14123 * location.h: Rename include guard.
14124 * linux-record.h: Rename include guard.
14125 * linux-nat.h: Add include guard.
14126 * linux-fork.h: Add include guard.
14127 * i386-darwin-tdep.h: Rename include guard.
14128 * hppa-linux-offsets.h: Add include guard.
14129 * guile/guile.h: Rename include guard.
14130 * guile/guile-internal.h: Rename include guard.
14131 * gnu-nat.h: Rename include guard.
14132 * gdb-stabs.h: Rename include guard.
14133 * frv-tdep.h: Add include guard.
14134 * f-lang.h: Add include guard.
14135 * event-loop.h: Add include guard.
14136 * darwin-nat.h: Rename include guard.
14137 * cp-abi.h: Rename include guard.
14138 * config/sparc/nm-sol2.h: Rename include guard.
14139 * config/nm-nto.h: Rename include guard.
14140 * config/nm-linux.h: Add include guard.
14141 * config/i386/nm-i386gnu.h: Rename include guard.
14142 * config/djgpp/nl_types.h: Rename include guard.
14143 * config/djgpp/langinfo.h: Rename include guard.
14144 * compile/gcc-cp-plugin.h: Add include guard.
14145 * compile/gcc-c-plugin.h: Add include guard.
14146 * compile/compile.h: Rename include guard.
14147 * compile/compile-object-run.h: Rename include guard.
14148 * compile/compile-object-load.h: Rename include guard.
14149 * compile/compile-internal.h: Rename include guard.
14150 * compile/compile-cplus.h: Rename include guard.
14151 * compile/compile-c.h: Rename include guard.
14152 * common/xml-utils.h: Rename include guard.
14153 * common/x86-xstate.h: Rename include guard.
14154 * common/version.h: Rename include guard.
14155 * common/vec.h: Rename include guard.
14156 * common/tdesc.h: Rename include guard.
14157 * common/selftest.h: Rename include guard.
14158 * common/scoped_restore.h: Rename include guard.
14159 * common/scoped_mmap.h: Rename include guard.
14160 * common/scoped_fd.h: Rename include guard.
14161 * common/safe-iterator.h: Rename include guard.
14162 * common/run-time-clock.h: Rename include guard.
14163 * common/refcounted-object.h: Rename include guard.
14164 * common/queue.h: Rename include guard.
14165 * common/ptid.h: Rename include guard.
14166 * common/print-utils.h: Rename include guard.
14167 * common/preprocessor.h: Rename include guard.
14168 * common/pathstuff.h: Rename include guard.
14169 * common/observable.h: Rename include guard.
14170 * common/netstuff.h: Rename include guard.
14171 * common/job-control.h: Rename include guard.
14172 * common/host-defs.h: Rename include guard.
14173 * common/gdb_wait.h: Rename include guard.
14174 * common/gdb_vecs.h: Rename include guard.
14175 * common/gdb_unlinker.h: Rename include guard.
14176 * common/gdb_unique_ptr.h: Rename include guard.
14177 * common/gdb_tilde_expand.h: Rename include guard.
14178 * common/gdb_sys_time.h: Rename include guard.
14179 * common/gdb_string_view.h: Rename include guard.
14180 * common/gdb_splay_tree.h: Rename include guard.
14181 * common/gdb_setjmp.h: Rename include guard.
14182 * common/gdb_ref_ptr.h: Rename include guard.
14183 * common/gdb_optional.h: Rename include guard.
14184 * common/gdb_locale.h: Rename include guard.
14185 * common/gdb_assert.h: Rename include guard.
14186 * common/filtered-iterator.h: Rename include guard.
14187 * common/filestuff.h: Rename include guard.
14188 * common/fileio.h: Rename include guard.
14189 * common/environ.h: Rename include guard.
14190 * common/common-utils.h: Rename include guard.
14191 * common/common-types.h: Rename include guard.
14192 * common/common-regcache.h: Rename include guard.
14193 * common/common-inferior.h: Rename include guard.
14194 * common/common-gdbthread.h: Rename include guard.
14195 * common/common-exceptions.h: Rename include guard.
14196 * common/common-defs.h: Rename include guard.
14197 * common/common-debug.h: Rename include guard.
14198 * common/cleanups.h: Rename include guard.
14199 * common/buffer.h: Rename include guard.
14200 * common/btrace-common.h: Rename include guard.
14201 * common/break-common.h: Rename include guard.
14202 * cli/cli-utils.h: Rename include guard.
14203 * cli/cli-style.h: Rename include guard.
14204 * cli/cli-setshow.h: Rename include guard.
14205 * cli/cli-script.h: Rename include guard.
14206 * cli/cli-interp.h: Rename include guard.
14207 * cli/cli-decode.h: Rename include guard.
14208 * cli/cli-cmds.h: Rename include guard.
14209 * charset-list.h: Add include guard.
14210 * buildsym-legacy.h: Rename include guard.
14211 * bfin-tdep.h: Add include guard.
14212 * ax.h: Rename include guard.
14213 * arm-linux-tdep.h: Add include guard.
14214 * arm-fbsd-tdep.h: Add include guard.
14215 * arch/xtensa.h: Rename include guard.
14216 * arch/tic6x.h: Add include guard.
14217 * arch/i386.h: Add include guard.
14218 * arch/arm.h: Rename include guard.
14219 * arch/arm-linux.h: Rename include guard.
14220 * arch/arm-get-next-pcs.h: Rename include guard.
14221 * arch/amd64.h: Add include guard.
14222 * arch/aarch64-insn.h: Rename include guard.
14223 * arch-utils.h: Rename include guard.
14224 * annotate.h: Add include guard.
14225 * amd64-darwin-tdep.h: Rename include guard.
14226 * aarch64-linux-tdep.h: Add include guard.
14227 * aarch64-fbsd-tdep.h: Add include guard.
14228 * aarch32-linux-nat.h: Add include guard.
14229
14230 2019-02-06 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14231
14232 * macrotab.c (macro_define_internal): New function that
14233 factorizes macro_define_object_internal and macro_define_function
14234 code.
14235 (macro_define_object_internal): Use macro_define_internal.
14236 (macro_define_function): Likewise.
14237
14238 2019-02-06 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14239
14240 * macrocmd.c (extract_identifier): Return
14241 a gdb::unique_xmalloc_ptr<char> instead of a char *, and update
14242 callers.
14243
14244 2019-02-06 John Baldwin <jhb@FreeBSD.org>
14245
14246 * fbsd-nat.c (fbsd_fetch_cmdline): Join arguments with spaces.
14247
14248 2019-02-05 Tom Tromey <tom@tromey.com>
14249
14250 * target.c (target_stack::unpush): Move assertion earlier.
14251
14252 2019-01-30 Tom Tromey <tom@tromey.com>
14253
14254 PR python/23615:
14255 * python/python.c (execute_gdb_command): Use gdbpy_allow_threads.
14256 (gdbpy_parse_and_eval): Likewise.
14257 * python/python-internal.h (gdbpy_allow_threads): New class.
14258
14259 2019-01-28 John Baldwin <jhb@FreeBSD.org>
14260
14261 * aarch64-fbsd-tdep.c (aarch64_fbsd_gregmap)
14262 (aarch64_fbsd_fpregmap): Move earlier.
14263 (AARCH64_MCONTEXT_REG_SIZE, AARCH64_MCONTEXT_FPREG_SIZE): Delete.
14264 (aarch64_fbsd_sigframe_init): Use trad_frame_set_reg_regmap
14265 instead of individual calls to trad_frame_set_reg_addr.
14266 * arm-fbsd-tdep.c (arm_fbsd_gregmap, arm_fbsd_vfpregmap): Move
14267 earlier.
14268 (ARM_MCONTEXT_REG_SIZE, ARM_MCONTEXT_VFP_REG_SIZE): Delete.
14269 (arm_fbsd_sigframe_init): Use trad_frame_set_reg_regmap
14270 instead of individual calls to trad_frame_set_reg_addr.
14271
14272 2019-01-28 Alan Hayward <alan.hayward@arm.com>
14273
14274 * CONTRIBUTE: Replace contribution list with wiki link.
14275
14276 2019-01-25 Tom Tromey <tom@tromey.com>
14277
14278 * Makefile.in (GDB_CFLAGS): Don't add -I for common.
14279
14280 2019-01-25 Tom Tromey <tom@tromey.com>
14281
14282 * xtensa-linux-nat.c: Fix common/ includes.
14283 * xml-support.h: Fix common/ includes.
14284 * xml-support.c: Fix common/ includes.
14285 * x86-linux-nat.c: Fix common/ includes.
14286 * windows-nat.c: Fix common/ includes.
14287 * varobj.h: Fix common/ includes.
14288 * varobj.c: Fix common/ includes.
14289 * value.c: Fix common/ includes.
14290 * valops.c: Fix common/ includes.
14291 * utils.c: Fix common/ includes.
14292 * unittests/xml-utils-selftests.c: Fix common/ includes.
14293 * unittests/utils-selftests.c: Fix common/ includes.
14294 * unittests/unpack-selftests.c: Fix common/ includes.
14295 * unittests/tracepoint-selftests.c: Fix common/ includes.
14296 * unittests/style-selftests.c: Fix common/ includes.
14297 * unittests/string_view-selftests.c: Fix common/ includes.
14298 * unittests/scoped_restore-selftests.c: Fix common/ includes.
14299 * unittests/scoped_mmap-selftests.c: Fix common/ includes.
14300 * unittests/scoped_fd-selftests.c: Fix common/ includes.
14301 * unittests/rsp-low-selftests.c: Fix common/ includes.
14302 * unittests/parse-connection-spec-selftests.c: Fix common/
14303 includes.
14304 * unittests/optional-selftests.c: Fix common/ includes.
14305 * unittests/offset-type-selftests.c: Fix common/ includes.
14306 * unittests/observable-selftests.c: Fix common/ includes.
14307 * unittests/mkdir-recursive-selftests.c: Fix common/ includes.
14308 * unittests/memrange-selftests.c: Fix common/ includes.
14309 * unittests/memory-map-selftests.c: Fix common/ includes.
14310 * unittests/lookup_name_info-selftests.c: Fix common/ includes.
14311 * unittests/function-view-selftests.c: Fix common/ includes.
14312 * unittests/environ-selftests.c: Fix common/ includes.
14313 * unittests/copy_bitwise-selftests.c: Fix common/ includes.
14314 * unittests/common-utils-selftests.c: Fix common/ includes.
14315 * unittests/cli-utils-selftests.c: Fix common/ includes.
14316 * unittests/array-view-selftests.c: Fix common/ includes.
14317 * ui-file.c: Fix common/ includes.
14318 * tui/tui-io.c: Fix common/ includes.
14319 * tracepoint.h: Fix common/ includes.
14320 * tracepoint.c: Fix common/ includes.
14321 * tracefile-tfile.c: Fix common/ includes.
14322 * top.h: Fix common/ includes.
14323 * top.c: Fix common/ includes.
14324 * thread.c: Fix common/ includes.
14325 * target/waitstatus.h: Fix common/ includes.
14326 * target/waitstatus.c: Fix common/ includes.
14327 * target.h: Fix common/ includes.
14328 * target.c: Fix common/ includes.
14329 * target-memory.c: Fix common/ includes.
14330 * target-descriptions.c: Fix common/ includes.
14331 * symtab.h: Fix common/ includes.
14332 * symfile.c: Fix common/ includes.
14333 * stap-probe.c: Fix common/ includes.
14334 * spu-linux-nat.c: Fix common/ includes.
14335 * sparc-nat.c: Fix common/ includes.
14336 * source.c: Fix common/ includes.
14337 * solib.c: Fix common/ includes.
14338 * solib-target.c: Fix common/ includes.
14339 * ser-unix.c: Fix common/ includes.
14340 * ser-tcp.c: Fix common/ includes.
14341 * ser-pipe.c: Fix common/ includes.
14342 * ser-base.c: Fix common/ includes.
14343 * selftest-arch.c: Fix common/ includes.
14344 * s12z-tdep.c: Fix common/ includes.
14345 * rust-exp.y: Fix common/ includes.
14346 * rs6000-aix-tdep.c: Fix common/ includes.
14347 * riscv-tdep.c: Fix common/ includes.
14348 * remote.c: Fix common/ includes.
14349 * remote-notif.h: Fix common/ includes.
14350 * remote-fileio.h: Fix common/ includes.
14351 * remote-fileio.c: Fix common/ includes.
14352 * regcache.h: Fix common/ includes.
14353 * regcache.c: Fix common/ includes.
14354 * record-btrace.c: Fix common/ includes.
14355 * python/python.c: Fix common/ includes.
14356 * python/py-type.c: Fix common/ includes.
14357 * python/py-inferior.c: Fix common/ includes.
14358 * progspace.h: Fix common/ includes.
14359 * producer.c: Fix common/ includes.
14360 * procfs.c: Fix common/ includes.
14361 * proc-api.c: Fix common/ includes.
14362 * printcmd.c: Fix common/ includes.
14363 * ppc-linux-nat.c: Fix common/ includes.
14364 * parser-defs.h: Fix common/ includes.
14365 * osdata.c: Fix common/ includes.
14366 * obsd-nat.c: Fix common/ includes.
14367 * nat/x86-linux.c: Fix common/ includes.
14368 * nat/x86-linux-dregs.c: Fix common/ includes.
14369 * nat/x86-dregs.h: Fix common/ includes.
14370 * nat/x86-dregs.c: Fix common/ includes.
14371 * nat/ppc-linux.c: Fix common/ includes.
14372 * nat/mips-linux-watch.h: Fix common/ includes.
14373 * nat/mips-linux-watch.c: Fix common/ includes.
14374 * nat/linux-waitpid.c: Fix common/ includes.
14375 * nat/linux-ptrace.h: Fix common/ includes.
14376 * nat/linux-ptrace.c: Fix common/ includes.
14377 * nat/linux-procfs.c: Fix common/ includes.
14378 * nat/linux-personality.c: Fix common/ includes.
14379 * nat/linux-osdata.c: Fix common/ includes.
14380 * nat/linux-namespaces.c: Fix common/ includes.
14381 * nat/linux-btrace.h: Fix common/ includes.
14382 * nat/linux-btrace.c: Fix common/ includes.
14383 * nat/fork-inferior.c: Fix common/ includes.
14384 * nat/amd64-linux-siginfo.c: Fix common/ includes.
14385 * nat/aarch64-sve-linux-ptrace.c: Fix common/ includes.
14386 * nat/aarch64-linux.c: Fix common/ includes.
14387 * nat/aarch64-linux-hw-point.h: Fix common/ includes.
14388 * nat/aarch64-linux-hw-point.c: Fix common/ includes.
14389 * namespace.h: Fix common/ includes.
14390 * mips-linux-tdep.c: Fix common/ includes.
14391 * minsyms.c: Fix common/ includes.
14392 * mi/mi-parse.h: Fix common/ includes.
14393 * mi/mi-main.c: Fix common/ includes.
14394 * mi/mi-cmd-env.c: Fix common/ includes.
14395 * memrange.h: Fix common/ includes.
14396 * memattr.c: Fix common/ includes.
14397 * maint.h: Fix common/ includes.
14398 * maint.c: Fix common/ includes.
14399 * main.c: Fix common/ includes.
14400 * machoread.c: Fix common/ includes.
14401 * location.c: Fix common/ includes.
14402 * linux-thread-db.c: Fix common/ includes.
14403 * linux-nat.c: Fix common/ includes.
14404 * linux-fork.c: Fix common/ includes.
14405 * inline-frame.c: Fix common/ includes.
14406 * infrun.c: Fix common/ includes.
14407 * inflow.c: Fix common/ includes.
14408 * inferior.h: Fix common/ includes.
14409 * inferior.c: Fix common/ includes.
14410 * infcmd.c: Fix common/ includes.
14411 * inf-ptrace.c: Fix common/ includes.
14412 * inf-child.c: Fix common/ includes.
14413 * ia64-linux-nat.c: Fix common/ includes.
14414 * i387-tdep.c: Fix common/ includes.
14415 * i386-tdep.c: Fix common/ includes.
14416 * i386-linux-tdep.c: Fix common/ includes.
14417 * i386-linux-nat.c: Fix common/ includes.
14418 * i386-go32-tdep.c: Fix common/ includes.
14419 * i386-fbsd-tdep.c: Fix common/ includes.
14420 * i386-fbsd-nat.c: Fix common/ includes.
14421 * guile/scm-type.c: Fix common/ includes.
14422 * guile/guile.c: Fix common/ includes.
14423 * go32-nat.c: Fix common/ includes.
14424 * gnu-nat.c: Fix common/ includes.
14425 * gdbthread.h: Fix common/ includes.
14426 * gdbarch-selftests.c: Fix common/ includes.
14427 * gdb_usleep.c: Fix common/ includes.
14428 * gdb_select.h: Fix common/ includes.
14429 * gdb_bfd.c: Fix common/ includes.
14430 * gcore.c: Fix common/ includes.
14431 * fork-child.c: Fix common/ includes.
14432 * findvar.c: Fix common/ includes.
14433 * fbsd-nat.c: Fix common/ includes.
14434 * event-top.c: Fix common/ includes.
14435 * event-loop.c: Fix common/ includes.
14436 * dwarf2read.c: Fix common/ includes.
14437 * dwarf2loc.c: Fix common/ includes.
14438 * dwarf2-frame.c: Fix common/ includes.
14439 * dwarf-index-cache.c: Fix common/ includes.
14440 * dtrace-probe.c: Fix common/ includes.
14441 * disasm-selftests.c: Fix common/ includes.
14442 * defs.h: Fix common/ includes.
14443 * csky-tdep.c: Fix common/ includes.
14444 * cp-valprint.c: Fix common/ includes.
14445 * cp-support.h: Fix common/ includes.
14446 * cp-support.c: Fix common/ includes.
14447 * corelow.c: Fix common/ includes.
14448 * completer.h: Fix common/ includes.
14449 * completer.c: Fix common/ includes.
14450 * compile/compile.c: Fix common/ includes.
14451 * compile/compile-loc2c.c: Fix common/ includes.
14452 * compile/compile-cplus-types.c: Fix common/ includes.
14453 * compile/compile-cplus-symbols.c: Fix common/ includes.
14454 * command.h: Fix common/ includes.
14455 * cli/cli-dump.c: Fix common/ includes.
14456 * cli/cli-cmds.c: Fix common/ includes.
14457 * charset.c: Fix common/ includes.
14458 * build-id.c: Fix common/ includes.
14459 * btrace.h: Fix common/ includes.
14460 * btrace.c: Fix common/ includes.
14461 * breakpoint.h: Fix common/ includes.
14462 * breakpoint.c: Fix common/ includes.
14463 * ax.h:
14464 (enum agent_op): Fix common/ includes.
14465 * ax-general.c (struct aop_map): Fix common/ includes.
14466 * ax-gdb.c: Fix common/ includes.
14467 * auxv.c: Fix common/ includes.
14468 * auto-load.c: Fix common/ includes.
14469 * arm-tdep.c: Fix common/ includes.
14470 * arch/riscv.c: Fix common/ includes.
14471 * arch/ppc-linux-common.c: Fix common/ includes.
14472 * arch/i386.c: Fix common/ includes.
14473 * arch/arm.c: Fix common/ includes.
14474 * arch/arm-linux.c: Fix common/ includes.
14475 * arch/arm-get-next-pcs.c: Fix common/ includes.
14476 * arch/amd64.c: Fix common/ includes.
14477 * arch/aarch64.c: Fix common/ includes.
14478 * arch/aarch64-insn.c: Fix common/ includes.
14479 * arch-utils.c: Fix common/ includes.
14480 * amd64-windows-tdep.c: Fix common/ includes.
14481 * amd64-tdep.c: Fix common/ includes.
14482 * amd64-sol2-tdep.c: Fix common/ includes.
14483 * amd64-obsd-tdep.c: Fix common/ includes.
14484 * amd64-nbsd-tdep.c: Fix common/ includes.
14485 * amd64-linux-tdep.c: Fix common/ includes.
14486 * amd64-linux-nat.c: Fix common/ includes.
14487 * amd64-fbsd-tdep.c: Fix common/ includes.
14488 * amd64-fbsd-nat.c: Fix common/ includes.
14489 * amd64-dicos-tdep.c: Fix common/ includes.
14490 * amd64-darwin-tdep.c: Fix common/ includes.
14491 * agent.c: Fix common/ includes.
14492 * ada-lang.h: Fix common/ includes.
14493 * ada-lang.c: Fix common/ includes.
14494 * aarch64-tdep.c: Fix common/ includes.
14495
14496 2019-01-25 Tom Tromey <tom@tromey.com>
14497
14498 * common/create-version.sh: Use common/version.h.
14499
14500 2019-01-24 Pedro Alves <palves@redhat.com>
14501
14502 * infrun.c (signal_stop, signal_print, signal_program)
14503 (signal_catch, signal_pass): Now arrays instead of pointers.
14504 (update_signals_program_target, do_target_resume)
14505 (signal_catch_update, handle_command, _initialize_infrun): Adjust.
14506 * linux-nat.c (linux_nat_target::pass_signals)
14507 (linux_nat_target::create_inferior, linux_nat_target::attach):
14508 Adjust.
14509 * linux-nat.h (linux_nat_target::pass_signals): Adjust.
14510 * nto-procfs.c (nto_procfs_target::pass_signals): Adjust.
14511 * procfs.c (procfs_target::pass_signals): Adjust.
14512 * record-full.c (record_full_target::resume): Adjust.
14513 * remote.c (remote_target::pass_signals)
14514 (remote_target::program_signals): Adjust.
14515 * target-debug.h (target_debug_print_signals): Now takes a
14516 gdb::array_view as parameter. Adjust.
14517 * target.h (target_ops) <pass_signals, program_signals>: Replace
14518 pointer and length parameters with gdb::array_view.
14519 (target_pass_signals, target_program_signals): Likewise.
14520 * target-delegates.c: Regenerate.
14521
14522 2019-01-24 Pedro Alves <palves@redhat.com>
14523
14524 * common/forward-scope-exit.h
14525 (forward_scope_exit::forward_scope_exit): Pass arguments to
14526 m_bind_function directly, instead of creating a std::bind and
14527 copying that.
14528
14529 2019-01-24 Alan Hayward <alan.hayward@arm.com>
14530
14531 * aarch64-tdep.c (aapcs_is_vfp_call_or_return_candidate_1): Check
14532 for static members.
14533 (pass_in_v_vfp_candidate): Likewise.
14534
14535 2019-01-23 Tom Tromey <tom@tromey.com>
14536 Pedro Alves <palves@redhat.com>
14537
14538 * regcache.c (class regcache_invalidator): Remove.
14539 (regcache::raw_write): Use make_scope_exit.
14540
14541 2019-01-23 Tom Tromey <tom@tromey.com>
14542
14543 * ui-out.h (class ui_out_emit_type): Update comment.
14544
14545 2019-01-23 Tom Tromey <tom@tromey.com>
14546
14547 * infrun.c (fetch_inferior_event): Update comment.
14548
14549 2019-01-23 Tom Tromey <tom@tromey.com>
14550 Pedro Alves <palves@redhat.com>
14551
14552 * infrun.c (reinstall_readline_callback_handler_cleanup): Remove
14553 parameter.
14554 (fetch_inferior_event): Use SCOPE_EXIT.
14555
14556
14557 2019-01-23 Tom Tromey <tom@tromey.com>
14558 Pedro Alves <palves@redhat.com>
14559
14560 * infrun.c (disable_thread_events): Delete.
14561 (stop_all_threads): Use SCOPE_EXIT.
14562
14563 2019-01-23 Tom Tromey <tom@tromey.com>
14564 Pedro Alves <palves@redhat.com>
14565
14566 * symfile.c: Include forward-scope-exit.h.
14567 (clear_symtab_users_cleanup): Replace forward declaration with
14568 a FORWARD_SCOPE_EXIT.
14569 (syms_from_objfile_1): Use the forward_scope_exit and
14570 gdb::optional instead of cleanup_function.
14571 (reread_symbols): Use the forward_scope_exit instead of
14572 cleanup_function.
14573 (clear_symtab_users_cleanup): Remove function.
14574
14575 2019-01-23 Tom Tromey <tom@tromey.com>
14576 Pedro Alves <palves@redhat.com>
14577
14578 * linux-nat.c: Include scope-exit.h.
14579 (cleanup_target_stop): Remove.
14580 (linux_nat_target::static_tracepoint_markers_by_strid): Use
14581 SCOPE_EXIT.
14582
14583 2019-01-23 Tom Tromey <tom@tromey.com>
14584 Pedro Alves <palves@redhat.com>
14585
14586 * infcall.c (cleanup_delete_std_terminate_breakpoint): Remove.
14587 (call_function_by_hand_dummy): Use SCOPE_EXIT.
14588
14589 2019-01-23 Tom Tromey <tom@tromey.com>
14590 Andrew Burgess <andrew.burgess@embecosm.com>
14591 Pedro Alves <palves@redhat.com>
14592
14593 * infrun.c (fetch_inferior_event): Use scope_exit.
14594 * utils.h (make_bpstat_clear_actions_cleanup): Don't declare.
14595 * top.c (execute_command): Use scope_exit.
14596 * breakpoint.c (bpstat_do_actions): Use scope_exit.
14597 * utils.c (do_bpstat_clear_actions_cleanup)
14598 (make_bpstat_clear_actions_cleanup): Remove.
14599
14600 2019-01-23 Tom Tromey <tom@tromey.com>
14601 Pedro Alves <palves@redhat.com>
14602
14603 * infrun.c: Include "common/scope-exit.h"
14604 (delete_just_stopped_threads_infrun_breakpoints_cleanup): Remove.
14605 (wait_for_inferior): Use SCOPE_EXIT.
14606 (fetch_inferior_event): Use scope_exit.
14607
14608 2019-01-23 Tom Tromey <tom@tromey.com>
14609 Pedro Alves <palves@redhat.com>
14610
14611 * breakpoint.c (create_breakpoint): Remove cleanup.
14612
14613 2019-01-23 Tom Tromey <tom@tromey.com>
14614 Andrew Burgess <andrew.burgess@embecosm.com>
14615 Pedro Alves <palves@redhat.com>
14616
14617 2019-01-23 Pedro Alves <palves@redhat.com>
14618
14619 * gdbarch-selftests.c (struct on_exit): Use SCOPE_EXIT.
14620
14621 2019-01-23 Pedro Alves <palves@redhat.com>
14622 Andrew Burgess <andrew.burgess@embecosm.com>
14623
14624 * gdbthread.h: Include "common/forward-scope-exit.h".
14625 (scoped_finish_thread_state): Redefine custom class in terms of
14626 forward_scope_exit.
14627
14628 2019-01-23 Pedro Alves <palves@redhat.com>
14629 Andrew Burgess <andrew.burgess@embecosm.com>
14630
14631 * common/forward-scope-exit.h: New file.
14632
14633 2019-01-23 Pedro Alves <palves@redhat.com>
14634 Andrew Burgess <andrew.burgess@embecosm.com>
14635 Tom Tromey <tom@tromey.com>
14636
14637 * common/scope-exit.h: New file.
14638
14639 2019-01-23 Pedro Alves <palves@redhat.com>
14640
14641 * common/preprocessor.h (ESC): Rename to ...
14642 (ESC_PARENS): ... this.
14643 * common/valid-expr.h (CHECK_VALID_EXPR_1, CHECK_VALID_EXPR_2)
14644 (CHECK_VALID_EXPR_3, CHECK_VALID_EXPR_4): Adjust.
14645
14646 2019-01-23 Tom Tromey <tom@tromey.com>
14647
14648 * language.h (class scoped_switch_to_sym_language_if_auto):
14649 Initialize m_lang in both cases.
14650
14651 2019-01-23 Alan Hayward <alan.hayward@arm.com>
14652
14653 * nat/aarch64-linux.c (aarch64_linux_new_thread): Replace XNEW
14654 with XCNEW.
14655
14656 2019-01-22 Tom Tromey <tom@tromey.com>
14657
14658 * corelow.c: Do not include sys/file.h.
14659
14660 2019-01-22 Tom Tromey <tom@tromey.com>
14661
14662 * tui/tui-wingeneral.h: Include gdb_curses.h.
14663
14664 2019-01-22 Tom Tromey <tom@tromey.com>
14665
14666 * source-cache.h (class source_cache) <get_source_lines,
14667 get_plain_source_lines, extract_lines>: Rename "lines" parameter.
14668
14669 2019-01-22 Tom Tromey <tom@tromey.com>
14670
14671 * remote-fileio.h (struct remote_target): Declare.
14672
14673 2019-01-22 Tom Tromey <tom@tromey.com>
14674
14675 * python/py-arch.c: Do not include py-ref.h.
14676 * python/py-bpevent.c: Do not include py-ref.h.
14677 * python/py-cmd.c: Do not include py-ref.h.
14678 * python/py-continueevent.c: Do not include py-ref.h.
14679 * python/py-event.h: Do not include py-ref.h.
14680 * python/py-evtregistry.c: Do not include py-ref.h.
14681 * python/py-finishbreakpoint.c: Do not include py-ref.h.
14682 * python/py-frame.c: Do not include py-ref.h.
14683 * python/py-framefilter.c: Do not include py-ref.h.
14684 * python/py-function.c: Do not include py-ref.h.
14685 * python/py-infevents.c: Do not include py-ref.h.
14686 * python/py-linetable.c: Do not include py-ref.h.
14687 * python/py-objfile.c: Do not include py-ref.h.
14688 * python/py-param.c: Do not include py-ref.h.
14689 * python/py-prettyprint.c: Do not include py-ref.h.
14690 * python/py-progspace.c: Do not include py-ref.h.
14691 * python/py-symbol.c: Do not include py-ref.h.
14692 * python/py-symtab.c: Do not include py-ref.h.
14693 * python/py-type.c: Do not include py-ref.h.
14694 * python/py-unwind.c: Do not include py-ref.h.
14695 * python/py-utils.c: Do not include py-ref.h.
14696 * python/py-value.c: Do not include py-ref.h.
14697 * python/py-varobj.c: Do not include py-ref.h.
14698 * python/py-xmethods.c: Do not include py-ref.h.
14699 * python/python.c: Do not include py-ref.h.
14700 * varobj.c: Do not include py-ref.h.
14701
14702 2019-01-22 Tom Tromey <tom@tromey.com>
14703
14704 * objfiles.h (struct objfile_per_bfd_storage): Use "struct"
14705 keyword for bcache.
14706
14707 2019-01-22 Tom Tromey <tom@tromey.com>
14708
14709 * compile/compile-cplus-types.c: Remove a comment by #include.
14710
14711 2019-01-22 Tom Tromey <tom@tromey.com>
14712
14713 * compile/gcc-c-plugin.h: Include compile-internal.h.
14714
14715 2019-01-22 Tom Tromey <tom@tromey.com>
14716
14717 * stabsread.c (EXTERN): Do not define.
14718 (symnum, next_symbol_text_func, processing_gcc_compilation)
14719 (within_function, global_sym_chain, global_stabs)
14720 (previous_stab_code, this_object_header_files)
14721 (n_this_object_header_files)
14722 (n_allocated_this_object_header_files): Define.
14723 * stabsread.h (EXTERN): Never define. Use "extern".
14724
14725 2019-01-22 Philippe Waroquiers <philippe.waroquiers@skynet.be>
14726
14727 * event-top.c (handle_line_of_input): use unique_xmalloc_ptr for
14728 history_value.
14729
14730 2019-01-21 Tom Tromey <tom@tromey.com>
14731
14732 * ui-out.c: Fix includes.
14733 * tui/tui-source.c: Fix includes.
14734 * target.c: Fix includes.
14735 * remote.c: Fix includes.
14736 * regcache.c: Fix includes.
14737 * python/py-block.c: Fix includes.
14738 * printcmd.c: Fix includes.
14739 * or1k-tdep.c: Fix includes.
14740 * mi/mi-main.c: Fix includes.
14741 * m32r-tdep.c: Fix includes.
14742 * csky-tdep.c: Fix includes.
14743 * compile/compile-cplus-types.c: Fix includes.
14744 * cli/cli-interp.c: Fix includes.
14745
14746 2019-01-21 Alan Hayward <alan.hayward@arm.com>
14747
14748 * aarch64-tdep.c (aapcs_is_vfp_call_or_return_candidate_1): Check
14749 for padding.
14750
14751 2019-01-16 Tom Tromey <tom@tromey.com>
14752
14753 * objfiles.h (struct minimal_symbol_iterator): Rename. Move
14754 earlier.
14755 (struct objfile) <msymbols_range>: Move from top level.
14756 <msymbols>: New method.
14757 (class objfile_msymbols): Remove.
14758 * symtab.c (default_collect_symbol_completion_matches_break_on):
14759 Update.
14760 * symmisc.c (dump_msymbols): Update.
14761 * stabsread.c (scan_file_globals): Update.
14762 * objc-lang.c (info_selectors_command, info_classes_command)
14763 (find_methods): Update.
14764 * minsyms.c (find_solib_trampoline_target): Update.
14765 * hppa-tdep.c (hppa_lookup_stub_minimal_symbol): Update.
14766 * coffread.c (coff_symfile_read): Update.
14767 * ada-lang.c (ada_lookup_simple_minsym)
14768 (ada_collect_symbol_completion_matches): Update.
14769
14770 2019-01-16 Tom Tromey <tom@tromey.com>
14771
14772 * objfiles.h (class objfile_msymbols) <iterator>: Change argument
14773 type. Remove no-argument constructor.
14774 <iterator::operator++>: Simplify.
14775 <begin>: Update.
14776 <end>: Use minimal_symbol_count.
14777
14778 2019-01-16 Tom Tromey <tom@tromey.com>
14779
14780 * objfiles.h (struct objfile) <psymtabs>: New method.
14781 (class objfile_psymtabs): Remove.
14782 * psymtab.h (class psymtab_storage) <partial_symtab_range>: New
14783 typedef.
14784 <range>: New method.
14785 (require_partial_symbols): Change return type.
14786 * psymtab.c (require_partial_symbols)
14787 (psym_expand_symtabs_matching): Update.
14788 * mdebugread.c (parse_partial_symbols): Update.
14789 * dbxread.c (dbx_end_psymtab): Update.
14790
14791 2019-01-15 Tom Tromey <tom@tromey.com>
14792
14793 * symtab.c (lookup_objfile_from_block)
14794 (lookup_symbol_in_objfile_symtabs)
14795 (basic_lookup_transparent_type_1, find_pc_sect_compunit_symtab)
14796 (find_line_symtab, info_sources_command)
14797 (default_collect_symbol_completion_matches_break_on)
14798 (make_source_files_completion_list): Update.
14799 * symmisc.c (print_objfile_statistics, dump_objfile)
14800 (maintenance_print_symbols, maintenance_info_symtabs)
14801 (maintenance_check_symtabs, maintenance_info_line_tables):
14802 Update.
14803 * source.c (select_source_symtab)
14804 (forget_cached_source_info_for_objfile): Update.
14805 * objfiles.h (class objfile_compunits): Remove.
14806 (struct objfile) <compunits_range>: New typedef.
14807 (compunits): New method.
14808 * objfiles.c (objfile_relocate1): Update.
14809 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Update.
14810 * maint.c (count_symtabs_and_blocks): Update.
14811 * linespec.c (iterate_over_all_matching_symtabs): Update.
14812 * cp-support.c (add_symbol_overload_list_qualified): Update.
14813 * coffread.c (coff_symtab_read): Update.
14814 * ada-lang.c (add_nonlocal_symbols)
14815 (ada_collect_symbol_completion_matches)
14816 (ada_add_global_exceptions): Update.
14817
14818 2019-01-15 Tom Tromey <tom@tromey.com>
14819
14820 * progspace.h (program_space) <objfiles_safe_range>: New
14821 typedef.
14822 <objfiles_safe>: New method.
14823 * objfiles.h (class all_objfiles_safe): Remove.
14824 * objfiles.c (free_all_objfiles, objfile_purge_solibs): Update.
14825 * jit.c (jit_inferior_exit_hook): Update.
14826
14827 2019-01-17 Tom Tromey <tom@tromey.com>
14828
14829 * progspace.h (program_space) <objfiles_range>: New typedef.
14830 <objfiles>: New method.
14831 <objfiles_head>: Rename from objfiles.
14832 (object_files): Update.
14833 * guile/scm-progspace.c (gdbscm_progspace_objfiles): Update.
14834 * guile/scm-pretty-print.c
14835 (ppscm_find_pretty_printer_from_objfiles): Update.
14836 * guile/scm-objfile.c (gdbscm_objfiles): Update.
14837 * python/py-xmethods.c (gdbpy_get_matching_xmethod_workers):
14838 Update.
14839 * python/py-progspace.c (pspy_get_objfiles): Update.
14840 * python/py-prettyprint.c (find_pretty_printer_from_objfiles):
14841 Update.
14842 * python/py-objfile.c (objfpy_lookup_objfile_by_name)
14843 (objfpy_lookup_objfile_by_build_id): Update.
14844 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Update.
14845 * windows-tdep.c (windows_iterate_over_objfiles_in_search_order):
14846 Update.
14847 * symtab.c (iterate_over_symtabs, matching_obj_sections)
14848 (expand_symtab_containing_pc, lookup_objfile_from_block)
14849 (lookup_static_symbol, basic_lookup_transparent_type)
14850 (find_pc_sect_compunit_symtab, find_symbol_at_address)
14851 (find_line_symtab, info_sources_command)
14852 (default_collect_symbol_completion_matches_break_on)
14853 (make_source_files_completion_list, find_main_name): Update.
14854 * symmisc.c (print_symbol_bcache_statistics)
14855 (print_objfile_statistics, maintenance_print_symbols)
14856 (maintenance_print_msymbols, maintenance_print_objfiles)
14857 (maintenance_info_symtabs, maintenance_check_symtabs)
14858 (maintenance_expand_symtabs, maintenance_info_line_tables):
14859 Update.
14860 * symfile.c (remove_symbol_file_command, overlay_invalidate_all)
14861 (find_pc_overlay, find_pc_mapped_section, list_overlays_command)
14862 (map_overlay_command, unmap_overlay_command)
14863 (simple_overlay_update, expand_symtabs_matching)
14864 (map_symbol_filenames): Update.
14865 * symfile-debug.c (set_debug_symfile): Update.
14866 * spu-tdep.c (spu_overlay_update, spu_objfile_from_frame):
14867 Update.
14868 * source.c (select_source_symtab, forget_cached_source_info):
14869 Update.
14870 * solib.c (solib_read_symbols): Update.
14871 * solib-spu.c (append_ocl_sos): Update.
14872 * psymtab.c (maintenance_print_psymbols)
14873 (maintenance_info_psymtabs, maintenance_check_psymtabs): Update.
14874 * probe.c (parse_probes_in_pspace, find_probe_by_pc): Update.
14875 * printcmd.c (info_symbol_command): Update.
14876 * ppc-linux-tdep.c (ppc_linux_spe_context_inferior_created):
14877 Update.
14878 * objfiles.h (class all_objfiles): Remove.
14879 * objfiles.c (have_partial_symbols, have_full_symbols)
14880 (have_minimal_symbols, qsort_cmp, update_section_map)
14881 (shared_objfile_contains_address_p)
14882 (default_iterate_over_objfiles_in_search_order): Update.
14883 * objc-lang.c (info_selectors_command, info_classes_command)
14884 (find_methods): Update.
14885 * minsyms.c (find_solib_trampoline_target): Update.
14886 * maint.c (maintenance_info_sections)
14887 (maintenance_translate_address, count_symtabs_and_blocks):
14888 Update.
14889 * main.c (captured_main_1): Update.
14890 * linux-thread-db.c (try_thread_db_load_from_pdir)
14891 (has_libpthread): Update.
14892 * linespec.c (iterate_over_all_matching_symtabs)
14893 (search_minsyms_for_name): Update.
14894 * jit.c (jit_find_objf_with_entry_addr): Update.
14895 * hppa-tdep.c (find_unwind_entry)
14896 (hppa_lookup_stub_minimal_symbol): Update.
14897 * gcore.c (gcore_create_callback, objfile_find_memory_regions):
14898 Update.
14899 * elfread.c (elf_gnu_ifunc_resolve_by_cache)
14900 (elf_gnu_ifunc_resolve_by_got): Update.
14901 * dwarf2-frame.c (dwarf2_frame_find_fde): Update.
14902 * dwarf-index-write.c (save_gdb_index_command): Update.
14903 * cp-support.c (add_symbol_overload_list_qualified): Update.
14904 * breakpoint.c (create_overlay_event_breakpoint)
14905 (create_longjmp_master_breakpoint)
14906 (create_std_terminate_master_breakpoint)
14907 (create_exception_master_breakpoint): Update.
14908 * blockframe.c (find_pc_partial_function): Update.
14909 * ada-lang.c (ada_lookup_simple_minsym, add_nonlocal_symbols)
14910 (ada_collect_symbol_completion_matches)
14911 (ada_add_global_exceptions): Update.
14912
14913 2019-01-17 Tom Tromey <tom@tromey.com>
14914
14915 * solib-target.c (lm_info_target_p): Remove typedef. Don't
14916 declare VEC.
14917 (solib_target_parse_libraries): Change return type.
14918 (library_list_start_segment, library_list_start_section)
14919 (library_list_end_library, library_list_start_library); Update.
14920 (solib_target_free_library_list): Remove.
14921 (solib_target_parse_libraries): Remove cleanup. Change return
14922 type.
14923 (solib_target_current_sos): Update.
14924
14925 2019-01-17 Tom Tromey <tromey@bapiya>
14926
14927 * valprint.c: Replace "the the" with "the".
14928 * symtab.c: Replace "the the" with "the".
14929 * solib.c: Replace "the the" with "the".
14930 * solib-dsbt.c: Replace "the the" with "the".
14931 * linespec.c: Replace "the the" with "the".
14932 * dwarf2loc.h: Replace "the the" with "the".
14933 * amd64-windows-tdep.c: Replace "the the" with "the".
14934 * aarch64-tdep.c: Replace "the the" with "the".
14935
14936 2019-01-16 Keith Seitz <keiths@redhat.com>
14937
14938 PR gdb/23773
14939 * dwarf2read.c (dwarf2_cu) <ancestor>: New field.
14940 <builder>: Rename to ..
14941 <m_builder>: ... this and make private.
14942 (dwarf2_cu::get_builder): New method. Change all users of
14943 `builder' to use this method.
14944 (dwarf2_start_symtab): Move to ...
14945 (dwarf2_cu::start_symtab): ... here. Update all callers
14946 (setup_type_unit_groups): Move to ...
14947 (dwarf2_cu::setup_type_unit_groups): ... here. Update all
14948 callers.
14949 (dwarf2_cu::reset_builder): New method.
14950 (process_full_compunit, process_full_type_unit): Use
14951 dwarf2_cu::reset_builder.
14952 (follow_die_offset): Record the ancestor CU if it is different
14953 from the followed DIE's CU.
14954 (follow_die_sig_1): Likewise.
14955
14956 2019-01-15 Tom Tromey <tom@tromey.com>
14957
14958 * remote.c (class remote_state) <buf>: Now a char_vector.
14959 <buf_size>: Remove.
14960 (remote_target::getpkt): Change type of buf. Remove sizeof_buf
14961 parameter.
14962 (remote_target::getpkt_or_notif_sane_1)
14963 (remote_target::getpkt_sane)
14964 (remote_target::getpkt_or_notif_sane): Likewise.
14965 (class remote_target) <putpkt>: New overload.
14966 (remote_target::read_frame): Change type of "buf_p". Remove
14967 sizeof_p parameter.
14968 (packet_ok): New overload.
14969 (packet_check_result): New overload.
14970 Update all uses.
14971
14972 2019-01-14 Tom Tromey <tom@tromey.com>
14973
14974 * remote-notif.c (handle_notification, remote_notif_ack)
14975 (remote_notif_parse): Make "buf" const.
14976 * remote-notif.h (struct notif_client) <parse, ack>: Make "buf"
14977 const.
14978 (remote_notif_parse, remote_notif_ack, handle_notification):
14979 Likewise.
14980 * remote.c (remote_notif_stop_parse): Make "buf" const.
14981 (remote_target::remote_parse_stop_reply): Make "buf" const.
14982 (remote_notif_stop_ack): Make "buf" const.
14983
14984 2019-01-14 Tom Tromey <tom@tromey.com>
14985
14986 * remote.c (remote_console_output): Make parameter const.
14987
14988 2019-01-14 Tom Tromey <tom@tromey.com>
14989
14990 * target-debug.h (target_debug_print_signals): Constify.
14991 * nto-procfs.c (nto_procfs_target::pass_signals): Update.
14992 * procfs.c (procfs_target::pass_signals): Update.
14993 * linux-nat.c (linux_nat_target::pass_signals): Update.
14994 * linux-nat.h (class linux_nat_target) <pass_signals>: Update.
14995 * target-delegates.c: Rebuild.
14996 * remote.c (remote_target::program_signals): Update.
14997 (remote_target::pass_signals): Update.
14998 * target.c (target_pass_signals): Constify argument.
14999 (target_program_signals): Likewise.
15000 * target.h (struct target_ops) <pass_signals, program_signals>:
15001 Constify argument.
15002 (target_pass_signals, target_program_signals): Constify argument.
15003
15004 2019-01-14 Tom Tromey <tom@tromey.com>
15005
15006 PR tui/28819:
15007 * tui/tui-io.c (gdb_wgetch): Print \r when needed.
15008
15009 2019-01-14 Pedro Franco de Carvalho <pedromfc@linux.ibm.com>
15010
15011 * ppc-tdep.h (struct gdbarch_tdep) <ppc_v0_alias_regnum>: New
15012 field.
15013 * rs6000-tdep.c: Include reggroups.h.
15014 (IS_V_ALIAS_PSEUDOREG): Define.
15015 (rs6000_register_name): Return names for the "vX" aliases.
15016 (rs6000_pseudo_register_type): Return type for the "vX" aliases.
15017 (rs6000_pseudo_register_reggroup_p): Restore. Handle "vX"
15018 aliases. Call default_register_reggroup_p for all other
15019 pseudo-registers.
15020 (v_alias_pseudo_register_read, v_alias_pseudo_register_write):
15021 New functions.
15022 (rs6000_pseudo_register_read, rs6000_pseudo_register_write):
15023 Handle "vX" aliases.
15024 (v_alias_pseudo_register_collect): New function.
15025 (rs6000_ax_pseudo_register_collect): Handle "vX" aliases.
15026 (rs6000_gdbarch_init): Initialize "vX" aliases as
15027 pseudo-registers. Restore registration of
15028 rs6000_pseudo_register_reggroup_p with
15029 set_tdesc_pseudo_register_reggroup_p.
15030
15031 2019-01-13 Max Filippov <jcmvbkbc@gmail.com>
15032
15033 * xtensa-linux-tdep.c (xtensa_linux_init_abi): Update
15034 tdep->num_pseudo_regs. Add calls to set_gdbarch_num_regs and
15035 set_gdbarch_num_pseudo_regs.
15036
15037 2019-01-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
15038
15039 * cli/cli-style.h (class cli_style_option): <add_setshow_commands>
15040 Remove arg prefixname, add do_set and do_show.
15041 Add member functions set_list and show_list.
15042 * cli/cli-style.c (class cli_style_option): Update accordingly.
15043 (style_set_list): Move to file scope.
15044 (style_show_list): Likewise.
15045 (set_style): Call help_list.
15046 (show_style): Call cmd_show_list.
15047 (_initialize_cli_style): New macro STYLE_ADD_SETSHOW_COMMANDS.
15048 Update to use the new macro.
15049
15050 2019-10-12 Joel Brobecker <brobecker@adacore.com>
15051
15052 * ada-lang.c (_initialize_ada_language): Expand the help text
15053 for the "catch exception" command.
15054
15055 2019-01-12 Philippe Waroquiers <philippe.waroquiers@skynet.be>
15056
15057 * symtab.c (matching_obj_sections): Initialize obj,
15058 declare it closer to its usage.
15059
15060 2019-01-10 Tom Tromey <tom@tromey.com>
15061
15062 * thread-iter.h (inf_threads_iterator): Use next_iterator.
15063 (basic_inf_threads_range): Remove.
15064 (inf_threads_range, inf_non_exited_threads_range)
15065 (safe_inf_threads_range): Use next_adapter.
15066
15067 2019-01-10 Keith Seitz <keiths@redhat.com>
15068
15069 PR gdb/23712
15070 PR symtab/23010
15071 * dwarf2read.c (dw2_add_symbol_to_list): Remove.
15072 (fixup_go_packaging, new_symbol): Use add_symbol_to_list.
15073
15074 2019-01-10 Keith Seitz <keiths@redhat.com>
15075
15076 PR gdb/23712
15077 PR symtab/23010
15078 * dictionary.c (pending_to_vector): Remove.
15079 (dict_create_hashed_1, dict_create_linear_1, dict_add_pending_1):
15080 Remove _1 suffix, replacing functions of the same name. Update
15081 all callers.
15082 (dict_create_hashed, dict_create_hashed_expandable)
15083 (dict_create_linear, dict_create_linear_expandable, dict_free)
15084 (dict_add_symbol, dict_add_pending, dict_size, dict_empty):
15085 Make functions static.
15086
15087 2019-01-10 Keith Seitz <keiths@redhat.com>
15088
15089 PR gdb/23712
15090 PR symtab/23010
15091 * dictionary.h (struct dictionary): Replace declaration with
15092 multidictionary.
15093 (dict_create_hashed, dict_create_hashed_expandable)
15094 (dict_create_linear, dict_create_linear_expandable)
15095 (dict_free, dict_add_symbol, dict_add_pending, dict_empty)
15096 (dict_iterator_first, dict_iterator_next, dict_iter_match_first)
15097 (dict_iter_match_next, dict_size): Rename to "mdict_" versions
15098 taking multidictionary argument.
15099 [ALL_DICT_SYMBOLS]: Update for multidictionary.
15100 * block.h (struct block) <dict>: Change to multidictionary
15101 and rename `multidict'.
15102 * block.c, buildsym.c, jit.c, mdebugread.c, objfiles.c,
15103 symmisc.c: Update all dictionary references to multidictionary.
15104
15105 2019-01-10 Keith Seitz <keiths@redhat.com>
15106
15107 PR gdb/23712
15108 PR symtab/23010
15109 * dictionary.c: Include unordered_map.
15110 (pending_to_vector): New function.
15111 (dict_create_hashed_1, dict_create_linear_1, dict_add_pending_1):
15112 Rewrite the non-"_1" functions to take vector instead
15113 of linked list.
15114 (dict_create_hashed, dict_create_linear, dict_add_pending): Use the
15115 "new" _1 versions of the same name.
15116 (multidictionary): Define.
15117 (std::hash<enum language): New definition.
15118 (collate_pending_symbols_by_language, mdict_create_hashed)
15119 (mdict_create_hashed_expandable, mdict_create_linear)
15120 (mdict_create_linear_expandable, mdict_free)
15121 (find_language_dictionary, create_new_language_dictionary)
15122 (mdict_add_symbol, mdict_add_pending, mdict_iterator_first)
15123 (mdict_iterator_next, mdict_iter_match_first, mdict_iter_match_next)
15124 (mdict_size, mdict_empty): New functions.
15125 * dictionary.h (mdict_iterator): Define.
15126
15127 2019-01-10 Pedro Alves <palves@redhat.com>
15128
15129 * breakpoint.c (read_uploaded_action)
15130 (create_tracepoint_from_upload): Adjust to use
15131 gdb::unique_xmalloc_ptr.
15132 * ctf.c (ctf_write_uploaded_tp):
15133 (SET_ARRAY_FIELD): Use emplace_back.
15134 (SET_STRING_FIELD): Adjust to use gdb::unique_xmalloc_ptr.
15135 * tracefile-tfile.c (tfile_write_uploaded_tp):
15136 * tracepoint.c (parse_tracepoint_definition): Adjust to use
15137 gdb::unique_xmalloc_ptr.
15138 * tracepoint.h (struct uploaded_tp) <cond, actions, step_actions,
15139 at_string, cond_string, cmd_strings>: Replace char pointers
15140 with gdb::unique_xmalloc_ptr.
15141
15142 2019-01-10 Pedro Alves <palves@redhat.com>
15143
15144 * solib-target.c (library_list_start_library): Don't xstrdup name.
15145
15146 2019-01-10 Pedro Alves <palves@redhat.com>
15147
15148 * mdebugread.c (parse_partial_symbols): Use
15149 gdb::unique_xmalloc_ptr to manage heap-allocated 'stabsstring'.
15150
15151 2019-01-10 Andrew Burgess <andrew.burgess@embecosm.com>
15152
15153 * linux-fork.c (scoped_switch_fork_info)
15154 <~scoped_switch_fork_info>: Fix incorrect variable name.
15155
15156 2019-01-10 Andrew Burgess <andrew.burgess@embecosm.com>
15157
15158 * linux-fork.c (scoped_switch_fork_info)
15159 <scoped_switch_fork_info>: Make explicit.
15160 <~scoped_switch_fork_info>: Wrap core in TRY/CATCH.
15161
15162 2019-01-10 Tom Tromey <tom@tromey.com>
15163
15164 * objfiles.h (objfile::reset_psymtabs): Update.
15165 * objfiles.c (objfile::objfile): Update.
15166 * psymtab.h (psymtab_storage::obstack): Update.
15167 (psymtab_storage::m_obstack): Use gdb::optional.
15168 (class psymtab_storage): Update comment. Remove objfile
15169 parameter.
15170 * psymtab.c (psymtab_storage::psymtab_storage): Update.
15171
15172 2019-01-10 Tom Tromey <tom@tromey.com>
15173
15174 * psymtab.h (psymtab_storage::allocate_psymtab): New method.
15175 <free_psymtabs>: Now private.
15176 * psymtab.c (psymtab_storage::allocate_psymtab): Implement.
15177 (allocate_psymtab): Use new method.
15178
15179 2019-01-10 Tom Tromey <tom@tromey.com>
15180
15181 * xcoffread.c (xcoff_end_psymtab): Use allocate_dependencies.
15182 * psymtab.h (psymtab_storage::allocate_dependencies): New method.
15183 * mdebugread.c (parse_partial_symbols): Use
15184 allocate_dependencies.
15185 * dwarf2read.c (dwarf2_create_include_psymtab): Use
15186 allocate_dependencies.
15187 (process_psymtab_comp_unit_reader)
15188 (build_type_psymtab_dependencies): Likewise.
15189 * dbxread.c (dbx_end_psymtab): Use allocate_dependencies.
15190
15191 2019-01-10 Tom Tromey <tom@tromey.com>
15192
15193 * psymtab.c (add_psymbol_to_bcache): Pass psymtab obstack to
15194 PSYMBOL_SET_LANGUAGE.
15195 (allocate_psymtab): Allocate psymtab on the psymtab obstack.
15196
15197 2019-01-10 Tom Tromey <tom@tromey.com>
15198
15199 * psymtab.h (psymtab_storage::obstack): New method.
15200 <m_obstack>: Rename from obstack; now private.
15201 * psymtab.c (psymtab_storage): Update.
15202 * dwarf2read.c (create_addrmap_from_index)
15203 (create_addrmap_from_aranges, dwarf2_build_psymtabs_hard):
15204 Update.
15205
15206 2019-01-10 Tom Tromey <tom@tromey.com>
15207
15208 * symfile.c (reread_symbols): Call objfile->reset_psymtabs.
15209 * objfiles.h (objfile::reset_psymtabs): New method.
15210
15211 2019-01-10 Tom Tromey <tom@tromey.com>
15212
15213 * symmisc.c (print_symbol_bcache_statistics): Update.
15214 (print_objfile_statistics): Update.
15215 * symfile.c (reread_symbols): Update.
15216 * psymtab.h (class psymtab_storage): New.
15217 * psymtab.c (psymtab_storage): New constructor.
15218 (~psymtab_storage): New destructor.
15219 (require_partial_symbols): Update.
15220 (ALL_OBJFILE_PSYMTABS_REQUIRED): Rewrite.
15221 (find_pc_sect_psymtab, find_pc_sect_psymbol)
15222 (match_partial_symbol, lookup_partial_symbol, dump_psymtab)
15223 (psym_dump, recursively_search_psymtabs, psym_has_symbols)
15224 (psym_find_compunit_symtab_by_address, sort_pst_symbols)
15225 (start_psymtab_common, end_psymtab_common)
15226 (add_psymbol_to_bcache, add_psymbol_to_list, init_psymbol_list)
15227 (allocate_psymtab): Update.
15228 (psymtab_storage::discard_psymtab): Rename from discard_psymtab.
15229 Update.
15230 (dump_psymtab_addrmap, maintenance_print_psymbols)
15231 (maintenance_check_psymtabs): Update.
15232 (class objfile_psymtabs): Move to objfiles.h.
15233 * psympriv.h (discard_psymtab): Now inline.
15234 (psymtab_discarder::psymtab_discarder): Update.
15235 (psymtab_discarder::~psymtab_discarder): Update.
15236 (ALL_OBJFILE_PSYMTABS): Rewrite.
15237 * objfiles.h (struct objfile) <psymtabs, psymtabs_addrmap,
15238 free_psymtabs, psymbol_cache, global_psymbols, static_psymbols>:
15239 Remove fields.
15240 <partial_symtabs>: New field.
15241 (class objfile_psymtabs): Move from psymtab.h. Update.
15242 * objfiles.c (objfile::objfile): Initialize partial_symtabs, not
15243 psymbol_cache.
15244 (objfile::~objfile): Don't destroy psymbol_cache.
15245 * mdebugread.c (parse_partial_symbols): Update.
15246 * dwarf2read.c (create_addrmap_from_index)
15247 (create_addrmap_from_aranges, dw2_find_pc_sect_compunit_symtab)
15248 (process_psymtab_comp_unit_reader, dwarf2_build_psymtabs_hard)
15249 (add_partial_subprogram, dwarf2_ranges_read): Update.
15250 * dwarf-index-write.c (write_address_map)
15251 (write_one_signatured_type, recursively_write_psymbols)
15252 (class debug_names, class debug_names, write_psymtabs_to_index):
15253 Update.
15254
15255 2019-01-10 Tom Tromey <tom@tromey.com>
15256
15257 * symtab.h (SYMBOL_SET_NAMES): Update.
15258 (symbol_set_names): Update.
15259 (MSYMBOL_SET_NAMES): Update.
15260 * symtab.c (symbol_set_names): Change argument to be an
15261 objfile_per_bfd_storage.
15262 * psymtab.c (add_psymbol_to_bcache): Update.
15263 * psympriv.h (PSYMBOL_SET_NAMES): Take per_bfd argument.
15264
15265 2019-01-10 Tom Tromey <tom@tromey.com>
15266
15267 * symtab.c (create_demangled_names_hash): Change argument to be an
15268 objfile_per_bfd_storage.
15269 (symbol_set_names): Update.
15270
15271 2019-01-10 Tom Tromey <tom@tromey.com>
15272
15273 * xcoffread.c (xcoff_initial_scan): Unconditionally call
15274 init_psymbol_list.
15275 * psymtab.c (init_psymbol_list): Do nothing if already called.
15276 * psympriv.h (init_psymbol_list): Add comment.
15277 * dwarf2read.c (dwarf2_build_psymtabs): Unconditionally call
15278 init_psymbol_list.
15279 * dbxread.c (dbx_symfile_read): Unconditionally call
15280 init_psymbol_list.
15281
15282 2019-01-10 Tom Tromey <tom@tromey.com>
15283
15284 * xcoffread.c (scan_xcoff_symtab): Update.
15285 * psymtab.c (add_psymbol_to_list): Replace "list" parameter with
15286 "where".
15287 * mdebugread.c (parse_partial_symbols)
15288 (handle_psymbol_enumerators): Update.
15289 * dwarf2read.c (add_partial_symbol, load_partial_dies): Update.
15290 * dbxread.c (read_dbx_symtab): Update.
15291 * psympriv.h (psymbol_placement): New enum.
15292 (add_psymbol_to_list): Update.
15293
15294 2019-01-10 Tom Tromey <tom@tromey.com>
15295
15296 * xcoffread.c (xcoff_start_psymtab): Remove global_psymbols and
15297 static_psymbols parameters.
15298 (scan_xcoff_symtab): Update.
15299 * psymtab.c (start_psymtab_common): Remove global_psymbols and
15300 static_psymbols parameters.
15301 * psympriv.h (start_psymtab_common): Update.
15302 * mdebugread.c (parse_partial_symbols): Update.
15303 * dwarf2read.c (create_partial_symtab): Update.
15304 * dbxread.c (read_dbx_symtab): Update.
15305 (start_psymtab): Remove global_psymbols and static_psymbols
15306 parameters.
15307
15308 2019-01-10 Tom Tromey <tom@tromey.com>
15309
15310 * xcoffread.c (xcoff_end_psymtab): Remove some initializations.
15311 * psymtab.c (allocate_psymtab): Add comment.
15312 * psympriv.h (allocate_psymtab): Add comment.
15313 * dwarf2read.c (dwarf2_create_include_psymtab): Remove some
15314 initializations.
15315 * dbxread.c (dbx_end_psymtab): Remove some initializations.
15316
15317 2019-01-10 Tom Tromey <tom@tromey.com>
15318
15319 * symfile.h (mdebug_build_psymtabs, elfmdebug_build_psymtabs):
15320 Don't declare.
15321 * mipsread.c: Include mdebugread.h.
15322 * mdebugread.h (mdebug_build_psymtabs, elfmdebug_build_psymtabs):
15323 Declare.
15324 * elfread.c: Include mdebugread.h.
15325
15326 2019-01-09 Tom Tromey <tom@tromey.com>
15327
15328 * dbxread.c (dbx_end_psymtab): Use objfile_psymtabs.
15329 * mdebugread.c (parse_partial_symbols): Use objfile_psymtabs.
15330 * psymtab.c (ALL_OBJFILE_PSYMTABS_REQUIRED): Remove.
15331 (psym_map_symtabs_matching_filename, find_pc_sect_psymtab)
15332 (psym_lookup_symbol, psym_find_last_source_symtab)
15333 (psym_forget_cached_source_info, psym_print_stats)
15334 (psym_expand_symtabs_for_function, psym_expand_all_symtabs)
15335 (psym_expand_symtabs_with_fullname, psym_map_symbol_filenames)
15336 (psym_map_matching_symbols, psym_expand_symtabs_matching)
15337 (psym_find_compunit_symtab_by_address)
15338 (maintenance_print_psymbols, maintenance_info_psymtabs)
15339 (maintenance_check_psymtabs): Use ranged for.
15340 * psymtab.h (class objfile_psymtabs): New.
15341 (require_partial_symbols): Return objfile_psymtabs.
15342 * psympriv.h (ALL_OBJFILE_PSYMTABS): Remove.
15343
15344 2019-01-09 Tom Tromey <tom@tromey.com>
15345
15346 * symfile.c (overlay_invalidate_all, find_pc_overlay)
15347 (find_pc_mapped_section, list_overlays_command)
15348 (map_overlay_command, unmap_overlay_command)
15349 (simple_overlay_update): Use all_objfiles.
15350 * spu-tdep.c (spu_overlay_update): Use all_objfiles.
15351 * printcmd.c (info_symbol_command): Use all_objfiles.
15352 * objfiles.h (ALL_OBJSECTIONS): Remove.
15353 * maint.c (maintenance_translate_address): Use all_objfiles.
15354 * gcore.c (gcore_create_callback): Use all_objfiles.
15355 (objfile_find_memory_regions): Likewise.
15356
15357 2019-01-09 Tom Tromey <tom@tromey.com>
15358
15359 * symtab.c (find_line_symtab, info_sources_command)
15360 (make_source_files_completion_list): Use objfile_compunits.
15361 * source.c (select_source_symtab): Use objfile_compunits.
15362 * objfiles.h (struct objfile): Update comment.
15363 (ALL_OBJFILES): Remove.
15364 (ALL_FILETABS): Remove.
15365 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Use
15366 objfile_compunits.
15367
15368 2019-01-09 Tom Tromey <tom@tromey.com>
15369
15370 * symmisc.c (print_objfile_statistics, dump_objfile)
15371 (maintenance_print_symbols): Use compunit_filetabs.
15372 * source.c (forget_cached_source_info_for_objfile): Use
15373 compunit_filetabs.
15374 * objfiles.h (ALL_OBJFILE_FILETABS): Remove.
15375 (ALL_FILETABS): Use compunit_filetabs.
15376 * objfiles.c (objfile_relocate1): Use compunit_filetabs.
15377 * coffread.c (coff_symtab_read): Use compunit_filetabs.
15378
15379 2019-01-09 Tom Tromey <tom@tromey.com>
15380
15381 * symtab.h (ALL_COMPUNIT_FILETABS): Remove.
15382 (compunit_filetabs): New.
15383 * symtab.c (iterate_over_some_symtabs, find_pc_sect_line): Use
15384 compunit_filetabs.
15385 (info_sources_command, make_source_files_completion_list): Remove
15386 declaration.
15387 * symmisc.c (print_objfile_statistics, dump_objfile)
15388 (maintenance_print_symbols): Remove declaration.
15389 (maintenance_info_symtabs): Use compunit_filetabs.
15390 (maintenance_info_line_tables): Likewise.
15391 * source.c (select_source_symtab): Change local variable name.
15392 (forget_cached_source_info_for_objfile): Remove declaration.
15393 * objfiles.h (ALL_OBJFILE_FILETABS): Use compunit_filetabs.
15394 * objfiles.c (objfile_relocate1): Remove declaration.
15395 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Remove
15396 declaration.
15397 * maint.c (count_symtabs_and_blocks): Use compunit_filetabs.
15398 * coffread.c (coff_symtab_read): Remove declaration.
15399 * buildsym.c (buildsym_compunit::end_symtab_with_blockvector): Use
15400 compunit_filetabs.
15401
15402 2019-01-09 Tom Tromey <tom@tromey.com>
15403
15404 * symtab.c (lookup_objfile_from_block)
15405 (find_pc_sect_compunit_symtab, search_symbols)
15406 (default_collect_symbol_completion_matches_break_on): Use
15407 objfile_compunits.
15408 * objfiles.h (ALL_COMPUNITS): Remove.
15409 * maint.c (count_symtabs_and_blocks): Use objfile_compunits.
15410 * cp-support.c (add_symbol_overload_list_qualified): Use
15411 objfile_compunits.
15412 * ada-lang.c (ada_collect_symbol_completion_matches)
15413 (ada_add_global_exceptions): Use objfile_compunits.
15414
15415 2019-01-09 Tom Tromey <tom@tromey.com>
15416
15417 * source.c (select_source_symtab)
15418 (forget_cached_source_info_for_objfile): Remove declaration.
15419 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Remove
15420 declaration.
15421 * maint.c (count_symtabs_and_blocks): Remove declaration.
15422 * cp-support.c (add_symbol_overload_list_qualified): Remove
15423 declaration.
15424 * coffread.c (coff_symtab_read): Remove declaration.
15425 * symtab.c (lookup_symbol_in_objfile_symtabs)
15426 (basic_lookup_transparent_type_1): Use objfile_compunits.
15427 (lookup_objfile_from_block, find_pc_sect_compunit_symtab)
15428 (info_sources_command, search_symbols)
15429 (default_collect_symbol_completion_matches_break_on)
15430 (make_source_files_completion_list): Remove declaration.
15431 * ada-lang.c (add_nonlocal_symbols): Use objfile_compunits.
15432 (ada_collect_symbol_completion_matches)
15433 (ada_add_global_exceptions): Remove declaration.
15434 * linespec.c (iterate_over_all_matching_symtabs): Use
15435 objfile_compunits.
15436 * objfiles.h (ALL_OBJFILE_COMPUNITS): Remove.
15437 (class objfile_compunits): New.
15438 (ALL_COMPUNITS): Use objfile_compunits.
15439 * symmisc.c (print_objfile_statistics, maintenance_info_symtabs)
15440 (maintenance_check_symtabs, maintenance_info_line_tables): Use
15441 objfile_compunits.
15442 * objfiles.c (objfile_relocate1): Use objfile_compunits.
15443
15444 2019-01-09 Tom Tromey <tom@tromey.com>
15445
15446 * symtab.c (search_symbols)
15447 (default_collect_symbol_completion_matches_break_on): Use
15448 objfile_msymbols.
15449 * ada-lang.c (ada_lookup_simple_minsym)
15450 (ada_collect_symbol_completion_matches): Use objfile_msymbols.
15451 * minsyms.c (find_solib_trampoline_target): Use objfile_msymbols.
15452 * hppa-tdep.c (hppa_lookup_stub_minimal_symbol): Use
15453 objfile_msymbols.
15454 * coffread.c (coff_symfile_read): Use objfile_msymbols.
15455 * symmisc.c (dump_msymbols): Use objfile_msymbols.
15456 * objc-lang.c (find_methods): Use objfile_msymbols.
15457 (info_selectors_command, info_classes_command): Likewise.
15458 * stabsread.c (scan_file_globals): Use objfile_msymbols.
15459 * objfiles.h (class objfile_msymbols): New.
15460 (ALL_OBJFILE_MSYMBOLS): Remove.
15461 (ALL_MSYMBOLS): Remove.
15462
15463 2019-01-09 Tom Tromey <tom@tromey.com>
15464
15465 * common/next-iterator.h (next_adapter): Add Iterator template
15466 parameter.
15467 * objfiles.h (ALL_OBJFILES_SAFE): Remove.
15468 (class all_objfiles_safe): New.
15469 * jit.c (jit_inferior_exit_hook): Use all_objfiles_safe.
15470 * objfiles.c (put_objfile_before): Update comment.
15471 (add_separate_debug_objfile): Likewise.
15472 (free_all_objfiles): Use all_objfiles_safe.
15473 (objfile_purge_solibs): Likewise.
15474
15475 2019-01-09 Tom Tromey <tom@tromey.com>
15476
15477 * symtab.c (iterate_over_symtabs, matching_obj_sections)
15478 (expand_symtab_containing_pc, lookup_static_symbol)
15479 (basic_lookup_transparent_type, find_pc_sect_compunit_symtab)
15480 (find_symbol_at_address, find_line_symtab, find_main_name): Use
15481 all_objfiles.
15482 * probe.c (find_probe_by_pc, collect_probes): Use all_objfiles.
15483 * breakpoint.c (create_overlay_event_breakpoint)
15484 (create_longjmp_master_breakpoint)
15485 (create_std_terminate_master_breakpoint)
15486 (create_exception_master_breakpoint): Use all_objfiles.
15487 * linux-thread-db.c (try_thread_db_load_from_pdir)
15488 (has_libpthread): Use all_objfiles.
15489 * ada-lang.c (add_nonlocal_symbols): Use all_objfiles.
15490 * linespec.c (iterate_over_all_matching_symtabs)
15491 (search_minsyms_for_name): Use all_objfiles.
15492 * maint.c (maintenance_info_sections): Use all_objfiles.
15493 * main.c (captured_main_1): Use all_objfiles.
15494 * spu-tdep.c (spu_objfile_from_frame): Use all_objfiles.
15495 * guile/scm-objfile.c (gdbscm_objfiles): Use all_objfiles.
15496 * guile/scm-pretty-print.c
15497 (ppscm_find_pretty_printer_from_objfiles): Use all_objfiles.
15498 * solib-spu.c (append_ocl_sos): Use all_objfiles.
15499 * symmisc.c (maintenance_print_symbols): Use all_objfiles.
15500 (maintenance_print_msymbols): Use all_objfiles.
15501 * source.c (select_source_symtab): Use all_objfiles.
15502 * jit.c (jit_find_objf_with_entry_addr): Use all_objfiles.
15503 * symfile.c (remove_symbol_file_command)
15504 (expand_symtabs_matching, map_symbol_filenames): Use
15505 all_objfiles.
15506 * ppc-linux-tdep.c (ppc_linux_spe_context_inferior_created): Use
15507 all_objfiles.
15508 * dwarf2-frame.c (dwarf2_frame_find_fde): Use all_objfiles.
15509 * objc-lang.c (find_methods): Use all_objfiles.
15510 * objfiles.c (have_partial_symbols, have_full_symbols)
15511 (have_minimal_symbols, qsort_cmp)
15512 (default_iterate_over_objfiles_in_search_order): Use
15513 all_objfiles.
15514 * hppa-tdep.c (find_unwind_entry): Use all_objfiles.
15515 * psymtab.c (maintenance_print_psymbols): Use all_objfiles.
15516 (maintenance_check_psymtabs): Use all_objfiles.
15517 (ALL_PSYMTABS): Remove.
15518 * compile/compile-object-run.c (do_module_cleanup): Use
15519 all_objfiles.
15520 * blockframe.c (find_pc_partial_function): Use all_objfiles.
15521 * cp-support.c (add_symbol_overload_list_qualified): Use
15522 all_objfiles.
15523 * windows-tdep.c (windows_iterate_over_objfiles_in_search_order):
15524 Use all_objfiles.
15525 * dwarf-index-write.c (save_gdb_index_command): Use all_objfiles.
15526 * python/py-xmethods.c (gdbpy_get_matching_xmethod_workers): Use
15527 all_objfiles.
15528 * python/py-objfile.c (objfpy_lookup_objfile_by_name)
15529 (objfpy_lookup_objfile_by_build_id): Use all_objfiles.
15530 * python/py-prettyprint.c (find_pretty_printer_from_objfiles):
15531 Uses all_objfiles.
15532 * solib.c (solib_read_symbols): Use all_objfiles
15533
15534 2019-01-09 Tom Tromey <tom@tromey.com>
15535
15536 * probe.c (parse_probes_in_pspace): Use all_objfiles.
15537 * guile/scm-progspace.c (gdbscm_progspace_objfiles): Use
15538 all_objfiles.
15539 * objfiles.h (ALL_PSPACE_OBJFILES): Remove.
15540 * symmisc.c (print_symbol_bcache_statistics)
15541 (print_objfile_statistics, maintenance_print_objfiles)
15542 (maintenance_info_symtabs, maintenance_check_symtabs)
15543 (maintenance_expand_symtabs, maintenance_info_line_tables): Use
15544 all_objfiles.
15545 * source.c (forget_cached_source_info): Use all_objfiles.
15546 * symfile-debug.c (set_debug_symfile): Use all_objfiles.
15547 * elfread.c (elf_gnu_ifunc_resolve_by_cache)
15548 (elf_gnu_ifunc_resolve_by_got): Use all_objfiles.
15549 * objfiles.c (update_section_map): Use all_objfiles.
15550 (shared_objfile_contains_address_p): Likewise.
15551 * psymtab.c (maintenance_info_psymtabs): Use all_objfiles.
15552 * python/py-progspace.c (pspy_get_objfiles): Use all_objfiles.
15553
15554 2019-01-09 Tom Tromey <tom@tromey.com>
15555
15556 * common/next-iterator.h: New file.
15557 * objfiles.h (class all_objfiles): New.
15558 (struct objfile_iterator): New.
15559
15560 2019-01-09 Philippe Waroquiers <philippe.waroquiers@skynet.be>
15561
15562 * NEWS: Move the description of the changed "frame", "select-frame",
15563 and "info frame" commands to the Changed commands section.
15564
15565 2019-01-09 Simon Marchi <simon.marchi@ericsson.com>
15566
15567 * gdbtypes.c (check_stub_method_group): Remove handling of old
15568 mangling schemes.
15569 * linespec.c (find_methods): Likewise.
15570 * stabsread.c (read_member_functions): Likewise.
15571 * valops.c (search_struct_method): Likewise.
15572 (value_struct_elt_for_reference): Likewise.
15573 * NEWS: Mention this change.
15574
15575 2019-01-09 Andrew Burgess <andrew.burgess@embecosm.com>
15576
15577 * cli/cli-cmds.c (list_command): Pass a source_lines_range to
15578 print_source_lines.
15579 * source.c (print_source_lines_base): Update line number check.
15580 (print_source_lines): New function.
15581 (source_lines_range::source_lines_range): New function.
15582 * source.h (class source_lines_range): New class.
15583 (print_source_lines): New declaration.
15584
15585 2019-01-09 Philippe Waroquiers <philippe.waroquiers@skynet.be>
15586
15587 * linespec.c (linespec_state_destructor): Free self->canonical_names.
15588
15589 2019-01-08 Tom Tromey <tom@tromey.com>
15590 Simon Marchi <simon.marchi@ericsson.com>
15591
15592 PR gdb/24060
15593 * ada-exp.y (DOLLAR_VARIABLE): Rename from SPECIAL_VARIABLE.
15594 * ada-lex.l (DOLLAR_VARIABLE): Likewise.
15595 * c-exp.y (DOLLAR_VARIABLE): Rename from VARIABLE.
15596 * f-exp.y (DOLLAR_VARIABLE): Likewise.
15597 * m2-exp.y (DOLLAR_VARIABLE): Rename from INTERNAL_VAR.
15598 * p-exp.y (DOLLAR_VARIABLE): Rename from VARIABLE.
15599
15600 2019-01-08 Andrew Burgess <andrew.burgess@embecosm.com>
15601
15602 * source.c (select_source_symtab): Move header comment to
15603 declaration in source.h.
15604 (forget_cached_source_info_for_objfile): Likewise.
15605 (forget_cached_source_info): Likewise.
15606 (identify_source_line): Likewise.
15607 * source.h (identify_source_line): Move declaration from symtab.h
15608 and add comment from source.c
15609 (print_source_lines): Likewise.
15610 (forget_cached_source_info_for_objfile): Likewise.
15611 (forget_cached_source_info): Likewise.
15612 (select_source_symtab): Likewise.
15613 (enum print_source_lines_flag): Move definition from symtab.h.
15614 * symtab.h (identify_source_line): Move declaration to source.h.
15615 (print_source_lines): Likewise.
15616 (forget_cached_source_info_for_objfile): Likewise.
15617 (forget_cached_source_info): Likewise.
15618 (select_source_symtab): Likewise.
15619 (enum print_source_lines_flag): Move definition to source.h.
15620 * tui/tui-hooks.c: Add 'source.h' include.
15621
15622 2019-01-08 Andrew Burgess <andrew.burgess@embecosm.com>
15623
15624 * source.c (print_source_lines_base): Handle requests to print
15625 reverse line number sequences, and guard against empty lines
15626 string.
15627
15628 2019-01-08 Andrew Burgess <andrew.burgess@embecosm.com>
15629
15630 * source.c (print_source_lines_base): Fix skip of '\r' if next
15631 character is '\n'.
15632
15633 2019-01-06 Tom Tromey <tom@tromey.com>
15634
15635 * c-exp.y (struct c_parse_state) <macro_original_text,
15636 expansion_obstack>: New member.
15637 (macro_original_text, expansion_obstack): Remove globals.
15638 (scan_macro_expansion, scanning_macro_expansion)
15639 (finished_macro_expansion): Update.
15640 (scan_macro_cleanup): Remove.
15641 (yylex, c_parse): Update.
15642
15643 2019-01-06 Tom Tromey <tom@tromey.com>
15644
15645 * c-exp.y (struct c_parse_state) <strings>: New member.
15646 (operator_stoken): Update.
15647
15648 2019-01-06 Tom Tromey <tom@tromey.com>
15649
15650 * parser-defs.h (type_ptr): Remove typedef. Don't declare VEC.
15651 (union type_stack_elt) <typelist_val>: Now a pointer to
15652 std::vector.
15653 (type_stack_cleanup): Don't declare.
15654 (push_typelist): Update.
15655 * parse.c (pop_typelist): Return a std::vector.
15656 (push_typelist): Take a std::vector.
15657 (follow_types): Update. Do not free args.
15658 (type_stack_cleanup): Remove.
15659 * c-exp.y (struct c_parse_state): New.
15660 (cpstate): New global.
15661 (type_aggregate_p, exp, ptr_operator, parameter_typelist)
15662 (nonempty_typelist): Update.
15663 (func_mod): Create a new vector.
15664 (c_parse): Create a c_parse_state.
15665 (check_parameter_typelist): Do not delete params.
15666 (function_method): Update. Do not delete type_list.
15667
15668 2019-01-06 Tom Tromey <tom@tromey.com>
15669
15670 PR gdb/28155:
15671 * python/py-finishbreakpoint.c (bpfinishpy_init): Use
15672 check_typedef.
15673 * infcmd.c (finish_command_fsm_should_stop): Use check_typedef.
15674 (print_return_value): Likewise.
15675
15676 2019-01-05 Tom Tromey <tom@tromey.com>
15677
15678 * contrib/cleanup_check.py: Remove.
15679 * contrib/gcc-with-excheck: Remove.
15680 * contrib/exsummary.py: Remove.
15681 * contrib/excheck.py: Remove.
15682
15683 2019-01-05 Joel Brobecker <brobecker@adacore.com>
15684
15685 * thread.c (delete_thread_1): Add gdb_assert that THR is not
15686 NULL. Initialize tpprev to NULL instead of assigning it
15687 to NULL on the next statement.
15688 * windows-nat.c (windows_delete_thread): Remove check for
15689 main_thread_id before printing thread exit notifications.
15690 (get_windows_debug_event) <EXIT_THREAD_DEBUG_EVENT>:
15691 Remove thread ID check against main_thread_id.
15692 <CREATE_PROCESS_DEBUG_EVENT>: Remove call to
15693 windows_delete_thread.
15694 <EXIT_PROCESS_DEBUG_EVENT>: Add call to windows_delete_thread.
15695
15696 2019-01-04 Tom Tromey <tom@tromey.com>
15697
15698 * compile/compile.c (_initialize_compile): Use upper case for
15699 metasyntactic variables.
15700 * symmisc.c (_initialize_symmisc): Use upper case for
15701 metasyntactic variables.
15702 * psymtab.c (_initialize_psymtab): Use upper case for
15703 metasyntactic variables.
15704 * demangle.c (demangle_command): Use upper case for metasyntactic
15705 variables.
15706 (_initialize_demangler): Likewise.
15707 * ax-gdb.c (_initialize_ax_gdb): Use upper case for metasyntactic
15708 variables.
15709
15710 2019-01-03 Tom Tromey <tom@tromey.com>
15711
15712 * tui/tui-source.c (tui_set_source_content): Use xstrdup.
15713
15714 2019-01-03 Tom Tromey <tom@tromey.com>
15715
15716 * python/py-symtab.c (salpy_str): Update.
15717 (struct salpy_sal_object) <symtab>: Now a PyObject.
15718 (salpy_dealloc): Update.
15719 (del_objfile_sal): Use gdbpy_ref.
15720
15721 2019-01-03 Tom Tromey <tom@tromey.com>
15722
15723 * python/py-type.c (convert_field): Use new_reference. Return
15724 gdbpy_ref.
15725 (make_fielditem): Return gdbpy_ref.
15726 (typy_fields): Update.
15727 (typy_getitem): Update.
15728 (field_name): Return gdbpy_ref. Use new_reference.
15729 (typy_iterator_iternext): Update.
15730
15731 2019-01-03 Tom Tromey <tom@tromey.com>
15732
15733 * python/py-record.c (gdbpy_stop_recording): Use Py_RETURN_NONE.
15734
15735 2019-01-03 Tom Tromey <tom@tromey.com>
15736
15737 * python/py-value.c (valpy_dealloc): Use Py_XDECREF.
15738 * python/py-type.c (typy_fields_items): Use gdbpy_ref.
15739 * python/py-progspace.c (pspy_set_printers): Use gdbpy_ref.
15740 (pspy_set_frame_filters, pspy_set_frame_unwinders)
15741 (pspy_set_type_printers): Likewise.
15742 * python/py-function.c (fnpy_init): Use gdbpy_ref.
15743 * python/py-cmd.c (cmdpy_init): Use gdbpy_ref.
15744 * python/py-objfile.c (objfpy_set_printers): Use gdbpy_ref.
15745 (objfpy_set_frame_filters, objfpy_set_frame_unwinders)
15746 (objfpy_set_type_printers): Likewise.
15747
15748 2019-01-03 Tom Tromey <tom@tromey.com>
15749
15750 * python/python.c (gdbpy_enter, ~gdbpy_enter): Update.
15751 (gdbpy_print_stack): Use gdbpy_err_fetch.
15752 * python/python-internal.h (class gdbpy_err_fetch): New class.
15753 (class gdbpy_enter) <m_error_type, m_error_value,
15754 m_error_traceback>: Remove.
15755 <m_error>: New member.
15756 (gdbpy_exception_to_string): Don't declare.
15757 * python/py-varobj.c (py_varobj_iter_next): Use gdbpy_err_fetch.
15758 * python/py-value.c (convert_value_from_python): Use
15759 gdbpy_err_fetch.
15760 * python/py-utils.c (gdbpy_err_fetch::to_string): Rename from
15761 gdbpy_exception_to_string.
15762 (gdbpy_handle_exception): Use gdbpy_err_fetch.
15763 * python/py-prettyprint.c (print_stack_unless_memory_error): Use
15764 gdbpy_err_fetch.
15765
15766 2019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
15767
15768 * linux-nat.c (delete_lwp_cleanup): Delete.
15769 (struct lwp_deleter): New struct.
15770 (lwp_info_up): New typedef.
15771 (linux_nat_target::follow_fork): Delete cleanup, and make use of
15772 lwp_info_up.
15773
15774 2019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
15775
15776 * linux-fork.c (class scoped_switch_fork_info): New class.
15777 (inferior_call_waitpid): Update to use scoped_switch_fork_info.
15778
15779 2019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
15780
15781 * valops.c (find_overload_match): Remove use of null_cleanup, and
15782 calls to do_cleanups.
15783
15784 2019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
15785
15786 * compile/compile-cplus-types.c
15787 (compile_cplus_instance::decl_name): Handle changes to
15788 cp_func_name.
15789 * cp-support.c (cp_func_name): Update header comment, update
15790 return type.
15791 * cp-support.h (cp_func_name): Update return type in declaration.
15792 * valops.c (find_overload_match): Move temp_func local to top
15793 level of function and change its type. Use temp_func to hold and
15794 delete temporary string obtained from cp_func_name.
15795
15796 2019-01-03 Andrew Burgess <andrew.burgess@embecosm.com>
15797
15798 * remote.c (remote_target::remote_check_symbols): Convert `msg` to
15799 gdb::char_vector, remove cleanup, and update uses of `msg`.
15800
15801 2019-01-03 Jim Wilson <jimw@sifive.com>
15802
15803 * riscv-tdep.c (riscv_freg_feature): Drop s0 name from f8.
15804
15805 2019-01-02 Tom Tromey <tom@tromey.com>
15806
15807 * xml-tdesc.c (xml_cache): Hold a target_desc_up.
15808 (tdesc_parse_xml): Remove cleanups.
15809 * target-descriptions.h (make_cleanup_free_target_description):
15810 Don't declare.
15811 (target_desc_deleter): New struct.
15812 (target_desc_up): New typedef.
15813 * target-descriptions.c (target_desc_deleter::operator()): Rename
15814 from free_target_description.
15815 (make_cleanup_free_target_description): Remove.
15816
15817 2019-01-02 Tom Tromey <tom@tromey.com>
15818
15819 * linespec.c (struct linespec_parser): Rename from ls_parser. Add
15820 constructor, destructor.
15821 (linespec_parser): Remove typedef.
15822 (~linespec_parser): Rename from linespec_parser_delete.
15823 (linespec_lex_to_end, linespec_complete_label)
15824 (linespec_complete): Update.
15825 (decode_line_full): Remove cleanups.
15826 (decode_line_1): Update.
15827
15828 2019-01-02 Tom Tromey <tom@tromey.com>
15829
15830 * python/python-internal.h (inferior_to_inferior_object): Change
15831 return type.
15832 * python/py-exitedevent.c (create_exited_event_object): Update.
15833 * python/py-inferior.c (inferior_to_inferior_object): Return
15834 gdbpy_ref.
15835 (python_new_inferior, python_inferior_deleted)
15836 (thread_to_thread_object, delete_thread_object)
15837 (build_inferior_list, gdbpy_selected_inferior): Update.
15838 * python/py-infthread.c (create_thread_object): Update. Also fail
15839 if inferior_to_inferior_object fails.
15840
15841 2019-01-02 Simon Marchi <simon.marchi@ericsson.com>
15842
15843 * inferior.h (class inferior) <displaced_step_state>: New field.
15844 * infrun.h (struct displaced_step_state): Move here from
15845 infrun.c. Initialize fields, add constructor.
15846 <inf>: Remove field.
15847 <reset>: New method.
15848 * infrun.c (struct displaced_step_inferior_state): Move to
15849 infrun.h.
15850 (displaced_step_inferior_states): Remove.
15851 (get_displaced_stepping_state): Adust.
15852 (displaced_step_in_progress_any_inferior): Adjust.
15853 (displaced_step_in_progress_thread): Adjust.
15854 (displaced_step_in_progress): Adjust.
15855 (add_displaced_stepping_state): Remove.
15856 (get_displaced_step_closure_by_addr): Adjust.
15857 (remove_displaced_stepping_state): Remove.
15858 (infrun_inferior_exit): Call displaced_step_state.reset.
15859 (use_displaced_stepping): Don't check for NULL.
15860 (displaced_step_prepare_throw): Call
15861 get_displaced_stepping_state.
15862 (displaced_step_fixup): Don't check for NULL.
15863 (prepare_for_detach): Don't check for NULL.
15864
15865 2019-01-02 Philippe Waroquiers <philippe.waroquiers@skynet.be>
15866
15867 * infcall.c (call_function_by_hand_dummy): cleanup/destroy sm
15868 in case of call that did not complete.
15869
15870 2019-01-02 Andrey Utkin <autkin@undo.io>
15871
15872 * symfile.c (find_separate_debug_file): Fix search of debug files for
15873 remote debuggee.
15874
15875 2019-01-02 Tom Tromey <tom@tromey.com>
15876
15877 * python/py-inferior.c (gdbpy_initialize_inferior): Fix
15878 indentation.
15879 * python/py-frame.c (frapy_older): Remove cast.
15880 (frapy_newer): Likewise.
15881 * python/py-breakpoint.c (local_setattro): Remove cast.
15882 * python/py-arch.c (archpy_name): Remove local variable.
15883 * python/py-type.c (gdbpy_lookup_type): Remove cast.
15884
15885 2019-01-02 Joel Brobecker <brobecker@adacore.com>
15886
15887 * unittests/basic_string_view/element_access/char/empty.cc:
15888 Fix year range in copyright header.
15889
15890 2019-01-01 Andrew Burgess <andrew.burgess@embecosm.com>
15891
15892 * arch/riscv.h (struct riscv_gdbarch_features) <hw_float_abi>:
15893 Delete.
15894 <operator==>: Update with for removed field.
15895 <hash>: Likewise.
15896 * riscv-tdep.h (struct gdbarch_tdep) <features>: Renamed to...
15897 <isa_features>: ...this.
15898 <abi_features>: New field.
15899 (riscv_isa_flen): Update comment.
15900 (riscv_abi_xlen): New declaration.
15901 (riscv_abi_flen): New declaration.
15902 * riscv-tdep.c (riscv_isa_xlen): Update to get answer from
15903 isa_features.
15904 (riscv_abi_xlen): New function.
15905 (riscv_isa_flen): Update to get answer from isa_features.
15906 (riscv_abi_flen): New function.
15907 (riscv_has_fp_abi): Update to get answer from abi_features.
15908 (riscv_call_info::riscv_call_info): Use abi xlen and flen, not isa
15909 xlen and flen.
15910 (riscv_call_info) <xlen, flen>: Update comment.
15911 (riscv_call_arg_struct): Remove invalid assertions
15912 (riscv_features_from_gdbarch_info): Update now hw_float_abi field
15913 is removed.
15914 (riscv_gdbarch_init): Gather isa features and abi features
15915 separately, ensure both match on the gdbarch when reusing an old
15916 gdbarch. Relax an error check to allow 32-bit abi float to run on
15917 a target with 64-bit float hardware.
15918
15919 2019-01-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
15920
15921 * source.c (search_command_helper): Stop reverse search
15922 when line 1 has been searched.
15923
15924 2019-01-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
15925
15926 * record-full.c (record_full_base_target::close): Rewrite
15927 record_full_core_buf_list free logic.
15928
15929 2019-01-01 Philippe Waroquiers <philippe.waroquiers@skynet.be>
15930
15931 * break-catch-syscall.c (print_one_catch_syscall): xfree
15932 the last text.
15933
15934 2019-01-01 Joel Brobecker <brobecker@adacore.com>
15935
15936 * top.c (print_gdb_version): Update Copyright year in version
15937 message.
15938
15939 2019-01-01 Joel Brobecker <brobecker@adacore.com>
15940
15941 Update copyright year range in all GDB files.
15942
15943 2019-01-01, 19 Joel Brobecker <brobecker@adacore.com>
15944
15945 * config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2018.
15946
15947 For older changes see ChangeLog-2018.
15948 \f
15949 Local Variables:
15950 mode: change-log
15951 left-margin: 8
15952 fill-column: 74
15953 version-control: never
15954 coding: utf-8
15955 End:
15956
This page took 0.335049 seconds and 5 git commands to generate.